Skip to content

Commit

Permalink
cv_bsp_generator: don't change keys from hps.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
LRitzdorf committed May 28, 2024
1 parent c411260 commit c1f9e79
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions arch/arm/mach-socfpga/cv_bsp_generator/hps.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,22 +292,22 @@ def get_default_pinmux_configs(self):
p['usb1'] = { 'name': 'CFG_HPS_USB1', 'used': 0 }
p['nand'] = { 'name': 'CFG_HPS_NAND', 'used': 0 }
p['sdmmc'] = { 'name': 'CFG_HPS_SDMMC', 'used': 0 }
p['CFG_HPS_SDMMC_BUSWIDTH'] = { 'name': 'CFG_HPS_SDMMC_BUSWIDTH', 'used': 0 }
p['CONFIG_HPS_SDMMC_BUSWIDTH'] = { 'name': 'CFG_HPS_SDMMC_BUSWIDTH', 'used': 0 }
p['qspi'] = { 'name': 'CFG_HPS_QSPI', 'used': 0 }
p['CFG_HPS_QSPI_CS3'] = { 'name': 'CFG_HPS_QSPI_CS3', 'used': 0 }
p['CFG_HPS_QSPI_CS2'] = { 'name': 'CFG_HPS_QSPI_CS2', 'used': 0 }
p['CFG_HPS_QSPI_CS1'] = { 'name': 'CFG_HPS_QSPI_CS1', 'used': 0 }
p['CFG_HPS_QSPI_CS0'] = { 'name': 'CFG_HPS_QSPI_CS0', 'used': 0 }
p['CONFIG_HPS_QSPI_CS3'] = { 'name': 'CFG_HPS_QSPI_CS3', 'used': 0 }
p['CONFIG_HPS_QSPI_CS2'] = { 'name': 'CFG_HPS_QSPI_CS2', 'used': 0 }
p['CONFIG_HPS_QSPI_CS1'] = { 'name': 'CFG_HPS_QSPI_CS1', 'used': 0 }
p['CONFIG_HPS_QSPI_CS0'] = { 'name': 'CFG_HPS_QSPI_CS0', 'used': 0 }
p['uart0'] = { 'name': 'CFG_HPS_UART0', 'used': 0 }
p['CFG_HPS_UART0_TX'] = { 'name': 'CFG_HPS_UART0_TX', 'used': 0 }
p['CFG_HPS_UART0_CTS'] = { 'name': 'CFG_HPS_UART0_CTS', 'used': 0 }
p['CFG_HPS_UART0_RTS'] = { 'name': 'CFG_HPS_UART0_RTS', 'used': 0 }
p['CFG_HPS_UART0_RX'] = { 'name': 'CFG_HPS_UART0_RX', 'used': 0 }
p['CONFIG_HPS_UART0_TX'] = { 'name': 'CFG_HPS_UART0_TX', 'used': 0 }
p['CONFIG_HPS_UART0_CTS'] = { 'name': 'CFG_HPS_UART0_CTS', 'used': 0 }
p['CONFIG_HPS_UART0_RTS'] = { 'name': 'CFG_HPS_UART0_RTS', 'used': 0 }
p['CONFIG_HPS_UART0_RX'] = { 'name': 'CFG_HPS_UART0_RX', 'used': 0 }
p['uart1'] = { 'name': 'CFG_HPS_UART1', 'used': 0 }
p['CFG_HPS_UART1_TX'] = { 'name': 'CFG_HPS_UART1_TX', 'used': 0 }
p['CFG_HPS_UART1_CTS'] = { 'name': 'CFG_HPS_UART1_CTS', 'used': 0 }
p['CFG_HPS_UART1_RTS'] = { 'name': 'CFG_HPS_UART1_RTS', 'used': 0 }
p['CFG_HPS_UART1_RX'] = { 'name': 'CFG_HPS_UART1_RX', 'used': 0 }
p['CONFIG_HPS_UART1_TX'] = { 'name': 'CFG_HPS_UART1_TX', 'used': 0 }
p['CONFIG_HPS_UART1_CTS'] = { 'name': 'CFG_HPS_UART1_CTS', 'used': 0 }
p['CONFIG_HPS_UART1_RTS'] = { 'name': 'CFG_HPS_UART1_RTS', 'used': 0 }
p['CONFIG_HPS_UART1_RX'] = { 'name': 'CFG_HPS_UART1_RX', 'used': 0 }
p['trace'] = { 'name': 'CFG_HPS_TRACE', 'used': 0 }
p['i2c0'] = { 'name': 'CFG_HPS_I2C0', 'used': 0 }
p['i2c1'] = { 'name': 'CFG_HPS_I2C1', 'used': 0 }
Expand Down

0 comments on commit c1f9e79

Please sign in to comment.