0057-Revert-ARM-dma-Use-dma_pfn_offset-for-dma-address-tr.patch 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. From 48c48c4437603bad79eb848ac03b21a86cc3bb90 Mon Sep 17 00:00:00 2001
  2. From: popcornmix <popcornmix@gmail.com>
  3. Date: Thu, 7 Aug 2014 02:03:50 +0100
  4. Subject: [PATCH 057/114] Revert "ARM: dma: Use dma_pfn_offset for dma address
  5. translation"
  6. This reverts commit 6ce0d20016925d031f1e24d64302e4c976d7cec6.
  7. ---
  8. arch/arm/include/asm/dma-mapping.h | 18 +-----------------
  9. 1 file changed, 1 insertion(+), 17 deletions(-)
  10. --- a/arch/arm/include/asm/dma-mapping.h
  11. +++ b/arch/arm/include/asm/dma-mapping.h
  12. @@ -58,37 +58,21 @@ static inline int dma_set_mask(struct de
  13. #ifndef __arch_pfn_to_dma
  14. static inline dma_addr_t pfn_to_dma(struct device *dev, unsigned long pfn)
  15. {
  16. - if (dev)
  17. - pfn -= dev->dma_pfn_offset;
  18. return (dma_addr_t)__pfn_to_bus(pfn);
  19. }
  20. static inline unsigned long dma_to_pfn(struct device *dev, dma_addr_t addr)
  21. {
  22. - unsigned long pfn = __bus_to_pfn(addr);
  23. -
  24. - if (dev)
  25. - pfn += dev->dma_pfn_offset;
  26. -
  27. - return pfn;
  28. + return __bus_to_pfn(addr);
  29. }
  30. static inline void *dma_to_virt(struct device *dev, dma_addr_t addr)
  31. {
  32. - if (dev) {
  33. - unsigned long pfn = dma_to_pfn(dev, addr);
  34. -
  35. - return phys_to_virt(__pfn_to_phys(pfn));
  36. - }
  37. -
  38. return (void *)__bus_to_virt((unsigned long)addr);
  39. }
  40. static inline dma_addr_t virt_to_dma(struct device *dev, void *addr)
  41. {
  42. - if (dev)
  43. - return pfn_to_dma(dev, virt_to_pfn(addr));
  44. -
  45. return (dma_addr_t)__virt_to_bus((unsigned long)(addr));
  46. }