-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'marco-prepare' of git://gitorious.org/sirfprima2-kernel…
…/sirfprima2-kernel into next/cleanup * 'marco-prepare' of git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel: ARM: SIRF: make sirf irqchip driver optional since new SoCs will have GIC ARM: PRIMA2: adjust Kconfig to support select SoC features ARM: PRIMA2: use DT_MACHINE_START and convert to generic board clk: prima2: move from arch/arm/mach to drivers/clk ARM: PRIMA2: convert to common clk and finish full clk tree
- Loading branch information
Showing
10 changed files
with
1,216 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
if ARCH_SIRF | ||
|
||
menu "CSR SiRF primaII/Marco/Polo Specific Features" | ||
|
||
config ARCH_PRIMA2 | ||
bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform" | ||
default y | ||
select CPU_V7 | ||
select ZONE_DMA | ||
select SIRF_IRQ | ||
help | ||
Support for CSR SiRFSoC ARM Cortex A9 Platform | ||
|
||
endmenu | ||
|
||
config SIRF_IRQ | ||
bool | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
obj-y := timer.o | ||
obj-y += irq.o | ||
obj-y += clock.o | ||
obj-y += rstc.o | ||
obj-y += prima2.o | ||
obj-y += common.o | ||
obj-y += rtciobrg.o | ||
obj-$(CONFIG_DEBUG_LL) += lluart.o | ||
obj-$(CONFIG_CACHE_L2X0) += l2x0.o | ||
obj-$(CONFIG_SUSPEND) += pm.o sleep.o | ||
obj-$(CONFIG_SIRF_IRQ) += irq.o |
Oops, something went wrong.