blob: 001b2b53c1c8a80b23eff9fe25dcb7e23d96fa10 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb4a905e2011-10-10 08:22:14 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 *
5 * (C) Copyright 2002-2010
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glassb4a905e2011-10-10 08:22:14 +00007 */
8
9#ifndef __ASM_GBL_DATA_H
10#define __ASM_GBL_DATA_H
Simon Glass3ac47d72012-12-13 20:48:30 +000011
Tom Rini0843f912023-12-14 13:16:50 -050012#include <linux/types.h>
13
Simon Glass3ac47d72012-12-13 20:48:30 +000014/* Architecture-specific global data */
15struct arch_global_data {
Simon Glass9dd10bf2013-11-10 10:27:03 -070016 uint8_t *ram_buf; /* emulated RAM buffer */
Simon Glass752707a2019-04-08 13:20:41 -060017 void *text_base; /* pointer to base of text region */
Simon Glass66ca25c2023-07-15 21:39:10 -060018 ulong table_start; /* Start address of x86 tables */
19 ulong table_end; /* End address of x86 tables */
20 ulong table_start_high; /* Start address of high x86 tables */
21 ulong table_end_high; /* End address of high x86 tables */
Simon Glass9b388102023-09-19 21:00:15 -060022 ulong smbios_start; /* Start address of SMBIOS table */
Simon Glass3ac47d72012-12-13 20:48:30 +000023};
24
Simon Glass5b5177e2012-12-13 20:49:24 +000025#include <asm-generic/global_data.h>
Simon Glassb4a905e2011-10-10 08:22:14 +000026
27#define DECLARE_GLOBAL_DATA_PTR extern gd_t *gd
28
29#endif /* __ASM_GBL_DATA_H */