memory.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * arch/arm/mach-omap1/include/mach/memory.h
  3. */
  4. #ifndef __ASM_ARCH_MEMORY_H
  5. #define __ASM_ARCH_MEMORY_H
  6. /*
  7. * Physical DRAM offset.
  8. */
  9. #define PLAT_PHYS_OFFSET UL(0x10000000)
  10. /*
  11. * Bus address is physical address, except for OMAP-1510 Local Bus.
  12. * OMAP-1510 bus address is translated into a Local Bus address if the
  13. * OMAP bus type is lbus. We do the address translation based on the
  14. * device overriding the defaults used in the dma-mapping API.
  15. * Note that the is_lbus_device() test is not very efficient on 1510
  16. * because of the strncmp().
  17. */
  18. #if defined(CONFIG_ARCH_OMAP15XX) && !defined(__ASSEMBLER__)
  19. #include <plat/cpu.h>
  20. /*
  21. * OMAP-1510 Local Bus address offset
  22. */
  23. #define OMAP1510_LB_OFFSET UL(0x30000000)
  24. #define virt_to_lbus(x) ((x) - PAGE_OFFSET + OMAP1510_LB_OFFSET)
  25. #define lbus_to_virt(x) ((x) - OMAP1510_LB_OFFSET + PAGE_OFFSET)
  26. #define is_lbus_device(dev) (cpu_is_omap15xx() && dev && (strncmp(dev_name(dev), "ohci", 4) == 0))
  27. #define __arch_pfn_to_dma(dev, pfn) \
  28. ({ dma_addr_t __dma = __pfn_to_phys(pfn); \
  29. if (is_lbus_device(dev)) \
  30. __dma = __dma - PHYS_OFFSET + OMAP1510_LB_OFFSET; \
  31. __dma; })
  32. #define __arch_dma_to_pfn(dev, addr) \
  33. ({ dma_addr_t __dma = addr; \
  34. if (is_lbus_device(dev)) \
  35. __dma += PHYS_OFFSET - OMAP1510_LB_OFFSET; \
  36. __phys_to_pfn(__dma); \
  37. })
  38. #define __arch_dma_to_virt(dev, addr) ({ (void *) (is_lbus_device(dev) ? \
  39. lbus_to_virt(addr) : \
  40. __phys_to_virt(addr)); })
  41. #define __arch_virt_to_dma(dev, addr) ({ unsigned long __addr = (unsigned long)(addr); \
  42. (dma_addr_t) (is_lbus_device(dev) ? \
  43. virt_to_lbus(__addr) : \
  44. __virt_to_phys(__addr)); })
  45. #endif /* CONFIG_ARCH_OMAP15XX */
  46. #endif