From: Hiroshi Doyu <hdoyu@nvidia.com>
To: m.szyprowski@samsung.com
Cc: iommu@lists.linux-foundation.org, Hiroshi Doyu <hdoyu@nvidia.com>,
linux-arm-kernel@lists.infradead.org,
linaro-mm-sig@lists.linaro.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, kyungmin.park@samsung.com,
arnd@arndb.de, linux@arm.linux.org.uk, chunsang.jeong@linaro.org,
vdumpa@nvidia.com, subashrp@gmail.com, minchan@kernel.org,
pullip.cho@samsung.com, konrad.wilk@oracle.com,
linux-tegra@vger.kernel.org
Subject: [RFC 1/5] ARM: dma-mapping: New dma_map_ops->iova_get_free_{total,max} functions
Date: Wed, 29 Aug 2012 09:55:31 +0300 [thread overview]
Message-ID: <1346223335-31455-2-git-send-email-hdoyu@nvidia.com> (raw)
In-Reply-To: <1346223335-31455-1-git-send-email-hdoyu@nvidia.com>
->iova>_get_free_total() returns the sum of available free areas.
->iova>_get_free_max() returns the largest available free area size.
Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
---
arch/arm/include/asm/dma-mapping.h | 16 ++++++++++
arch/arm/mm/dma-mapping.c | 54 ++++++++++++++++++++++++++++++++++++
include/linux/dma-mapping.h | 3 ++
3 files changed, 73 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h
index 2300484..1cbd279 100644
--- a/arch/arm/include/asm/dma-mapping.h
+++ b/arch/arm/include/asm/dma-mapping.h
@@ -170,6 +170,22 @@ static inline void dma_free_attrs(struct device *dev, size_t size,
ops->free(dev, size, cpu_addr, dma_handle, attrs);
}
+static inline size_t dma_iova_get_free_total(struct device *dev)
+{
+ struct dma_map_ops *ops = get_dma_ops(dev);
+ BUG_ON(!ops);
+
+ return ops->iova_get_free_total(dev);
+}
+
+static inline size_t dma_iova_get_free_max(struct device *dev)
+{
+ struct dma_map_ops *ops = get_dma_ops(dev);
+ BUG_ON(!ops);
+
+ return ops->iova_get_free_max(dev);
+}
+
/**
* arm_dma_mmap - map a coherent DMA allocation into user space
* @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index e4746b7..db17338 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -1001,6 +1001,57 @@ fs_initcall(dma_debug_do_init);
/* IOMMU */
+static size_t arm_iommu_iova_get_free_total(struct device *dev)
+{
+ struct dma_iommu_mapping *mapping = dev->archdata.mapping;
+ unsigned long flags;
+ size_t size = 0;
+ unsigned long start = 0;
+
+ BUG_ON(!dev);
+ BUG_ON(!mapping);
+
+ spin_lock_irqsave(&mapping->lock, flags);
+ while (1) {
+ unsigned long end;
+
+ start = bitmap_find_next_zero_area(mapping->bitmap,
+ mapping->bits, start, 1, 0);
+ if (start > mapping->bits)
+ break;
+
+ end = find_next_bit(mapping->bitmap, mapping->bits, start);
+ size += end - start;
+ start = end;
+ }
+ spin_unlock_irqrestore(&mapping->lock, flags);
+ return size << (mapping->order + PAGE_SHIFT);
+}
+
+static size_t arm_iommu_iova_get_free_max(struct device *dev)
+{
+ struct dma_iommu_mapping *mapping = dev->archdata.mapping;
+ unsigned long flags;
+ size_t max_free = 0;
+ unsigned long start = 0;
+
+ spin_lock_irqsave(&mapping->lock, flags);
+ while (1) {
+ unsigned long end;
+
+ start = bitmap_find_next_zero_area(mapping->bitmap,
+ mapping->bits, start, 1, 0);
+ if (start > mapping->bits)
+ break;
+
+ end = find_next_bit(mapping->bitmap, mapping->bits, start);
+ max_free = max_t(size_t, max_free, end - start);
+ start = end;
+ }
+ spin_unlock_irqrestore(&mapping->lock, flags);
+ return max_free << (mapping->order + PAGE_SHIFT);
+}
+
static inline dma_addr_t __alloc_iova(struct dma_iommu_mapping *mapping,
size_t size)
{
@@ -1721,6 +1772,9 @@ struct dma_map_ops iommu_ops = {
.unmap_sg = arm_iommu_unmap_sg,
.sync_sg_for_cpu = arm_iommu_sync_sg_for_cpu,
.sync_sg_for_device = arm_iommu_sync_sg_for_device,
+
+ .iova_get_free_total = arm_iommu_iova_get_free_total,
+ .iova_get_free_max = arm_iommu_iova_get_free_max,
};
struct dma_map_ops iommu_coherent_ops = {
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
index 94af418..0337182 100644
--- a/include/linux/dma-mapping.h
+++ b/include/linux/dma-mapping.h
@@ -53,6 +53,9 @@ struct dma_map_ops {
#ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
u64 (*get_required_mask)(struct device *dev);
#endif
+ size_t (*iova_get_free_total)(struct device *dev);
+ size_t (*iova_get_free_max)(struct device *dev);
+
int is_phys;
};
--
1.7.5.4
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
WARNING: multiple messages have this Message-ID (diff)
From: hdoyu@nvidia.com (Hiroshi Doyu)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC 1/5] ARM: dma-mapping: New dma_map_ops->iova_get_free_{total, max} functions
Date: Wed, 29 Aug 2012 09:55:31 +0300 [thread overview]
Message-ID: <1346223335-31455-2-git-send-email-hdoyu@nvidia.com> (raw)
In-Reply-To: <1346223335-31455-1-git-send-email-hdoyu@nvidia.com>
->iova>_get_free_total() returns the sum of available free areas.
->iova>_get_free_max() returns the largest available free area size.
Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
---
arch/arm/include/asm/dma-mapping.h | 16 ++++++++++
arch/arm/mm/dma-mapping.c | 54 ++++++++++++++++++++++++++++++++++++
include/linux/dma-mapping.h | 3 ++
3 files changed, 73 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h
index 2300484..1cbd279 100644
--- a/arch/arm/include/asm/dma-mapping.h
+++ b/arch/arm/include/asm/dma-mapping.h
@@ -170,6 +170,22 @@ static inline void dma_free_attrs(struct device *dev, size_t size,
ops->free(dev, size, cpu_addr, dma_handle, attrs);
}
+static inline size_t dma_iova_get_free_total(struct device *dev)
+{
+ struct dma_map_ops *ops = get_dma_ops(dev);
+ BUG_ON(!ops);
+
+ return ops->iova_get_free_total(dev);
+}
+
+static inline size_t dma_iova_get_free_max(struct device *dev)
+{
+ struct dma_map_ops *ops = get_dma_ops(dev);
+ BUG_ON(!ops);
+
+ return ops->iova_get_free_max(dev);
+}
+
/**
* arm_dma_mmap - map a coherent DMA allocation into user space
* @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index e4746b7..db17338 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -1001,6 +1001,57 @@ fs_initcall(dma_debug_do_init);
/* IOMMU */
+static size_t arm_iommu_iova_get_free_total(struct device *dev)
+{
+ struct dma_iommu_mapping *mapping = dev->archdata.mapping;
+ unsigned long flags;
+ size_t size = 0;
+ unsigned long start = 0;
+
+ BUG_ON(!dev);
+ BUG_ON(!mapping);
+
+ spin_lock_irqsave(&mapping->lock, flags);
+ while (1) {
+ unsigned long end;
+
+ start = bitmap_find_next_zero_area(mapping->bitmap,
+ mapping->bits, start, 1, 0);
+ if (start > mapping->bits)
+ break;
+
+ end = find_next_bit(mapping->bitmap, mapping->bits, start);
+ size += end - start;
+ start = end;
+ }
+ spin_unlock_irqrestore(&mapping->lock, flags);
+ return size << (mapping->order + PAGE_SHIFT);
+}
+
+static size_t arm_iommu_iova_get_free_max(struct device *dev)
+{
+ struct dma_iommu_mapping *mapping = dev->archdata.mapping;
+ unsigned long flags;
+ size_t max_free = 0;
+ unsigned long start = 0;
+
+ spin_lock_irqsave(&mapping->lock, flags);
+ while (1) {
+ unsigned long end;
+
+ start = bitmap_find_next_zero_area(mapping->bitmap,
+ mapping->bits, start, 1, 0);
+ if (start > mapping->bits)
+ break;
+
+ end = find_next_bit(mapping->bitmap, mapping->bits, start);
+ max_free = max_t(size_t, max_free, end - start);
+ start = end;
+ }
+ spin_unlock_irqrestore(&mapping->lock, flags);
+ return max_free << (mapping->order + PAGE_SHIFT);
+}
+
static inline dma_addr_t __alloc_iova(struct dma_iommu_mapping *mapping,
size_t size)
{
@@ -1721,6 +1772,9 @@ struct dma_map_ops iommu_ops = {
.unmap_sg = arm_iommu_unmap_sg,
.sync_sg_for_cpu = arm_iommu_sync_sg_for_cpu,
.sync_sg_for_device = arm_iommu_sync_sg_for_device,
+
+ .iova_get_free_total = arm_iommu_iova_get_free_total,
+ .iova_get_free_max = arm_iommu_iova_get_free_max,
};
struct dma_map_ops iommu_coherent_ops = {
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
index 94af418..0337182 100644
--- a/include/linux/dma-mapping.h
+++ b/include/linux/dma-mapping.h
@@ -53,6 +53,9 @@ struct dma_map_ops {
#ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
u64 (*get_required_mask)(struct device *dev);
#endif
+ size_t (*iova_get_free_total)(struct device *dev);
+ size_t (*iova_get_free_max)(struct device *dev);
+
int is_phys;
};
--
1.7.5.4
WARNING: multiple messages have this Message-ID (diff)
From: Hiroshi Doyu <hdoyu@nvidia.com>
To: <m.szyprowski@samsung.com>
Cc: <iommu@lists.linux-foundation.org>,
Hiroshi Doyu <hdoyu@nvidia.com>,
<linux-arm-kernel@lists.infradead.org>,
<linaro-mm-sig@lists.linaro.org>, <linux-mm@kvack.org>,
<linux-kernel@vger.kernel.org>, <kyungmin.park@samsung.com>,
<arnd@arndb.de>, <linux@arm.linux.org.uk>,
<chunsang.jeong@linaro.org>, <vdumpa@nvidia.com>,
<subashrp@gmail.com>, <minchan@kernel.org>,
<pullip.cho@samsung.com>, <konrad.wilk@oracle.com>,
<linux-tegra@vger.kernel.org>
Subject: [RFC 1/5] ARM: dma-mapping: New dma_map_ops->iova_get_free_{total,max} functions
Date: Wed, 29 Aug 2012 09:55:31 +0300 [thread overview]
Message-ID: <1346223335-31455-2-git-send-email-hdoyu@nvidia.com> (raw)
In-Reply-To: <1346223335-31455-1-git-send-email-hdoyu@nvidia.com>
->iova>_get_free_total() returns the sum of available free areas.
->iova>_get_free_max() returns the largest available free area size.
Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
---
arch/arm/include/asm/dma-mapping.h | 16 ++++++++++
arch/arm/mm/dma-mapping.c | 54 ++++++++++++++++++++++++++++++++++++
include/linux/dma-mapping.h | 3 ++
3 files changed, 73 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h
index 2300484..1cbd279 100644
--- a/arch/arm/include/asm/dma-mapping.h
+++ b/arch/arm/include/asm/dma-mapping.h
@@ -170,6 +170,22 @@ static inline void dma_free_attrs(struct device *dev, size_t size,
ops->free(dev, size, cpu_addr, dma_handle, attrs);
}
+static inline size_t dma_iova_get_free_total(struct device *dev)
+{
+ struct dma_map_ops *ops = get_dma_ops(dev);
+ BUG_ON(!ops);
+
+ return ops->iova_get_free_total(dev);
+}
+
+static inline size_t dma_iova_get_free_max(struct device *dev)
+{
+ struct dma_map_ops *ops = get_dma_ops(dev);
+ BUG_ON(!ops);
+
+ return ops->iova_get_free_max(dev);
+}
+
/**
* arm_dma_mmap - map a coherent DMA allocation into user space
* @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index e4746b7..db17338 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -1001,6 +1001,57 @@ fs_initcall(dma_debug_do_init);
/* IOMMU */
+static size_t arm_iommu_iova_get_free_total(struct device *dev)
+{
+ struct dma_iommu_mapping *mapping = dev->archdata.mapping;
+ unsigned long flags;
+ size_t size = 0;
+ unsigned long start = 0;
+
+ BUG_ON(!dev);
+ BUG_ON(!mapping);
+
+ spin_lock_irqsave(&mapping->lock, flags);
+ while (1) {
+ unsigned long end;
+
+ start = bitmap_find_next_zero_area(mapping->bitmap,
+ mapping->bits, start, 1, 0);
+ if (start > mapping->bits)
+ break;
+
+ end = find_next_bit(mapping->bitmap, mapping->bits, start);
+ size += end - start;
+ start = end;
+ }
+ spin_unlock_irqrestore(&mapping->lock, flags);
+ return size << (mapping->order + PAGE_SHIFT);
+}
+
+static size_t arm_iommu_iova_get_free_max(struct device *dev)
+{
+ struct dma_iommu_mapping *mapping = dev->archdata.mapping;
+ unsigned long flags;
+ size_t max_free = 0;
+ unsigned long start = 0;
+
+ spin_lock_irqsave(&mapping->lock, flags);
+ while (1) {
+ unsigned long end;
+
+ start = bitmap_find_next_zero_area(mapping->bitmap,
+ mapping->bits, start, 1, 0);
+ if (start > mapping->bits)
+ break;
+
+ end = find_next_bit(mapping->bitmap, mapping->bits, start);
+ max_free = max_t(size_t, max_free, end - start);
+ start = end;
+ }
+ spin_unlock_irqrestore(&mapping->lock, flags);
+ return max_free << (mapping->order + PAGE_SHIFT);
+}
+
static inline dma_addr_t __alloc_iova(struct dma_iommu_mapping *mapping,
size_t size)
{
@@ -1721,6 +1772,9 @@ struct dma_map_ops iommu_ops = {
.unmap_sg = arm_iommu_unmap_sg,
.sync_sg_for_cpu = arm_iommu_sync_sg_for_cpu,
.sync_sg_for_device = arm_iommu_sync_sg_for_device,
+
+ .iova_get_free_total = arm_iommu_iova_get_free_total,
+ .iova_get_free_max = arm_iommu_iova_get_free_max,
};
struct dma_map_ops iommu_coherent_ops = {
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
index 94af418..0337182 100644
--- a/include/linux/dma-mapping.h
+++ b/include/linux/dma-mapping.h
@@ -53,6 +53,9 @@ struct dma_map_ops {
#ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
u64 (*get_required_mask)(struct device *dev);
#endif
+ size_t (*iova_get_free_total)(struct device *dev);
+ size_t (*iova_get_free_max)(struct device *dev);
+
int is_phys;
};
--
1.7.5.4
next prev parent reply other threads:[~2012-08-29 6:55 UTC|newest]
Thread overview: 105+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-29 6:55 [RFC 0/5] ARM: dma-mapping: New dma_map_ops to control IOVA more precisely Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu [this message]
2012-08-29 6:55 ` [RFC 1/5] ARM: dma-mapping: New dma_map_ops->iova_get_free_{total,max} functions Hiroshi Doyu
2012-08-29 6:55 ` [RFC 1/5] ARM: dma-mapping: New dma_map_ops->iova_get_free_{total, max} functions Hiroshi Doyu
[not found] ` <1346223335-31455-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-08-29 6:55 ` [RFC 2/5] ARM: dma-mapping: New dma_map_ops->iova_{alloc, free}() functions Hiroshi Doyu
2012-08-29 6:55 ` [RFC 2/5] ARM: dma-mapping: New dma_map_ops->iova_{alloc,free}() functions Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` [RFC 2/5] ARM: dma-mapping: New dma_map_ops->iova_{alloc, free}() functions Hiroshi Doyu
2012-08-29 6:55 ` [RFC 5/5] ARM: dma-mapping: Introduce dma_map_linear_attrs() for IOVA linear map Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-09-18 12:49 ` [RFC 0/5] ARM: dma-mapping: New dma_map_ops to control IOVA more precisely Joerg Roedel
2012-09-18 12:49 ` Joerg Roedel
2012-09-18 12:49 ` Joerg Roedel
2012-09-18 12:49 ` Joerg Roedel
2012-09-19 6:58 ` Hiroshi Doyu
2012-09-19 6:58 ` Hiroshi Doyu
2012-09-19 6:58 ` Hiroshi Doyu
[not found] ` <20120919095843.d1db155e0f085f4fcf64ea32-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-09-19 7:59 ` Arnd Bergmann
2012-09-19 7:59 ` Arnd Bergmann
2012-09-19 7:59 ` Arnd Bergmann
2012-09-19 7:59 ` Arnd Bergmann
[not found] ` <201209190759.46174.arnd-r2nGTMty4D4@public.gmane.org>
2012-09-19 11:41 ` Hiroshi Doyu
2012-09-19 11:41 ` Hiroshi Doyu
2012-09-19 11:41 ` Hiroshi Doyu
2012-09-19 11:41 ` Hiroshi Doyu
2012-09-19 12:50 ` Joerg Roedel
2012-09-19 12:50 ` Joerg Roedel
2012-09-19 12:50 ` Joerg Roedel
2012-09-19 12:50 ` Joerg Roedel
[not found] ` <20120919125020.GQ2505-5C7GfCeVMHo@public.gmane.org>
2012-09-20 1:44 ` Krishna Reddy
2012-09-20 1:44 ` Krishna Reddy
2012-09-20 1:44 ` Krishna Reddy
2012-09-20 1:44 ` Krishna Reddy
[not found] ` <401E54CE964CD94BAE1EB4A729C7087E379FDC1EEB-wAPRp6hVlRhDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2012-09-20 2:21 ` Stephen Warren
2012-09-20 2:21 ` Stephen Warren
2012-09-20 2:21 ` Stephen Warren
2012-09-20 2:21 ` Stephen Warren
[not found] ` <505A7DB4.4090902-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-09-20 6:40 ` Krishna Reddy
2012-09-20 6:40 ` Krishna Reddy
2012-09-20 6:40 ` Krishna Reddy
2012-09-20 6:40 ` Krishna Reddy
[not found] ` <401E54CE964CD94BAE1EB4A729C7087E379FDC1F2D-wAPRp6hVlRhDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2012-09-20 15:27 ` Stephen Warren
2012-09-20 15:27 ` Stephen Warren
2012-09-20 15:27 ` Stephen Warren
2012-09-20 15:27 ` Stephen Warren
[not found] ` <505B35F7.2080201-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-09-21 18:16 ` Krishna Reddy
2012-09-21 18:16 ` Krishna Reddy
2012-09-21 18:16 ` Krishna Reddy
2012-09-21 18:16 ` Krishna Reddy
2012-09-24 9:04 ` How to specify IOMMU'able devices in DT (was: [RFC 0/5] ARM: dma-mapping: New dma_map_ops to control IOVA more precisely) Hiroshi Doyu
2012-09-24 9:04 ` Hiroshi Doyu
2012-09-24 9:04 ` Hiroshi Doyu
2012-09-24 9:04 ` Hiroshi Doyu
2012-09-24 9:04 ` Hiroshi Doyu
2012-09-24 9:28 ` James Bottomley
2012-09-24 9:28 ` James Bottomley
2012-09-24 9:28 ` James Bottomley
2012-09-24 9:28 ` James Bottomley
2012-09-24 9:44 ` Hiroshi Doyu
2012-09-24 9:44 ` Hiroshi Doyu
2012-09-24 9:44 ` Hiroshi Doyu
2012-09-24 9:44 ` Hiroshi Doyu
[not found] ` <20120924124452.41070ed2ee9944d930cffffc-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-09-24 11:14 ` Marek Szyprowski
2012-09-24 11:14 ` Marek Szyprowski
2012-09-24 11:14 ` Marek Szyprowski
2012-09-24 11:14 ` Marek Szyprowski
2012-09-24 11:50 ` How to specify IOMMU'able devices in DT Hiroshi Doyu
2012-09-24 11:50 ` Hiroshi Doyu
2012-09-24 11:50 ` Hiroshi Doyu
2012-09-24 11:50 ` Hiroshi Doyu
[not found] ` <20120924.145014.1452596970914043018.hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-11-28 13:48 ` [PATCH 1/1] ARM: tegra: bus_notifier registers IOMMU devices(was: How to specify IOMMU'able devices in DT) Hiroshi Doyu
2012-11-28 13:48 ` Hiroshi Doyu
2012-11-28 13:48 ` Hiroshi Doyu
2012-11-28 13:48 ` Hiroshi Doyu
2012-11-28 13:48 ` Hiroshi Doyu
[not found] ` <20121128.154832.539666140149950229.hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-11-28 18:07 ` Stephen Warren
2012-11-28 18:07 ` Stephen Warren
2012-11-28 18:07 ` Stephen Warren
2012-11-28 18:07 ` Stephen Warren
2012-11-29 6:45 ` Hiroshi Doyu
2012-11-29 6:45 ` Hiroshi Doyu
2012-11-29 6:45 ` Hiroshi Doyu
2012-11-29 6:45 ` Hiroshi Doyu
2012-11-29 10:17 ` Thierry Reding
2012-11-29 10:17 ` Thierry Reding
2012-11-29 10:17 ` Thierry Reding
2012-11-30 4:59 ` Mark Zhang
2012-11-30 4:59 ` Mark Zhang
2012-11-30 4:59 ` Mark Zhang
2012-11-30 4:59 ` Mark Zhang
2012-11-30 8:06 ` [PATCH 1/1] ARM: tegra: bus_notifier registers IOMMU devices Hiroshi Doyu
2012-11-30 8:06 ` Hiroshi Doyu
2012-11-30 8:06 ` Hiroshi Doyu
2012-11-30 8:06 ` Hiroshi Doyu
2012-08-29 6:55 ` [RFC 3/5] ARM: dma-mapping: New dma_map_ops->iova_alloc*_at* function Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` [RFC 4/5] ARM: dma-mapping: New dma_map_ops->map_page*_at* function Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
2012-08-29 6:55 ` Hiroshi Doyu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1346223335-31455-2-git-send-email-hdoyu@nvidia.com \
--to=hdoyu@nvidia.com \
--cc=arnd@arndb.de \
--cc=chunsang.jeong@linaro.org \
--cc=iommu@lists.linux-foundation.org \
--cc=konrad.wilk@oracle.com \
--cc=kyungmin.park@samsung.com \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-tegra@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=m.szyprowski@samsung.com \
--cc=minchan@kernel.org \
--cc=pullip.cho@samsung.com \
--cc=subashrp@gmail.com \
--cc=vdumpa@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.