mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
28138dea7b
Sysinfo prints the model obtained from device tree, checkboard() take info from hardware and tdx_checkboard() use the model retrieved by toradex config block. Remove the print from checkboard() function because the model obtained from toradex config block is the most complete. If toradex config block is missing the model info from device tree is enough. Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> # Verdin iMX8M Plus Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
15 lines
322 B
C
15 lines
322 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2016 Toradex, Inc.
|
|
*/
|
|
|
|
#ifndef _TDX_COMMON_H
|
|
#define _TDX_COMMON_H
|
|
|
|
#define TORADEX_USB_PRODUCT_NUM_OFFSET 0x4000
|
|
#define TDX_USB_VID 0x1B67
|
|
|
|
int ft_common_board_setup(void *blob, struct bd_info *bd);
|
|
u32 get_board_revision(void);
|
|
|
|
#endif /* _TDX_COMMON_H */
|