diff options
author | Tom Rini | 2018-03-20 18:39:27 -0400 |
---|---|---|
committer | Tom Rini | 2018-03-20 18:39:27 -0400 |
commit | 9c0e2f6ed391f199ba1bf30c7d0b71123a012958 (patch) | |
tree | 125e5816f8b9f8f3502d57f5f7df1272e223de3f /board | |
parent | da773532cde226b5456b89096a1be446887c7a3e (diff) | |
parent | 3386c73d46fa4624a6bec00f304261f9fe814299 (diff) |
Merge git://git.denx.de/u-boot-fsl-qoriq
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/ls1088a/MAINTAINERS | 2 | ||||
-rw-r--r-- | board/freescale/ls1088a/ls1088a.c | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/board/freescale/ls1088a/MAINTAINERS b/board/freescale/ls1088a/MAINTAINERS index 371e5db9ad9..4d804d94471 100644 --- a/board/freescale/ls1088a/MAINTAINERS +++ b/board/freescale/ls1088a/MAINTAINERS @@ -15,6 +15,8 @@ F: board/freescale/ls1088a/ F: include/configs/ls1088aqds.h F: configs/ls1088aqds_qspi_defconfig F: configs/ls1088aqds_sdcard_qspi_defconfig +F: configs/ls1088aqds_defconfig +F: configs/ls1088aqds_sdcard_ifc_defconfig LS1088AQDS_QSPI_SECURE_BOOT BOARD M: Udit Agarwal <udit.agarwal@nxp.com> diff --git a/board/freescale/ls1088a/ls1088a.c b/board/freescale/ls1088a/ls1088a.c index 56e454ff203..a5fa0509910 100644 --- a/board/freescale/ls1088a/ls1088a.c +++ b/board/freescale/ls1088a/ls1088a.c @@ -31,6 +31,9 @@ DECLARE_GLOBAL_DATA_PTR; int board_early_init_f(void) { +#if defined(CONFIG_SYS_I2C_EARLY_INIT) && defined(CONFIG_TARGET_LS1088AQDS) + i2c_early_init_f(); +#endif fsl_lsch3_early_init_f(); return 0; } @@ -168,6 +171,7 @@ int checkboard(void) return 0; } +#endif bool if_board_diff_clk(void) { @@ -221,7 +225,6 @@ unsigned long get_board_ddr_clk(void) return 66666666; } -#endif int select_i2c_ch_pca9547(u8 ch) { |