diff options
author | Tom Rini <trini@konsulko.com> | 2021-08-30 09:16:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-07 13:04:52 -0400 |
commit | b9d66a061b93e4679bd3afddb24413d5a51dabcc (patch) | |
tree | e3ddaf71a069b00f2612e687182d576c79a1c180 /include | |
parent | f84b48a1baec5d3039f17af6bfad024b617af4c0 (diff) | |
download | u-boot-b9d66a061b93e4679bd3afddb24413d5a51dabcc.tar.gz u-boot-b9d66a061b93e4679bd3afddb24413d5a51dabcc.tar.bz2 u-boot-b9d66a061b93e4679bd3afddb24413d5a51dabcc.zip |
imx: Convert SERIAL_TAG support to ENV_VARS_UBOOT_RUNTIME_CONFIG
No iMX platforms have supported ATAG-based booting. They have however
re-used the CONFIG_SERIAL_TAG option as a way to enable support of
reading the OTP fuses and setting the serial# environment variable in
some cases. Change the warp7 support to use this symbol, use this for
updating the rest of the imx7 code, and update the imx8 conditionals.
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: NXP i.MX U-Boot Team <uboot-imx@nxp.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/apalis_imx6.h | 1 | ||||
-rw-r--r-- | include/configs/cm_fx6.h | 1 | ||||
-rw-r--r-- | include/configs/colibri_imx6.h | 1 | ||||
-rw-r--r-- | include/configs/gw_ventana.h | 3 | ||||
-rw-r--r-- | include/configs/imx8ulp_evk.h | 2 | ||||
-rw-r--r-- | include/configs/puma_rk3399.h | 2 | ||||
-rw-r--r-- | include/configs/warp7.h | 3 |
7 files changed, 0 insertions, 13 deletions
diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h index 839af489dd..de6e205e39 100644 --- a/include/configs/apalis_imx6.h +++ b/include/configs/apalis_imx6.h @@ -27,7 +27,6 @@ #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG -#define CONFIG_SERIAL_TAG #define CONFIG_MXC_UART_BASE UART1_BASE diff --git a/include/configs/cm_fx6.h b/include/configs/cm_fx6.h index 2e7d343858..7092def8f9 100644 --- a/include/configs/cm_fx6.h +++ b/include/configs/cm_fx6.h @@ -173,7 +173,6 @@ /* Boot */ #define CONFIG_SYS_BOOTMAPSZ (8 << 20) -#define CONFIG_SERIAL_TAG /* misc */ diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h index be0ed457d6..8d628e7a60 100644 --- a/include/configs/colibri_imx6.h +++ b/include/configs/colibri_imx6.h @@ -25,7 +25,6 @@ #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG #define CONFIG_REVISION_TAG -#define CONFIG_SERIAL_TAG #define CONFIG_MXC_UART_BASE UART1_BASE diff --git a/include/configs/gw_ventana.h b/include/configs/gw_ventana.h index 012c9b6ffe..ed8e50832a 100644 --- a/include/configs/gw_ventana.h +++ b/include/configs/gw_ventana.h @@ -26,9 +26,6 @@ #define CONFIG_MACH_TYPE 4520 /* Gateworks Ventana Platform */ -/* Serial ATAG */ -#define CONFIG_SERIAL_TAG - /* Serial */ #define CONFIG_MXC_UART_BASE UART2_BASE diff --git a/include/configs/imx8ulp_evk.h b/include/configs/imx8ulp_evk.h index 1621b047d7..8e9a159e9b 100644 --- a/include/configs/imx8ulp_evk.h +++ b/include/configs/imx8ulp_evk.h @@ -33,8 +33,6 @@ #endif -#define CONFIG_SERIAL_TAG - #define CONFIG_REMAKE_ELF #define CONFIG_BOARD_EARLY_INIT_F diff --git a/include/configs/puma_rk3399.h b/include/configs/puma_rk3399.h index f52ea014b5..23de326e72 100644 --- a/include/configs/puma_rk3399.h +++ b/include/configs/puma_rk3399.h @@ -10,6 +10,4 @@ #define SDRAM_BANK_SIZE (2UL << 30) -#define CONFIG_SERIAL_TAG - #endif diff --git a/include/configs/warp7.h b/include/configs/warp7.h index bb9ba373eb..0822eaf555 100644 --- a/include/configs/warp7.h +++ b/include/configs/warp7.h @@ -18,9 +18,6 @@ #define CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE #define CONFIG_SYS_MMC_IMG_LOAD_PART 1 -/* Switch on SERIAL_TAG */ -#define CONFIG_SERIAL_TAG - #define CONFIG_DFU_ENV_SETTINGS \ "dfu_alt_info=boot raw 0x2 0x1000 mmcpart 1\0" \ |