mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-30 08:07:59 +00:00
board: phytec: common: k3: Expose product infos to Linux
Call 'phytec_ft_board_fixup' in the common K3 board code to expose the product name and part number to Linux. Signed-off-by: Daniel Schultz <d.schultz@phytec.de> Reviewed-by: Wadim Egorov <w.egorov@phytec.de>
This commit is contained in:
parent
9c46b8c4e0
commit
058ed281fa
1 changed files with 12 additions and 0 deletions
|
@ -258,9 +258,21 @@ fixup_error:
|
||||||
|
|
||||||
int ft_board_setup(void *blob, struct bd_info *bd)
|
int ft_board_setup(void *blob, struct bd_info *bd)
|
||||||
{
|
{
|
||||||
|
struct phytec_eeprom_data data;
|
||||||
|
int ret;
|
||||||
|
|
||||||
fdt_apply_som_overlays(blob);
|
fdt_apply_som_overlays(blob);
|
||||||
fdt_copy_fixed_partitions(blob);
|
fdt_copy_fixed_partitions(blob);
|
||||||
|
|
||||||
|
ret = phytec_eeprom_data_setup(&data, 0, EEPROM_ADDR);
|
||||||
|
if (ret || !data.valid)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
ret = phytec_ft_board_fixup(&data, blob);
|
||||||
|
if (ret)
|
||||||
|
pr_err("%s: Failed to add PHYTEC information to fdt.\n",
|
||||||
|
__func__);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue