summaryrefslogtreecommitdiff
path: root/board/wandboard
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2020-04-17 15:27:09 +0300
committerStefano Babic <sbabic@denx.de>2020-04-18 13:59:23 +0300
commit4c13a4db60b4d570ea8cc496d02e5ea31adf27f0 (patch)
tree1f533504a21a98e970932828ecb3aefd0546a643 /board/wandboard
parent84eea6a118e72ce6c487c6517bc32abc77b59c9c (diff)
downloadu-boot-4c13a4db60b4d570ea8cc496d02e5ea31adf27f0.tar.xz
wandboard: Fix version detection for mx6q/mx6dl revD1
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. Fix this issue by using the revd1 device trees, so that the PMIC node can be found and then the PMIC can be detected by reading its register ID. Imported the revd1 device trees from mainline kernel version 5.7-rc1. Reported-by: Heiko Schocher <hs@denx.de> Reported-by: Derek Atkins <derek@ihtfp.com> Signed-off-by: Fabio Estevam <festevam@gmail.com> Tested-by: Derek Atkins <derek@ihtfp.com> Tested-by: Heiko Schocher <hs@denx.de> Tested-by: Peter Robinson <pbrobinson@gmail.com>
Diffstat (limited to 'board/wandboard')
-rw-r--r--board/wandboard/wandboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c
index 5725c5816c..90957167b2 100644
--- a/board/wandboard/wandboard.c
+++ b/board/wandboard/wandboard.c
@@ -484,13 +484,13 @@ int checkboard(void)
int board_fit_config_name_match(const char *name)
{
if (is_mx6dq()) {
- if (!strcmp(name, "imx6q-wandboard-revb1"))
+ if (!strcmp(name, "imx6q-wandboard-revd1"))
return 0;
} else if (is_mx6dqp()) {
if (!strcmp(name, "imx6qp-wandboard-revd1"))
return 0;
} else if (is_mx6dl() || is_mx6solo()) {
- if (!strcmp(name, "imx6dl-wandboard-revb1"))
+ if (!strcmp(name, "imx6dl-wandboard-revd1"))
return 0;
}