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 |
Yangbo Lu | ff98fde | 2020-06-17 18:08:57 +0800 | [diff] [blame] | 4 | * Copyright 2020 NXP |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_GBL_DATA_H |
| 9 | #define __ASM_GBL_DATA_H |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 10 | |
Tom Rini | f1fc77c | 2021-06-03 09:38:59 -0400 | [diff] [blame] | 11 | #include <config.h> |
Tom Rini | 10599d6 | 2023-11-01 12:28:06 -0400 | [diff] [blame^] | 12 | #include <linux/types.h> |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 13 | |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 14 | /* Architecture-specific global data */ |
| 15 | struct arch_global_data { |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 16 | #if defined(CONFIG_FSL_ESDHC) |
| 17 | u32 sdhc_clk; |
Yangbo Lu | 0fa6876 | 2019-12-19 18:59:28 +0800 | [diff] [blame] | 18 | u32 sdhc_per_clk; |
Simon Glass | 9e247d1 | 2012-12-13 20:49:05 +0000 | [diff] [blame] | 19 | #endif |
Christophe Leroy | b3510fb | 2018-03-16 17:20:41 +0100 | [diff] [blame] | 20 | #if defined(CONFIG_MPC8xx) |
Christophe Leroy | 069fa83 | 2017-07-06 10:23:22 +0200 | [diff] [blame] | 21 | unsigned long brg_clk; |
| 22 | #endif |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 23 | /* TODO: sjg@chromium.org: Should these be unslgned long? */ |
Peter Tyser | 62e7398 | 2009-05-22 17:23:24 -0500 | [diff] [blame] | 24 | #if defined(CONFIG_MPC83xx) |
Mario Six | 7cab147 | 2018-08-06 10:23:36 +0200 | [diff] [blame] | 25 | #ifdef CONFIG_CLK_MPC83XX |
| 26 | u32 core_clk; |
| 27 | #else |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 28 | /* There are other clocks in the MPC83XX */ |
| 29 | u32 csb_clk; |
Mario Six | 9164bdd | 2019-01-21 09:17:25 +0100 | [diff] [blame] | 30 | # if defined(CONFIG_ARCH_MPC8308) || defined(CONFIG_ARCH_MPC831X) || \ |
Mario Six | 60b1123 | 2019-01-21 09:17:29 +0100 | [diff] [blame] | 31 | defined(CONFIG_ARCH_MPC834X) || defined(CONFIG_ARCH_MPC837X) |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 32 | u32 tsec1_clk; |
| 33 | u32 tsec2_clk; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 34 | u32 usbdr_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 35 | # endif |
Mario Six | 0344f5e | 2019-01-21 09:17:27 +0100 | [diff] [blame] | 36 | # if defined(CONFIG_ARCH_MPC834X) |
Scott Wood | beb638a | 2007-04-16 14:34:18 -0500 | [diff] [blame] | 37 | u32 usbmph_clk; |
Mario Six | 0344f5e | 2019-01-21 09:17:27 +0100 | [diff] [blame] | 38 | # endif /* CONFIG_ARCH_MPC834X */ |
Dave Liu | a46daea | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 39 | u32 core_clk; |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 40 | u32 enc_clk; |
| 41 | u32 lbiu_clk; |
| 42 | u32 lclk_clk; |
Mario Six | 9164bdd | 2019-01-21 09:17:25 +0100 | [diff] [blame] | 43 | # if defined(CONFIG_ARCH_MPC8308) || defined(CONFIG_ARCH_MPC831X) || \ |
Mario Six | 60b1123 | 2019-01-21 09:17:29 +0100 | [diff] [blame] | 44 | defined(CONFIG_ARCH_MPC837X) |
Dave Liu | 5245ff5 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 45 | u32 pciexp1_clk; |
| 46 | u32 pciexp2_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 47 | # endif |
Tom Rini | d9e6ef5 | 2021-05-14 21:34:27 -0400 | [diff] [blame] | 48 | # if defined(CONFIG_ARCH_MPC837X) |
Dave Liu | 5245ff5 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 49 | u32 sata_clk; |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 50 | # endif |
Mario Six | 84eb431 | 2019-01-21 09:17:28 +0100 | [diff] [blame] | 51 | # if defined(CONFIG_ARCH_MPC8360) |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 52 | u32 mem_sec_clk; |
Mario Six | 84eb431 | 2019-01-21 09:17:28 +0100 | [diff] [blame] | 53 | # endif /* CONFIG_ARCH_MPC8360 */ |
Dave Liu | 5245ff5 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 54 | #endif |
Mario Six | 7cab147 | 2018-08-06 10:23:36 +0200 | [diff] [blame] | 55 | #endif |
Simon Glass | a8b5739 | 2012-12-13 20:48:48 +0000 | [diff] [blame] | 56 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) |
| 57 | u32 lbc_clk; |
| 58 | void *cpu; |
| 59 | #endif /* CONFIG_MPC85xx || CONFIG_MPC86xx */ |
Simon Glass | c2baaec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 60 | #if defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) || \ |
| 61 | defined(CONFIG_MPC86xx) |
| 62 | u32 i2c1_clk; |
| 63 | u32 i2c2_clk; |
| 64 | #endif |
Simon Glass | 8518b17 | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 65 | #if defined(CONFIG_QE) |
| 66 | u32 qe_clk; |
| 67 | u32 brg_clk; |
| 68 | uint mp_alloc_base; |
| 69 | uint mp_alloc_top; |
| 70 | #endif /* CONFIG_QE */ |
Simon Glass | c6622d6 | 2012-12-13 20:48:51 +0000 | [diff] [blame] | 71 | #if defined(CONFIG_FSL_LAW) |
| 72 | u32 used_laws; |
| 73 | #endif |
Simon Glass | 0b46658 | 2012-12-13 20:48:52 +0000 | [diff] [blame] | 74 | #if defined(CONFIG_E500) |
| 75 | u32 used_tlb_cams[(CONFIG_SYS_NUM_TLBCAMS+31)/32]; |
| 76 | #endif |
Simon Glass | 4d6eaa3 | 2012-12-13 20:48:56 +0000 | [diff] [blame] | 77 | unsigned long reset_status; /* reset status register at boot */ |
Simon Glass | 387a1f2 | 2012-12-13 20:48:57 +0000 | [diff] [blame] | 78 | #if defined(CONFIG_MPC83xx) |
| 79 | unsigned long arbiter_event_attributes; |
| 80 | unsigned long arbiter_event_address; |
| 81 | #endif |
Simon Glass | f2d9aaf | 2012-12-13 20:49:02 +0000 | [diff] [blame] | 82 | #ifdef CONFIG_SYS_FPGA_COUNT |
| 83 | unsigned fpga_state[CONFIG_SYS_FPGA_COUNT]; |
| 84 | #endif |
Stefan Roese | b47a63d | 2015-10-02 08:20:35 +0200 | [diff] [blame] | 85 | #if defined(CONFIG_WD_MAX_RATE) |
| 86 | unsigned long long wdt_last; /* trace watch-dog triggering rate */ |
| 87 | #endif |
| 88 | #if defined(CONFIG_LWMON5) |
| 89 | unsigned long kbd_status; |
| 90 | #endif |
Simon Glass | cc76e9e | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 91 | }; |
| 92 | |
Simon Glass | 1c62cc2 | 2012-12-13 20:49:23 +0000 | [diff] [blame] | 93 | #include <asm-generic/global_data.h> |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 94 | |
Wolfgang Denk | 69c0964 | 2008-02-14 22:43:22 +0100 | [diff] [blame] | 95 | #define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r2") |
wdenk | 0157ced | 2002-10-21 17:04:47 +0000 | [diff] [blame] | 96 | |
| 97 | #endif /* __ASM_GBL_DATA_H */ |