Linux SNPS ARC Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] ARC: enable per-device dma and reserved memory in DT
@ 2016-04-26 16:29 Alexey Brodkin
  2016-04-26 16:29 ` [PATCH 1/2] ARC: support generic per-device coherent dma mem Alexey Brodkin
  2016-04-26 16:29 ` [PATCH 2/2] ARC: add support for reserved memory defined by device tree Alexey Brodkin
  0 siblings, 2 replies; 3+ messages in thread
From: Alexey Brodkin @ 2016-04-26 16:29 UTC (permalink / raw)
  To: linux-snps-arc

This tiny series enbles support of generic per-device coherent dma memory
and ability to specify reserved memory regions to be used in those
per-device mappings.

In particular this allowed us to move frame-buffer memory out of
IOC aperture.

Cc: linux-kernel at vger.kernel.org

Alexey Brodkin (2):
  ARC: support generic per-device coherent dma mem
  ARC: add support for reserved memory defined by device tree

 arch/arc/Kconfig   | 2 ++
 arch/arc/mm/init.c | 4 ++++
 2 files changed, 6 insertions(+)

-- 
2.5.5

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

* [PATCH 1/2] ARC: support generic per-device coherent dma mem
  2016-04-26 16:29 [PATCH 0/2] ARC: enable per-device dma and reserved memory in DT Alexey Brodkin
@ 2016-04-26 16:29 ` Alexey Brodkin
  2016-04-26 16:29 ` [PATCH 2/2] ARC: add support for reserved memory defined by device tree Alexey Brodkin
  1 sibling, 0 replies; 3+ messages in thread
From: Alexey Brodkin @ 2016-04-26 16:29 UTC (permalink / raw)
  To: linux-snps-arc

Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
Cc: linux-kernel at vger.kernel.org
---
 arch/arc/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
index 208aae0..61d69e6 100644
--- a/arch/arc/Kconfig
+++ b/arch/arc/Kconfig
@@ -37,6 +37,7 @@ config ARC
 	select OF_EARLY_FLATTREE
 	select PERF_USE_VMALLOC
 	select HAVE_DEBUG_STACKOVERFLOW
+	select HAVE_GENERIC_DMA_COHERENT
 
 config MIGHT_HAVE_PCI
 	bool
-- 
2.5.5

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

* [PATCH 2/2] ARC: add support for reserved memory defined by device tree
  2016-04-26 16:29 [PATCH 0/2] ARC: enable per-device dma and reserved memory in DT Alexey Brodkin
  2016-04-26 16:29 ` [PATCH 1/2] ARC: support generic per-device coherent dma mem Alexey Brodkin
@ 2016-04-26 16:29 ` Alexey Brodkin
  1 sibling, 0 replies; 3+ messages in thread
From: Alexey Brodkin @ 2016-04-26 16:29 UTC (permalink / raw)
  To: linux-snps-arc

Enable reserved memory initialization from device tree.

Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
Cc: Grant Likely <grant.likely at linaro.org>
Cc: Marek Szyprowski <m.szyprowski at samsung.com>
Cc: linux-kernel at vger.kernel.org
---
 arch/arc/Kconfig   | 1 +
 arch/arc/mm/init.c | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
index 61d69e6..33c1fc7 100644
--- a/arch/arc/Kconfig
+++ b/arch/arc/Kconfig
@@ -35,6 +35,7 @@ config ARC
 	select NO_BOOTMEM
 	select OF
 	select OF_EARLY_FLATTREE
+	select OF_RESERVED_MEM
 	select PERF_USE_VMALLOC
 	select HAVE_DEBUG_STACKOVERFLOW
 	select HAVE_GENERIC_DMA_COHERENT
diff --git a/arch/arc/mm/init.c b/arch/arc/mm/init.c
index 7d2c4fb..5487d0b 100644
--- a/arch/arc/mm/init.c
+++ b/arch/arc/mm/init.c
@@ -13,6 +13,7 @@
 #ifdef CONFIG_BLK_DEV_INITRD
 #include <linux/initrd.h>
 #endif
+#include <linux/of_fdt.h>
 #include <linux/swap.h>
 #include <linux/module.h>
 #include <linux/highmem.h>
@@ -136,6 +137,9 @@ void __init setup_arch_memory(void)
 		memblock_reserve(__pa(initrd_start), initrd_end - initrd_start);
 #endif
 
+	early_init_fdt_reserve_self();
+	early_init_fdt_scan_reserved_mem();
+
 	memblock_dump_all();
 
 	/*----------------- node/zones setup --------------------------*/
-- 
2.5.5

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

end of thread, other threads:[~2016-04-26 16:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-26 16:29 [PATCH 0/2] ARC: enable per-device dma and reserved memory in DT Alexey Brodkin
2016-04-26 16:29 ` [PATCH 1/2] ARC: support generic per-device coherent dma mem Alexey Brodkin
2016-04-26 16:29 ` [PATCH 2/2] ARC: add support for reserved memory defined by device tree Alexey Brodkin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox