All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h
@ 2009-07-13  6:25 ` FUJITA Tomonori
  0 siblings, 0 replies; 58+ messages in thread
From: FUJITA Tomonori @ 2009-07-13  6:25 UTC (permalink / raw)
  To: davem; +Cc: sparclinux, linux-kernel, reif, x86, tony.luck, fujita.tomonori,
	akpm

This is the second version of the patchset to convert SPARC to
asm-generic/dma-mapping-common.h and pci-dma-compat.h:

http://marc.info/?l=linux-sparc&m\x124686094931138&w=2

The changes are:

- I added Arnd's patch (1/8) to remove flush_write_buffers() in
  dma-mapping-common.h. so no need to define useless
  flush_write_buffers() on SPARC.

- I added a patch to remove useless flush_write_buffers() on IA64.

- I found and fixed a bug wrt dma_{alloc|free}_coherent that affects
  pci devices on SPARC32; the bug doesn't use get_dma_ops in
  dma_{alloc|free}_coherent (4/8).

- Robert asked me about the dma-debug feature so I added it (8/8).

- Robert tested [3-8/8] patches. I added 'Tested-by' tags.


This patchset touches multiple architectures so it would be appropriate
to merge it via -mm. However, I think that the changes to IA64 and X86
are not large so it would be easier to merge this via SPARC tree.

 arch/ia64/include/asm/dma-mapping.h      |    1 -
 arch/sparc/Kconfig                       |    2 +
 arch/sparc/include/asm/dma-mapping.h     |  145 ++++-------------------
 arch/sparc/include/asm/pci.h             |    3 +
 arch/sparc/include/asm/pci_32.h          |  105 ----------------
 arch/sparc/include/asm/pci_64.h          |   88 --------------
 arch/sparc/kernel/Makefile               |    2 +-
 arch/sparc/kernel/dma.c                  |  175 +--------------------------
 arch/sparc/kernel/dma.h                  |   14 --
 arch/sparc/kernel/iommu.c                |   20 ++-
 arch/sparc/kernel/ioport.c               |  190 ++++++++++++++++-------------
 arch/sparc/kernel/pci.c                  |    2 +-
 arch/sparc/kernel/pci_sun4v.c            |   30 ++----
 arch/x86/kernel/pci-nommu.c              |   27 ++++-
 include/asm-generic/dma-mapping-common.h |    6 -
 15 files changed, 183 insertions(+), 627 deletions(-)




^ permalink raw reply	[flat|nested] 58+ messages in thread

end of thread, other threads:[~2009-08-05  1:50 UTC | newest]

Thread overview: 58+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-13  6:25 [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h FUJITA Tomonori
2009-07-13  6:25 ` FUJITA Tomonori
2009-07-13  6:25 ` [PATCH 1/8] remove flush_write_buffers() in dma-mapping-common.h FUJITA Tomonori
2009-07-13  6:25   ` FUJITA Tomonori
2009-08-05  1:48   ` [PATCH 1/8] remove flush_write_buffers() in FUJITA Tomonori
2009-08-05  1:48     ` [PATCH 1/8] remove flush_write_buffers() in dma-mapping-common.h FUJITA Tomonori
2009-07-13  6:25 ` [PATCH 2/8] IA64: remove NULL flush_write_buffers FUJITA Tomonori
2009-07-13  6:25   ` FUJITA Tomonori
2009-07-13  6:25 ` [PATCH 3/8] sparc: use dma_map_ops struct FUJITA Tomonori
2009-07-13  6:25   ` FUJITA Tomonori
2009-07-17  2:36   ` David Miller
2009-07-17  2:36     ` David Miller
2009-07-13  6:25 ` [PATCH 4/8] sparc: use asm-generic/dma-mapping-common.h FUJITA Tomonori
2009-07-13  6:25   ` FUJITA Tomonori
2009-07-17  2:37   ` David Miller
2009-07-17  2:37     ` David Miller
2009-07-13  6:25 ` [PATCH 5/8] sparc: remove no-op dma_4v_sync_single_for_cpu and dma_4v_sync_sg_for_cpu FUJITA Tomonori
2009-07-13  6:25   ` FUJITA Tomonori
2009-07-17  2:37   ` [PATCH 5/8] sparc: remove no-op dma_4v_sync_single_for_cpu and David Miller
2009-07-17  2:37     ` [PATCH 5/8] sparc: remove no-op dma_4v_sync_single_for_cpu and dma_4v_sync_sg_for_cpu David Miller
2009-07-13  6:25 ` [PATCH 6/8] sparc: replace sbus_map_single and sbus_unmap_single with sbus_map_page and sbus_unmap_p FUJITA Tomonori
2009-07-13  6:25   ` [PATCH 6/8] sparc: replace sbus_map_single and sbus_unmap_single with sbus_map_page and sbus_unmap_page FUJITA Tomonori
2009-07-17  2:37   ` [PATCH 6/8] sparc: replace sbus_map_single and David Miller
2009-07-17  2:37     ` [PATCH 6/8] sparc: replace sbus_map_single and sbus_unmap_single with sbus_map_page and sbus_unmap_page David Miller
2009-07-13  6:25 ` [PATCH 7/8] sparc: use asm-generic/pci-dma-compat FUJITA Tomonori
2009-07-13  6:25   ` FUJITA Tomonori
2009-07-17  2:38   ` David Miller
2009-07-17  2:38     ` David Miller
2009-07-13  6:26 ` [PATCH 8/8] sparc: add CONFIG_DMA_API_DEBUG support FUJITA Tomonori
2009-07-13  6:26   ` FUJITA Tomonori
2009-07-17  2:39   ` David Miller
2009-07-17  2:39     ` David Miller
2009-07-14  0:56 ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Robert Reif
2009-07-14  0:56   ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Robert Reif
2009-07-14  1:40   ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and FUJITA Tomonori
2009-07-14  1:40     ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h FUJITA Tomonori
2009-07-14  9:23     ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Joerg Roedel
2009-07-14  9:23       ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Joerg Roedel
2009-07-14 20:12       ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and David Miller
2009-07-14 20:12         ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h David Miller
2009-07-18 11:06         ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Ingo Molnar
2009-07-18 11:06           ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Ingo Molnar
2009-08-03  3:21           ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and David Miller
2009-08-03  3:21             ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h David Miller
2009-08-03  5:54             ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Ingo Molnar
2009-08-03  5:54               ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Ingo Molnar
2009-08-04  4:21               ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and David Miller
2009-08-04  4:21                 ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h David Miller
2009-07-21 16:05         ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Joerg Roedel
2009-07-21 16:05           ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Joerg Roedel
2009-07-21 19:15           ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and David Miller
2009-07-21 19:15             ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h David Miller
2009-08-03  5:56             ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Ingo Molnar
2009-08-03  5:56               ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Ingo Molnar
2009-08-04  4:22               ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and David Miller
2009-08-04  4:22                 ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h David Miller
2009-08-04  7:45                 ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and Ingo Molnar
2009-08-04  7:45                   ` [PATCH v2 0/8] sparc: use asm-generic/dma-mapping-common.h and pci-dma-compat.h Ingo Molnar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.