From c1f9e79d5a0aec53c62e672dad3bcd1dddbd8726 Mon Sep 17 00:00:00 2001 From: Lucas Ritzdorf <42657792+LRitzdorf@users.noreply.github.com> Date: Sun, 10 Dec 2023 00:16:08 -0700 Subject: [PATCH] cv_bsp_generator: don't change keys from hps.xml --- arch/arm/mach-socfpga/cv_bsp_generator/hps.py | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/arch/arm/mach-socfpga/cv_bsp_generator/hps.py b/arch/arm/mach-socfpga/cv_bsp_generator/hps.py index d702c5b4891c..6d155dacb074 100755 --- a/arch/arm/mach-socfpga/cv_bsp_generator/hps.py +++ b/arch/arm/mach-socfpga/cv_bsp_generator/hps.py @@ -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 }