3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Alex Zuepke <azu@sysgo.de>
10 * SPDX-License-Identifier: GPL-2.0+
12 ********************************************************************
13 * NOTE: This header file defines an interface to U-Boot. Including
14 * this (unmodified) header file in another file is considered normal
15 * use of U-Boot, and does *not* fall under the heading of "derived
17 ********************************************************************
23 #ifdef CONFIG_SYS_GENERIC_BOARD
24 /* Use the generic board which requires a unified bd_info */
25 #include <asm-generic/u-boot.h>
29 typedef struct bd_info {
30 unsigned int bi_baudrate; /* serial console baudrate */
31 ulong bi_arch_number; /* unique id for this board */
32 ulong bi_boot_params; /* where this board expects params */
33 unsigned long bi_arm_freq; /* arm frequency */
34 unsigned long bi_dsp_freq; /* dsp core frequency */
35 unsigned long bi_ddr_freq; /* ddr frequency */
36 struct /* RAM configuration */
40 } bi_dram[CONFIG_NR_DRAM_BANKS];
44 #endif /* !CONFIG_SYS_GENERIC_BOARD */
46 /* For image.h:image_check_target_arch() */
48 #define IH_ARCH_DEFAULT IH_ARCH_ARM
50 #define IH_ARCH_DEFAULT IH_ARCH_ARM64
53 #endif /* _U_BOOT_H_ */