* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
@ 2020-04-17 0:10 Fabio Estevam
2020-04-17 0:10 ` [PATCH 2/5] pmic: pfuze100: Change error message level to debug Fabio Estevam
` (4 more replies)
0 siblings, 5 replies; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:10 UTC (permalink / raw)
To: u-boot
The detection of the revD1 version is based on the presence of the PMIC.
Currently revb1 device trees are used for mx6q/mx6dl variants, which
do not have the PMIC nodes.
This causes revD1 boards to be incorrectly be detected as revB1.
Use the revd1 device trees, so that the PMIC node can be found and
then the PMIC can be detected by reading its register ID.
Reported-by: Heiko Schocher <hs@denx.de>
Reported-by: Derek Atkins <derek@ihtfp.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Hi Heiko,
Could you please try this on your mx6dl wandboard revD1 board?
I recall you reported this issue sometime ago.
Derek tested this on his mx6q wandboard revD1 board and it worked
fine.
I have also tested it on a revB1 and the version is properly
detected.
Thanks
arch/arm/dts/Makefile | 4 ++--
...{imx6dl-wandboard-revb1.dts => imx6dl-wandboard-revd1.dts} | 4 ++--
.../{imx6q-wandboard-revb1.dts => imx6q-wandboard-revd1.dts} | 4 ++--
configs/wandboard_defconfig | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
rename arch/arm/dts/{imx6dl-wandboard-revb1.dts => imx6dl-wandboard-revd1.dts} (78%)
rename arch/arm/dts/{imx6q-wandboard-revb1.dts => imx6q-wandboard-revd1.dts} (80%)
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 820ee9733a..2a71917c92 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -622,7 +622,7 @@ dtb-y += \
imx6dl-pico.dtb \
imx6dl-sabreauto.dtb \
imx6dl-sabresd.dtb \
- imx6dl-wandboard-revb1.dtb \
+ imx6dl-wandboard-revd1.dtb \
endif
@@ -654,7 +654,7 @@ dtb-y += \
imx6q-sabrelite.dtb \
imx6q-sabresd.dtb \
imx6q-tbs2910.dtb \
- imx6q-wandboard-revb1.dtb \
+ imx6q-wandboard-revd1.dtb \
imx6qp-sabreauto.dtb \
imx6qp-sabresd.dtb \
imx6qp-wandboard-revd1.dtb \
diff --git a/arch/arm/dts/imx6dl-wandboard-revb1.dts b/arch/arm/dts/imx6dl-wandboard-revd1.dts
similarity index 78%
rename from arch/arm/dts/imx6dl-wandboard-revb1.dts
rename to arch/arm/dts/imx6dl-wandboard-revd1.dts
index c2946fbaa0..6d1d863c2e 100644
--- a/arch/arm/dts/imx6dl-wandboard-revb1.dts
+++ b/arch/arm/dts/imx6dl-wandboard-revd1.dts
@@ -6,10 +6,10 @@
*/
/dts-v1/;
#include "imx6dl.dtsi"
-#include "imx6qdl-wandboard-revb1.dtsi"
+#include "imx6qdl-wandboard-revd1.dtsi"
/ {
- model = "Wandboard i.MX6 Dual Lite Board rev B1";
+ model = "Wandboard i.MX6 Dual Lite Board revD1";
compatible = "wand,imx6dl-wandboard", "fsl,imx6dl";
memory at 10000000 {
diff --git a/arch/arm/dts/imx6q-wandboard-revb1.dts b/arch/arm/dts/imx6q-wandboard-revd1.dts
similarity index 80%
rename from arch/arm/dts/imx6q-wandboard-revb1.dts
rename to arch/arm/dts/imx6q-wandboard-revd1.dts
index f6ccbecff9..55331021d8 100644
--- a/arch/arm/dts/imx6q-wandboard-revb1.dts
+++ b/arch/arm/dts/imx6q-wandboard-revd1.dts
@@ -6,10 +6,10 @@
*/
/dts-v1/;
#include "imx6q.dtsi"
-#include "imx6qdl-wandboard-revb1.dtsi"
+#include "imx6qdl-wandboard-revd1.dtsi"
/ {
- model = "Wandboard i.MX6 Quad Board rev B1";
+ model = "Wandboard i.MX6 Quad Board revD1";
compatible = "wand,imx6q-wandboard", "fsl,imx6q";
memory at 10000000 {
diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig
index 82e517b90f..ee70758f3a 100644
--- a/configs/wandboard_defconfig
+++ b/configs/wandboard_defconfig
@@ -46,8 +46,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="imx6dl-wandboard-revd1"
+CONFIG_OF_LIST="imx6q-wandboard-revd1 imx6qp-wandboard-revd1 imx6dl-wandboard-revd1"
CONFIG_MULTI_DTB_FIT=y
CONFIG_ENV_IS_IN_MMC=y
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
--
2.17.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 2/5] pmic: pfuze100: Change error message level to debug
2020-04-17 0:10 [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
@ 2020-04-17 0:10 ` Fabio Estevam
2020-04-17 0:10 ` [PATCH v3 2/2] wandboard: Remove repeated PMIC string Fabio Estevam
` (3 subsequent siblings)
4 siblings, 0 replies; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:10 UTC (permalink / raw)
To: u-boot
On systems that can run on multiple board variants, such as wandboard,
which versions with and without the PMIC populated, it is not useful
to get PMIC error on systems that do not have the PMIC populated.
Change error message level to debug instead.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
drivers/power/pmic/pfuze100.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/power/pmic/pfuze100.c b/drivers/power/pmic/pfuze100.c
index 6cf5f35f0f..db630f3ad0 100644
--- a/drivers/power/pmic/pfuze100.c
+++ b/drivers/power/pmic/pfuze100.c
@@ -41,7 +41,7 @@ static int pfuze100_write(struct udevice *dev, uint reg, const uint8_t *buff,
static int pfuze100_read(struct udevice *dev, uint reg, uint8_t *buff, int len)
{
if (dm_i2c_read(dev, reg, buff, len)) {
- pr_err("read error from device: %p register: %#x!\n", dev, reg);
+ debug("read error from device: %p register: %#x!\n", dev, reg);
return -EIO;
}
--
2.17.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v3 2/2] wandboard: Remove repeated PMIC string
2020-04-17 0:10 [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
2020-04-17 0:10 ` [PATCH 2/5] pmic: pfuze100: Change error message level to debug Fabio Estevam
@ 2020-04-17 0:10 ` Fabio Estevam
2020-04-17 0:10 ` [PATCH 4/5] wandboard: Remove CONFIG_DISPLAY_BOARDINFO_LATE Fabio Estevam
` (2 subsequent siblings)
4 siblings, 0 replies; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:10 UTC (permalink / raw)
To: u-boot
After the conversion to DM_PMIC the following output is seen:
PMIC: PMIC: PFUZE100 ID=0x10
Remove the unnecessary PMIC string from the board file to
avoid the repetead string.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Changes since v2:
- None
board/wandboard/wandboard.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c
index 7209cc8211..e386ad2cc1 100644
--- a/board/wandboard/wandboard.c
+++ b/board/wandboard/wandboard.c
@@ -361,8 +361,6 @@ int power_init_board(void)
struct udevice *dev;
int reg, ret;
- puts("PMIC: ");
-
ret = pmic_get("pfuze100 at 8", &dev);
if (ret < 0) {
printf("pmic_get() ret %d\n", ret);
--
2.17.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 4/5] wandboard: Remove CONFIG_DISPLAY_BOARDINFO_LATE
2020-04-17 0:10 [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
2020-04-17 0:10 ` [PATCH 2/5] pmic: pfuze100: Change error message level to debug Fabio Estevam
2020-04-17 0:10 ` [PATCH v3 2/2] wandboard: Remove repeated PMIC string Fabio Estevam
@ 2020-04-17 0:10 ` Fabio Estevam
2020-04-17 0:10 ` [PATCH 5/5] wandboard: Remove checkboard() Fabio Estevam
2020-04-17 0:14 ` [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
4 siblings, 0 replies; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:10 UTC (permalink / raw)
To: u-boot
Since we are using revD1 device tree for all board revisions, the
following can be seen on a revB1 board:
Model: Wandboard i.MX6 Quad Board revD1
Board: Wandboard rev B1
To avoid such confusing messages, disable CONFIG_DISPLAY_BOARDINFO_LATE.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
configs/wandboard_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig
index ee70758f3a..f9a5fe479b 100644
--- a/configs/wandboard_defconfig
+++ b/configs/wandboard_defconfig
@@ -29,7 +29,6 @@ CONFIG_BOOTCOMMAND="run findfdt; run finduuid; run distro_bootcmd"
CONFIG_SYS_CONSOLE_IS_IN_ENV=y
CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE=y
# CONFIG_DISPLAY_BOARDINFO is not set
-CONFIG_DISPLAY_BOARDINFO_LATE=y
CONFIG_BOUNCE_BUFFER=y
CONFIG_BOARD_EARLY_INIT_F=y
CONFIG_SPL_SEPARATE_BSS=y
--
2.17.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 5/5] wandboard: Remove checkboard()
2020-04-17 0:10 [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
` (2 preceding siblings ...)
2020-04-17 0:10 ` [PATCH 4/5] wandboard: Remove CONFIG_DISPLAY_BOARDINFO_LATE Fabio Estevam
@ 2020-04-17 0:10 ` Fabio Estevam
2020-04-17 0:14 ` [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
4 siblings, 0 replies; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:10 UTC (permalink / raw)
To: u-boot
Since the variant revision is no longer show, simply get rid
of checkboard().
Move the gpio_request() prior to its usage.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
board/wandboard/wandboard.c | 15 +--------------
1 file changed, 1 insertion(+), 14 deletions(-)
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c
index df454d8f17..bb1ffd87e1 100644
--- a/board/wandboard/wandboard.c
+++ b/board/wandboard/wandboard.c
@@ -404,6 +404,7 @@ static const struct boot_mode board_boot_modes[] = {
static bool is_revc1(void)
{
SETUP_IOMUX_PADS(rev_detection_pad);
+ gpio_request(REV_DETECTION, "REV_DETECT");
gpio_direction_input(REV_DETECTION);
if (gpio_get_value(REV_DETECTION))
@@ -466,20 +467,6 @@ int board_init(void)
return 0;
}
-int checkboard(void)
-{
- gpio_request(REV_DETECTION, "REV_DETECT");
-
- if (is_revd1())
- puts("Board: Wandboard rev D1\n");
- else if (is_revc1())
- puts("Board: Wandboard rev C1\n");
- else
- puts("Board: Wandboard rev B1\n");
-
- return 0;
-}
-
#ifdef CONFIG_SPL_LOAD_FIT
int board_fit_config_name_match(const char *name)
{
--
2.17.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
@ 2020-04-17 0:12 Fabio Estevam
2020-04-17 7:56 ` Heiko Schocher
0 siblings, 1 reply; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:12 UTC (permalink / raw)
To: u-boot
The detection of the revD1 version is based on the presence of the PMIC.
Currently revb1 device trees are used for mx6q/mx6dl variants, which
do not have the PMIC nodes.
This causes revD1 boards to be incorrectly be detected as revB1.
Use the revd1 device trees, so that the PMIC node can be found and
then the PMIC can be detected by reading its register ID.
Reported-by: Heiko Schocher <hs@denx.de>
Reported-by: Derek Atkins <derek@ihtfp.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Hi Heiko,
Could you please try this on your mx6dl wandboard revD1 board?
I recall you reported this issue sometime ago.
Derek tested this on his mx6q wandboard revD1 board and it worked
fine.
I have also tested it on a revB1 and the version is properly
detected.
Thanks
arch/arm/dts/Makefile | 4 ++--
...{imx6dl-wandboard-revb1.dts => imx6dl-wandboard-revd1.dts} | 4 ++--
.../{imx6q-wandboard-revb1.dts => imx6q-wandboard-revd1.dts} | 4 ++--
configs/wandboard_defconfig | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
rename arch/arm/dts/{imx6dl-wandboard-revb1.dts => imx6dl-wandboard-revd1.dts} (78%)
rename arch/arm/dts/{imx6q-wandboard-revb1.dts => imx6q-wandboard-revd1.dts} (80%)
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 820ee9733a..2a71917c92 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -622,7 +622,7 @@ dtb-y += \
imx6dl-pico.dtb \
imx6dl-sabreauto.dtb \
imx6dl-sabresd.dtb \
- imx6dl-wandboard-revb1.dtb \
+ imx6dl-wandboard-revd1.dtb \
endif
@@ -654,7 +654,7 @@ dtb-y += \
imx6q-sabrelite.dtb \
imx6q-sabresd.dtb \
imx6q-tbs2910.dtb \
- imx6q-wandboard-revb1.dtb \
+ imx6q-wandboard-revd1.dtb \
imx6qp-sabreauto.dtb \
imx6qp-sabresd.dtb \
imx6qp-wandboard-revd1.dtb \
diff --git a/arch/arm/dts/imx6dl-wandboard-revb1.dts b/arch/arm/dts/imx6dl-wandboard-revd1.dts
similarity index 78%
rename from arch/arm/dts/imx6dl-wandboard-revb1.dts
rename to arch/arm/dts/imx6dl-wandboard-revd1.dts
index c2946fbaa0..6d1d863c2e 100644
--- a/arch/arm/dts/imx6dl-wandboard-revb1.dts
+++ b/arch/arm/dts/imx6dl-wandboard-revd1.dts
@@ -6,10 +6,10 @@
*/
/dts-v1/;
#include "imx6dl.dtsi"
-#include "imx6qdl-wandboard-revb1.dtsi"
+#include "imx6qdl-wandboard-revd1.dtsi"
/ {
- model = "Wandboard i.MX6 Dual Lite Board rev B1";
+ model = "Wandboard i.MX6 Dual Lite Board revD1";
compatible = "wand,imx6dl-wandboard", "fsl,imx6dl";
memory at 10000000 {
diff --git a/arch/arm/dts/imx6q-wandboard-revb1.dts b/arch/arm/dts/imx6q-wandboard-revd1.dts
similarity index 80%
rename from arch/arm/dts/imx6q-wandboard-revb1.dts
rename to arch/arm/dts/imx6q-wandboard-revd1.dts
index f6ccbecff9..55331021d8 100644
--- a/arch/arm/dts/imx6q-wandboard-revb1.dts
+++ b/arch/arm/dts/imx6q-wandboard-revd1.dts
@@ -6,10 +6,10 @@
*/
/dts-v1/;
#include "imx6q.dtsi"
-#include "imx6qdl-wandboard-revb1.dtsi"
+#include "imx6qdl-wandboard-revd1.dtsi"
/ {
- model = "Wandboard i.MX6 Quad Board rev B1";
+ model = "Wandboard i.MX6 Quad Board revD1";
compatible = "wand,imx6q-wandboard", "fsl,imx6q";
memory at 10000000 {
diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig
index 82e517b90f..ee70758f3a 100644
--- a/configs/wandboard_defconfig
+++ b/configs/wandboard_defconfig
@@ -46,8 +46,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="imx6dl-wandboard-revd1"
+CONFIG_OF_LIST="imx6q-wandboard-revd1 imx6qp-wandboard-revd1 imx6dl-wandboard-revd1"
CONFIG_MULTI_DTB_FIT=y
CONFIG_ENV_IS_IN_MMC=y
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
--
2.17.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 0:10 [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
` (3 preceding siblings ...)
2020-04-17 0:10 ` [PATCH 5/5] wandboard: Remove checkboard() Fabio Estevam
@ 2020-04-17 0:14 ` Fabio Estevam
4 siblings, 0 replies; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 0:14 UTC (permalink / raw)
To: u-boot
Sorry for sending this twice.
The first submission had the wrong patch 3/5.
On Thu, Apr 16, 2020 at 9:10 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> The detection of the revD1 version is based on the presence of the PMIC.
>
> Currently revb1 device trees are used for mx6q/mx6dl variants, which
> do not have the PMIC nodes.
>
> This causes revD1 boards to be incorrectly be detected as revB1.
>
> Use the revd1 device trees, so that the PMIC node can be found and
> then the PMIC can be detected by reading its register ID.
>
> Reported-by: Heiko Schocher <hs@denx.de>
> Reported-by: Derek Atkins <derek@ihtfp.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
> Hi Heiko,
>
> Could you please try this on your mx6dl wandboard revD1 board?
>
> I recall you reported this issue sometime ago.
>
> Derek tested this on his mx6q wandboard revD1 board and it worked
> fine.
>
> I have also tested it on a revB1 and the version is properly
> detected.
>
> Thanks
>
> arch/arm/dts/Makefile | 4 ++--
> ...{imx6dl-wandboard-revb1.dts => imx6dl-wandboard-revd1.dts} | 4 ++--
> .../{imx6q-wandboard-revb1.dts => imx6q-wandboard-revd1.dts} | 4 ++--
> configs/wandboard_defconfig | 4 ++--
> 4 files changed, 8 insertions(+), 8 deletions(-)
> rename arch/arm/dts/{imx6dl-wandboard-revb1.dts => imx6dl-wandboard-revd1.dts} (78%)
> rename arch/arm/dts/{imx6q-wandboard-revb1.dts => imx6q-wandboard-revd1.dts} (80%)
>
> diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
> index 820ee9733a..2a71917c92 100644
> --- a/arch/arm/dts/Makefile
> +++ b/arch/arm/dts/Makefile
> @@ -622,7 +622,7 @@ dtb-y += \
> imx6dl-pico.dtb \
> imx6dl-sabreauto.dtb \
> imx6dl-sabresd.dtb \
> - imx6dl-wandboard-revb1.dtb \
> + imx6dl-wandboard-revd1.dtb \
>
> endif
>
> @@ -654,7 +654,7 @@ dtb-y += \
> imx6q-sabrelite.dtb \
> imx6q-sabresd.dtb \
> imx6q-tbs2910.dtb \
> - imx6q-wandboard-revb1.dtb \
> + imx6q-wandboard-revd1.dtb \
> imx6qp-sabreauto.dtb \
> imx6qp-sabresd.dtb \
> imx6qp-wandboard-revd1.dtb \
> diff --git a/arch/arm/dts/imx6dl-wandboard-revb1.dts b/arch/arm/dts/imx6dl-wandboard-revd1.dts
> similarity index 78%
> rename from arch/arm/dts/imx6dl-wandboard-revb1.dts
> rename to arch/arm/dts/imx6dl-wandboard-revd1.dts
> index c2946fbaa0..6d1d863c2e 100644
> --- a/arch/arm/dts/imx6dl-wandboard-revb1.dts
> +++ b/arch/arm/dts/imx6dl-wandboard-revd1.dts
> @@ -6,10 +6,10 @@
> */
> /dts-v1/;
> #include "imx6dl.dtsi"
> -#include "imx6qdl-wandboard-revb1.dtsi"
> +#include "imx6qdl-wandboard-revd1.dtsi"
>
> / {
> - model = "Wandboard i.MX6 Dual Lite Board rev B1";
> + model = "Wandboard i.MX6 Dual Lite Board revD1";
> compatible = "wand,imx6dl-wandboard", "fsl,imx6dl";
>
> memory at 10000000 {
> diff --git a/arch/arm/dts/imx6q-wandboard-revb1.dts b/arch/arm/dts/imx6q-wandboard-revd1.dts
> similarity index 80%
> rename from arch/arm/dts/imx6q-wandboard-revb1.dts
> rename to arch/arm/dts/imx6q-wandboard-revd1.dts
> index f6ccbecff9..55331021d8 100644
> --- a/arch/arm/dts/imx6q-wandboard-revb1.dts
> +++ b/arch/arm/dts/imx6q-wandboard-revd1.dts
> @@ -6,10 +6,10 @@
> */
> /dts-v1/;
> #include "imx6q.dtsi"
> -#include "imx6qdl-wandboard-revb1.dtsi"
> +#include "imx6qdl-wandboard-revd1.dtsi"
>
> / {
> - model = "Wandboard i.MX6 Quad Board rev B1";
> + model = "Wandboard i.MX6 Quad Board revD1";
> compatible = "wand,imx6q-wandboard", "fsl,imx6q";
>
> memory at 10000000 {
> diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig
> index 82e517b90f..ee70758f3a 100644
> --- a/configs/wandboard_defconfig
> +++ b/configs/wandboard_defconfig
> @@ -46,8 +46,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="imx6dl-wandboard-revd1"
> +CONFIG_OF_LIST="imx6q-wandboard-revd1 imx6qp-wandboard-revd1 imx6dl-wandboard-revd1"
> CONFIG_MULTI_DTB_FIT=y
> CONFIG_ENV_IS_IN_MMC=y
> CONFIG_SYS_RELOC_GD_ENV_ADDR=y
> --
> 2.17.1
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 0:12 Fabio Estevam
@ 2020-04-17 7:56 ` Heiko Schocher
2020-04-17 11:15 ` Fabio Estevam
0 siblings, 1 reply; 15+ messages in thread
From: Heiko Schocher @ 2020-04-17 7:56 UTC (permalink / raw)
To: u-boot
Hello Fabio,
Am 17.04.2020 um 02:12 schrieb Fabio Estevam:
> The detection of the revD1 version is based on the presence of the PMIC.
>
> Currently revb1 device trees are used for mx6q/mx6dl variants, which
> do not have the PMIC nodes.
>
> This causes revD1 boards to be incorrectly be detected as revB1.
>
> Use the revd1 device trees, so that the PMIC node can be found and
> then the PMIC can be detected by reading its register ID.
>
> Reported-by: Heiko Schocher <hs@denx.de>
> Reported-by: Derek Atkins <derek@ihtfp.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
> Hi Heiko,
>
> Could you please try this on your mx6dl wandboard revD1 board?
>
> I recall you reported this issue sometime ago.
>
> Derek tested this on his mx6q wandboard revD1 board and it worked
> fine.
>
> I have also tested it on a revB1 and the version is properly
> detected.
Thanks for your work (and Sorry, that I did not find the time to
cleanup our discussed patches...)
Hmm... I installed current mainline with your patchset on my board:
hs at lab-1:tbot-tbot2go [wandboard-devel-messe] $ kermit /home/hs/kermrc_wandboard
Connecting to /dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller_D-if00-port0,
speed 115200
Escape character: Ctrl-\ (ASCII 28, FS): enabled
Type the escape character followed by C to get back,
or followed by ? to see other options.
----------------------------------------------------
U-Boot SPL 2020.04-tbot-00375-g91cd7bda0c (Apr 17 2020 - 09:29:09 +0200)
Trying to boot from MMC1
U-Boot 2020.04-tbot-00375-g91cd7bda0c (Apr 17 2020 - 09:29:09 +0200)
CPU: Freescale i.MX6DL rev1.3 at 792 MHz
Reset cause: POR
DRAM: 1 GiB
PMIC: PFUZE100 ID=0x10
MMC: [ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.20.3-jumpnow (oe-user at oe-host) (gcc version 8.2.0 (GCC)) #1 SMP Fri
Jan 18 17:29:07 UTC 2019
[ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction
So it seems, output on console gets somehow lost, but bootcount counts down
and loads linux ... may I missed something?
So, for reference I attached my tbot log, for building u-boot...
I try to find time to look into...
bye,
Heiko
hs at lab-1:tbot-tbot2go [wandboard-devel-messe] $ tbot @argswandboardlab1 wandboard_ub_build
tbot starting ...
??Flags:
? 'lab-1-build'
??Calling wandboard_ub_build ...
? ??[local] ssh -o BatchMode=yes -i /home/hs/.ssh/id_rsa -p 22 hs at 192.168.1.109
? ??[lab1] rm -rf /work/hs/tbot-workdir/uboot-wandboard-builder
? ??Calling uboot_build ...
? ? ??Calling uboot_checkout ...
? ? ? ??Builder: wandboard-builder
? ? ? ??[lab1] mkdir -p /work/hs/tbot-workdir
? ? ? ??[lab1] test -d /work/hs/tbot-workdir/uboot-wandboard-builder/.git
? ? ? ??[lab1] mkdir -p /work/hs/tbot-workdir/uboot-wandboard-builder
? ? ? ??[lab1] git clone /home/hs/data/Entwicklung/sources/u-boot
/work/hs/tbot-workdir/uboot-wandboard-builder
? ? ? ? ## Klone nach '/work/hs/tbot-workdir/uboot-wandboard-builder' ...
? ? ? ? ## Fertig.
? ? ? ? ## Aktualisiere Dateien: 100% (16616/16616), Fertig.
? ? ? ??[lab1] git -C /work/hs/tbot-workdir/uboot-wandboard-builder checkout master
? ? ? ? ## Bereits auf 'master'
? ? ? ? ## Ihr Branch ist auf demselben Stand wie 'origin/master'.
? ? ? ??Calling am ...
? ? ? ? ??[lab1] test -d
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio
? ? ? ? ??[lab1] find
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio -name '*.patch'
? ? ? ? ? ##
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0003.patch
? ? ? ? ? ##
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0005.patch
? ? ? ? ? ##
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0001.patch
? ? ? ? ? ##
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0004.patch
? ? ? ? ? ##
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0002.patch
? ? ? ? ??Calling am ...
? ? ? ? ? ??[lab1] test -d
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0001.patch
? ? ? ? ? ??[lab1] git -C /work/hs/tbot-workdir/uboot-wandboard-builder am -3
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0001.patch
? ? ? ? ? ? ## Wende an: wandboard: Fix detection for mx6q/mx6dl revD1 revariants
? ? ? ? ? ??Done. (0.132s)
? ? ? ? ??Calling am ...
? ? ? ? ? ??[lab1] test -d
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0002.patch
? ? ? ? ? ??[lab1] git -C /work/hs/tbot-workdir/uboot-wandboard-builder am -3
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0002.patch
? ? ? ? ? ? ## Wende an: pmic: pfuze100: Change error message level to debug
? ? ? ? ? ??Done. (0.144s)
? ? ? ? ??Calling am ...
? ? ? ? ? ??[lab1] test -d
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0003.patch
? ? ? ? ? ??[lab1] git -C /work/hs/tbot-workdir/uboot-wandboard-builder am -3
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0003.patch
? ? ? ? ? ? ## Wende an: wandboard: Do not print error when PMIC is not present
? ? ? ? ? ??Done. (0.156s)
? ? ? ? ??Calling am ...
? ? ? ? ? ??[lab1] test -d
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0004.patch
? ? ? ? ? ??[lab1] git -C /work/hs/tbot-workdir/uboot-wandboard-builder am -3
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0004.patch
? ? ? ? ? ? ## Wende an: wandboard: Remove CONFIG_DISPLAY_BOARDINFO_LATE
? ? ? ? ? ??Done. (0.120s)
? ? ? ? ??Calling am ...
? ? ? ? ? ??[lab1] test -d
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0005.patch
? ? ? ? ? ??[lab1] git -C /work/hs/tbot-workdir/uboot-wandboard-builder am -3
/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/tc/wandboard/patches/fabio/0005.patch
? ? ? ? ? ? ## Wende an: wandboard: Remove checkboard()
? ? ? ? ? ??Done. (0.121s)
? ? ? ? ??Done. (0.679s)
? ? ? ??Done. (2.304s)
? ? ??[lab1] bash --norc --noprofile
? ? ??[lab1] test -e /work/hs/tbot-workdir/toolchain
? ? ??[lab1] mkdir -p /work/hs/tbot-workdir/toolchain
? ? ??[lab1] cd /work/hs/tbot-workdir/toolchain
? ? ??[lab1] pwd
? ? ? ## /work/hs/tbot-workdir/toolchain
? ? ??[lab1] test -d
/work/hs/tbot-workdir/toolchain/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi/bin
? ? ??[lab1] wget
https://releases.linaro.org/components/toolchain/binaries/7.3-2018.05/arm-linux-gnueabi/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz
? ? ? ## --2020-04-17 09:50:02--
https://releases.linaro.org/components/toolchain/binaries/7.3-2018.05/arm-linux-gnueabi/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz
? ? ? ## Aufl?sen des Hostnamens releases.linaro.org (releases.linaro.org)? 52.215.200.125
? ? ? ## Verbindungsaufbau zu releases.linaro.org (releases.linaro.org)|52.215.200.125|:443 ?
verbunden.
? ? ? ## HTTP-Anforderung gesendet, auf Antwort wird gewartet ? 302 Found
? ? ? ## Platz:
https://publishing-ie-linaro-org.s3.amazonaws.com/releases/components/toolchain/binaries/7.3-2018.05/arm-linux-gnueabi/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz?Signature=rLaDAvhQy1ll8%2FsueKIvVAOMDqA%3D&Expires=1587109893&AWSAccessKeyId=AKIAIELXV2RYNAHFUP7A
[folgend]
? ? ? ## --2020-04-17 09:50:03--
https://publishing-ie-linaro-org.s3.amazonaws.com/releases/components/toolchain/binaries/7.3-2018.05/arm-linux-gnueabi/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz?Signature=rLaDAvhQy1ll8%2FsueKIvVAOMDqA%3D&Expires=1587109893&AWSAccessKeyId=AKIAIELXV2RYNAHFUP7A
? ? ? ## Aufl?sen des Hostnamens publishing-ie-linaro-org.s3.amazonaws.com
(publishing-ie-linaro-org.s3.amazonaws.com)? 52.218.101.90
? ? ? ## Verbindungsaufbau zu publishing-ie-linaro-org.s3.amazonaws.com
(publishing-ie-linaro-org.s3.amazonaws.com)|52.218.101.90|:443 ? verbunden.
? ? ? ## HTTP-Anforderung gesendet, auf Antwort wird gewartet ? 200 OK
? ? ? ## L?nge: 107623128 (103M) [application/octet-stream]
? ? ? ## Wird in ?gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz? gespeichert.
? ? ? ##
? ? ? ## gcc-linaro-7.3.1-2018.05-x86_6
100%[===================================================>] 102,64M 777KB/s in 2m 43s
? ? ? ##
? ? ? ## 2020-04-17 09:52:46 (645 KB/s) -
?gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz? gespeichert [107623128/107623128]
? ? ? ##
? ? ??[lab1] tar -xJf gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi.tar.xz
? ? ??[lab1] cd gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi
? ? ??[lab1] printenv PATH | grep --color=never
/work/hs/tbot-workdir/toolchain/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi/bin
? ? ??[lab1] export
PATH=/work/hs/tbot-workdir/toolchain/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi/bin:$PATH
? ? ??[lab1] printenv PATH
? ? ? ##
/work/hs/tbot-workdir/toolchain/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabi/bin:/home/hs/.local/bin:/home/hs/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin
? ? ??[lab1] export ARCH=arm
? ? ??[lab1] export CROSS_COMPILE=arm-linux-gnueabi-
? ? ??[lab1] printenv ARCH
? ? ? ## arm
? ? ??[lab1] printenv CROSS_COMPILE
? ? ? ## arm-linux-gnueabi-
? ? ??[lab1] cd /work/hs/tbot-workdir/uboot-wandboard-builder
? ? ??Cleaning previous build ...
? ? ??[lab1] make mrproper
? ? ??[lab1] test -e /work/hs/tbot-workdir/uboot-wandboard-builder/.config
? ? ??Configuring build ...
? ? ??[lab1] make wandboard_defconfig
? ? ? ## HOSTCC scripts/basic/fixdep
? ? ? ## HOSTCC scripts/kconfig/conf.o
? ? ? ## YACC scripts/kconfig/zconf.tab.c
? ? ? ## LEX scripts/kconfig/zconf.lex.c
? ? ? ## HOSTCC scripts/kconfig/zconf.tab.o
? ? ? ## HOSTLD scripts/kconfig/conf
? ? ? ## #
? ? ? ## # configuration written to .config
? ? ? ## #
? ? ??Patching U-Boot config ...
? ? ??Calling kconfig_set_value ...
? ? ? ??Setting CONFIG_LOCALVERSION to "-tbot" ...
? ? ? ??[lab1] sed -i '/^\(# \)\?CONFIG_LOCALVERSION\(=".*"\| is not
set\)$/cCONFIG_LOCALVERSION="-tbot"' /work/hs/tbot-workdir/uboot-wandboard-builder/.config
? ? ? ??Done. (0.007s)
? ? ??Calling uboot_make ...
? ? ? ??[lab1] nproc --all
? ? ? ? ## 4
? ? ? ??[lab1] make -j 4 all
? ? ? ? ## scripts/kconfig/conf --syncconfig Kconfig
? ? ? ? ## UPD include/config.h
? ? ? ? ## GEN include/autoconf.mk.dep
? ? ? ? ## CFG u-boot.cfg
? ? ? ? ## CFG spl/u-boot.cfg
? ? ? ? ## GEN spl/include/autoconf.mk
? ? ? ? ## GEN include/autoconf.mk
? ? ? ? ## UPD include/generated/timestamp_autogenerated.h
? ? ? ? ## UPD include/generated/dt.h
? ? ? ? ## UPD include/config/uboot.release
? ? ? ? ## HOSTCC scripts/dtc/dtc.o
? ? ? ? ## HOSTCC scripts/dtc/flattree.o
? ? ? ? ## HOSTCC scripts/dtc/fstree.o
? ? ? ? ## HOSTCC scripts/dtc/data.o
? ? ? ? ## HOSTCC scripts/dtc/livetree.o
? ? ? ? ## HOSTCC scripts/dtc/treesource.o
? ? ? ? ## HOSTCC scripts/dtc/srcpos.o
? ? ? ? ## HOSTCC scripts/dtc/checks.o
? ? ? ? ## HOSTCC scripts/dtc/util.o
? ? ? ? ## LEX scripts/dtc/dtc-lexer.lex.c
? ? ? ? ## YACC scripts/dtc/dtc-parser.tab.h
? ? ? ? ## YACC scripts/dtc/dtc-parser.tab.c
? ? ? ? ## HOSTCC scripts/dtc/dtc-lexer.lex.o
? ? ? ? ## HOSTCC scripts/dtc/dtc-parser.tab.o
? ? ? ? ## UPD include/generated/version_autogenerated.h
? ? ? ? ## CC lib/asm-offsets.s
? ? ? ? ## CC arch/arm/lib/asm-offsets.s
? ? ? ? ## UPD include/generated/generic-asm-offsets.h
? ? ? ? ## UPD include/generated/asm-offsets.h
? ? ? ? ## LDS u-boot.lds
? ? ? ? ## HOSTLD scripts/dtc/dtc
? ? ? ? ## HOSTCC tools/bmp_logo
? ? ? ? ## HOSTCC tools/gen_eth_addr
? ? ? ? ## WRAP tools/lib/crc8.c
? ? ? ? ## HOSTCC tools/gen_ethaddr_crc.o
? ? ? ? ## HOSTCC tools/img2srec
? ? ? ? ## HOSTCC tools/mkenvimage.o
? ? ? ? ## HOSTCC tools/os_support.o
? ? ? ? ## WRAP tools/lib/crc32.c
? ? ? ? ## HOSTCC tools/aisimage.o
? ? ? ? ## HOSTCC tools/atmelimage.o
? ? ? ? ## HOSTCC tools/fit_common.o
? ? ? ? ## HOSTCC tools/fit_image.o
? ? ? ? ## HOSTCC tools/image-host.o
? ? ? ? ## WRAP tools/common/image-fit.c
? ? ? ? ## WRAP tools/common/bootm.c
? ? ? ? ## HOSTCC tools/lib/crc32.o
? ? ? ? ## HOSTCC tools/default_image.o
? ? ? ? ## WRAP tools/lib/fdtdec_common.c
? ? ? ? ## WRAP tools/lib/fdtdec.c
? ? ? ? ## WRAP tools/common/image.c
? ? ? ? ## HOSTCC tools/imagetool.o
? ? ? ? ## HOSTCC tools/imximage.o
? ? ? ? ## HOSTCC tools/imx8image.o
? ? ? ? ## HOSTCC tools/imx8mimage.o
? ? ? ? ## HOSTCC tools/kwbimage.o
? ? ? ? ## WRAP tools/lib/md5.c
? ? ? ? ## HOSTCC tools/lpc32xximage.o
? ? ? ? ## HOSTCC tools/mxsimage.o
? ? ? ? ## HOSTCC tools/omapimage.o
? ? ? ? ## HOSTCC tools/pblimage.o
? ? ? ? ## HOSTCC tools/pbl_crc32.o
? ? ? ? ## HOSTCC tools/vybridimage.o
? ? ? ? ## HOSTCC tools/stm32image.o
? ? ? ? ## WRAP tools/lib/rc4.c
? ? ? ? ## HOSTCC tools/rkcommon.o
? ? ? ? ## HOSTCC tools/rkimage.o
? ? ? ? ## HOSTCC tools/rksd.o
? ? ? ? ## HOSTCC tools/rkspi.o
? ? ? ? ## HOSTCC tools/socfpgaimage.o
? ? ? ? ## WRAP tools/lib/crc16.c
? ? ? ? ## WRAP tools/lib/sha1.c
? ? ? ? ## WRAP tools/lib/sha256.c
? ? ? ? ## WRAP tools/common/hash.c
? ? ? ? ## HOSTCC tools/ublimage.o
? ? ? ? ## HOSTCC tools/zynqimage.o
? ? ? ? ## HOSTCC tools/zynqmpimage.o
? ? ? ? ## HOSTCC tools/zynqmpbif.o
? ? ? ? ## HOSTCC tools/libfdt/fdt.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_wip.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_sw.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_rw.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_strerror.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_empty_tree.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_addresses.o
? ? ? ? ## HOSTCC tools/libfdt/fdt_overlay.o
? ? ? ? ## WRAP tools/lib/libfdt/fdt_ro.c
? ? ? ? ## WRAP tools/lib/libfdt/fdt_region.c
? ? ? ? ## HOSTCC tools/gpimage.o
? ? ? ? ## HOSTCC tools/gpimage-common.o
? ? ? ? ## HOSTCC tools/mtk_image.o
? ? ? ? ## HOSTCC tools/dumpimage.o
? ? ? ? ## HOSTCC tools/common/image-fit.o
? ? ? ? ## HOSTCC tools/common/bootm.o
? ? ? ? ## HOSTCC tools/lib/fdtdec_common.o
? ? ? ? ## HOSTCC tools/lib/fdtdec.o
? ? ? ? ## HOSTCC tools/common/image.o
? ? ? ? ## HOSTCC tools/lib/md5.o
? ? ? ? ## HOSTCC tools/lib/rc4.o
? ? ? ? ## HOSTCC tools/lib/crc16.o
? ? ? ? ## HOSTCC tools/lib/sha1.o
? ? ? ? ## HOSTCC tools/lib/sha256.o
? ? ? ? ## HOSTCC tools/common/hash.o
? ? ? ? ## HOSTCC tools/lib/libfdt/fdt_ro.o
? ? ? ? ## HOSTCC tools/lib/libfdt/fdt_region.o
? ? ? ? ## HOSTCC tools/mkimage.o
? ? ? ? ## HOSTCC tools/proftool
? ? ? ? ## HOSTCC tools/fdtgrep.o
? ? ? ? ## HOSTCC tools/spl_size_limit
? ? ? ? ## tools/bmp_logo --gen-info ./tools/logos/wandboard.bmp > include/bmp_logo.h
? ? ? ? ## tools/bmp_logo --gen-bmp ./tools/logos/wandboard.bmp > include/bmp_logo_data.h
? ? ? ? ## HOSTCC tools/lib/crc8.o
? ? ? ? ## HOSTLD tools/mkenvimage
? ? ? ? ## HOSTLD tools/dumpimage
? ? ? ? ## HOSTLD tools/mkimage
? ? ? ? ## HOSTLD tools/gen_ethaddr_crc
? ? ? ? ## HOSTLD tools/fdtgrep
? ? ? ? ## LD arch/arm/cpu/built-in.o
? ? ? ? ## CC board/wandboard/wandboard.o
? ? ? ? ## CC arch/arm/cpu/armv7/cache_v7.o
? ? ? ? ## AS arch/arm/lib/vectors.o
? ? ? ? ## CC arch/arm/mach-imx/mx6/soc.o
? ? ? ? ## AS arch/arm/lib/crt0.o
? ? ? ? ## AS arch/arm/lib/setjmp.o
? ? ? ? ## AS arch/arm/lib/relocate.o
? ? ? ? ## CC arch/arm/lib/bootm-fdt.o
? ? ? ? ## AS arch/arm/cpu/armv7/cache_v7_asm.o
? ? ? ? ## CC arch/arm/cpu/armv7/cpu.o
? ? ? ? ## CC arch/arm/lib/bootm.o
? ? ? ? ## CC arch/arm/cpu/armv7/cp15.o
? ? ? ? ## CC arch/arm/mach-imx/mx6/clock.o
? ? ? ? ## LD board/wandboard/built-in.o
? ? ? ? ## CC arch/arm/mach-imx/iomux-v3.o
? ? ? ? ## CC arch/arm/cpu/armv7/syslib.o
? ? ? ? ## CC arch/arm/lib/zimage.o
? ? ? ? ## AS arch/arm/cpu/armv7/sctlr.o
? ? ? ? ## AS arch/arm/cpu/armv7/lowlevel_init.o
? ? ? ? ## CC arch/arm/mach-imx/cpu.o
? ? ? ? ## CC arch/arm/lib/cache-pl310.o
? ? ? ? ## AS arch/arm/cpu/armv7/start.o
? ? ? ? ## LD arch/arm/cpu/armv7/built-in.o
? ? ? ? ## AS arch/arm/lib/memset.o
? ? ? ? ## AS arch/arm/lib/memcpy.o
? ? ? ? ## CC arch/arm/lib/sections.o
? ? ? ? ## CC arch/arm/mach-imx/speed.o
? ? ? ? ## CC arch/arm/lib/stack.o
? ? ? ? ## LD cmd/arm/built-in.o
? ? ? ? ## CC cmd/boot.o
? ? ? ? ## CC arch/arm/mach-imx/mx6/mp.o
? ? ? ? ## CC arch/arm/mach-imx/mmdc_size.o
? ? ? ? ## CC arch/arm/lib/interrupts.o
? ? ? ? ## CC cmd/bootm.o
? ? ? ? ## CC arch/arm/mach-imx/timer.o
? ? ? ? ## LD arch/arm/mach-imx/mx6/built-in.o
? ? ? ? ## CC arch/arm/mach-imx/i2c-mxv7.o
? ? ? ? ## CC arch/arm/lib/reset.o
? ? ? ? ## CC cmd/help.o
? ? ? ? ## CC arch/arm/mach-imx/misc.o
? ? ? ? ## CC arch/arm/mach-imx/video.o
? ? ? ? ## CC arch/arm/lib/cache.o
? ? ? ? ## CC cmd/version.o
? ? ? ? ## CC arch/arm/mach-imx/cache.o
? ? ? ? ## CC arch/arm/mach-imx/init.o
? ? ? ? ## CC arch/arm/lib/cache-cp15.o
? ? ? ? ## CC cmd/blk_common.o
? ? ? ? ## CC arch/arm/mach-imx/mac.o
? ? ? ? ## CC arch/arm/mach-imx/sata.o
? ? ? ? ## CC cmd/source.o
? ? ? ? ## CC arch/arm/lib/psci-dt.o
? ? ? ? ## AS arch/arm/lib/ashldi3.o
? ? ? ? ## AS arch/arm/lib/ashrdi3.o
? ? ? ? ## CC arch/arm/lib/div0.o
? ? ? ? ## AS arch/arm/lib/div64.o
? ? ? ? ## CC arch/arm/mach-imx/cmd_bmode.o
? ? ? ? ## CC arch/arm/mach-imx/cmd_hdmidet.o
? ? ? ? ## AS arch/arm/lib/lib1funcs.o
? ? ? ? ## CC cmd/bdinfo.o
? ? ? ? ## AS arch/arm/lib/lshrdi3.o
? ? ? ? ## AS arch/arm/lib/muldi3.o
? ? ? ? ## AS arch/arm/lib/uldivmod.o
? ? ? ? ## CC arch/arm/lib/eabi_compat.o
? ? ? ? ## LD arch/arm/mach-imx/built-in.o
? ? ? ? ## AS arch/arm/lib/crt0_arm_efi.o
? ? ? ? ## CC cmd/blkcache.o
? ? ? ? ## CC disk/part.o
? ? ? ? ## CC arch/arm/lib/reloc_arm_efi.o
? ? ? ? ## CC cmd/bmp.o
? ? ? ? ## CC common/init/board_init.o
? ? ? ? ## LD arch/arm/lib/built-in.o
? ? ? ? ## AR arch/arm/lib/lib.a
? ? ? ? ## LD common/init/built-in.o
? ? ? ? ## CC cmd/bootefi.o
? ? ? ? ## LD drivers/adc/built-in.o
? ? ? ? ## CC common/main.o
? ? ? ? ## CC drivers/ata/ahci-uclass.o
? ? ? ? ## CC disk/part_dos.o
? ? ? ? ## CC common/exports.o
? ? ? ? ## CC drivers/ata/dwc_ahsata.o
? ? ? ? ## CC common/hash.o
? ? ? ? ## CC cmd/bootz.o
? ? ? ? ## CC disk/part_iso.o
? ? ? ? ## CC cmd/cache.o
? ? ? ? ## CC common/cli_hush.o
? ? ? ? ## CC disk/part_efi.o
? ? ? ? ## CC cmd/console.o
? ? ? ? ## CC drivers/ata/libata.o
? ? ? ? ## CC cmd/echo.o
? ? ? ? ## CC drivers/ata/sata.o
? ? ? ? ## CC cmd/elf.o
? ? ? ? ## LD drivers/ata/built-in.o
? ? ? ? ## LD drivers/axi/built-in.o
? ? ? ? ## CC drivers/block/blk-uclass.o
? ? ? ? ## CC cmd/exit.o
? ? ? ? ## CC cmd/ext4.o
? ? ? ? ## LD disk/built-in.o
? ? ? ? ## CC drivers/block/blkcache.o
? ? ? ? ## CC cmd/ext2.o
? ? ? ? ## CC common/autoboot.o
? ? ? ? ## CC common/board_f.o
? ? ? ? ## LD drivers/block/built-in.o
? ? ? ? ## CC cmd/fat.o
? ? ? ? ## LD drivers/cache/built-in.o
? ? ? ? ## CC drivers/core/device.o
? ? ? ? ## CC drivers/crypto/fsl/sec.o
? ? ? ? ## CC cmd/fdt.o
? ? ? ? ## LD drivers/crypto/fsl/built-in.o
? ? ? ? ## LD drivers/crypto/rsa_mod_exp/built-in.o
? ? ? ? ## LD drivers/crypto/built-in.o
? ? ? ? ## LD drivers/dfu/built-in.o
? ? ? ? ## CC cmd/fs.o
? ? ? ? ## CC common/board_r.o
? ? ? ? ## CC cmd/fuse.o
? ? ? ? ## CC common/bootm.o
? ? ? ? ## CC cmd/gpio.o
? ? ? ? ## CC drivers/core/fdtaddr.o
? ? ? ? ## CC cmd/i2c.o
? ? ? ? ## CC drivers/core/lists.o
? ? ? ? ## CC cmd/itest.o
? ? ? ? ## CC common/bootm_os.o
? ? ? ? ## CC cmd/load.o
? ? ? ? ## CC drivers/core/root.o
? ? ? ? ## CC drivers/core/uclass.o
? ? ? ? ## CC common/fdt_support.o
? ? ? ? ## CC drivers/core/util.o
? ? ? ? ## CC cmd/mem.o
? ? ? ? ## CC cmd/mii.o
? ? ? ? ## CC cmd/mdio.o
? ? ? ? ## CC drivers/core/devres.o
? ? ? ? ## CC cmd/misc.o
? ? ? ? ## CC cmd/mmc.o
? ? ? ? ## CC drivers/core/device-remove.o
? ? ? ? ## CC common/miiphyutil.o
? ? ? ? ## CC drivers/core/simple-bus.o
? ? ? ? ## CC drivers/core/dump.o
? ? ? ? ## CC drivers/core/of_extra.o
? ? ? ? ## CC common/usb.o
? ? ? ? ## CC cmd/mp.o
? ? ? ? ## CC drivers/core/ofnode.o
? ? ? ? ## CC drivers/core/read_extra.o
? ? ? ? ## CC cmd/net.o
? ? ? ? ## CC cmd/part.o
? ? ? ? ## CC common/usb_hub.o
? ? ? ? ## CC cmd/pinmux.o
? ? ? ? ## CC cmd/pxe.o
? ? ? ? ## LD drivers/core/built-in.o
? ? ? ? ## CC drivers/input/key_matrix.o
? ? ? ? ## LD drivers/mailbox/built-in.o
? ? ? ? ## LD drivers/memory/built-in.o
? ? ? ? ## CC drivers/misc/mxc_ocotp.o
? ? ? ? ## CC cmd/pxe_utils.o
? ? ? ? ## CC common/usb_storage.o
? ? ? ? ## LD drivers/input/built-in.o
? ? ? ? ## CC drivers/mmc/mmc.o
? ? ? ? ## LD drivers/misc/built-in.o
? ? ? ? ## LD drivers/mtd/nand/built-in.o
? ? ? ? ## LD drivers/mtd/onenand/built-in.o
? ? ? ? ## LD drivers/mtd/spi/built-in.o
? ? ? ? ## LD drivers/mtd/built-in.o
? ? ? ? ## LD drivers/phy/allwinner/built-in.o
? ? ? ? ## LD drivers/phy/marvell/built-in.o
? ? ? ? ## LD drivers/pinctrl/broadcom/built-in.o
? ? ? ? ## CC drivers/pinctrl/nxp/pinctrl-imx.o
? ? ? ? ## CC cmd/sata.o
? ? ? ? ## CC drivers/pinctrl/nxp/pinctrl-imx6.o
? ? ? ? ## CC common/splash.o
? ? ? ? ## CC cmd/setexpr.o
? ? ? ? ## LD drivers/pinctrl/nxp/built-in.o
? ? ? ? ## CC drivers/pinctrl/pinctrl-uclass.o
? ? ? ? ## CC common/menu.o
? ? ? ? ## CC cmd/sysboot.o
? ? ? ? ## CC drivers/pinctrl/pinctrl-generic.o
? ? ? ? ## CC cmd/test.o
? ? ? ? ## CC common/cli_readline.o
? ? ? ? ## CC drivers/mmc/mmc-uclass.o
? ? ? ? ## LD drivers/pinctrl/built-in.o
? ? ? ? ## CC common/cli_simple.o
? ? ? ? ## CC cmd/usb.o
? ? ? ? ## CC cmd/disk.o
? ? ? ? ## CC common/bouncebuf.o
? ? ? ? ## CC drivers/mmc/mmc_write.o
? ? ? ? ## CC cmd/ximg.o
? ? ? ? ## CC common/console.o
? ? ? ? ## CC cmd/nvedit.o
? ? ? ? ## CC common/dlmalloc.o
? ? ? ? ## CC drivers/mmc/fsl_esdhc_imx.o
? ? ? ? ## CC common/malloc_simple.o
? ? ? ? ## LD drivers/pwm/built-in.o
? ? ? ? ## LD drivers/reset/built-in.o
? ? ? ? ## CC drivers/rtc/rtc-lib.o
? ? ? ? ## LD cmd/built-in.o
? ? ? ? ## LD drivers/mmc/built-in.o
? ? ? ? ## LD drivers/dma/ti/built-in.o
? ? ? ? ## LD drivers/dma/built-in.o
? ? ? ? ## CC drivers/scsi/scsi-uclass.o
? ? ? ? ## CC drivers/gpio/gpio-uclass.o
? ? ? ? ## CC common/image.o
? ? ? ? ## LD drivers/rtc/built-in.o
? ? ? ? ## LD drivers/smem/built-in.o
? ? ? ? ## LD drivers/scsi/built-in.o
? ? ? ? ## LD drivers/soc/built-in.o
? ? ? ? ## LD drivers/sound/built-in.o
? ? ? ? ## LD drivers/spmi/built-in.o
? ? ? ? ## CC drivers/thermal/thermal-uclass.o
? ? ? ? ## CC drivers/i2c/i2c-uclass.o
? ? ? ? ## LD drivers/thermal/built-in.o
? ? ? ? ## LD drivers/ufs/built-in.o
? ? ? ? ## LD drivers/video/bridge/built-in.o
? ? ? ? ## CC drivers/video/imx/mxc_ipuv3_fb.o
? ? ? ? ## CC drivers/i2c/mxc_i2c.o
? ? ? ? ## CC drivers/gpio/mxc_gpio.o
? ? ? ? ## CC common/image-fdt.o
? ? ? ? ## LD drivers/gpio/built-in.o
? ? ? ? ## CC drivers/video/imx/ipu_common.o
? ? ? ? ## LD drivers/net/mscc_eswitch/built-in.o
? ? ? ? ## LD drivers/net/ti/built-in.o
? ? ? ? ## CC drivers/net/fec_mxc.o
? ? ? ? ## CC common/image-fit.o
? ? ? ? ## LD drivers/i2c/built-in.o
? ? ? ? ## CC drivers/net/phy/phy.o
? ? ? ? ## LD drivers/net/built-in.o
? ? ? ? ## LD drivers/power/built-in.o
? ? ? ? ## LD drivers/power/battery/built-in.o
? ? ? ? ## LD drivers/power/domain/built-in.o
? ? ? ? ## LD drivers/power/fuel_gauge/built-in.o
? ? ? ? ## LD drivers/power/mfd/built-in.o
? ? ? ? ## CC drivers/power/pmic/pmic-uclass.o
? ? ? ? ## CC drivers/net/phy/atheros.o
? ? ? ? ## CC drivers/power/pmic/pfuze100.o
? ? ? ? ## CC drivers/video/imx/ipu_disp.o
? ? ? ? ## LD drivers/net/phy/built-in.o
? ? ? ? ## CC common/boot_fit.o
? ? ? ? ## CC drivers/power/regulator/pfuze100.o
? ? ? ? ## LD drivers/power/pmic/built-in.o
? ? ? ? ## CC common/common_fit.o
? ? ? ? ## CC drivers/serial/serial.o
? ? ? ? ## CC common/memsize.o
? ? ? ? ## LD drivers/power/regulator/built-in.o
? ? ? ? ## CC drivers/serial/serial_mxc.o
? ? ? ? ## CC drivers/spi/spi.o
? ? ? ? ## CC common/stdio.o
? ? ? ? ## LD drivers/serial/built-in.o
? ? ? ? ## CC common/cli.o
? ? ? ? ## LD drivers/spi/built-in.o
? ? ? ? ## CC common/command.o
? ? ? ? ## LD drivers/video/imx/built-in.o
? ? ? ? ## CC common/s_record.o
? ? ? ? ## LD drivers/video/sunxi/built-in.o
? ? ? ? ## CC drivers/video/console_normal.o
? ? ? ? ## CC common/xyzModem.o
? ? ? ? ## CC drivers/video/backlight-uclass.o
? ? ? ? ## CC drivers/video/panel-uclass.o
? ? ? ? ## CC drivers/video/simple_panel.o
? ? ? ? ## CC drivers/video/video-uclass.o
? ? ? ? ## LD common/built-in.o
? ? ? ? ## CC drivers/video/vidconsole-uclass.o
? ? ? ? ## CC drivers/video/video_bmp.o
? ? ? ? ## LD drivers/usb/cdns3/built-in.o
? ? ? ? ## CC drivers/usb/common/common.o
? ? ? ? ## LD drivers/usb/dwc3/built-in.o
? ? ? ? ## LD drivers/usb/emul/built-in.o
? ? ? ? ## LD drivers/usb/eth/built-in.o
? ? ? ? ## LD drivers/usb/common/built-in.o
? ? ? ? ## CC drivers/usb/host/usb-uclass.o
? ? ? ? ## CC drivers/usb/host/ehci-hcd.o
? ? ? ? ## LD drivers/video/built-in.o
? ? ? ? ## CC drivers/watchdog/imx_watchdog.o
? ? ? ? ## LD drivers/usb/musb-new/built-in.o
? ? ? ? ## LD drivers/usb/musb/built-in.o
? ? ? ? ## LD drivers/usb/phy/built-in.o
? ? ? ? ## LD drivers/usb/ulpi/built-in.o
? ? ? ? ## CC env/common.o
? ? ? ? ## LD drivers/watchdog/built-in.o
? ? ? ? ## LD drivers/built-in.o
? ? ? ? ## CC fs/ext4/ext4fs.o
? ? ? ? ## CC env/env.o
? ? ? ? ## CC fs/ext4/ext4_common.o
? ? ? ? ## CC env/attr.o
? ? ? ? ## CC fs/ext4/dev.o
? ? ? ? ## CC drivers/usb/host/ehci-mx6.o
? ? ? ? ## CC env/flags.o
? ? ? ? ## CC fs/ext4/ext4_write.o
? ? ? ? ## LD drivers/usb/host/built-in.o
? ? ? ? ## CC env/callback.o
? ? ? ? ## LD lib/crypto/built-in.o
? ? ? ? ## CC lib/efi_driver/efi_uclass.o
? ? ? ? ## CC env/mmc.o
? ? ? ? ## LD env/built-in.o
? ? ? ? ## CC lib/efi_driver/efi_block_device.o
? ? ? ? ## CC net/arp.o
? ? ? ? ## CC fs/ext4/ext4_journal.o
? ? ? ? ## LD lib/efi_driver/built-in.o
? ? ? ? ## CC net/bootp.o
? ? ? ? ## CC lib/efi_loader/efi_bootmgr.o
? ? ? ? ## CC fs/ext4/crc16.o
? ? ? ? ## CC lib/efi_loader/efi_boottime.o
? ? ? ? ## CC lib/efi_loader/efi_console.o
? ? ? ? ## CC net/eth-uclass.o
? ? ? ? ## LD fs/ext4/built-in.o
? ? ? ? ## CC fs/fat/fat.o
? ? ? ? ## CC lib/efi_loader/efi_device_path.o
? ? ? ? ## CC net/eth_common.o
? ? ? ? ## CC net/net.o
? ? ? ? ## CC lib/efi_loader/efi_device_path_to_text.o
? ? ? ? ## CC net/nfs.o
? ? ? ? ## LD fs/fat/built-in.o
? ? ? ? ## CC fs/fs.o
? ? ? ? ## CC lib/efi_loader/efi_device_path_utilities.o
? ? ? ? ## CC lib/efi_loader/efi_file.o
? ? ? ? ## CC net/ping.o
? ? ? ? ## CC net/tftp.o
? ? ? ? ## CC fs/fs_internal.o
? ? ? ? ## CC lib/efi_loader/efi_hii.o
? ? ? ? ## LD fs/built-in.o
? ? ? ? ## CC lib/efi_loader/efi_hii_config.o
? ? ? ? ## LD net/built-in.o
? ? ? ? ## CC lib/efi_loader/efi_image_loader.o
? ? ? ? ## CC lib/libfdt/fdt.o
? ? ? ? ## CC lib/efi_loader/efi_memory.o
? ? ? ? ## CC lib/efi_loader/efi_root_node.o
? ? ? ? ## CC lib/efi_loader/efi_runtime.o
? ? ? ? ## CC lib/libfdt/fdt_wip.o
? ? ? ? ## CC lib/efi_loader/efi_setup.o
? ? ? ? ## CC lib/libfdt/fdt_strerror.o
? ? ? ? ## CC lib/efi_loader/efi_unicode_collation.o
? ? ? ? ## CC lib/libfdt/fdt_sw.o
? ? ? ? ## CC lib/efi_loader/efi_variable.o
? ? ? ? ## CC lib/libfdt/fdt_rw.o
? ? ? ? ## CC lib/efi_loader/efi_watchdog.o
? ? ? ? ## CC lib/libfdt/fdt_empty_tree.o
? ? ? ? ## CC lib/efi_loader/efi_gop.o
? ? ? ? ## CC lib/libfdt/fdt_addresses.o
? ? ? ? ## CC lib/libfdt/fdt_ro.o
? ? ? ? ## CC lib/libfdt/fdt_region.o
? ? ? ? ## CC lib/efi_loader/efi_disk.o
? ? ? ? ## CC lib/efi_loader/efi_net.o
? ? ? ? ## CC lib/efi_loader/efi_smbios.o
? ? ? ? ## CC lib/efi_loader/efi_signature.o
? ? ? ? ## CC lib/efi_loader/helloworld.o
? ? ? ? ## AS lib/efi_loader/efi_crt0.o
? ? ? ? ## LD lib/libfdt/built-in.o
? ? ? ? ## CC lib/efi_loader/efi_reloc.o
? ? ? ? ## CC lib/zlib/zlib.o
? ? ? ? ## CC lib/efi_loader/efi_freestanding.o
? ? ? ? ## LD lib/efi_loader/built-in.o
? ? ? ? ## CC lib/charset.o
? ? ? ? ## CC lib/crc7.o
? ? ? ? ## CC lib/crc8.o
? ? ? ? ## LD lib/efi_loader/helloworld_efi.so
? ? ? ? ## OBJCOPY lib/efi_loader/helloworld.efi
? ? ? ? ## CC lib/crc16.o
? ? ? ? ## CC lib/fdtdec_common.o
? ? ? ? ## CC lib/smbios.o
? ? ? ? ## CC lib/ldiv.o
? ? ? ? ## CC lib/md5.o
? ? ? ? ## CC lib/net_utils.o
? ? ? ? ## CC lib/rc4.o
? ? ? ? ## CC lib/list_sort.o
? ? ? ? ## CC lib/sha1.o
? ? ? ? ## CC lib/sha256.o
? ? ? ? ## CC lib/gunzip.o
? ? ? ? ## CC lib/fdtdec.o
? ? ? ? ## LD lib/zlib/built-in.o
? ? ? ? ## CC lib/qsort.o
? ? ? ? ## CC lib/hashtable.o
? ? ? ? ## CC lib/errno.o
? ? ? ? ## CC lib/display_options.o
? ? ? ? ## CC lib/crc32.o
? ? ? ? ## CC lib/ctype.o
? ? ? ? ## CC lib/div64.o
? ? ? ? ## CC lib/hang.o
? ? ? ? ## CC lib/linux_compat.o
? ? ? ? ## CC lib/linux_string.o
? ? ? ? ## CC lib/lmb.o
? ? ? ? ## CC lib/membuff.o
? ? ? ? ## CC lib/slre.o
? ? ? ? ## CC lib/string.o
? ? ? ? ## CC lib/tables_csum.o
? ? ? ? ## CC lib/time.o
? ? ? ? ## CC lib/hexdump.o
? ? ? ? ## CC lib/uuid.o
? ? ? ? ## CC lib/panic.o
? ? ? ? ## CC lib/vsprintf.o
? ? ? ? ## CC lib/strto.o
? ? ? ? ## CC lib/date.o
? ? ? ? ## CC lib/elf.o
? ? ? ? ## LD lib/built-in.o
? ? ? ? ## CC examples/standalone/hello_world.o
? ? ? ? ## CC examples/standalone/stubs.o
? ? ? ? ## LD examples/standalone/libstubs.o
? ? ? ? ## LD examples/standalone/hello_world
? ? ? ? ## OBJCOPY examples/standalone/hello_world.srec
? ? ? ? ## OBJCOPY examples/standalone/hello_world.bin
? ? ? ? ## LD u-boot
? ? ? ? ## OBJCOPY u-boot.srec
? ? ? ? ## OBJCOPY u-boot-nodtb.bin
? ? ? ? ## SYM u-boot.sym
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2_4.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2_7.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2b_4.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2b_7.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2b_csl_4.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2b_csl_7.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2c_4.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-aristainetos2c_7.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-brppt2.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-cubox-i.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-cubox-i-emmc-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-cubox-i-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-dhcom-pdk2.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-hummingboard2.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-hummingboard2-emmc-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-hummingboard2-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-hummingboard.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-hummingboard-emmc-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-hummingboard-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-icore.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-icore-mipi.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-icore-rqs.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-mamoj.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-nitrogen6x.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-pico.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-sabreauto.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-sabresd.dtb
? ? ? ? ## DTC arch/arm/dts/imx6dl-wandboard-revd1.dtb
? ? ? ? ## DTC arch/arm/dts/imx6-apalis.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-cm-fx6.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-cubox-i.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-cubox-i-emmc-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-cubox-i-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-dhcom-pdk2.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-display5.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-hummingboard2.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-hummingboard2-emmc-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-hummingboard2-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-hummingboard.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-hummingboard-emmc-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-hummingboard-som-v15.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-icore.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-icore-mipi.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-icore-rqs.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-kp.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-logicpd.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-mccmon6.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-nitrogen6x.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-novena.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-pico.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-sabreauto.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-sabrelite.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-sabresd.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-tbs2910.dtb
? ? ? ? ## DTC arch/arm/dts/imx6q-wandboard-revd1.dtb
? ? ? ? ## DTC arch/arm/dts/imx6qp-sabreauto.dtb
? ? ? ? ## DTC arch/arm/dts/imx6qp-sabresd.dtb
? ? ? ? ## DTC arch/arm/dts/imx6qp-wandboard-revd1.dtb
? ? ? ? ## DTC arch/arm/dts/imx6-colibri.dtb
? ? ? ? ## SHIPPED dts/dt.dtb
? ? ? ? ## FDTGREP dts/dt-spl.dtb
? ? ? ? ## MKIMAGE fit-dtb.blob
? ? ? ? ## MKIMAGE u-boot.img
? ? ? ? ## COPY u-boot.dtb
? ? ? ? ## MKIMAGE u-boot-dtb.img
? ? ? ? ## CAT u-boot-fit-dtb.bin
? ? ? ? ## COPY u-boot.bin
? ? ? ? ## LD spl/arch/arm/cpu/built-in.o
? ? ? ? ## CC spl/arch/arm/cpu/armv7/cache_v7.o
? ? ? ? ## CC spl/board/wandboard/wandboard.o
? ? ? ? ## AS spl/arch/arm/lib/vectors.o
? ? ? ? ## CC spl/arch/arm/mach-imx/mx6/soc.o
? ? ? ? ## AS spl/arch/arm/lib/crt0.o
? ? ? ? ## AS spl/arch/arm/lib/setjmp.o
? ? ? ? ## CC spl/arch/arm/lib/spl.o
? ? ? ? ## AS spl/arch/arm/cpu/armv7/cache_v7_asm.o
? ? ? ? ## CC spl/arch/arm/cpu/armv7/cpu.o
? ? ? ? ## CC spl/arch/arm/lib/zimage.o
? ? ? ? ## CC spl/arch/arm/cpu/armv7/cp15.o
? ? ? ? ## CC spl/arch/arm/lib/bootm-fdt.o
? ? ? ? ## CC spl/arch/arm/mach-imx/mx6/clock.o
? ? ? ? ## CC spl/arch/arm/cpu/armv7/syslib.o
? ? ? ? ## CC spl/board/wandboard/spl.o
? ? ? ? ## AS spl/arch/arm/lib/memset.o
? ? ? ? ## AS spl/arch/arm/lib/memcpy.o
? ? ? ? ## CC spl/arch/arm/lib/sections.o
? ? ? ? ## AS spl/arch/arm/cpu/armv7/lowlevel_init.o
? ? ? ? ## CC spl/arch/arm/lib/stack.o
? ? ? ? ## AS spl/arch/arm/cpu/armv7/start.o
? ? ? ? ## LD spl/arch/arm/cpu/armv7/built-in.o
? ? ? ? ## CC spl/common/spl/spl.o
? ? ? ? ## CC spl/arch/arm/lib/interrupts.o
? ? ? ? ## LD spl/board/wandboard/built-in.o
? ? ? ? ## CC spl/common/spl/spl_fit.o
? ? ? ? ## CC spl/arch/arm/mach-imx/mx6/ddr.o
? ? ? ? ## CC spl/arch/arm/lib/reset.o
? ? ? ? ## CC spl/arch/arm/mach-imx/mx6/mp.o
? ? ? ? ## CC spl/arch/arm/lib/cache.o
? ? ? ? ## CC spl/arch/arm/lib/cache-cp15.o
? ? ? ? ## CC spl/common/spl/spl_mmc.o
? ? ? ? ## CC spl/arch/arm/lib/psci-dt.o
? ? ? ? ## AS spl/arch/arm/lib/ashldi3.o
? ? ? ? ## AS spl/arch/arm/lib/ashrdi3.o
? ? ? ? ## CC spl/arch/arm/lib/div0.o
? ? ? ? ## CC spl/common/spl/spl_ext.o
? ? ? ? ## AS spl/arch/arm/lib/div64.o
? ? ? ? ## AS spl/arch/arm/lib/lib1funcs.o
? ? ? ? ## AS spl/arch/arm/lib/lshrdi3.o
? ? ? ? ## AS spl/arch/arm/lib/muldi3.o
? ? ? ? ## CC spl/common/init/board_init.o
? ? ? ? ## AS spl/arch/arm/lib/uldivmod.o
? ? ? ? ## CC spl/arch/arm/lib/eabi_compat.o
? ? ? ? ## LD spl/arch/arm/mach-imx/mx6/built-in.o
? ? ? ? ## CC spl/arch/arm/mach-imx/iomux-v3.o
? ? ? ? ## LD spl/common/spl/built-in.o
? ? ? ? ## CC spl/common/common_fit.o
? ? ? ? ## LD spl/common/init/built-in.o
? ? ? ? ## CC spl/cmd/nvedit.o
? ? ? ? ## AS spl/arch/arm/lib/crt0_arm_efi.o
? ? ? ? ## CC spl/arch/arm/lib/reloc_arm_efi.o
? ? ? ? ## CC spl/arch/arm/mach-imx/cpu.o
? ? ? ? ## CC spl/common/fdt_support.o
? ? ? ? ## LD spl/arch/arm/lib/built-in.o
? ? ? ? ## AR spl/arch/arm/lib/lib.a
? ? ? ? ## LD spl/env/built-in.o
? ? ? ? ## CC spl/arch/arm/mach-imx/speed.o
? ? ? ? ## CC spl/lib/libfdt/fdt.o
? ? ? ? ## LD spl/cmd/built-in.o
? ? ? ? ## CC spl/disk/part.o
? ? ? ? ## CC spl/arch/arm/mach-imx/mmdc_size.o
? ? ? ? ## CC spl/lib/libfdt/fdt_wip.o
? ? ? ? ## CC spl/arch/arm/mach-imx/timer.o
? ? ? ? ## CC spl/lib/libfdt/fdt_strerror.o
? ? ? ? ## CC spl/disk/part_dos.o
? ? ? ? ## CC spl/lib/libfdt/fdt_sw.o
? ? ? ? ## CC spl/arch/arm/mach-imx/i2c-mxv7.o
? ? ? ? ## CC spl/common/bouncebuf.o
? ? ? ? ## CC spl/arch/arm/mach-imx/misc.o
? ? ? ? ## CC spl/common/console.o
? ? ? ? ## CC spl/lib/libfdt/fdt_rw.o
? ? ? ? ## CC spl/disk/part_efi.o
? ? ? ? ## CC spl/arch/arm/mach-imx/spl.o
? ? ? ? ## CC spl/arch/arm/mach-imx/video.o
? ? ? ? ## CC spl/common/dlmalloc.o
? ? ? ? ## CC spl/lib/libfdt/fdt_empty_tree.o
? ? ? ? ## CC spl/lib/libfdt/fdt_addresses.o
? ? ? ? ## CC spl/arch/arm/mach-imx/cache.o
? ? ? ? ## CC spl/lib/libfdt/fdt_ro.o
? ? ? ? ## CC spl/arch/arm/mach-imx/init.o
? ? ? ? ## LD spl/disk/built-in.o
? ? ? ? ## CC spl/arch/arm/mach-imx/mac.o
? ? ? ? ## CC spl/drivers/block/blk_legacy.o
? ? ? ? ## CC spl/common/malloc_simple.o
? ? ? ? ## CC spl/arch/arm/mach-imx/sata.o
? ? ? ? ## CC spl/lib/libfdt/fdt_region.o
? ? ? ? ## CC spl/common/image.o
? ? ? ? ## LD spl/arch/arm/mach-imx/built-in.o
? ? ? ? ## LD spl/drivers/block/built-in.o
? ? ? ? ## LD spl/dts/built-in.o
? ? ? ? ## CC spl/drivers/gpio/mxc_gpio.o
? ? ? ? ## CC spl/fs/ext4/ext4fs.o
? ? ? ? ## LD spl/drivers/gpio/built-in.o
? ? ? ? ## CC spl/drivers/i2c/mxc_i2c.o
? ? ? ? ## LD spl/lib/libfdt/built-in.o
? ? ? ? ## CC spl/lib/sha1.o
? ? ? ? ## CC spl/common/image-fdt.o
? ? ? ? ## CC spl/fs/ext4/ext4_common.o
? ? ? ? ## LD spl/drivers/i2c/built-in.o
? ? ? ? ## CC spl/drivers/misc/mxc_ocotp.o
? ? ? ? ## CC spl/common/image-fit.o
? ? ? ? ## CC spl/lib/sha256.o
? ? ? ? ## LD spl/drivers/misc/built-in.o
? ? ? ? ## CC spl/drivers/mmc/mmc.o
? ? ? ? ## CC spl/common/memsize.o
? ? ? ? ## CC spl/lib/net_utils.o
? ? ? ? ## CC spl/common/stdio.o
? ? ? ? ## CC spl/fs/ext4/dev.o
? ? ? ? ## CC spl/lib/qsort.o
? ? ? ? ## CC spl/drivers/mmc/mmc_legacy.o
? ? ? ? ## CC spl/fs/ext4/ext4_write.o
? ? ? ? ## CC spl/common/cli.o
? ? ? ? ## CC spl/lib/hashtable.o
? ? ? ? ## CC spl/drivers/mmc/fsl_esdhc_imx.o
? ? ? ? ## CC spl/common/command.o
? ? ? ? ## CC spl/lib/errno.o
? ? ? ? ## CC spl/lib/display_options.o
? ? ? ? ## LD spl/drivers/mmc/built-in.o
? ? ? ? ## LD spl/drivers/mtd/built-in.o
? ? ? ? ## CC spl/drivers/serial/serial.o
? ? ? ? ## CC spl/common/s_record.o
? ? ? ? ## CC spl/common/xyzModem.o
? ? ? ? ## CC spl/drivers/serial/serial_mxc.o
? ? ? ? ## CC spl/lib/crc32.o
? ? ? ? ## CC spl/fs/ext4/ext4_journal.o
? ? ? ? ## LD spl/drivers/serial/built-in.o
? ? ? ? ## LD spl/drivers/soc/built-in.o
? ? ? ? ## CC spl/drivers/watchdog/imx_watchdog.o
? ? ? ? ## CC spl/lib/ctype.o
? ? ? ? ## CC spl/lib/div64.o
? ? ? ? ## LD spl/common/built-in.o
? ? ? ? ## LDS spl/u-boot-spl.lds
? ? ? ? ## LD spl/drivers/watchdog/built-in.o
? ? ? ? ## LD spl/drivers/built-in.o
? ? ? ? ## CC spl/lib/fdtdec.o
? ? ? ? ## CC spl/lib/fdtdec_common.o
? ? ? ? ## CC spl/lib/hang.o
? ? ? ? ## CC spl/fs/ext4/crc16.o
? ? ? ? ## CC spl/lib/linux_compat.o
? ? ? ? ## CC spl/lib/linux_string.o
? ? ? ? ## CC spl/lib/lmb.o
? ? ? ? ## LD spl/fs/ext4/built-in.o
? ? ? ? ## CC spl/fs/fs_internal.o
? ? ? ? ## CC spl/lib/membuff.o
? ? ? ? ## LD spl/fs/built-in.o
? ? ? ? ## CC spl/lib/slre.o
? ? ? ? ## CC spl/lib/string.o
? ? ? ? ## CC spl/lib/tables_csum.o
? ? ? ? ## CC spl/lib/time.o
? ? ? ? ## CC spl/lib/hexdump.o
? ? ? ? ## CC spl/lib/uuid.o
? ? ? ? ## CC spl/lib/panic.o
? ? ? ? ## CC spl/lib/tiny-printf.o
? ? ? ? ## CC spl/lib/strto.o
? ? ? ? ## CC spl/lib/date.o
? ? ? ? ## CC spl/lib/elf.o
? ? ? ? ## LD spl/lib/built-in.o
? ? ? ? ## LD spl/u-boot-spl
? ? ? ? ## OBJCOPY spl/u-boot-spl-nodtb.bin
? ? ? ? ## COPY spl/u-boot-spl.bin
? ? ? ? ## CFGS spl/u-boot-spl.cfgout
? ? ? ? ## MKIMAGE SPL
? ? ? ? ## MKIMAGE u-boot.uim
? ? ? ? ## MKIMAGE SPL
? ? ? ? ## CAT u-boot-with-spl.imx
? ? ? ? ## CFGCHK u-boot.cfg
? ? ? ??Done. (35.730s)
? ? ??Done. (217.419s)
? ??Calling copy ...
? ? ??[lab1] cp /work/hs/tbot-workdir/uboot-wandboard-builder/System.map
/var/lib/tftpboot/wandboard/tbot/System.map
? ? ??Done. (0.003s)
? ??[lab1] chmod 666 /var/lib/tftpboot/wandboard/tbot/System.map
? ??Calling copy ...
? ? ??[lab1] cp /work/hs/tbot-workdir/uboot-wandboard-builder/u-boot.img
/var/lib/tftpboot/wandboard/tbot/u-boot.img
? ? ??Done. (0.003s)
? ??[lab1] chmod 666 /var/lib/tftpboot/wandboard/tbot/u-boot.img
? ??Calling copy ...
? ? ??[lab1] cp /work/hs/tbot-workdir/uboot-wandboard-builder/u-boot.bin
/var/lib/tftpboot/wandboard/tbot/u-boot.bin
? ? ??Done. (0.005s)
? ??[lab1] chmod 666 /var/lib/tftpboot/wandboard/tbot/u-boot.bin
? ??Calling copy ...
? ? ??[lab1] cp /work/hs/tbot-workdir/uboot-wandboard-builder/u-boot.cfg
/var/lib/tftpboot/wandboard/tbot/u-boot.cfg
? ? ??Done. (0.003s)
? ??[lab1] chmod 666 /var/lib/tftpboot/wandboard/tbot/u-boot.cfg
? ??Calling copy ...
? ? ??[lab1] cp /work/hs/tbot-workdir/uboot-wandboard-builder/SPL
/var/lib/tftpboot/wandboard/tbot/SPL
? ? ??Done. (0.003s)
? ??[lab1] chmod 666 /var/lib/tftpboot/wandboard/tbot/SPL
? ??Done. (218.142s)
??????????????????????????????????????????
??Log written to '/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/log/lab1-wandboard-0026.json'
??SUCCESS (218.269s)
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs at denx.de
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 7:56 ` Heiko Schocher
@ 2020-04-17 11:15 ` Fabio Estevam
2020-04-17 11:33 ` Fabio Estevam
0 siblings, 1 reply; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 11:15 UTC (permalink / raw)
To: u-boot
Hi Heiko,
On Fri, Apr 17, 2020 at 4:56 AM Heiko Schocher <hs@denx.de> wrote:
> So it seems, output on console gets somehow lost, but bootcount counts down
> and loads linux ... may I missed something?
Thanks for testing.
On my console, I get the full output on a i.MX6Q revB1:
http://code.bulix.org/buuwfu-1287884
And also on a i.MX6QP revD1:
http://code.bulix.org/0dx8tz-1287899
Could it be due to patch 4/5, that does:
--- a/configs/wandboard_defconfig
+++ b/configs/wandboard_defconfig
@@ -29,7 +29,6 @@ CONFIG_BOOTCOMMAND="run findfdt; run finduuid; run
distro_bootcmd"
CONFIG_SYS_CONSOLE_IS_IN_ENV=y
CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE=y
# CONFIG_DISPLAY_BOARDINFO is not set
-CONFIG_DISPLAY_BOARDINFO_LATE=y
CONFIG_BOUNCE_BUFFER=y
CONFIG_BOARD_EARLY_INIT_F=y
CONFIG_SPL_SEPARATE_BSS=y
but I thought this would impact only the LCD output, not the real console.
If you have a chance, could you please try again with only the first
patch of the series (1/5)?
Thanks
> --
> DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs at denx.de
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 11:15 ` Fabio Estevam
@ 2020-04-17 11:33 ` Fabio Estevam
2020-04-17 11:41 ` Fabio Estevam
0 siblings, 1 reply; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 11:33 UTC (permalink / raw)
To: u-boot
Hi Heiko,
On Fri, Apr 17, 2020 at 8:15 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> Hi Heiko,
>
> On Fri, Apr 17, 2020 at 4:56 AM Heiko Schocher <hs@denx.de> wrote:
>
> > So it seems, output on console gets somehow lost, but bootcount counts down
> > and loads linux ... may I missed something?
>
> Thanks for testing.
>
> On my console, I get the full output on a i.MX6Q revB1:
> http://code.bulix.org/buuwfu-1287884
>
> And also on a i.MX6QP revD1:
> http://code.bulix.org/0dx8tz-1287899
Ok, I have a mx6dl wandboad here and I managed to reproduce the issue
you reported.
Let me investigate this issue.
Thanks
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 11:33 ` Fabio Estevam
@ 2020-04-17 11:41 ` Fabio Estevam
2020-04-17 12:00 ` Derek Atkins
0 siblings, 1 reply; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 11:41 UTC (permalink / raw)
To: u-boot
Hi Heiko,
On Fri, Apr 17, 2020 at 8:33 AM Fabio Estevam <festevam@gmail.com> wrote:
> Ok, I have a mx6dl wandboad here and I managed to reproduce the issue
> you reported.
>
> Let me investigate this issue.
Ok, I managed to fix it.
I will submit a new series soon.
Thanks
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 11:41 ` Fabio Estevam
@ 2020-04-17 12:00 ` Derek Atkins
2020-04-17 12:30 ` Fabio Estevam
0 siblings, 1 reply; 15+ messages in thread
From: Derek Atkins @ 2020-04-17 12:00 UTC (permalink / raw)
To: u-boot
Hi,
Let me know if you want me to test this on my imx6q d1
-derek
Sent using my mobile device. Please excuse any typos.
On April 17, 2020 7:41:03 AM Fabio Estevam <festevam@gmail.com> wrote:
> Hi Heiko,
>
> On Fri, Apr 17, 2020 at 8:33 AM Fabio Estevam <festevam@gmail.com> wrote:
>
>> Ok, I have a mx6dl wandboad here and I managed to reproduce the issue
>> you reported.
>>
>> Let me investigate this issue.
>
> Ok, I managed to fix it.
>
> I will submit a new series soon.
>
> Thanks
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 12:00 ` Derek Atkins
@ 2020-04-17 12:30 ` Fabio Estevam
2020-04-17 14:50 ` Heiko Schocher
0 siblings, 1 reply; 15+ messages in thread
From: Fabio Estevam @ 2020-04-17 12:30 UTC (permalink / raw)
To: u-boot
Hi Heiko,
On Fri, Apr 17, 2020 at 9:00 AM Derek Atkins <derek@ihtfp.com> wrote:
>
> Hi,
> Let me know if you want me to test this on my imx6q d1
Derek confirmed that v2 worked on his imx6q wandboard revD1 and I have
just submitted v2 to the list.
Hopefully it will also work on your imx6dl wandboard revD1.
Thanks
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 12:30 ` Fabio Estevam
@ 2020-04-17 14:50 ` Heiko Schocher
2020-04-17 15:02 ` Derek Atkins
0 siblings, 1 reply; 15+ messages in thread
From: Heiko Schocher @ 2020-04-17 14:50 UTC (permalink / raw)
To: u-boot
Hello Fabio,
Am 17.04.2020 um 14:30 schrieb Fabio Estevam:
> Hi Heiko,
>
> On Fri, Apr 17, 2020 at 9:00 AM Derek Atkins <derek@ihtfp.com> wrote:
>>
>> Hi,
>> Let me know if you want me to test this on my imx6q d1
>
> Derek confirmed that v2 worked on his imx6q wandboard revD1 and I have
> just submitted v2 to the list.
>
> Hopefully it will also work on your imx6dl wandboard revD1.
Yes, can confirm this, see log attached.
Thanks for your efforts!
bye,
Heiko
hs at lab-1:tbot-tbot2go [wandboard-devel-messe] $ tbot @argswandboardlab1 wandboard_ub_check_version
tbot starting ...
??Flags:
? 'lab-1-build'
??Calling wandboard_ub_check_version ...
? ??[local] ssh -o BatchMode=yes -i /home/hs/.ssh/id_rsa -p 22 hs at 192.168.1.109
? ??[lab1] strings /var/lib/tftpboot/wandboard/tbot/u-boot.bin | grep --color=never "U-Boot 2"
? ? ## U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27 +0200)
? ??found in image U-Boot version U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27 +0200)
? ??[lab1] strings /var/lib/tftpboot/wandboard/tbot/SPL | grep --color=never "U-Boot SPL"
? ? ## U-Boot SPL 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27 +0200)
? ??found in image U-Boot SPL version U-Boot SPL 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 -
16:20:27 +0200)
? ??[local] ssh -o BatchMode=yes -i /home/hs/.ssh/id_rsa -p 22 hs at 192.168.1.109
? ??[lab1] kermit /home/hs/kermrc_wandboard
? ??POWERON (wandboard)
? ??[lab1] sudo sispmctl -D 01:01:56:a2:f1 -o 3
? ? ## Accessing Gembird #0 USB device 021
? ? ## Switched outlet 3 on
? ??UBOOT (wandboard-uboot)
? ? <> Connecting to
/dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller_D-if00-port0, speed 115200
? ? <> Escape character: Ctrl-\ (ASCII 28, FS): enabled
? ? <> Type the escape character followed by C to get back,
? ? <> or followed by ? to see other options.
? ? <> ----------------------------------------------------
? ? <>
? ? <> U-Boot SPL 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27 +0200)
? ? <> Trying to boot from MMC1
? ? <>
? ? <>
? ? <> U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27 +0200)
? ? <>
? ? <> CPU: Freescale i.MX6DL rev1.3 at 792 MHz
? ? <> Reset cause: POR
? ? <> DRAM: 1 GiB
? ? <> PMIC: PFUZE100 ID=0x10
? ? <> MMC: FSL_SDHC: 2, FSL_SDHC: 1, FSL_SDHC: 0
? ? <> Loading Environment from MMC... *** Warning - bad CRC, using default environment
? ? <>
? ? <> No panel detected: default to HDMI
? ? <> Display: HDMI (1024x768)
? ? <> In: serial
? ? <> Out: serial
? ? <> Err: serial
? ? <> Board: Wandboard rev D1
? ? <> Net:
? ? <> Warning: ethernet at 2188000 using MAC address from ROM
? ? <> eth0: ethernet at 2188000
? ? <> Hit any key to stop autoboot: 0
? ? <> =>
? ??found U-Boot SPL version U-Boot SPL 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27
+0200) installed
? ??found U-Boot version U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27 +0200)
installed
? ??POWEROFF (wandboard)
? ??[lab1] sudo sispmctl -D 01:01:56:a2:f1 -f 3
? ? ## Accessing Gembird #0 USB device 021
? ? ## Switched outlet 3 off
? ??Done. (14.212s)
??????????????????????????????????????????
??Log written to '/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/log/lab1-wandboard-0040.json'
??SUCCESS (14.340s)
hs at lab-1:tbot-tbot2go [wandboard-devel-messe] $
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs at denx.de
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants
2020-04-17 14:50 ` Heiko Schocher
@ 2020-04-17 15:02 ` Derek Atkins
0 siblings, 0 replies; 15+ messages in thread
From: Derek Atkins @ 2020-04-17 15:02 UTC (permalink / raw)
To: u-boot
For the record, I also tested this on a Wandboard Dual RevC1 and it worked
there, too.
-derek
On Fri, April 17, 2020 10:50 am, Heiko Schocher wrote:
> Hello Fabio,
>
> Am 17.04.2020 um 14:30 schrieb Fabio Estevam:
>> Hi Heiko,
>>
>> On Fri, Apr 17, 2020 at 9:00 AM Derek Atkins <derek@ihtfp.com> wrote:
>>>
>>> Hi,
>>> Let me know if you want me to test this on my imx6q d1
>>
>> Derek confirmed that v2 worked on his imx6q wandboard revD1 and I have
>> just submitted v2 to the list.
>>
>> Hopefully it will also work on your imx6dl wandboard revD1.
>
> Yes, can confirm this, see log attached.
>
> Thanks for your efforts!
>
> bye,
> Heiko
>
> hs at lab-1:tbot-tbot2go [wandboard-devel-messe] $ tbot @argswandboardlab1
> wandboard_ub_check_version
> tbot starting ...
> ??Flags:
> ? 'lab-1-build'
> ??Calling wandboard_ub_check_version ...
> ? ??[local] ssh -o BatchMode=yes -i /home/hs/.ssh/id_rsa -p 22
> hs at 192.168.1.109
> ? ??[lab1] strings /var/lib/tftpboot/wandboard/tbot/u-boot.bin | grep
> --color=never "U-Boot 2"
> ? ? ## U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27
> +0200)
> ? ??found in image U-Boot version U-Boot 2020.04-tbot-00375-g946d9a0974
> (Apr 17 2020 - 16:20:27 +0200)
> ? ??[lab1] strings /var/lib/tftpboot/wandboard/tbot/SPL | grep
> --color=never "U-Boot SPL"
> ? ? ## U-Boot SPL 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 -
> 16:20:27 +0200)
> ? ??found in image U-Boot SPL version U-Boot SPL
> 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 -
> 16:20:27 +0200)
> ? ??[local] ssh -o BatchMode=yes -i /home/hs/.ssh/id_rsa -p 22
> hs at 192.168.1.109
> ? ??[lab1] kermit /home/hs/kermrc_wandboard
> ? ??POWERON (wandboard)
> ? ??[lab1] sudo sispmctl -D 01:01:56:a2:f1 -o 3
> ? ? ## Accessing Gembird #0 USB device 021
> ? ? ## Switched outlet 3 on
> ? ??UBOOT (wandboard-uboot)
> ? ? <> Connecting to
> /dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller_D-if00-port0,
> speed 115200
> ? ? <> Escape character: Ctrl-\ (ASCII 28, FS): enabled
> ? ? <> Type the escape character followed by C to get back,
> ? ? <> or followed by ? to see other options.
> ? ? <> ----------------------------------------------------
> ? ? <>
> ? ? <> U-Boot SPL 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 -
> 16:20:27 +0200)
> ? ? <> Trying to boot from MMC1
> ? ? <>
> ? ? <>
> ? ? <> U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17 2020 - 16:20:27
> +0200)
> ? ? <>
> ? ? <> CPU: Freescale i.MX6DL rev1.3 at 792 MHz
> ? ? <> Reset cause: POR
> ? ? <> DRAM: 1 GiB
> ? ? <> PMIC: PFUZE100 ID=0x10
> ? ? <> MMC: FSL_SDHC: 2, FSL_SDHC: 1, FSL_SDHC: 0
> ? ? <> Loading Environment from MMC... *** Warning - bad CRC, using
> default environment
> ? ? <>
> ? ? <> No panel detected: default to HDMI
> ? ? <> Display: HDMI (1024x768)
> ? ? <> In: serial
> ? ? <> Out: serial
> ? ? <> Err: serial
> ? ? <> Board: Wandboard rev D1
> ? ? <> Net:
> ? ? <> Warning: ethernet at 2188000 using MAC address from ROM
> ? ? <> eth0: ethernet at 2188000
> ? ? <> Hit any key to stop autoboot: 0
> ? ? <> =>
> ? ??found U-Boot SPL version U-Boot SPL 2020.04-tbot-00375-g946d9a0974
> (Apr 17 2020 - 16:20:27
> +0200) installed
> ? ??found U-Boot version U-Boot 2020.04-tbot-00375-g946d9a0974 (Apr 17
> 2020 - 16:20:27 +0200)
> installed
> ? ??POWEROFF (wandboard)
> ? ??[lab1] sudo sispmctl -D 01:01:56:a2:f1 -f 3
> ? ? ## Accessing Gembird #0 USB device 021
> ? ? ## Switched outlet 3 off
> ? ??Done. (14.212s)
> ??????????????????????????????????????????
> ??Log written to
> '/home/hs/data/Entwicklung/wandboard/tbot-tbot2go/log/lab1-wandboard-0040.json'
> ??SUCCESS (14.340s)
> hs at lab-1:tbot-tbot2go [wandboard-devel-messe] $
> --
> DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs at denx.de
>
--
Derek Atkins 617-623-3745
derek at ihtfp.com www.ihtfp.com
Computer and Internet Security Consultant
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2020-04-17 15:02 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-17 0:10 [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
2020-04-17 0:10 ` [PATCH 2/5] pmic: pfuze100: Change error message level to debug Fabio Estevam
2020-04-17 0:10 ` [PATCH v3 2/2] wandboard: Remove repeated PMIC string Fabio Estevam
2020-04-17 0:10 ` [PATCH 4/5] wandboard: Remove CONFIG_DISPLAY_BOARDINFO_LATE Fabio Estevam
2020-04-17 0:10 ` [PATCH 5/5] wandboard: Remove checkboard() Fabio Estevam
2020-04-17 0:14 ` [PATCH 1/5] wandboard: Fix detection for mx6q/mx6dl revD1 revariants Fabio Estevam
-- strict thread matches above, loose matches on Subject: below --
2020-04-17 0:12 Fabio Estevam
2020-04-17 7:56 ` Heiko Schocher
2020-04-17 11:15 ` Fabio Estevam
2020-04-17 11:33 ` Fabio Estevam
2020-04-17 11:41 ` Fabio Estevam
2020-04-17 12:00 ` Derek Atkins
2020-04-17 12:30 ` Fabio Estevam
2020-04-17 14:50 ` Heiko Schocher
2020-04-17 15:02 ` Derek Atkins
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox