123456789101112131415161718192021222324 |
- /*
- *
- * arch/arm/mach-u300/include/mach/memory.h
- *
- *
- * Copyright (C) 2007-2009 ST-Ericsson AB
- * License terms: GNU General Public License (GPL) version 2
- * Memory virtual/physical mapping constants.
- * Author: Linus Walleij <linus.walleij@stericsson.com>
- * Author: Jonas Aaberg <jonas.aberg@stericsson.com>
- */
- #ifndef __MACH_MEMORY_H
- #define __MACH_MEMORY_H
- #define PLAT_PHYS_OFFSET UL(0x48000000)
- #define BOOT_PARAMS_OFFSET (PLAT_PHYS_OFFSET + 0x100)
- /*
- * We enable a real big DMA buffer if need be.
- */
- #define CONSISTENT_DMA_SIZE SZ_4M
- #endif
|