soc/integration: ensure CSR constants are in uppercase

Fixup over commit 8be5824e.

Signed-off-by: Gabriel Somlo <gsomlo@gmail.com>
This commit is contained in:
Gabriel Somlo 2019-10-01 12:14:33 -04:00
parent 427d7af767
commit c8790d342a
1 changed files with 2 additions and 1 deletions

View File

@ -445,7 +445,8 @@ class SoCCore(Module):
# Add CSRs / Config items to constants
for name, constant in self.csrbankarray.constants:
self.add_constant(name + "_" + constant.name, constant.value.value)
self.add_constant(name.upper() + "_" + constant.name.upper(),
constant.value.value)
for name, value in sorted(self.config.items(), key=itemgetter(0)):
self.add_constant("CONFIG_" + name.upper(), value)
if isinstance(value, str):