memory.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * linux/include/asm-arm/arch-iop3xx/memory.h
  3. */
  4. #ifndef __ASM_ARCH_MEMORY_H
  5. #define __ASM_ARCH_MEMORY_H
  6. #include <linux/config.h>
  7. #include <asm/hardware.h>
  8. /*
  9. * Physical DRAM offset.
  10. */
  11. #ifndef CONFIG_ARCH_IOP331
  12. #define PHYS_OFFSET (0xa0000000UL)
  13. #else
  14. #define PHYS_OFFSET (0x00000000UL)
  15. #endif
  16. /*
  17. * Virtual view <-> PCI DMA view memory address translations
  18. * virt_to_bus: Used to translate the virtual address to an
  19. * address suitable to be passed to set_dma_addr
  20. * bus_to_virt: Used to convert an address for DMA operations
  21. * to an address that the kernel can use.
  22. */
  23. #if defined(CONFIG_ARCH_IOP321)
  24. #define __virt_to_bus(x) (((__virt_to_phys(x)) & ~(*IOP321_IATVR2)) | ((*IOP321_IABAR2) & 0xfffffff0))
  25. #define __bus_to_virt(x) (__phys_to_virt(((x) & ~(*IOP321_IALR2)) | ( *IOP321_IATVR2)))
  26. #elif defined(CONFIG_ARCH_IOP331)
  27. #define __virt_to_bus(x) (((__virt_to_phys(x)) & ~(*IOP331_IATVR2)) | ((*IOP331_IABAR2) & 0xfffffff0))
  28. #define __bus_to_virt(x) (__phys_to_virt(((x) & ~(*IOP331_IALR2)) | ( *IOP331_IATVR2)))
  29. #endif
  30. #define PFN_TO_NID(addr) (0)
  31. #endif