summaryrefslogtreecommitdiffstats
path: root/arch/sparc/include/asm/global_data.h
blob: 8c6557ad1f40fc62daa3660b3c96c61f0dda9586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * (C) Copyright 2002-2010
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 *
 * (C) Copyright 2007, 2015
 * Daniel Hellstrom, Cobham, Gaisler, daniel@gaisler.com.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef	__ASM_GBL_DATA_H
#define __ASM_GBL_DATA_H

#include "asm/types.h"

/* Architecture-specific global data */
struct arch_global_data {
	void *uart;
	unsigned int uart_freq;
#ifdef CONFIG_LEON3
	unsigned int snooping_available;
#endif
};

#include <asm-generic/global_data.h>

#define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("%g7")

#endif				/* __ASM_GBL_DATA_H */
OpenPOWER on IntegriCloud