diff options
author | Eric Miao <eric.miao@marvell.com> | 2009-01-19 23:06:01 -0500 |
---|---|---|
committer | Eric Miao <eric.miao@marvell.com> | 2009-03-22 22:11:31 -0400 |
commit | bd5ce4332328c1fe473690a86b2e6a4157be038f (patch) | |
tree | 785aa105d3752b2df92b1792e799e3f39e1b0411 /arch/arm/Kconfig | |
parent | e2bb5befd7b0ae2d045f4413a97db52340edec13 (diff) |
[ARM] pxa: introduce plat-pxa for PXA common code and add DMA support
1. introduce folder of 'arch/arm/plat-pxa' for common code across different
PXA processor families
2. initially moved DMA code into plat-pxa
3. common code in <mach/dma.h> moved into <plat/dma.h>, new processors
should implement its own <mach/dma.h>, provide the following required
definitions and '#include <plat/dma.h>' in the end:
- DMAC_REGS_VIRT for mapped virtual address of the DMA registers'
physical I/O memory
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 12abdd43201f..5ba00358e805 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -481,6 +481,7 @@ config ARCH_PXA | |||
481 | select GENERIC_TIME | 481 | select GENERIC_TIME |
482 | select GENERIC_CLOCKEVENTS | 482 | select GENERIC_CLOCKEVENTS |
483 | select TICK_ONESHOT | 483 | select TICK_ONESHOT |
484 | select PLAT_PXA | ||
484 | help | 485 | help |
485 | Support for Intel/Marvell's PXA2xx/PXA3xx processor line. | 486 | Support for Intel/Marvell's PXA2xx/PXA3xx processor line. |
486 | 487 | ||
@@ -618,6 +619,7 @@ source "arch/arm/mach-loki/Kconfig" | |||
618 | source "arch/arm/mach-mv78xx0/Kconfig" | 619 | source "arch/arm/mach-mv78xx0/Kconfig" |
619 | 620 | ||
620 | source "arch/arm/mach-pxa/Kconfig" | 621 | source "arch/arm/mach-pxa/Kconfig" |
622 | source "arch/arm/plat-pxa/Kconfig" | ||
621 | 623 | ||
622 | source "arch/arm/mach-sa1100/Kconfig" | 624 | source "arch/arm/mach-sa1100/Kconfig" |
623 | 625 | ||
@@ -687,6 +689,9 @@ config PLAT_IOP | |||
687 | config PLAT_ORION | 689 | config PLAT_ORION |
688 | bool | 690 | bool |
689 | 691 | ||
692 | config PLAT_PXA | ||
693 | bool | ||
694 | |||
690 | source arch/arm/mm/Kconfig | 695 | source arch/arm/mm/Kconfig |
691 | 696 | ||
692 | config IWMMXT | 697 | config IWMMXT |