mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 08:59:33 +00:00
edb0ecd187
Boards can use a sysinfo driver if a particular model name is needed. Update this board to use checkboard() directly, rather than having a weak function laid on top of a weak function. Make all the checkboard() functions call the new tdx_checkboard() so that the same information is displayed. Signed-off-by: Simon Glass <sjg@chromium.org>
16 lines
348 B
C
16 lines
348 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);
|
|
int tdx_checkboard(void);
|
|
|
|
#endif /* _TDX_COMMON_H */
|