diff options
| -rw-r--r-- | arch/arm/Kconfig | 2 | ||||
| -rw-r--r-- | arch/arm/kernel/process.c | 2 | ||||
| -rw-r--r-- | arch/arm/lib/bitops.h | 4 | ||||
| -rw-r--r-- | arch/arm/mach-realview/Makefile | 2 | ||||
| -rw-r--r-- | arch/arm/mach-realview/core.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-realview/hotplug.c | 138 | ||||
| -rw-r--r-- | arch/arm/mach-realview/localtimer.c | 130 | ||||
| -rw-r--r-- | arch/arm/mach-realview/platsmp.c | 5 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/mach-anubis.c | 51 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/mach-rx3715.c | 13 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/mach-smdk2440.c | 23 | ||||
| -rw-r--r-- | include/asm-arm/arch-realview/entry-macro.S | 11 | ||||
| -rw-r--r-- | include/asm-arm/arch-realview/irqs.h | 3 | ||||
| -rw-r--r-- | include/asm-arm/arch-realview/platform.h | 5 | ||||
| -rw-r--r-- | include/asm-arm/assembler.h | 9 | ||||
| -rw-r--r-- | include/asm-arm/mach/flash.h | 3 |
16 files changed, 379 insertions, 24 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 3bfef0934c9d..ec77721507cb 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -358,7 +358,7 @@ config HOTPLUG_CPU | |||
| 358 | 358 | ||
| 359 | config LOCAL_TIMERS | 359 | config LOCAL_TIMERS |
| 360 | bool "Use local timer interrupts" | 360 | bool "Use local timer interrupts" |
| 361 | depends on SMP && n | 361 | depends on SMP && REALVIEW_MPCORE |
| 362 | default y | 362 | default y |
| 363 | help | 363 | help |
| 364 | Enable support for local timers on SMP platforms, rather then the | 364 | Enable support for local timers on SMP platforms, rather then the |
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index c0f6a119de3b..30494aab829a 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
| @@ -359,7 +359,7 @@ copy_thread(int nr, unsigned long clone_flags, unsigned long stack_start, | |||
| 359 | struct thread_info *thread = p->thread_info; | 359 | struct thread_info *thread = p->thread_info; |
| 360 | struct pt_regs *childregs; | 360 | struct pt_regs *childregs; |
| 361 | 361 | ||
| 362 | childregs = ((struct pt_regs *)((unsigned long)thread + THREAD_START_SP)) - 1; | 362 | childregs = (void *)thread + THREAD_START_SP - sizeof(*regs); |
| 363 | *childregs = *regs; | 363 | *childregs = *regs; |
| 364 | childregs->ARM_r0 = 0; | 364 | childregs->ARM_r0 = 0; |
| 365 | childregs->ARM_sp = stack_start; | 365 | childregs->ARM_sp = stack_start; |
diff --git a/arch/arm/lib/bitops.h b/arch/arm/lib/bitops.h index f35d91fbe117..b8c14e936697 100644 --- a/arch/arm/lib/bitops.h +++ b/arch/arm/lib/bitops.h | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | and r2, r0, #7 | 34 | and r2, r0, #7 |
| 35 | mov r3, #1 | 35 | mov r3, #1 |
| 36 | mov r3, r3, lsl r2 | 36 | mov r3, r3, lsl r2 |
| 37 | save_and_disable_irqs ip, r2 | 37 | save_and_disable_irqs ip |
| 38 | ldrb r2, [r1, r0, lsr #3] | 38 | ldrb r2, [r1, r0, lsr #3] |
| 39 | \instr r2, r2, r3 | 39 | \instr r2, r2, r3 |
| 40 | strb r2, [r1, r0, lsr #3] | 40 | strb r2, [r1, r0, lsr #3] |
| @@ -54,7 +54,7 @@ | |||
| 54 | add r1, r1, r0, lsr #3 | 54 | add r1, r1, r0, lsr #3 |
| 55 | and r3, r0, #7 | 55 | and r3, r0, #7 |
| 56 | mov r0, #1 | 56 | mov r0, #1 |
| 57 | save_and_disable_irqs ip, r2 | 57 | save_and_disable_irqs ip |
| 58 | ldrb r2, [r1] | 58 | ldrb r2, [r1] |
| 59 | tst r2, r0, lsl r3 | 59 | tst r2, r0, lsl r3 |
| 60 | \instr r2, r2, r0, lsl r3 | 60 | \instr r2, r2, r0, lsl r3 |
diff --git a/arch/arm/mach-realview/Makefile b/arch/arm/mach-realview/Makefile index 011a85c10627..36e76ba937fc 100644 --- a/arch/arm/mach-realview/Makefile +++ b/arch/arm/mach-realview/Makefile | |||
| @@ -5,3 +5,5 @@ | |||
| 5 | obj-y := core.o clock.o | 5 | obj-y := core.o clock.o |
| 6 | obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o | 6 | obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o |
| 7 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o | 7 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o |
| 8 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | ||
| 9 | obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o | ||
diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c index 4ea60d8b6e36..e2c6fa23d3cd 100644 --- a/arch/arm/mach-realview/core.c +++ b/arch/arm/mach-realview/core.c | |||
| @@ -550,7 +550,7 @@ static irqreturn_t realview_timer_interrupt(int irq, void *dev_id, struct pt_reg | |||
| 550 | 550 | ||
| 551 | timer_tick(regs); | 551 | timer_tick(regs); |
| 552 | 552 | ||
| 553 | #ifdef CONFIG_SMP | 553 | #if defined(CONFIG_SMP) && !defined(CONFIG_LOCAL_TIMERS) |
| 554 | smp_send_timer(); | 554 | smp_send_timer(); |
| 555 | update_process_times(user_mode(regs)); | 555 | update_process_times(user_mode(regs)); |
| 556 | #endif | 556 | #endif |
diff --git a/arch/arm/mach-realview/hotplug.c b/arch/arm/mach-realview/hotplug.c new file mode 100644 index 000000000000..09748cbcd10e --- /dev/null +++ b/arch/arm/mach-realview/hotplug.c | |||
| @@ -0,0 +1,138 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/arm/mach-realview/hotplug.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2002 ARM Ltd. | ||
| 5 | * All Rights Reserved | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | #include <linux/kernel.h> | ||
| 12 | #include <linux/errno.h> | ||
| 13 | #include <linux/smp.h> | ||
| 14 | #include <linux/completion.h> | ||
| 15 | |||
| 16 | extern volatile int pen_release; | ||
| 17 | |||
| 18 | static DECLARE_COMPLETION(cpu_killed); | ||
| 19 | |||
| 20 | static inline void cpu_enter_lowpower(void) | ||
| 21 | { | ||
| 22 | unsigned int v; | ||
| 23 | |||
| 24 | asm volatile( "mcr p15, 0, %1, c7, c14, 0\n" | ||
| 25 | " mcr p15, 0, %1, c7, c5, 0\n" | ||
| 26 | " mcr p15, 0, %1, c7, c10, 4\n" | ||
| 27 | /* | ||
| 28 | * Turn off coherency | ||
| 29 | */ | ||
| 30 | " mrc p15, 0, %0, c1, c0, 1\n" | ||
| 31 | " bic %0, %0, #0x20\n" | ||
| 32 | " mcr p15, 0, %0, c1, c0, 1\n" | ||
| 33 | " mrc p15, 0, %0, c1, c0, 0\n" | ||
| 34 | " bic %0, %0, #0x04\n" | ||
| 35 | " mcr p15, 0, %0, c1, c0, 0\n" | ||
| 36 | : "=&r" (v) | ||
| 37 | : "r" (0) | ||
| 38 | : "cc"); | ||
| 39 | } | ||
| 40 | |||
| 41 | static inline void cpu_leave_lowpower(void) | ||
| 42 | { | ||
| 43 | unsigned int v; | ||
| 44 | |||
| 45 | asm volatile( "mrc p15, 0, %0, c1, c0, 0\n" | ||
| 46 | " orr %0, %0, #0x04\n" | ||
| 47 | " mcr p15, 0, %0, c1, c0, 0\n" | ||
| 48 | " mrc p15, 0, %0, c1, c0, 1\n" | ||
| 49 | " orr %0, %0, #0x20\n" | ||
| 50 | " mcr p15, 0, %0, c1, c0, 1\n" | ||
| 51 | : "=&r" (v) | ||
| 52 | : | ||
| 53 | : "cc"); | ||
| 54 | } | ||
| 55 | |||
| 56 | static inline void platform_do_lowpower(unsigned int cpu) | ||
| 57 | { | ||
| 58 | /* | ||
| 59 | * there is no power-control hardware on this platform, so all | ||
| 60 | * we can do is put the core into WFI; this is safe as the calling | ||
| 61 | * code will have already disabled interrupts | ||
| 62 | */ | ||
| 63 | for (;;) { | ||
| 64 | /* | ||
| 65 | * here's the WFI | ||
| 66 | */ | ||
| 67 | asm(".word 0xe320f003\n" | ||
| 68 | : | ||
| 69 | : | ||
| 70 | : "memory", "cc"); | ||
| 71 | |||
| 72 | if (pen_release == cpu) { | ||
| 73 | /* | ||
| 74 | * OK, proper wakeup, we're done | ||
| 75 | */ | ||
| 76 | break; | ||
| 77 | } | ||
| 78 | |||
| 79 | /* | ||
| 80 | * getting here, means that we have come out of WFI without | ||
| 81 | * having been woken up - this shouldn't happen | ||
| 82 | * | ||
| 83 | * The trouble is, letting people know about this is not really | ||
| 84 | * possible, since we are currently running incoherently, and | ||
| 85 | * therefore cannot safely call printk() or anything else | ||
| 86 | */ | ||
| 87 | #ifdef DEBUG | ||
| 88 | printk("CPU%u: spurious wakeup call\n", cpu); | ||
| 89 | #endif | ||
| 90 | } | ||
| 91 | } | ||
| 92 | |||
| 93 | int platform_cpu_kill(unsigned int cpu) | ||
| 94 | { | ||
| 95 | return wait_for_completion_timeout(&cpu_killed, 5000); | ||
| 96 | } | ||
| 97 | |||
| 98 | /* | ||
| 99 | * platform-specific code to shutdown a CPU | ||
| 100 | * | ||
| 101 | * Called with IRQs disabled | ||
| 102 | */ | ||
| 103 | void platform_cpu_die(unsigned int cpu) | ||
| 104 | { | ||
| 105 | #ifdef DEBUG | ||
| 106 | unsigned int this_cpu = hard_smp_processor_id(); | ||
| 107 | |||
| 108 | if (cpu != this_cpu) { | ||
| 109 | printk(KERN_CRIT "Eek! platform_cpu_die running on %u, should be %u\n", | ||
| 110 | this_cpu, cpu); | ||
| 111 | BUG(); | ||
| 112 | } | ||
| 113 | #endif | ||
| 114 | |||
| 115 | printk(KERN_NOTICE "CPU%u: shutdown\n", cpu); | ||
| 116 | complete(&cpu_killed); | ||
| 117 | |||
| 118 | /* | ||
| 119 | * we're ready for shutdown now, so do it | ||
| 120 | */ | ||
| 121 | cpu_enter_lowpower(); | ||
| 122 | platform_do_lowpower(cpu); | ||
| 123 | |||
| 124 | /* | ||
| 125 | * bring this CPU back into the world of cache | ||
| 126 | * coherency, and then restore interrupts | ||
| 127 | */ | ||
| 128 | cpu_leave_lowpower(); | ||
| 129 | } | ||
| 130 | |||
| 131 | int mach_cpu_disable(unsigned int cpu) | ||
| 132 | { | ||
| 133 | /* | ||
| 134 | * we don't allow CPU 0 to be shutdown (it is still too special | ||
| 135 | * e.g. clock tick interrupts) | ||
| 136 | */ | ||
| 137 | return cpu == 0 ? -EPERM : 0; | ||
| 138 | } | ||
diff --git a/arch/arm/mach-realview/localtimer.c b/arch/arm/mach-realview/localtimer.c new file mode 100644 index 000000000000..5e917e37d095 --- /dev/null +++ b/arch/arm/mach-realview/localtimer.c | |||
| @@ -0,0 +1,130 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/arm/mach-realview/localtimer.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2002 ARM Ltd. | ||
| 5 | * All Rights Reserved | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | #include <linux/init.h> | ||
| 12 | #include <linux/kernel.h> | ||
| 13 | #include <linux/delay.h> | ||
| 14 | #include <linux/device.h> | ||
| 15 | #include <linux/smp.h> | ||
| 16 | |||
| 17 | #include <asm/mach/time.h> | ||
| 18 | #include <asm/hardware/arm_twd.h> | ||
| 19 | #include <asm/hardware/gic.h> | ||
| 20 | #include <asm/hardware.h> | ||
| 21 | #include <asm/io.h> | ||
| 22 | #include <asm/irq.h> | ||
| 23 | |||
| 24 | #include "core.h" | ||
| 25 | |||
| 26 | #define TWD_BASE(cpu) (__io_address(REALVIEW_TWD_BASE) + \ | ||
| 27 | ((cpu) * REALVIEW_TWD_SIZE)) | ||
| 28 | |||
| 29 | static unsigned long mpcore_timer_rate; | ||
| 30 | |||
| 31 | /* | ||
| 32 | * local_timer_ack: checks for a local timer interrupt. | ||
| 33 | * | ||
| 34 | * If a local timer interrupt has occured, acknowledge and return 1. | ||
| 35 | * Otherwise, return 0. | ||
| 36 | */ | ||
| 37 | int local_timer_ack(void) | ||
| 38 | { | ||
| 39 | void __iomem *base = TWD_BASE(smp_processor_id()); | ||
| 40 | |||
| 41 | if (__raw_readl(base + TWD_TIMER_INTSTAT)) { | ||
| 42 | __raw_writel(1, base + TWD_TIMER_INTSTAT); | ||
| 43 | return 1; | ||
| 44 | } | ||
| 45 | |||
| 46 | return 0; | ||
| 47 | } | ||
| 48 | |||
| 49 | void __cpuinit local_timer_setup(unsigned int cpu) | ||
| 50 | { | ||
| 51 | void __iomem *base = TWD_BASE(cpu); | ||
| 52 | unsigned int load, offset; | ||
| 53 | u64 waitjiffies; | ||
| 54 | unsigned int count; | ||
| 55 | |||
| 56 | /* | ||
| 57 | * If this is the first time round, we need to work out how fast | ||
| 58 | * the timer ticks | ||
| 59 | */ | ||
| 60 | if (mpcore_timer_rate == 0) { | ||
| 61 | printk("Calibrating local timer... "); | ||
| 62 | |||
| 63 | /* Wait for a tick to start */ | ||
| 64 | waitjiffies = get_jiffies_64() + 1; | ||
| 65 | |||
| 66 | while (get_jiffies_64() < waitjiffies) | ||
| 67 | udelay(10); | ||
| 68 | |||
| 69 | /* OK, now the tick has started, let's get the timer going */ | ||
| 70 | waitjiffies += 5; | ||
| 71 | |||
| 72 | /* enable, no interrupt or reload */ | ||
| 73 | __raw_writel(0x1, base + TWD_TIMER_CONTROL); | ||
| 74 | |||
| 75 | /* maximum value */ | ||
| 76 | __raw_writel(0xFFFFFFFFU, base + TWD_TIMER_COUNTER); | ||
| 77 | |||
| 78 | while (get_jiffies_64() < waitjiffies) | ||
| 79 | udelay(10); | ||
| 80 | |||
| 81 | count = __raw_readl(base + TWD_TIMER_COUNTER); | ||
| 82 | |||
| 83 | mpcore_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5); | ||
| 84 | |||
| 85 | printk("%lu.%02luMHz.\n", mpcore_timer_rate / 1000000, | ||
| 86 | (mpcore_timer_rate / 100000) % 100); | ||
| 87 | } | ||
| 88 | |||
| 89 | load = mpcore_timer_rate / HZ; | ||
| 90 | |||
| 91 | __raw_writel(load, base + TWD_TIMER_LOAD); | ||
| 92 | __raw_writel(0x7, base + TWD_TIMER_CONTROL); | ||
| 93 | |||
| 94 | /* | ||
| 95 | * Now maneuver our local tick into the right part of the jiffy. | ||
| 96 | * Start by working out where within the tick our local timer | ||
| 97 | * interrupt should go. | ||
| 98 | */ | ||
| 99 | offset = ((mpcore_timer_rate / HZ) / (NR_CPUS + 1)) * (cpu + 1); | ||
| 100 | |||
| 101 | /* | ||
| 102 | * gettimeoffset() will return a number of us since the last tick. | ||
| 103 | * Convert this number of us to a local timer tick count. | ||
| 104 | * Be careful of integer overflow whilst keeping maximum precision. | ||
| 105 | * | ||
| 106 | * with HZ=100 and 1MHz (fpga) ~ 1GHz processor: | ||
| 107 | * load = 1 ~ 10,000 | ||
| 108 | * mpcore_timer_rate/10000 = 100 ~ 100,000 | ||
| 109 | * | ||
| 110 | * so the multiply value will be less than 10^9 always. | ||
| 111 | */ | ||
| 112 | load = (system_timer->offset() * (mpcore_timer_rate / 10000)) / 100; | ||
| 113 | |||
| 114 | /* Add on our offset to get the load value */ | ||
| 115 | load = (load + offset) % (mpcore_timer_rate / HZ); | ||
| 116 | |||
| 117 | __raw_writel(load, base + TWD_TIMER_COUNTER); | ||
| 118 | |||
| 119 | /* Make sure our local interrupt controller has this enabled */ | ||
| 120 | __raw_writel(1 << IRQ_LOCALTIMER, | ||
| 121 | __io_address(REALVIEW_GIC_DIST_BASE) + GIC_DIST_ENABLE_SET); | ||
| 122 | } | ||
| 123 | |||
| 124 | /* | ||
| 125 | * take a local timer down | ||
| 126 | */ | ||
| 127 | void __cpuexit local_timer_stop(unsigned int cpu) | ||
| 128 | { | ||
| 129 | __raw_writel(0, TWD_BASE(cpu) + TWD_TIMER_CONTROL); | ||
| 130 | } | ||
diff --git a/arch/arm/mach-realview/platsmp.c b/arch/arm/mach-realview/platsmp.c index 09b35f62247a..0c7d4ac9a7b3 100644 --- a/arch/arm/mach-realview/platsmp.c +++ b/arch/arm/mach-realview/platsmp.c | |||
| @@ -175,6 +175,11 @@ void __init smp_prepare_cpus(unsigned int max_cpus) | |||
| 175 | max_cpus = ncores; | 175 | max_cpus = ncores; |
| 176 | 176 | ||
| 177 | /* | 177 | /* |
| 178 | * Enable the local timer for primary CPU | ||
| 179 | */ | ||
| 180 | local_timer_setup(cpu); | ||
| 181 | |||
| 182 | /* | ||
| 178 | * Initialise the possible/present maps. | 183 | * Initialise the possible/present maps. |
| 179 | * cpu_possible_map describes the set of CPUs which may be present | 184 | * cpu_possible_map describes the set of CPUs which may be present |
| 180 | * cpu_present_map describes the set of CPUs populated | 185 | * cpu_present_map describes the set of CPUs populated |
diff --git a/arch/arm/mach-s3c2410/mach-anubis.c b/arch/arm/mach-s3c2410/mach-anubis.c index 8390b685c2b6..0f81fc0c2f7f 100644 --- a/arch/arm/mach-s3c2410/mach-anubis.c +++ b/arch/arm/mach-s3c2410/mach-anubis.c | |||
| @@ -56,8 +56,16 @@ | |||
| 56 | static struct map_desc anubis_iodesc[] __initdata = { | 56 | static struct map_desc anubis_iodesc[] __initdata = { |
| 57 | /* ISA IO areas */ | 57 | /* ISA IO areas */ |
| 58 | 58 | ||
| 59 | { (u32)S3C24XX_VA_ISA_BYTE, 0x0, SZ_16M, MT_DEVICE }, | 59 | { |
| 60 | { (u32)S3C24XX_VA_ISA_WORD, 0x0, SZ_16M, MT_DEVICE }, | 60 | .virtual = (u32)S3C24XX_VA_ISA_BYTE, |
| 61 | .pfn = __phys_to_pfn(0x0), | ||
| 62 | .length = SZ_4M, | ||
| 63 | .type = MT_DEVICE | ||
| 64 | }, { | ||
| 65 | .virtual = (u32)S3C24XX_VA_ISA_WORD, | ||
| 66 | .pfn = __phys_to_pfn(0x0), | ||
| 67 | .length = SZ_4M, MT_DEVICE | ||
| 68 | }, | ||
| 61 | 69 | ||
| 62 | /* we could possibly compress the next set down into a set of smaller tables | 70 | /* we could possibly compress the next set down into a set of smaller tables |
| 63 | * pagetables, but that would mean using an L2 section, and it still means | 71 | * pagetables, but that would mean using an L2 section, and it still means |
| @@ -66,16 +74,41 @@ static struct map_desc anubis_iodesc[] __initdata = { | |||
| 66 | 74 | ||
| 67 | /* CPLD control registers */ | 75 | /* CPLD control registers */ |
| 68 | 76 | ||
| 69 | { (u32)ANUBIS_VA_CTRL1, ANUBIS_PA_CTRL1, SZ_4K, MT_DEVICE }, | 77 | { |
| 70 | { (u32)ANUBIS_VA_CTRL2, ANUBIS_PA_CTRL2, SZ_4K, MT_DEVICE }, | 78 | .virtual = (u32)ANUBIS_VA_CTRL1, |
| 79 | .pfn = __phys_to_pfn(ANUBIS_PA_CTRL1), | ||
| 80 | .length = SZ_4K, | ||
| 81 | .type = MT_DEVICE | ||
| 82 | }, { | ||
| 83 | .virtual = (u32)ANUBIS_VA_CTRL2, | ||
| 84 | .pfn = __phys_to_pfn(ANUBIS_PA_CTRL2), | ||
| 85 | .length = SZ_4K, | ||
| 86 | .type =MT_DEVICE | ||
| 87 | }, | ||
| 71 | 88 | ||
| 72 | /* IDE drives */ | 89 | /* IDE drives */ |
| 73 | 90 | ||
| 74 | { (u32)ANUBIS_IDEPRI, S3C2410_CS3, SZ_1M, MT_DEVICE }, | 91 | { |
| 75 | { (u32)ANUBIS_IDEPRIAUX, S3C2410_CS3+(1<<26), SZ_1M, MT_DEVICE }, | 92 | .virtual = (u32)ANUBIS_IDEPRI, |
| 76 | 93 | .pfn = __phys_to_pfn(S3C2410_CS3), | |
| 77 | { (u32)ANUBIS_IDESEC, S3C2410_CS4, SZ_1M, MT_DEVICE }, | 94 | .length = SZ_1M, |
| 78 | { (u32)ANUBIS_IDESECAUX, S3C2410_CS4+(1<<26), SZ_1M, MT_DEVICE }, | 95 | .type = MT_DEVICE |
| 96 | }, { | ||
| 97 | .virtual = (u32)ANUBIS_IDEPRIAUX, | ||
| 98 | .pfn = __phys_to_pfn(S3C2410_CS3+(1<<26)), | ||
| 99 | .length = SZ_1M, | ||
| 100 | .type = MT_DEVICE | ||
| 101 | }, { | ||
| 102 | .virtual = (u32)ANUBIS_IDESEC, | ||
| 103 | .pfn = __phys_to_pfn(S3C2410_CS4), | ||
| 104 | .length = SZ_1M, | ||
| 105 | .type = MT_DEVICE | ||
| 106 | }, { | ||
| 107 | .virtual = (u32)ANUBIS_IDESECAUX, | ||
| 108 | .pfn = __phys_to_pfn(S3C2410_CS4+(1<<26)), | ||
| 109 | .length = SZ_1M, | ||
| 110 | .type = MT_DEVICE | ||
| 111 | }, | ||
| 79 | }; | 112 | }; |
| 80 | 113 | ||
| 81 | #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK | 114 | #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK |
diff --git a/arch/arm/mach-s3c2410/mach-rx3715.c b/arch/arm/mach-s3c2410/mach-rx3715.c index 24d69019a843..f8d86d1e16b6 100644 --- a/arch/arm/mach-s3c2410/mach-rx3715.c +++ b/arch/arm/mach-s3c2410/mach-rx3715.c | |||
| @@ -56,8 +56,17 @@ | |||
| 56 | static struct map_desc rx3715_iodesc[] __initdata = { | 56 | static struct map_desc rx3715_iodesc[] __initdata = { |
| 57 | /* dump ISA space somewhere unused */ | 57 | /* dump ISA space somewhere unused */ |
| 58 | 58 | ||
| 59 | { (u32)S3C24XX_VA_ISA_WORD, S3C2410_CS3, SZ_16M, MT_DEVICE }, | 59 | { |
| 60 | { (u32)S3C24XX_VA_ISA_BYTE, S3C2410_CS3, SZ_16M, MT_DEVICE }, | 60 | .virtual = (u32)S3C24XX_VA_ISA_WORD, |
| 61 | .pfn = __phys_to_pfn(S3C2410_CS3), | ||
| 62 | .length = SZ_1M, | ||
| 63 | .type = MT_DEVICE, | ||
| 64 | }, { | ||
| 65 | .virtual = (u32)S3C24XX_VA_ISA_BYTE, | ||
| 66 | .pfn = __phys_to_pfn(S3C2410_CS3), | ||
| 67 | .length = SZ_1M, | ||
| 68 | .type = MT_DEVICE, | ||
| 69 | }, | ||
| 61 | }; | 70 | }; |
| 62 | 71 | ||
| 63 | 72 | ||
diff --git a/arch/arm/mach-s3c2410/mach-smdk2440.c b/arch/arm/mach-s3c2410/mach-smdk2440.c index d666c621ad06..4e31118533e6 100644 --- a/arch/arm/mach-s3c2410/mach-smdk2440.c +++ b/arch/arm/mach-s3c2410/mach-smdk2440.c | |||
| @@ -58,8 +58,27 @@ | |||
| 58 | static struct map_desc smdk2440_iodesc[] __initdata = { | 58 | static struct map_desc smdk2440_iodesc[] __initdata = { |
| 59 | /* ISA IO Space map (memory space selected by A24) */ | 59 | /* ISA IO Space map (memory space selected by A24) */ |
| 60 | 60 | ||
| 61 | { (u32)S3C24XX_VA_ISA_WORD, S3C2410_CS2, SZ_16M, MT_DEVICE }, | 61 | { |
| 62 | { (u32)S3C24XX_VA_ISA_BYTE, S3C2410_CS2, SZ_16M, MT_DEVICE }, | 62 | .virtual = (u32)S3C24XX_VA_ISA_WORD, |
| 63 | .pfn = __phys_to_pfn(S3C2410_CS2), | ||
| 64 | .length = 0x10000, | ||
| 65 | .type = MT_DEVICE, | ||
| 66 | }, { | ||
| 67 | .virtual = (u32)S3C24XX_VA_ISA_WORD + 0x10000, | ||
| 68 | .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)), | ||
| 69 | .length = SZ_4M, | ||
| 70 | .type = MT_DEVICE, | ||
| 71 | }, { | ||
| 72 | .virtual = (u32)S3C24XX_VA_ISA_BYTE, | ||
| 73 | .pfn = __phys_to_pfn(S3C2410_CS2), | ||
| 74 | .length = 0x10000, | ||
| 75 | .type = MT_DEVICE, | ||
| 76 | }, { | ||
| 77 | .virtual = (u32)S3C24XX_VA_ISA_BYTE + 0x10000, | ||
| 78 | .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)), | ||
| 79 | .length = SZ_4M, | ||
| 80 | .type = MT_DEVICE, | ||
| 81 | } | ||
| 63 | }; | 82 | }; |
| 64 | 83 | ||
| 65 | #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK | 84 | #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK |
diff --git a/include/asm-arm/arch-realview/entry-macro.S b/include/asm-arm/arch-realview/entry-macro.S index 4df469bf42e2..6288fad0dc41 100644 --- a/include/asm-arm/arch-realview/entry-macro.S +++ b/include/asm-arm/arch-realview/entry-macro.S | |||
| @@ -61,3 +61,14 @@ | |||
| 61 | strcc \irqstat, [\base, #GIC_CPU_EOI] | 61 | strcc \irqstat, [\base, #GIC_CPU_EOI] |
| 62 | cmpcs \irqnr, \irqnr | 62 | cmpcs \irqnr, \irqnr |
| 63 | .endm | 63 | .endm |
| 64 | |||
| 65 | /* As above, this assumes that irqstat and base are preserved.. */ | ||
| 66 | |||
| 67 | .macro test_for_ltirq, irqnr, irqstat, base, tmp | ||
| 68 | bic \irqnr, \irqstat, #0x1c00 | ||
| 69 | mov \tmp, #0 | ||
| 70 | cmp \irqnr, #29 | ||
| 71 | moveq \tmp, #1 | ||
| 72 | streq \irqstat, [\base, #GIC_CPU_EOI] | ||
| 73 | cmp \tmp, #0 | ||
| 74 | .endm | ||
diff --git a/include/asm-arm/arch-realview/irqs.h b/include/asm-arm/arch-realview/irqs.h index ff376494e5b1..c16223c9588d 100644 --- a/include/asm-arm/arch-realview/irqs.h +++ b/include/asm-arm/arch-realview/irqs.h | |||
| @@ -21,6 +21,9 @@ | |||
| 21 | 21 | ||
| 22 | #include <asm/arch/platform.h> | 22 | #include <asm/arch/platform.h> |
| 23 | 23 | ||
| 24 | #define IRQ_LOCALTIMER 29 | ||
| 25 | #define IRQ_LOCALWDOG 30 | ||
| 26 | |||
| 24 | /* | 27 | /* |
| 25 | * IRQ interrupts definitions are the same the INT definitions | 28 | * IRQ interrupts definitions are the same the INT definitions |
| 26 | * held within platform.h | 29 | * held within platform.h |
diff --git a/include/asm-arm/arch-realview/platform.h b/include/asm-arm/arch-realview/platform.h index aef9b36b3c37..18d7c18b738c 100644 --- a/include/asm-arm/arch-realview/platform.h +++ b/include/asm-arm/arch-realview/platform.h | |||
| @@ -209,6 +209,8 @@ | |||
| 209 | #else | 209 | #else |
| 210 | #define REALVIEW_MPCORE_SCU_BASE 0x10100000 /* SCU registers */ | 210 | #define REALVIEW_MPCORE_SCU_BASE 0x10100000 /* SCU registers */ |
| 211 | #define REALVIEW_GIC_CPU_BASE 0x10100100 /* Generic interrupt controller CPU interface */ | 211 | #define REALVIEW_GIC_CPU_BASE 0x10100100 /* Generic interrupt controller CPU interface */ |
| 212 | #define REALVIEW_TWD_BASE 0x10100700 | ||
| 213 | #define REALVIEW_TWD_SIZE 0x00000100 | ||
| 212 | #define REALVIEW_GIC_DIST_BASE 0x10101000 /* Generic interrupt controller distributor */ | 214 | #define REALVIEW_GIC_DIST_BASE 0x10101000 /* Generic interrupt controller distributor */ |
| 213 | #endif | 215 | #endif |
| 214 | #define REALVIEW_SMC_BASE 0x10080000 /* SMC */ | 216 | #define REALVIEW_SMC_BASE 0x10080000 /* SMC */ |
| @@ -305,9 +307,6 @@ | |||
| 305 | #define INT_TSPENINT 30 /* Touchscreen pen */ | 307 | #define INT_TSPENINT 30 /* Touchscreen pen */ |
| 306 | #define INT_TSKPADINT 31 /* Touchscreen keypad */ | 308 | #define INT_TSKPADINT 31 /* Touchscreen keypad */ |
| 307 | #else | 309 | #else |
| 308 | #define INT_LOCALTIMER 29 | ||
| 309 | #define INT_LOCALWDOG 30 | ||
| 310 | |||
| 311 | #define INT_AACI 0 | 310 | #define INT_AACI 0 |
| 312 | #define INT_TIMERINT0_1 1 | 311 | #define INT_TIMERINT0_1 1 |
| 313 | #define INT_TIMERINT2_3 2 | 312 | #define INT_TIMERINT2_3 2 |
diff --git a/include/asm-arm/assembler.h b/include/asm-arm/assembler.h index 69a28f96bee2..f31ac92b6c7f 100644 --- a/include/asm-arm/assembler.h +++ b/include/asm-arm/assembler.h | |||
| @@ -83,10 +83,13 @@ | |||
| 83 | * Save the current IRQ state and disable IRQs. Note that this macro | 83 | * Save the current IRQ state and disable IRQs. Note that this macro |
| 84 | * assumes FIQs are enabled, and that the processor is in SVC mode. | 84 | * assumes FIQs are enabled, and that the processor is in SVC mode. |
| 85 | */ | 85 | */ |
| 86 | .macro save_and_disable_irqs, oldcpsr, temp | 86 | .macro save_and_disable_irqs, oldcpsr |
| 87 | mrs \oldcpsr, cpsr | 87 | mrs \oldcpsr, cpsr |
| 88 | mov \temp, #PSR_I_BIT | MODE_SVC | 88 | #if __LINUX_ARM_ARCH__ >= 6 |
| 89 | msr cpsr_c, \temp | 89 | cpsid i |
| 90 | #else | ||
| 91 | msr cpsr_c, #PSR_I_BIT | MODE_SVC | ||
| 92 | #endif | ||
| 90 | .endm | 93 | .endm |
| 91 | 94 | ||
| 92 | /* | 95 | /* |
diff --git a/include/asm-arm/mach/flash.h b/include/asm-arm/mach/flash.h index cd57436d9874..05b029ef6371 100644 --- a/include/asm-arm/mach/flash.h +++ b/include/asm-arm/mach/flash.h | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #define ASMARM_MACH_FLASH_H | 11 | #define ASMARM_MACH_FLASH_H |
| 12 | 12 | ||
| 13 | struct mtd_partition; | 13 | struct mtd_partition; |
| 14 | struct mtd_info; | ||
| 14 | 15 | ||
| 15 | /* | 16 | /* |
| 16 | * map_name: the map probe function name | 17 | * map_name: the map probe function name |
| @@ -19,6 +20,7 @@ struct mtd_partition; | |||
| 19 | * init: method called at driver/device initialisation | 20 | * init: method called at driver/device initialisation |
| 20 | * exit: method called at driver/device removal | 21 | * exit: method called at driver/device removal |
| 21 | * set_vpp: method called to enable or disable VPP | 22 | * set_vpp: method called to enable or disable VPP |
| 23 | * mmcontrol: method called to enable or disable Sync. Burst Read in OneNAND | ||
| 22 | * parts: optional array of mtd_partitions for static partitioning | 24 | * parts: optional array of mtd_partitions for static partitioning |
| 23 | * nr_parts: number of mtd_partitions for static partitoning | 25 | * nr_parts: number of mtd_partitions for static partitoning |
| 24 | */ | 26 | */ |
| @@ -29,6 +31,7 @@ struct flash_platform_data { | |||
| 29 | int (*init)(void); | 31 | int (*init)(void); |
| 30 | void (*exit)(void); | 32 | void (*exit)(void); |
| 31 | void (*set_vpp)(int on); | 33 | void (*set_vpp)(int on); |
| 34 | void (*mmcontrol)(struct mtd_info *mtd, int sync_read); | ||
| 32 | struct mtd_partition *parts; | 35 | struct mtd_partition *parts; |
| 33 | unsigned int nr_parts; | 36 | unsigned int nr_parts; |
| 34 | }; | 37 | }; |
