Message ID | f55c37d9-b551-2506-7f49-080872680a01@denx.de |
---|---|
State | New |
Headers | show |
Series | U-Boot: wandboard ethernet problem with newest mainline | expand |
Hi Heiko, On Wed, Jan 8, 2020 at 8:45 AM Heiko Schocher <hs at denx.de> wrote: > On my board is_mx6dl() is true! but it is a revision D1 ... ? > It has definitely a pmic at 0x08 I think we need to import the imx6dl-wandboard-d1.dts from kernel to U-Boot and fix the board_fit_config_name_match() logic to take the imx6dl-wandboard-d1 into account. We will need to use is_revd1() inside board_fit_config_name_match() to fix the detection logic. Could you try that? Thanks
Hi Heiko, On Wed, Jan 8, 2020 at 8:45 AM Heiko Schocher <hs at denx.de> wrote: > diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig > index ca564c5..62b013c 100644 > --- a/configs/wandboard_defconfig > +++ b/configs/wandboard_defconfig > @@ -42,8 +42,8 @@ CONFIG_CMD_BMP=y > CONFIG_CMD_CACHE=y > CONFIG_CMD_EXT4_WRITE=y > CONFIG_OF_CONTROL=y > -CONFIG_DEFAULT_DEVICE_TREE="imx6dl-wandboard-revb1" > -CONFIG_OF_LIST="imx6q-wandboard-revb1 imx6qp-wandboard-revd1 imx6dl-wandboard-revb1" > +CONFIG_DEFAULT_DEVICE_TREE="imx6qp-wandboard-revd1" > +CONFIG_OF_LIST="imx6qp-wandboard-revd1" Here you mark only the imx6qp board, but yours is a imx6dl, so that's why the U-Boot console did not show up :-)
diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig index ca564c5..62b013c 100644 --- a/configs/wandboard_defconfig +++ b/configs/wandboard_defconfig @@ -42,8 +42,8 @@ CONFIG_CMD_BMP=y CONFIG_CMD_CACHE=y CONFIG_CMD_EXT4_WRITE=y CONFIG_OF_CONTROL=y -CONFIG_DEFAULT_DEVICE_TREE="imx6dl-wandboard-revb1" -CONFIG_OF_LIST="imx6q-wandboard-revb1 imx6qp-wandboard-revd1 imx6dl-wandboard-revb1" +CONFIG_DEFAULT_DEVICE_TREE="imx6qp-wandboard-revd1" +CONFIG_OF_LIST="imx6qp-wandboard-revd1" CONFIG_MULTI_DTB_FIT=y CONFIG_ENV_IS_IN_MMC=y CONFIG_SYS_RELOC_GD_ENV_ADDR=y