Line 130... |
Line 130... |
# functions won't be recognized unless they're members of the
|
# functions won't be recognized unless they're members of the
|
# SSBCCperipheral class.
|
# SSBCCperipheral class.
|
#
|
#
|
##############################################################################
|
##############################################################################
|
|
|
def FixedPow2(self,config,lowLimit,highLimit,value):
|
def IntPow2Method(self,config,value,lowLimit=1,highLimit=None):
|
"""
|
"""
|
Check the provided constant as a power of 2 between the provided limits.\n
|
Return the integer value of the argument if it is a power of 2 between the
|
Note: This differs from InpPow2 in that localparams and constants are
|
optional limits (inclusive). Otherwise throw an error.\n
|
permitted.
|
Note: Other than a lower limit of 1 for "lowLimit", IntMethod validates
|
|
"lowLimit" and "highLimit".
|
"""
|
"""
|
|
value = self.IntMethod(config,value,lowLimit,highLimit)
|
|
if lowLimit < 1:
|
|
raise SSBCCException('Program bug: lowLimit = %d is less than 1' % lowLimit);
|
|
if not IsPowerOf2(value):
|
|
raise SSBCCException('Must be a power of 2');
|
|
return value;
|
|
|
|
def IntMethod(self,config,value,lowLimit=None,highLimit=None):
|
|
"""
|
|
Return the integer value of the argument. Throw an error if the argument is
|
|
unrecognized, not an integer, or is outside the optionally specified range.
|
|
"""
|
|
if (lowLimit != None) and (highLimit != None) and (highLimit < lowLimit):
|
|
raise SSBCCException('Program bug: lowLimit = %d and highLimit = %d conflict' % (lowLimit,highLimit,));
|
if re.match(r'L_\w+$',value):
|
if re.match(r'L_\w+$',value):
|
if not config.IsParameter(value):
|
if not config.IsParameter(value):
|
raise SSBCCException('Unrecognized parameter');
|
raise SSBCCException('Unrecognized parameter');
|
ix = [param[0] for param in config.parameters].index(value);
|
ix = [param[0] for param in config.parameters].index(value);
|
value = config.parameters[ix][1];
|
value = config.parameters[ix][1];
|
elif re.match(r'C_\w+$',value):
|
elif re.match(r'C_\w+$',value):
|
if not config.IsConstant(value):
|
if not config.IsConstant(value):
|
raise SSBCCException('Unrecognized constant');
|
raise SSBCCException('Unrecognized constant');
|
value = config.constants[value];
|
value = config.constants[value];
|
if not IsPosInt(value):
|
|
raise SSBCCException('Must be a constant positive integer');
|
|
value = ParseIntExpr(value);
|
|
if not IsPowerOf2(value):
|
|
raise SSBCCException('Must be a power of 2');
|
|
if not (lowLimit <= value <= highLimit):
|
|
raise SSBCCException('Must be between %d and %d inclusive' % (lowLimit,highLimit,));
|
|
return value;
|
|
|
|
def IntPow2(self,value,minValue=1):
|
|
"""
|
|
Return the integer value of the argument if it is a power of 2. Otherwise
|
|
throw an error.
|
|
"""
|
|
if not IsPosInt(value):
|
|
raise SSBCCException('Not a positive integer');
|
|
value = ParseIntExpr(value);
|
value = ParseIntExpr(value);
|
if not IsPowerOf2(value):
|
if (lowLimit != None) and value < lowLimit:
|
raise SSBCCException('Not a power of 2');
|
if lowLimit == 1:
|
if value < minValue:
|
raise SSBCCException('Must be a positive integer');
|
raise SSBCCException('Must be at least %d' % minValue);
|
else:
|
return value;
|
raise SSBCCException('Cannot be less than %d' % lowLimit);
|
|
if (highLimit != None) and value > highLimit:
|
def PosInt(self,value,maxValue=0):
|
raise SSBCCException('Cannot be more than %d' % highLimit);
|
"""
|
|
Return the integer value of the argument unless it is out of bounds.\n
|
|
Note: maxValue=0 means that there is no upper limit.
|
|
"""
|
|
if not IsPosInt(value):
|
|
raise SSBCCException('Not a positive integer');
|
|
value = ParseIntExpr(value);
|
|
if (maxValue != 0) and (value > maxValue):
|
|
raise SSBCCException('Out of bounds -- can be at most %d' % maxValue);
|
|
return value;
|
return value;
|
|
|
def RateMethod(self,config,value):
|
def RateMethod(self,config,value):
|
"""
|
"""
|
Return the string to evaluate the provided value or ratio of two values.
|
Return the string to evaluate the provided value or ratio of two values.
|
The value can be an integer (including underscores) or a parameter. Ratios
|
The value can be an integer (including underscores), a constant, or a
|
are restated to do rounding instead of truncation.\n
|
parameter. Ratios are restated to do rounding instead of truncation.\n
|
Examples:
|
Examples:
|
123456
|
123456
|
123_456
|
123_456
|
L_DIVISION_RATIO
|
L_DIVISION_RATIO
|
G_CLOCK_FREQUENCY_HZ/19200
|
G_CLOCK_FREQUENCY_HZ/19200
|
|
C_CLOCK_FREQUENCY_HZ/19200
|
G_CLOCK_FREQUENCY_HZ/L_BAUD_RATE
|
G_CLOCK_FREQUENCY_HZ/L_BAUD_RATE
|
100_000_000/G_BAUD_RATE
|
100_000_000/G_BAUD_RATE
|
"""
|
"""
|
def TestAndGetValue(self,config,value,position):
|
def LocalIntMethod(self,config,value,position=None):
|
if IsIntExpr(value):
|
try:
|
return str(ParseIntExpr(value));
|
if config.IsParameter(value):
|
elif config.IsConstant(value):
|
|
value = config.constants[value];
|
|
if not value > 0:
|
|
raise SSBCCException('Constant "%s" must be positive');
|
|
return str(value);
|
|
elif config.IsParameter(value):
|
|
return value;
|
return value;
|
else:
|
else:
|
raise SSBCCException('%s must be a positive integer or a previously declared positive constant or a parameter', position);
|
v = self.IntMethod(config,value,lowLimit=1);
|
|
return str(v);
|
|
except SSBCCException, msg:
|
|
if not position:
|
|
raise SSBCCException(msg);
|
|
else:
|
|
raise SSBCCException('%s in %s' % (msg,position,));
|
if value.find('/') < 0:
|
if value.find('/') < 0:
|
return TestAndGetValue(self,config,value,'Value');
|
return LocalIntMethod(self,config,value);
|
else:
|
else:
|
ratearg = re.findall('([^/]+)',value);
|
ratearg = re.findall('([^/]+)',value);
|
if len(ratearg) != 2:
|
if len(ratearg) != 2:
|
raise SSBCCException('Only one "/" allowed in expression');
|
raise SSBCCException('Only one "/" allowed in expression');
|
ratearg[0] = TestAndGetValue(self,config,ratearg[0],'Numerator');
|
ratearg[0] = LocalIntMethod(self,config,ratearg[0],'numerator');
|
ratearg[1] = TestAndGetValue(self,config,ratearg[1],'Denominator');
|
ratearg[1] = LocalIntMethod(self,config,ratearg[1],'denominator');
|
return '(%s+%s/2)/%s' % (ratearg[0],ratearg[1],ratearg[1],);
|
return '(%s+%s/2)/%s' % (ratearg[0],ratearg[1],ratearg[1],);
|
|
|
No newline at end of file
|
No newline at end of file
|
|
def TimeMethod(self,config,value,lowLimit=None,highLimit=None):
|
|
"""
|
|
Convert the provided time from the specified units to seconds.
|
|
"""
|
|
if not re.match(r'(0|[1-9]\d*)(\.\d*)?(e[+-]?\d+)?[mun]?s$',value):
|
|
raise SSBCCException('Malformed time value');
|
|
if value[-2:] == 'ms':
|
|
v = float(value[:-2]) * 1.e-3;
|
|
elif value[-2:] == 'us':
|
|
v = float(value[:-2]) * 1.e-6;
|
|
elif value[-2:] == 'ns':
|
|
v = float(value[:-2]) * 1.e-9;
|
|
else:
|
|
v = float(value[:-1]);
|
|
if (lowLimit != None) and (v < lowLimit):
|
|
raise SSBCCException('%s must be %s or greater' % (v,lowLimit,));
|
|
if (highLimit != None) and (v > highLimit):
|
|
raise SSBCCException('%s must be %s or smaller' % (v,highLimit,));
|
|
return v;
|
|
|
No newline at end of file
|
No newline at end of file
|