blob: 44245b4a1b2fb4c83697a2b2819171421ca95071 [file] [log] [blame]
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01001/*
2 * U-boot - global_data.h Declarations for global data of u-boot
3 *
Aubrey Li155fd762007-04-05 18:31:18 +08004 * Copyright (c) 2005-2007 Analog Devices Inc.
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01005 *
Wolfgang Denk91a76752010-07-24 20:22:02 +02006 * (C) Copyright 2000-2010
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01007 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
Aubrey Li155fd762007-04-05 18:31:18 +080024 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 * MA 02110-1301 USA
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010026 */
27
28#ifndef __ASM_GBL_DATA_H
29#define __ASM_GBL_DATA_H
30
Mike Frysingerf5402d42009-11-09 18:08:09 -050031#include <asm/u-boot.h>
32
Simon Glass5cb48582012-12-13 20:48:30 +000033/* Architecture-specific global data */
34struct arch_global_data {
Simon Glass4da25512013-03-05 14:39:59 +000035 unsigned long board_type;
Simon Glass5cb48582012-12-13 20:48:30 +000036};
37
Simon Glass06b507b2012-12-13 20:49:16 +000038#include <asm-generic/global_data.h>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010039
Mike Frysinger33e7e602012-02-16 01:10:43 -050040#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("P3")
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010041
42#endif