Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
| 4 | * |
| 5 | * (C) Copyright 2000 - 2002 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 7 | ******************************************************************** |
| 8 | * NOTE: This header file defines an interface to U-Boot. Including |
| 9 | * this (unmodified) header file in another file is considered normal |
| 10 | * use of U-Boot, and does *not* fall under the heading of "derived |
| 11 | * work". |
| 12 | ******************************************************************** |
| 13 | */ |
| 14 | |
| 15 | #ifndef __ASM_GENERIC_U_BOOT_H__ |
| 16 | #define __ASM_GENERIC_U_BOOT_H__ |
| 17 | |
| 18 | /* |
| 19 | * Board information passed to Linux kernel from U-Boot |
| 20 | * |
| 21 | * include/asm-ppc/u-boot.h |
| 22 | */ |
| 23 | |
| 24 | #ifndef __ASSEMBLY__ |
| 25 | |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 26 | #include <asm/types.h> |
Masahiro Yamada | 4ca281a | 2020-02-25 02:24:17 +0900 | [diff] [blame] | 27 | #include <linux/types.h> |
| 28 | |
Masahiro Yamada | 36da57a | 2020-06-26 15:13:35 +0900 | [diff] [blame] | 29 | struct bd_info { |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 30 | unsigned long bi_memstart; /* start of DRAM memory */ |
| 31 | phys_size_t bi_memsize; /* size of DRAM memory in bytes */ |
| 32 | unsigned long bi_flashstart; /* start of FLASH memory */ |
| 33 | unsigned long bi_flashsize; /* size of FLASH memory */ |
| 34 | unsigned long bi_flashoffset; /* reserved area for startup monitor */ |
| 35 | unsigned long bi_sramstart; /* start of SRAM memory */ |
| 36 | unsigned long bi_sramsize; /* size of SRAM memory */ |
| 37 | #ifdef CONFIG_ARM |
| 38 | unsigned long bi_arm_freq; /* arm frequency */ |
| 39 | unsigned long bi_dsp_freq; /* dsp core frequency */ |
| 40 | unsigned long bi_ddr_freq; /* ddr frequency */ |
| 41 | #endif |
Christophe Leroy | ee1e600 | 2018-03-16 17:20:41 +0100 | [diff] [blame] | 42 | #if defined(CONFIG_MPC8xx) || defined(CONFIG_E500) || defined(CONFIG_MPC86xx) |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 43 | unsigned long bi_immr_base; /* base of IMMR register */ |
| 44 | #endif |
Heiko Schocher | 064b55c | 2017-06-14 05:49:40 +0200 | [diff] [blame] | 45 | #if defined(CONFIG_M68K) |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 46 | unsigned long bi_mbar_base; /* base of internal registers */ |
| 47 | #endif |
| 48 | #if defined(CONFIG_MPC83xx) |
| 49 | unsigned long bi_immrbar; |
| 50 | #endif |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 51 | unsigned long bi_bootflags; /* boot / reboot flag (Unused) */ |
| 52 | unsigned long bi_ip_addr; /* IP Address */ |
| 53 | unsigned char bi_enetaddr[6]; /* OLD: see README.enetaddr */ |
| 54 | unsigned short bi_ethspeed; /* Ethernet speed in Mbps */ |
| 55 | unsigned long bi_intfreq; /* Internal Freq, in MHz */ |
| 56 | unsigned long bi_busfreq; /* Bus Freq, in MHz */ |
| 57 | #if defined(CONFIG_CPM2) |
| 58 | unsigned long bi_cpmfreq; /* CPM_CLK Freq, in MHz */ |
| 59 | unsigned long bi_brgfreq; /* BRG_CLK Freq, in MHz */ |
| 60 | unsigned long bi_sccfreq; /* SCC_CLK Freq, in MHz */ |
| 61 | unsigned long bi_vco; /* VCO Out from PLL, in MHz */ |
| 62 | #endif |
Heiko Schocher | 064b55c | 2017-06-14 05:49:40 +0200 | [diff] [blame] | 63 | #if defined(CONFIG_M68K) |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 64 | unsigned long bi_pcifreq; /* PCI Bus Freq, in MHz */ |
| 65 | #endif |
Alison Wang | 1313db4 | 2015-02-12 18:33:15 +0800 | [diff] [blame] | 66 | #if defined(CONFIG_EXTRA_CLOCK) |
| 67 | unsigned long bi_inpfreq; /* input Freq in MHz */ |
| 68 | unsigned long bi_vcofreq; /* vco Freq in MHz */ |
| 69 | unsigned long bi_flbfreq; /* Flexbus Freq in MHz */ |
| 70 | #endif |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 71 | ulong bi_arch_number; /* unique id for this board */ |
| 72 | ulong bi_boot_params; /* where this board expects params */ |
| 73 | #ifdef CONFIG_NR_DRAM_BANKS |
| 74 | struct { /* RAM configuration */ |
Bin Meng | 715f599 | 2015-08-06 01:31:20 -0700 | [diff] [blame] | 75 | phys_addr_t start; |
| 76 | phys_size_t size; |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 77 | } bi_dram[CONFIG_NR_DRAM_BANKS]; |
| 78 | #endif /* CONFIG_NR_DRAM_BANKS */ |
Masahiro Yamada | 36da57a | 2020-06-26 15:13:35 +0900 | [diff] [blame] | 79 | }; |
Simon Glass | 69d59b4 | 2013-03-05 14:39:35 +0000 | [diff] [blame] | 80 | |
| 81 | #endif /* __ASSEMBLY__ */ |
| 82 | |
| 83 | #endif /* __ASM_GENERIC_U_BOOT_H__ */ |