summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/at91sam9263.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD2011-10-13 19:17:18 +0200
committerJean-Christophe PLAGNIOL-VILLARD2011-11-28 15:50:38 +0100
commitcfa5a1fe7e65bacdee59d5df60a9f44b0c030532 (patch)
tree9b1f7ec23974b3176e47b4163a0b938e73e105a8 /arch/arm/mach-at91/at91sam9263.c
parentARM: at91: make rtt register base soc independant (diff)
downloadkernel-qcow2-linux-cfa5a1fe7e65bacdee59d5df60a9f44b0c030532.tar.gz
kernel-qcow2-linux-cfa5a1fe7e65bacdee59d5df60a9f44b0c030532.tar.xz
kernel-qcow2-linux-cfa5a1fe7e65bacdee59d5df60a9f44b0c030532.zip
ARM: at91: add ioremap_registers entry point to soc setup
this will allow to ioremap the register of the PIT, PMC and others and make the code soc independent Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/at91sam9263.c')
-rw-r--r--arch/arm/mach-at91/at91sam9263.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/at91sam9263.c b/arch/arm/mach-at91/at91sam9263.c
index dee0ed7d88e4..fc442dd0753c 100644
--- a/arch/arm/mach-at91/at91sam9263.c
+++ b/arch/arm/mach-at91/at91sam9263.c
@@ -303,6 +303,10 @@ static void __init at91sam9263_map_io(void)
at91_init_sram(1, AT91SAM9263_SRAM1_BASE, AT91SAM9263_SRAM1_SIZE);
}
+static void __init at91sam9263_ioremap_registers(void)
+{
+}
+
static void __init at91sam9263_initialize(void)
{
at91_arch_reset = at91sam9_alt_reset;
@@ -358,6 +362,7 @@ static unsigned int at91sam9263_default_irq_priority[NR_AIC_IRQS] __initdata = {
struct at91_init_soc __initdata at91sam9263_soc = {
.map_io = at91sam9263_map_io,
.default_irq_priority = at91sam9263_default_irq_priority,
+ .ioremap_registers = at91sam9263_ioremap_registers,
.register_clocks = at91sam9263_register_clocks,
.init = at91sam9263_initialize,
};