memory.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef __ASM_ARCH_MEMORY_H
  2. #define __ASM_ARCH_MEMORY_H
  3. #include <mach/hardware.h>
  4. /*
  5. * Physical DRAM offset.
  6. */
  7. #define PLAT_PHYS_OFFSET UL(0x00000000)
  8. #ifndef __ASSEMBLY__
  9. #if defined(CONFIG_ARCH_IOP13XX)
  10. #define IOP13XX_PMMR_V_START (IOP13XX_PMMR_VIRT_MEM_BASE)
  11. #define IOP13XX_PMMR_V_END (IOP13XX_PMMR_VIRT_MEM_BASE + IOP13XX_PMMR_SIZE)
  12. #define IOP13XX_PMMR_P_START (IOP13XX_PMMR_PHYS_MEM_BASE)
  13. #define IOP13XX_PMMR_P_END (IOP13XX_PMMR_PHYS_MEM_BASE + IOP13XX_PMMR_SIZE)
  14. static inline dma_addr_t __virt_to_lbus(unsigned long x)
  15. {
  16. return x + IOP13XX_PMMR_PHYS_MEM_BASE - IOP13XX_PMMR_VIRT_MEM_BASE;
  17. }
  18. static inline unsigned long __lbus_to_virt(dma_addr_t x)
  19. {
  20. return x + IOP13XX_PMMR_VIRT_MEM_BASE - IOP13XX_PMMR_PHYS_MEM_BASE;
  21. }
  22. #define __is_lbus_dma(a) \
  23. ((a) >= IOP13XX_PMMR_P_START && (a) < IOP13XX_PMMR_P_END)
  24. #define __is_lbus_virt(a) \
  25. ((a) >= IOP13XX_PMMR_V_START && (a) < IOP13XX_PMMR_V_END)
  26. /* Device is an lbus device if it is on the platform bus of the IOP13XX */
  27. #define is_lbus_device(dev) \
  28. (dev && strncmp(dev->bus->name, "platform", 8) == 0)
  29. #define __arch_dma_to_virt(dev, addr) \
  30. ({ \
  31. unsigned long __virt; \
  32. dma_addr_t __dma = addr; \
  33. if (is_lbus_device(dev) && __is_lbus_dma(__dma)) \
  34. __virt = __lbus_to_virt(__dma); \
  35. else \
  36. __virt = __phys_to_virt(__dma); \
  37. (void *)__virt; \
  38. })
  39. #define __arch_virt_to_dma(dev, addr) \
  40. ({ \
  41. unsigned long __virt = (unsigned long)addr; \
  42. dma_addr_t __dma; \
  43. if (is_lbus_device(dev) && __is_lbus_virt(__virt)) \
  44. __dma = __virt_to_lbus(__virt); \
  45. else \
  46. __dma = __virt_to_phys(__virt); \
  47. __dma; \
  48. })
  49. #define __arch_pfn_to_dma(dev, pfn) \
  50. ({ \
  51. /* __is_lbus_virt() can never be true for RAM pages */ \
  52. (dma_addr_t)__pfn_to_phys(pfn); \
  53. })
  54. #define __arch_dma_to_pfn(dev, addr) __phys_to_pfn(addr)
  55. #endif /* CONFIG_ARCH_IOP13XX */
  56. #endif /* !ASSEMBLY */
  57. #endif