zephyr/arch/x86/soc/intel_quark/quark_se/shared_mem.h

23 lines
373 B
C
Raw Normal View History

/*
* Copyright (c) Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _SHARED_MEM_H_
#define _SHARED_MEM_H_
/* Start of the shared 80K RAM */
#define SHARED_ADDR_START 0xA8000000
struct shared_mem {
uint32_t arc_start;
uint32_t flags;
};
#define ARC_READY (1 << 0)
#define shared_data ((volatile struct shared_mem *) SHARED_ADDR_START)
#endif