memory.h 349 B

12345678910111213141516
  1. /*
  2. * arch/arm/mach-ep93xx/include/mach/memory.h
  3. */
  4. #ifndef __ASM_ARCH_MEMORY_H
  5. #define __ASM_ARCH_MEMORY_H
  6. #if defined(CONFIG_EP93XX_SDCE3_SYNC_PHYS_OFFSET)
  7. #define PHYS_OFFSET UL(0x00000000)
  8. #elif defined(CONFIG_EP93XX_SDCE0_PHYS_OFFSET)
  9. #define PHYS_OFFSET UL(0xc0000000)
  10. #else
  11. #error "Kconfig bug: No EP93xx PHYS_OFFSET set"
  12. #endif
  13. #endif