mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 04:46:01 +01:00
board: ti: j721e: Disable probing of daughtercards
j721e-sk doesn't have any daughter cards, so disable daughter card probing inside board_late_init() and spl_board_init() for j721e-sk. Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
This commit is contained in:
parent
dfb2429ff4
commit
ee59fa45c8
@ -466,6 +466,7 @@ int board_late_init(void)
|
|||||||
setup_serial();
|
setup_serial();
|
||||||
|
|
||||||
/* Check for and probe any plugged-in daughtercards */
|
/* Check for and probe any plugged-in daughtercards */
|
||||||
|
if (board_is_j721e_som() || board_is_j7200_som())
|
||||||
probe_daughtercards();
|
probe_daughtercards();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -488,8 +489,10 @@ void spl_board_init(void)
|
|||||||
|
|
||||||
if ((IS_ENABLED(CONFIG_TARGET_J721E_A72_EVM) ||
|
if ((IS_ENABLED(CONFIG_TARGET_J721E_A72_EVM) ||
|
||||||
IS_ENABLED(CONFIG_TARGET_J7200_A72_EVM)) &&
|
IS_ENABLED(CONFIG_TARGET_J7200_A72_EVM)) &&
|
||||||
IS_ENABLED(CONFIG_TI_I2C_BOARD_DETECT))
|
IS_ENABLED(CONFIG_TI_I2C_BOARD_DETECT)) {
|
||||||
|
if (!board_is_j721e_sk())
|
||||||
probe_daughtercards();
|
probe_daughtercards();
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_ESM_K3
|
#ifdef CONFIG_ESM_K3
|
||||||
if (board_ti_k3_is("J721EX-PM2-SOM")) {
|
if (board_ti_k3_is("J721EX-PM2-SOM")) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user