blob: 7b9a9a5699b2102d271e85e17d7b081f581c0278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_ARCH_MEMMAP_H
#define _ASM_ARCH_MEMMAP_H
#define MEM_INTMEM_START (0x38000000)
#define MEM_INTMEM_SIZE (0x00018000)
#define MEM_DRAM_START (0x40000000)
#define MEM_NON_CACHEABLE (0x80000000)
#endif
|