blob: 35148ab24eaa1bd93fe97eeef634e58c7001fb50 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Wolfgang Denk91a76752010-07-24 20:22:02 +02002 * (C) Copyright 2002-2010
wdenk2262cfe2002-11-18 00:14:45 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00006 */
7
8#ifndef __ASM_GBL_DATA_H
9#define __ASM_GBL_DATA_H
Simon Glass5cb48582012-12-13 20:48:30 +000010
11#ifndef __ASSEMBLY__
12
Simon Glass2db93742015-08-10 20:44:31 -060013#include <asm/processor.h>
14
Simon Glass8e0df062014-11-12 22:42:23 -070015enum pei_boot_mode_t {
16 PEI_BOOT_NONE = 0,
17 PEI_BOOT_SOFT_RESET,
18 PEI_BOOT_RESUME,
19
20};
21
Simon Glass65dd74a2014-11-12 22:42:28 -070022struct memory_area {
23 uint64_t start;
24 uint64_t size;
25};
26
27struct memory_info {
28 int num_areas;
29 uint64_t total_memory;
30 uint64_t total_32bit_memory;
31 struct memory_area area[CONFIG_NR_DRAM_BANKS];
32};
33
Simon Glassaff25232015-01-01 16:18:07 -070034#define MAX_MTRR_REQUESTS 8
35
36/**
37 * A request for a memory region to be set up in a particular way. These
38 * requests are processed before board_init_r() is called. They are generally
39 * optional and can be ignored with some performance impact.
40 */
41struct mtrr_request {
42 int type; /* MTRR_TYPE_... */
43 uint64_t start;
44 uint64_t size;
45};
46
Simon Glass5cb48582012-12-13 20:48:30 +000047/* Architecture-specific global data */
48struct arch_global_data {
Simon Glass2db93742015-08-10 20:44:31 -060049 u64 gdt[X86_GDT_NUM_ENTRIES] __aligned(16);
Bin Meng49491662015-01-22 11:29:40 +080050 struct global_data *gd_addr; /* Location of Global Data */
51 uint8_t x86; /* CPU family */
52 uint8_t x86_vendor; /* CPU vendor */
53 uint8_t x86_model;
54 uint8_t x86_mask;
Bin Meng52f952b2014-11-09 22:18:56 +080055 uint32_t x86_device;
Simon Glassbc2df1a2013-02-28 19:26:12 +000056 uint64_t tsc_base; /* Initial value returned by rdtsc() */
57 uint32_t tsc_base_kclocks; /* Initial tsc as a kclocks value */
58 uint32_t tsc_prev; /* For show_boot_progress() */
Bin Meng258b1352014-11-09 22:19:35 +080059 uint32_t tsc_mhz; /* TSC frequency in MHz */
Simon Glassf697d522013-02-28 19:26:15 +000060 void *new_fdt; /* Relocated FDT */
Simon Glassf67cd512014-11-06 13:20:10 -070061 uint32_t bist; /* Built-in self test value */
Simon Glass8e0df062014-11-12 22:42:23 -070062 enum pei_boot_mode_t pei_boot_mode;
Simon Glass1b4f25f2014-11-12 22:42:24 -070063 const struct pch_gpio_map *gpio_map; /* board GPIO map */
Simon Glass65dd74a2014-11-12 22:42:28 -070064 struct memory_info meminfo; /* Memory information */
Bin Mengbceb9f02014-12-12 21:05:31 +080065#ifdef CONFIG_HAVE_FSP
Bin Meng49491662015-01-22 11:29:40 +080066 void *hob_list; /* FSP HOB list */
Bin Mengbceb9f02014-12-12 21:05:31 +080067#endif
Simon Glassaff25232015-01-01 16:18:07 -070068 struct mtrr_request mtrr_req[MAX_MTRR_REQUESTS];
69 int mtrr_req_count;
Bin Meng49491662015-01-22 11:29:40 +080070 int has_mtrr;
Simon Glass191c0082015-01-19 22:16:14 -070071 /* MRC training data to save for the next boot */
72 char *mrc_output;
73 unsigned int mrc_output_len;
Simon Glass42fde3052015-08-04 12:33:57 -060074 ulong table; /* Table pointer from previous loader */
Simon Glass5cb48582012-12-13 20:48:30 +000075};
76
Graeme Russ9558b482011-09-01 00:48:27 +000077#endif
wdenk2262cfe2002-11-18 00:14:45 +000078
Simon Glass43cff662012-12-13 20:49:27 +000079#include <asm-generic/global_data.h>
80
81#ifndef __ASSEMBLY__
Simon Glass8f3b9692015-07-31 09:31:35 -060082# ifdef CONFIG_EFI_APP
83
84#define gd global_data_ptr
85
86#define DECLARE_GLOBAL_DATA_PTR extern struct global_data *global_data_ptr
87# else
Simon Glassd8819f92013-06-11 11:14:52 -070088static inline __attribute__((no_instrument_function)) gd_t *get_fs_gd_ptr(void)
Graeme Russ9e6c5722011-12-31 22:58:15 +110089{
90 gd_t *gd_ptr;
91
92 asm volatile("fs movl 0, %0\n" : "=r" (gd_ptr));
93
94 return gd_ptr;
95}
96
97#define gd get_fs_gd_ptr()
Graeme Russ161b3582010-10-07 20:03:29 +110098
Simon Glass83ec7de2015-07-31 09:31:28 -060099#define DECLARE_GLOBAL_DATA_PTR
Simon Glass8f3b9692015-07-31 09:31:35 -0600100# endif
Simon Glass83ec7de2015-07-31 09:31:28 -0600101
Graeme Russ161b3582010-10-07 20:03:29 +1100102#endif
103
Gabe Black91d82a22012-11-03 11:41:28 +0000104/*
105 * Our private Global Data Flags
106 */
Simon Glass83ec7de2015-07-31 09:31:28 -0600107#define GD_FLG_COLD_BOOT 0x10000 /* Cold Boot */
108#define GD_FLG_WARM_BOOT 0x20000 /* Warm Boot */
wdenk2262cfe2002-11-18 00:14:45 +0000109
110#endif /* __ASM_GBL_DATA_H */