Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 2 | /* |
Wolfgang Denk | f710efd | 2010-07-24 20:22:02 +0200 | [diff] [blame] | 3 | * (C) Copyright 2002-2010 |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ASM_GBL_DATA_H |
| 8 | #define __ASM_GBL_DATA_H |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 9 | |
Peter Tyser | be34d1d | 2009-09-21 11:20:37 -0500 | [diff] [blame] | 10 | #include "config.h" |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 11 | #include "asm/types.h" |
| 12 | |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 13 | /* Architecture-specific global data */ |
| 14 | struct arch_global_data { |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 15 | #if defined(CONFIG_FSL_ESDHC) |
| 16 | u32 sdhc_clk; |
Yangbo Lu | b124f8a | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 17 | #if defined(CONFIG_FSL_ESDHC_ADAPTER_IDENT) |
| 18 | u8 sdhc_adapter; |
| 19 | #endif |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 20 | #endif |
Christophe Leroy | b3510fb | 2018-03-16 17:20:41 +0100 | [diff] [blame] | 21 | #if defined(CONFIG_MPC8xx) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 22 | unsigned long brg_clk; |
| 23 | #endif |
Simon Glass | 34a194f | 2012-12-13 20:48:44 +0000 | [diff] [blame] | 24 | #if defined(CONFIG_CPM2) |
Simon Glass | 44ea851 | 2012-12-13 20:48:46 +0000 | [diff] [blame] | 25 | /* There are many clocks on the MPC8260 - see page 9-5 */ |
| 26 | unsigned long vco_out; |
| 27 | unsigned long cpm_clk; |
| 28 | unsigned long scc_clk; |
Simon Glass | 34a194f | 2012-12-13 20:48:44 +0000 | [diff] [blame] | 29 | unsigned long brg_clk; |
| 30 | #endif |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 31 | /* TODO: sjg@chromium.org: Should these be unslgned long? */ |
Peter Tyser | 62e7398 | 2009-05-22 17:23:24 -0500 | [diff] [blame] | 32 | #if defined(CONFIG_MPC83xx) |
Mario Six | 7cab147 | 2018-08-06 10:23:36 +0200 | [diff] [blame^] | 33 | #ifdef CONFIG_CLK_MPC83XX |
| 34 | u32 core_clk; |
| 35 | #else |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 36 | /* There are other clocks in the MPC83XX */ |
| 37 | u32 csb_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 38 | # if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
Ilya Yanok | a3e5fd5 | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 39 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 40 | u32 tsec1_clk; |
| 41 | u32 tsec2_clk; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 42 | u32 usbdr_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 43 | # elif defined(CONFIG_MPC8309) |
Gerlando Falauto | fe201cb | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 44 | u32 usbdr_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 45 | # endif |
| 46 | # if defined(CONFIG_MPC834x) |
Scott Wood | beb638a | 2007-04-16 14:34:18 -0500 | [diff] [blame] | 47 | u32 usbmph_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 48 | # endif /* CONFIG_MPC834x */ |
| 49 | # if defined(CONFIG_MPC8315) |
Dave Liu | e0cfec8 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 50 | u32 tdm_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 51 | # endif |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 52 | u32 core_clk; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 53 | u32 enc_clk; |
| 54 | u32 lbiu_clk; |
| 55 | u32 lclk_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 56 | # if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
Ilya Yanok | a3e5fd5 | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 57 | defined(CONFIG_MPC837x) |
Dave Liu | 5245ff5 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 58 | u32 pciexp1_clk; |
| 59 | u32 pciexp2_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 60 | # endif |
| 61 | # if defined(CONFIG_MPC837x) || defined(CONFIG_MPC8315) |
Dave Liu | 5245ff5 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 62 | u32 sata_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 63 | # endif |
| 64 | # if defined(CONFIG_MPC8360) |
| 65 | u32 mem_sec_clk; |
| 66 | # endif /* CONFIG_MPC8360 */ |
Dave Liu | 5245ff5 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 67 | #endif |
Mario Six | 7cab147 | 2018-08-06 10:23:36 +0200 | [diff] [blame^] | 68 | #endif |
Simon Glass | a8b5739 | 2012-12-13 20:48:48 +0000 | [diff] [blame] | 69 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
| 70 | u32 lbc_clk; |
| 71 | void *cpu; |
| 72 | #endif /* CONFIG_MPC85xx || CONFIG_MPC86xx */ |
Simon Glass | c2baaec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 73 | #if defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) || \ |
| 74 | defined(CONFIG_MPC86xx) |
| 75 | u32 i2c1_clk; |
| 76 | u32 i2c2_clk; |
| 77 | #endif |
Simon Glass | 8518b17 | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 78 | #if defined(CONFIG_QE) |
| 79 | u32 qe_clk; |
| 80 | u32 brg_clk; |
| 81 | uint mp_alloc_base; |
| 82 | uint mp_alloc_top; |
| 83 | #endif /* CONFIG_QE */ |
Simon Glass | c6622d6 | 2012-12-13 20:48:51 +0000 | [diff] [blame] | 84 | #if defined(CONFIG_FSL_LAW) |
| 85 | u32 used_laws; |
| 86 | #endif |
Simon Glass | 0b46658 | 2012-12-13 20:48:52 +0000 | [diff] [blame] | 87 | #if defined(CONFIG_E500) |
| 88 | u32 used_tlb_cams[(CONFIG_SYS_NUM_TLBCAMS+31)/32]; |
| 89 | #endif |
Simon Glass | 4d6eaa3 | 2012-12-13 20:48:56 +0000 | [diff] [blame] | 90 | unsigned long reset_status; /* reset status register at boot */ |
Simon Glass | 387a1f2 | 2012-12-13 20:48:57 +0000 | [diff] [blame] | 91 | #if defined(CONFIG_MPC83xx) |
| 92 | unsigned long arbiter_event_attributes; |
| 93 | unsigned long arbiter_event_address; |
| 94 | #endif |
Simon Glass | 8937073 | 2017-01-23 13:31:23 -0700 | [diff] [blame] | 95 | #if defined(CONFIG_CPM2) |
Simon Glass | 9398008 | 2012-12-13 20:48:58 +0000 | [diff] [blame] | 96 | unsigned int dp_alloc_base; |
| 97 | unsigned int dp_alloc_top; |
| 98 | #endif |
Simon Glass | f2d9aaf | 2012-12-13 20:49:02 +0000 | [diff] [blame] | 99 | #ifdef CONFIG_SYS_FPGA_COUNT |
| 100 | unsigned fpga_state[CONFIG_SYS_FPGA_COUNT]; |
| 101 | #endif |
Stefan Roese | b47a63d | 2015-10-02 08:20:35 +0200 | [diff] [blame] | 102 | #if defined(CONFIG_WD_MAX_RATE) |
| 103 | unsigned long long wdt_last; /* trace watch-dog triggering rate */ |
| 104 | #endif |
| 105 | #if defined(CONFIG_LWMON5) |
| 106 | unsigned long kbd_status; |
| 107 | #endif |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 108 | }; |
| 109 | |
Simon Glass | 1c62cc2 | 2012-12-13 20:49:23 +0000 | [diff] [blame] | 110 | #include <asm-generic/global_data.h> |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 111 | |
| 112 | #if 1 |
Wolfgang Denk | 69c0964 | 2008-02-14 22:43:22 +0100 | [diff] [blame] | 113 | #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r2") |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 114 | #else /* We could use plain global data, but the resulting code is bigger */ |
| 115 | #define XTRN_DECLARE_GLOBAL_DATA_PTR extern |
| 116 | #define DECLARE_GLOBAL_DATA_PTR XTRN_DECLARE_GLOBAL_DATA_PTR \ |
| 117 | gd_t *gd |
| 118 | #endif |
| 119 | |
| 120 | #endif /* __ASM_GBL_DATA_H */ |