wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | f710efd | 2010-07-24 20:22:02 +0200 | [diff] [blame] | 2 | * (C) Copyright 2002-2010 |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_GBL_DATA_H |
| 9 | #define __ASM_GBL_DATA_H |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 10 | |
| 11 | #ifndef __ASSEMBLY__ |
| 12 | |
Simon Glass | 9909bf3 | 2015-08-10 20:44:31 -0600 | [diff] [blame] | 13 | #include <asm/processor.h> |
| 14 | |
Simon Glass | 30580fc | 2014-11-12 22:42:23 -0700 | [diff] [blame] | 15 | enum pei_boot_mode_t { |
| 16 | PEI_BOOT_NONE = 0, |
| 17 | PEI_BOOT_SOFT_RESET, |
| 18 | PEI_BOOT_RESUME, |
| 19 | |
| 20 | }; |
| 21 | |
Simon Glass | d21f34e | 2016-03-11 22:07:26 -0700 | [diff] [blame] | 22 | struct dimm_info { |
| 23 | uint32_t dimm_size; |
| 24 | uint16_t ddr_type; |
| 25 | uint16_t ddr_frequency; |
| 26 | uint8_t rank_per_dimm; |
| 27 | uint8_t channel_num; |
| 28 | uint8_t dimm_num; |
| 29 | uint8_t bank_locator; |
| 30 | /* The 5th byte is '\0' for the end of string */ |
| 31 | uint8_t serial[5]; |
| 32 | /* The 19th byte is '\0' for the end of string */ |
| 33 | uint8_t module_part_number[19]; |
| 34 | uint16_t mod_id; |
| 35 | uint8_t mod_type; |
| 36 | uint8_t bus_width; |
| 37 | } __packed; |
| 38 | |
| 39 | struct pei_memory_info { |
| 40 | uint8_t dimm_cnt; |
| 41 | /* Maximum num of dimm is 8 */ |
| 42 | struct dimm_info dimm[8]; |
| 43 | } __packed; |
| 44 | |
Simon Glass | 268eefd | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 45 | struct memory_area { |
| 46 | uint64_t start; |
| 47 | uint64_t size; |
| 48 | }; |
| 49 | |
| 50 | struct memory_info { |
| 51 | int num_areas; |
| 52 | uint64_t total_memory; |
| 53 | uint64_t total_32bit_memory; |
| 54 | struct memory_area area[CONFIG_NR_DRAM_BANKS]; |
| 55 | }; |
| 56 | |
Simon Glass | 7bf5b9e | 2015-01-01 16:18:07 -0700 | [diff] [blame] | 57 | #define MAX_MTRR_REQUESTS 8 |
| 58 | |
| 59 | /** |
| 60 | * A request for a memory region to be set up in a particular way. These |
| 61 | * requests are processed before board_init_r() is called. They are generally |
| 62 | * optional and can be ignored with some performance impact. |
| 63 | */ |
| 64 | struct mtrr_request { |
| 65 | int type; /* MTRR_TYPE_... */ |
| 66 | uint64_t start; |
| 67 | uint64_t size; |
| 68 | }; |
| 69 | |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 70 | /* Architecture-specific global data */ |
| 71 | struct arch_global_data { |
Simon Glass | 9909bf3 | 2015-08-10 20:44:31 -0600 | [diff] [blame] | 72 | u64 gdt[X86_GDT_NUM_ENTRIES] __aligned(16); |
Bin Meng | 47eac04 | 2015-01-22 11:29:40 +0800 | [diff] [blame] | 73 | struct global_data *gd_addr; /* Location of Global Data */ |
| 74 | uint8_t x86; /* CPU family */ |
| 75 | uint8_t x86_vendor; /* CPU vendor */ |
| 76 | uint8_t x86_model; |
| 77 | uint8_t x86_mask; |
Bin Meng | 035c1d2 | 2014-11-09 22:18:56 +0800 | [diff] [blame] | 78 | uint32_t x86_device; |
Simon Glass | 6fa6e4a | 2013-02-28 19:26:12 +0000 | [diff] [blame] | 79 | uint64_t tsc_base; /* Initial value returned by rdtsc() */ |
Simon Glass | 347c05b | 2013-02-28 19:26:15 +0000 | [diff] [blame] | 80 | void *new_fdt; /* Relocated FDT */ |
Simon Glass | 1f4476c | 2014-11-06 13:20:10 -0700 | [diff] [blame] | 81 | uint32_t bist; /* Built-in self test value */ |
Simon Glass | 30580fc | 2014-11-12 22:42:23 -0700 | [diff] [blame] | 82 | enum pei_boot_mode_t pei_boot_mode; |
Simon Glass | 60af017 | 2014-11-12 22:42:24 -0700 | [diff] [blame] | 83 | const struct pch_gpio_map *gpio_map; /* board GPIO map */ |
Simon Glass | 268eefd | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 84 | struct memory_info meminfo; /* Memory information */ |
Simon Glass | d21f34e | 2016-03-11 22:07:26 -0700 | [diff] [blame] | 85 | struct pei_memory_info pei_meminfo; /* PEI memory information */ |
Bin Meng | 005f0af | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 86 | #ifdef CONFIG_HAVE_FSP |
Bin Meng | 47eac04 | 2015-01-22 11:29:40 +0800 | [diff] [blame] | 87 | void *hob_list; /* FSP HOB list */ |
Bin Meng | 005f0af | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 88 | #endif |
Simon Glass | 7bf5b9e | 2015-01-01 16:18:07 -0700 | [diff] [blame] | 89 | struct mtrr_request mtrr_req[MAX_MTRR_REQUESTS]; |
| 90 | int mtrr_req_count; |
Bin Meng | 47eac04 | 2015-01-22 11:29:40 +0800 | [diff] [blame] | 91 | int has_mtrr; |
Simon Glass | 428dfa4 | 2015-01-19 22:16:14 -0700 | [diff] [blame] | 92 | /* MRC training data to save for the next boot */ |
| 93 | char *mrc_output; |
| 94 | unsigned int mrc_output_len; |
Simon Glass | f95ad8c | 2015-08-04 12:33:57 -0600 | [diff] [blame] | 95 | ulong table; /* Table pointer from previous loader */ |
Simon Glass | 37e706d | 2017-01-16 07:04:17 -0700 | [diff] [blame] | 96 | int turbo_state; /* Current turbo state */ |
Simon Glass | f64d6f7 | 2017-01-16 07:04:16 -0700 | [diff] [blame] | 97 | struct irq_routing_table *pirq_routing_table; |
Bin Meng | 322ec3e | 2016-05-11 07:44:59 -0700 | [diff] [blame] | 98 | #ifdef CONFIG_SEABIOS |
| 99 | u32 high_table_ptr; |
| 100 | u32 high_table_limit; |
| 101 | #endif |
Simon Glass | 3ac47d7 | 2012-12-13 20:48:30 +0000 | [diff] [blame] | 102 | }; |
| 103 | |
Graeme Russ | 3c28f48 | 2011-09-01 00:48:27 +0000 | [diff] [blame] | 104 | #endif |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 105 | |
Simon Glass | d388763 | 2012-12-13 20:49:27 +0000 | [diff] [blame] | 106 | #include <asm-generic/global_data.h> |
| 107 | |
| 108 | #ifndef __ASSEMBLY__ |
Simon Glass | 590aef7 | 2017-01-16 07:03:59 -0700 | [diff] [blame] | 109 | # if defined(CONFIG_EFI_APP) || CONFIG_IS_ENABLED(X86_64) |
Simon Glass | 7f65c09 | 2015-07-31 09:31:35 -0600 | [diff] [blame] | 110 | |
Simon Glass | 590aef7 | 2017-01-16 07:03:59 -0700 | [diff] [blame] | 111 | /* TODO(sjg@chromium.org): Consider using a fixed register for gd on x86_64 */ |
Simon Glass | 7f65c09 | 2015-07-31 09:31:35 -0600 | [diff] [blame] | 112 | #define gd global_data_ptr |
| 113 | |
| 114 | #define DECLARE_GLOBAL_DATA_PTR extern struct global_data *global_data_ptr |
| 115 | # else |
Simon Glass | 42081ce | 2013-06-11 11:14:52 -0700 | [diff] [blame] | 116 | static inline __attribute__((no_instrument_function)) gd_t *get_fs_gd_ptr(void) |
Graeme Russ | 3536896 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 117 | { |
| 118 | gd_t *gd_ptr; |
| 119 | |
Simon Glass | 590aef7 | 2017-01-16 07:03:59 -0700 | [diff] [blame] | 120 | #if CONFIG_IS_ENABLED(X86_64) |
| 121 | asm volatile("fs mov 0, %0\n" : "=r" (gd_ptr)); |
| 122 | #else |
Graeme Russ | 3536896 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 123 | asm volatile("fs movl 0, %0\n" : "=r" (gd_ptr)); |
Simon Glass | 590aef7 | 2017-01-16 07:03:59 -0700 | [diff] [blame] | 124 | #endif |
Graeme Russ | 3536896 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 125 | |
| 126 | return gd_ptr; |
| 127 | } |
| 128 | |
| 129 | #define gd get_fs_gd_ptr() |
Graeme Russ | 5fb91cc | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 130 | |
Simon Glass | 5d18dc9 | 2015-07-31 09:31:28 -0600 | [diff] [blame] | 131 | #define DECLARE_GLOBAL_DATA_PTR |
Simon Glass | 7f65c09 | 2015-07-31 09:31:35 -0600 | [diff] [blame] | 132 | # endif |
Simon Glass | 5d18dc9 | 2015-07-31 09:31:28 -0600 | [diff] [blame] | 133 | |
Graeme Russ | 5fb91cc | 2010-10-07 20:03:29 +1100 | [diff] [blame] | 134 | #endif |
| 135 | |
Gabe Black | ef89932 | 2012-11-03 11:41:28 +0000 | [diff] [blame] | 136 | /* |
| 137 | * Our private Global Data Flags |
| 138 | */ |
Simon Glass | 5d18dc9 | 2015-07-31 09:31:28 -0600 | [diff] [blame] | 139 | #define GD_FLG_COLD_BOOT 0x10000 /* Cold Boot */ |
| 140 | #define GD_FLG_WARM_BOOT 0x20000 /* Warm Boot */ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 141 | |
| 142 | #endif /* __ASM_GBL_DATA_H */ |