diff options
author | Philippe Schenker <philippe.schenker@toradex.com> | 2022-08-29 19:59:52 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-10-20 17:35:51 +0200 |
commit | 03268b2f9e67b21753580a13a10cfb8e1b27fc81 (patch) | |
tree | 27ab3e61668c00835a6f35b1f9beecc75a733a34 /board | |
parent | 5bc21d386993023690b8d65a05829fba55053f95 (diff) | |
download | u-boot-03268b2f9e67b21753580a13a10cfb8e1b27fc81.tar.gz u-boot-03268b2f9e67b21753580a13a10cfb8e1b27fc81.tar.bz2 u-boot-03268b2f9e67b21753580a13a10cfb8e1b27fc81.zip |
board: verdin-imx8mm: add call to ft_common_board_setup
With this call the following attributes get set to the device-tree
and are then accessible from linux in /proc/device-tree/
serial-number: The serial number that is stored in config-block
toradex,board-rev: The version of the module (e.g. V1.1A)
toradex,product-id: The SKU number of the module running
Fixes: commit 14d5aeff776b ("board: toradex: Add Verdin iMX8M Mini support")
Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/toradex/verdin-imx8mm/verdin-imx8mm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/verdin-imx8mm/verdin-imx8mm.c b/board/toradex/verdin-imx8mm/verdin-imx8mm.c index bad8833b22..55c02653da 100644 --- a/board/toradex/verdin-imx8mm/verdin-imx8mm.c +++ b/board/toradex/verdin-imx8mm/verdin-imx8mm.c @@ -125,6 +125,6 @@ int board_phys_sdram_size(phys_size_t *size) #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) int ft_board_setup(void *blob, struct bd_info *bd) { - return 0; + return ft_common_board_setup(blob, bd); } #endif |