memory.h 449 B

123456789101112131415161718192021222324252627
  1. /*
  2. * arch/arm/mach-shark/include/mach/memory.h
  3. *
  4. * by Alexander Schulz
  5. *
  6. * derived from:
  7. * arch/arm/mach-ebsa110/include/mach/memory.h
  8. * Copyright (c) 1996-1999 Russell King.
  9. */
  10. #ifndef __ASM_ARCH_MEMORY_H
  11. #define __ASM_ARCH_MEMORY_H
  12. #include <asm/sizes.h>
  13. /*
  14. * Physical DRAM offset.
  15. */
  16. #define PLAT_PHYS_OFFSET UL(0x08000000)
  17. /*
  18. * Cache flushing area
  19. */
  20. #define FLUSH_BASE_PHYS 0x80000000
  21. #define FLUSH_BASE 0xdf000000
  22. #endif