Home | History | Annotate | Download | only in asm
      1 /* SPDX-License-Identifier: GPL-2.0+ */
      2 /*
      3  * Copyright (c) 2011 The Chromium OS Authors.
      4  *
      5  * (C) Copyright 2002-2010
      6  * Wolfgang Denk, DENX Software Engineering, wd (at) denx.de.
      7  */
      8 
      9 #ifndef	__ASM_GBL_DATA_H
     10 #define __ASM_GBL_DATA_H
     11 
     12 /* Architecture-specific global data */
     13 struct arch_global_data {
     14 	uint8_t		*ram_buf;	/* emulated RAM buffer */
     15 };
     16 
     17 #include <asm-generic/global_data.h>
     18 
     19 #define DECLARE_GLOBAL_DATA_PTR     extern gd_t *gd
     20 
     21 #endif /* __ASM_GBL_DATA_H */
     22