diff options
Diffstat (limited to 'arch/arm')
24 files changed, 102 insertions, 27 deletions
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 5a7c09564d13..e9842f6767f9 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c | |||
@@ -100,7 +100,7 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
100 | * a 1:1 mapping for the physical address of the kernel. | 100 | * a 1:1 mapping for the physical address of the kernel. |
101 | */ | 101 | */ |
102 | pgd = pgd_alloc(&init_mm); | 102 | pgd = pgd_alloc(&init_mm); |
103 | pmd = pmd_offset(pgd, PHYS_OFFSET); | 103 | pmd = pmd_offset(pgd + pgd_index(PHYS_OFFSET), PHYS_OFFSET); |
104 | *pmd = __pmd((PHYS_OFFSET & PGDIR_MASK) | | 104 | *pmd = __pmd((PHYS_OFFSET & PGDIR_MASK) | |
105 | PMD_TYPE_SECT | PMD_SECT_AP_WRITE); | 105 | PMD_TYPE_SECT | PMD_SECT_AP_WRITE); |
106 | 106 | ||
@@ -139,7 +139,7 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
139 | secondary_data.stack = NULL; | 139 | secondary_data.stack = NULL; |
140 | secondary_data.pgdir = 0; | 140 | secondary_data.pgdir = 0; |
141 | 141 | ||
142 | *pmd_offset(pgd, PHYS_OFFSET) = __pmd(0); | 142 | *pmd = __pmd(0); |
143 | pgd_free(&init_mm, pgd); | 143 | pgd_free(&init_mm, pgd); |
144 | 144 | ||
145 | if (ret) { | 145 | if (ret) { |
diff --git a/arch/arm/mach-footbridge/cats-pci.c b/arch/arm/mach-footbridge/cats-pci.c index 35eb232a649a..ae3e1c8c7583 100644 --- a/arch/arm/mach-footbridge/cats-pci.c +++ b/arch/arm/mach-footbridge/cats-pci.c | |||
@@ -18,6 +18,9 @@ static int irqmap_cats[] __initdata = { IRQ_PCI, IRQ_IN0, IRQ_IN1, IRQ_IN3 }; | |||
18 | 18 | ||
19 | static int __init cats_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 19 | static int __init cats_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
20 | { | 20 | { |
21 | if (dev->irq >= 255) | ||
22 | return -1; /* not a valid interrupt. */ | ||
23 | |||
21 | if (dev->irq >= 128) | 24 | if (dev->irq >= 128) |
22 | return dev->irq & 0x1f; | 25 | return dev->irq & 0x1f; |
23 | 26 | ||
diff --git a/arch/arm/mach-pnx4008/include/mach/i2c.h b/arch/arm/mach-pnx4008/include/mach/i2c.h index 92e8d65006f7..259ac53abf40 100644 --- a/arch/arm/mach-pnx4008/include/mach/i2c.h +++ b/arch/arm/mach-pnx4008/include/mach/i2c.h | |||
@@ -12,9 +12,6 @@ | |||
12 | #ifndef __ASM_ARCH_I2C_H__ | 12 | #ifndef __ASM_ARCH_I2C_H__ |
13 | #define __ASM_ARCH_I2C_H__ | 13 | #define __ASM_ARCH_I2C_H__ |
14 | 14 | ||
15 | #include <linux/pm.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | |||
18 | enum { | 15 | enum { |
19 | mstatus_tdi = 0x00000001, | 16 | mstatus_tdi = 0x00000001, |
20 | mstatus_afi = 0x00000002, | 17 | mstatus_afi = 0x00000002, |
diff --git a/arch/arm/mach-pxa/generic.c b/arch/arm/mach-pxa/generic.c index 2834b7fff78c..ceaed0076366 100644 --- a/arch/arm/mach-pxa/generic.c +++ b/arch/arm/mach-pxa/generic.c | |||
@@ -26,9 +26,19 @@ | |||
26 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
27 | 27 | ||
28 | #include <mach/pxa-regs.h> | 28 | #include <mach/pxa-regs.h> |
29 | #include <mach/reset.h> | ||
29 | 30 | ||
30 | #include "generic.h" | 31 | #include "generic.h" |
31 | 32 | ||
33 | void clear_reset_status(unsigned int mask) | ||
34 | { | ||
35 | if (cpu_is_pxa2xx()) | ||
36 | pxa2xx_clear_reset_status(mask); | ||
37 | |||
38 | if (cpu_is_pxa3xx()) | ||
39 | pxa3xx_clear_reset_status(mask); | ||
40 | } | ||
41 | |||
32 | /* | 42 | /* |
33 | * Get the clock frequency as reflected by CCCR and the turbo flag. | 43 | * Get the clock frequency as reflected by CCCR and the turbo flag. |
34 | * We assume these values have been applied via a fcs. | 44 | * We assume these values have been applied via a fcs. |
diff --git a/arch/arm/mach-pxa/generic.h b/arch/arm/mach-pxa/generic.h index 5bb7ae757831..041c048320e4 100644 --- a/arch/arm/mach-pxa/generic.h +++ b/arch/arm/mach-pxa/generic.h | |||
@@ -47,12 +47,20 @@ extern unsigned pxa27x_get_memclk_frequency_10khz(void); | |||
47 | #define pxa27x_get_memclk_frequency_10khz() (0) | 47 | #define pxa27x_get_memclk_frequency_10khz() (0) |
48 | #endif | 48 | #endif |
49 | 49 | ||
50 | #if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x) | ||
51 | extern void pxa2xx_clear_reset_status(unsigned int); | ||
52 | #else | ||
53 | static inline void pxa2xx_clear_reset_status(unsigned int mask) {} | ||
54 | #endif | ||
55 | |||
50 | #ifdef CONFIG_PXA3xx | 56 | #ifdef CONFIG_PXA3xx |
51 | extern unsigned pxa3xx_get_clk_frequency_khz(int); | 57 | extern unsigned pxa3xx_get_clk_frequency_khz(int); |
52 | extern unsigned pxa3xx_get_memclk_frequency_10khz(void); | 58 | extern unsigned pxa3xx_get_memclk_frequency_10khz(void); |
59 | extern void pxa3xx_clear_reset_status(unsigned int); | ||
53 | #else | 60 | #else |
54 | #define pxa3xx_get_clk_frequency_khz(x) (0) | 61 | #define pxa3xx_get_clk_frequency_khz(x) (0) |
55 | #define pxa3xx_get_memclk_frequency_10khz() (0) | 62 | #define pxa3xx_get_memclk_frequency_10khz() (0) |
63 | static inline void pxa3xx_clear_reset_status(unsigned int mask) {} | ||
56 | #endif | 64 | #endif |
57 | 65 | ||
58 | extern struct sysdev_class pxa_irq_sysclass; | 66 | extern struct sysdev_class pxa_irq_sysclass; |
diff --git a/arch/arm/mach-pxa/include/mach/hardware.h b/arch/arm/mach-pxa/include/mach/hardware.h index f8fb1e75997f..e89df4d0d239 100644 --- a/arch/arm/mach-pxa/include/mach/hardware.h +++ b/arch/arm/mach-pxa/include/mach/hardware.h | |||
@@ -224,11 +224,6 @@ extern void pxa_gpio_set_value(unsigned gpio, int value); | |||
224 | */ | 224 | */ |
225 | extern unsigned int get_memclk_frequency_10khz(void); | 225 | extern unsigned int get_memclk_frequency_10khz(void); |
226 | 226 | ||
227 | /* | ||
228 | * register GPIO as reset generator | ||
229 | */ | ||
230 | extern int init_gpio_reset(int gpio); | ||
231 | |||
232 | #endif | 227 | #endif |
233 | 228 | ||
234 | #if defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI) | 229 | #if defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI) |
diff --git a/arch/arm/mach-pxa/include/mach/reset.h b/arch/arm/mach-pxa/include/mach/reset.h new file mode 100644 index 000000000000..9489a48871a8 --- /dev/null +++ b/arch/arm/mach-pxa/include/mach/reset.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #ifndef __ASM_ARCH_RESET_H | ||
2 | #define __ASM_ARCH_RESET_H | ||
3 | |||
4 | #define RESET_STATUS_HARDWARE (1 << 0) /* Hardware Reset */ | ||
5 | #define RESET_STATUS_WATCHDOG (1 << 1) /* Watchdog Reset */ | ||
6 | #define RESET_STATUS_LOWPOWER (1 << 2) /* Low Power/Sleep Exit */ | ||
7 | #define RESET_STATUS_GPIO (1 << 3) /* GPIO Reset */ | ||
8 | #define RESET_STATUS_ALL (0xf) | ||
9 | |||
10 | extern unsigned int reset_status; | ||
11 | extern void clear_reset_status(unsigned int mask); | ||
12 | |||
13 | /* | ||
14 | * register GPIO as reset generator | ||
15 | */ | ||
16 | extern int init_gpio_reset(int gpio); | ||
17 | |||
18 | #endif /* __ASM_ARCH_RESET_H */ | ||
diff --git a/arch/arm/mach-pxa/lubbock.c b/arch/arm/mach-pxa/lubbock.c index 4ba8d3190721..bb9e09208b9f 100644 --- a/arch/arm/mach-pxa/lubbock.c +++ b/arch/arm/mach-pxa/lubbock.c | |||
@@ -224,7 +224,7 @@ static struct platform_device sa1111_device = { | |||
224 | * for the temperature sensors. | 224 | * for the temperature sensors. |
225 | */ | 225 | */ |
226 | static struct pxa2xx_spi_master pxa_ssp_master_info = { | 226 | static struct pxa2xx_spi_master pxa_ssp_master_info = { |
227 | .num_chipselect = 0, | 227 | .num_chipselect = 1, |
228 | }; | 228 | }; |
229 | 229 | ||
230 | static int lubbock_ads7846_pendown_state(void) | 230 | static int lubbock_ads7846_pendown_state(void) |
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 3c2d22de9a13..9e5d8a8c6424 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <mach/pxa-regs.h> | 28 | #include <mach/pxa-regs.h> |
29 | #include <mach/pxa2xx-regs.h> | 29 | #include <mach/pxa2xx-regs.h> |
30 | #include <mach/mfp-pxa25x.h> | 30 | #include <mach/mfp-pxa25x.h> |
31 | #include <mach/reset.h> | ||
31 | #include <mach/pm.h> | 32 | #include <mach/pm.h> |
32 | #include <mach/dma.h> | 33 | #include <mach/dma.h> |
33 | 34 | ||
@@ -348,6 +349,9 @@ static int __init pxa25x_init(void) | |||
348 | clks_register(&pxa25x_hwuart_clk, 1); | 349 | clks_register(&pxa25x_hwuart_clk, 1); |
349 | 350 | ||
350 | if (cpu_is_pxa21x() || cpu_is_pxa25x()) { | 351 | if (cpu_is_pxa21x() || cpu_is_pxa25x()) { |
352 | |||
353 | reset_status = RCSR; | ||
354 | |||
351 | clks_register(pxa25x_clks, ARRAY_SIZE(pxa25x_clks)); | 355 | clks_register(pxa25x_clks, ARRAY_SIZE(pxa25x_clks)); |
352 | 356 | ||
353 | if ((ret = pxa_init_dma(16))) | 357 | if ((ret = pxa_init_dma(16))) |
diff --git a/arch/arm/mach-pxa/pxa27x.c b/arch/arm/mach-pxa/pxa27x.c index 6bec43484ba7..f9f6a9c31f4b 100644 --- a/arch/arm/mach-pxa/pxa27x.c +++ b/arch/arm/mach-pxa/pxa27x.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <mach/pxa-regs.h> | 24 | #include <mach/pxa-regs.h> |
25 | #include <mach/pxa2xx-regs.h> | 25 | #include <mach/pxa2xx-regs.h> |
26 | #include <mach/mfp-pxa27x.h> | 26 | #include <mach/mfp-pxa27x.h> |
27 | #include <mach/reset.h> | ||
27 | #include <mach/ohci.h> | 28 | #include <mach/ohci.h> |
28 | #include <mach/pm.h> | 29 | #include <mach/pm.h> |
29 | #include <mach/dma.h> | 30 | #include <mach/dma.h> |
@@ -384,6 +385,9 @@ static int __init pxa27x_init(void) | |||
384 | int i, ret = 0; | 385 | int i, ret = 0; |
385 | 386 | ||
386 | if (cpu_is_pxa27x()) { | 387 | if (cpu_is_pxa27x()) { |
388 | |||
389 | reset_status = RCSR; | ||
390 | |||
387 | clks_register(pxa27x_clks, ARRAY_SIZE(pxa27x_clks)); | 391 | clks_register(pxa27x_clks, ARRAY_SIZE(pxa27x_clks)); |
388 | 392 | ||
389 | if ((ret = pxa_init_dma(32))) | 393 | if ((ret = pxa_init_dma(32))) |
diff --git a/arch/arm/mach-pxa/pxa2xx.c b/arch/arm/mach-pxa/pxa2xx.c index 00b4de6d6bdd..73d04d81c75a 100644 --- a/arch/arm/mach-pxa/pxa2xx.c +++ b/arch/arm/mach-pxa/pxa2xx.c | |||
@@ -14,10 +14,19 @@ | |||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/device.h> | 15 | #include <linux/device.h> |
16 | 16 | ||
17 | #include <mach/hardware.h> | ||
18 | #include <mach/pxa2xx-regs.h> | ||
17 | #include <mach/mfp-pxa2xx.h> | 19 | #include <mach/mfp-pxa2xx.h> |
18 | #include <mach/mfp-pxa25x.h> | 20 | #include <mach/mfp-pxa25x.h> |
21 | #include <mach/reset.h> | ||
19 | #include <mach/irda.h> | 22 | #include <mach/irda.h> |
20 | 23 | ||
24 | void pxa2xx_clear_reset_status(unsigned int mask) | ||
25 | { | ||
26 | /* RESET_STATUS_* has a 1:1 mapping with RCSR */ | ||
27 | RCSR = mask; | ||
28 | } | ||
29 | |||
21 | static unsigned long pxa2xx_mfp_fir[] = { | 30 | static unsigned long pxa2xx_mfp_fir[] = { |
22 | GPIO46_FICP_RXD, | 31 | GPIO46_FICP_RXD, |
23 | GPIO47_FICP_TXD, | 32 | GPIO47_FICP_TXD, |
diff --git a/arch/arm/mach-pxa/pxa3xx.c b/arch/arm/mach-pxa/pxa3xx.c index 37b07212b5a5..03cbc38103ed 100644 --- a/arch/arm/mach-pxa/pxa3xx.c +++ b/arch/arm/mach-pxa/pxa3xx.c | |||
@@ -24,6 +24,7 @@ | |||
24 | 24 | ||
25 | #include <mach/hardware.h> | 25 | #include <mach/hardware.h> |
26 | #include <mach/pxa3xx-regs.h> | 26 | #include <mach/pxa3xx-regs.h> |
27 | #include <mach/reset.h> | ||
27 | #include <mach/ohci.h> | 28 | #include <mach/ohci.h> |
28 | #include <mach/pm.h> | 29 | #include <mach/pm.h> |
29 | #include <mach/dma.h> | 30 | #include <mach/dma.h> |
@@ -109,6 +110,12 @@ unsigned int pxa3xx_get_memclk_frequency_10khz(void) | |||
109 | return (clk / 10000); | 110 | return (clk / 10000); |
110 | } | 111 | } |
111 | 112 | ||
113 | void pxa3xx_clear_reset_status(unsigned int mask) | ||
114 | { | ||
115 | /* RESET_STATUS_* has a 1:1 mapping with ARSR */ | ||
116 | ARSR = mask; | ||
117 | } | ||
118 | |||
112 | /* | 119 | /* |
113 | * Return the current AC97 clock frequency. | 120 | * Return the current AC97 clock frequency. |
114 | */ | 121 | */ |
@@ -532,6 +539,9 @@ static int __init pxa3xx_init(void) | |||
532 | int i, ret = 0; | 539 | int i, ret = 0; |
533 | 540 | ||
534 | if (cpu_is_pxa3xx()) { | 541 | if (cpu_is_pxa3xx()) { |
542 | |||
543 | reset_status = ARSR; | ||
544 | |||
535 | /* | 545 | /* |
536 | * clear RDH bit every time after reset | 546 | * clear RDH bit every time after reset |
537 | * | 547 | * |
diff --git a/arch/arm/mach-pxa/reset.c b/arch/arm/mach-pxa/reset.c index fabead71d681..9996c612c3d6 100644 --- a/arch/arm/mach-pxa/reset.c +++ b/arch/arm/mach-pxa/reset.c | |||
@@ -11,7 +11,10 @@ | |||
11 | #include <asm/proc-fns.h> | 11 | #include <asm/proc-fns.h> |
12 | 12 | ||
13 | #include <mach/pxa-regs.h> | 13 | #include <mach/pxa-regs.h> |
14 | #include <mach/pxa2xx-regs.h> | 14 | #include <mach/reset.h> |
15 | |||
16 | unsigned int reset_status; | ||
17 | EXPORT_SYMBOL(reset_status); | ||
15 | 18 | ||
16 | static void do_hw_reset(void); | 19 | static void do_hw_reset(void); |
17 | 20 | ||
@@ -77,8 +80,7 @@ static void do_hw_reset(void) | |||
77 | 80 | ||
78 | void arch_reset(char mode) | 81 | void arch_reset(char mode) |
79 | { | 82 | { |
80 | if (cpu_is_pxa2xx()) | 83 | clear_reset_status(RESET_STATUS_ALL); |
81 | RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR; | ||
82 | 84 | ||
83 | switch (mode) { | 85 | switch (mode) { |
84 | case 's': | 86 | case 's': |
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 26b9fa56cffd..cd39005c98ff 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <mach/pxa2xx-regs.h> | 39 | #include <mach/pxa2xx-regs.h> |
40 | #include <mach/pxa2xx-gpio.h> | 40 | #include <mach/pxa2xx-gpio.h> |
41 | #include <mach/pxa27x-udc.h> | 41 | #include <mach/pxa27x-udc.h> |
42 | #include <mach/reset.h> | ||
42 | #include <mach/irda.h> | 43 | #include <mach/irda.h> |
43 | #include <mach/mmc.h> | 44 | #include <mach/mmc.h> |
44 | #include <mach/ohci.h> | 45 | #include <mach/ohci.h> |
diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index 38bc59c44110..5dab30eafddc 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <asm/mach-types.h> | 36 | #include <asm/mach-types.h> |
37 | #include <mach/pxa2xx-regs.h> | 37 | #include <mach/pxa2xx-regs.h> |
38 | #include <mach/mfp-pxa25x.h> | 38 | #include <mach/mfp-pxa25x.h> |
39 | #include <mach/reset.h> | ||
39 | #include <mach/irda.h> | 40 | #include <mach/irda.h> |
40 | #include <mach/i2c.h> | 41 | #include <mach/i2c.h> |
41 | #include <mach/mmc.h> | 42 | #include <mach/mmc.h> |
diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c index fb1e78e28e50..24c6334fac89 100644 --- a/arch/arm/mach-s3c2410/mach-bast.c +++ b/arch/arm/mach-s3c2410/mach-bast.c | |||
@@ -562,7 +562,7 @@ static struct platform_device *bast_devices[] __initdata = { | |||
562 | &bast_sio, | 562 | &bast_sio, |
563 | }; | 563 | }; |
564 | 564 | ||
565 | static struct clk *bast_clocks[] = { | 565 | static struct clk *bast_clocks[] __initdata = { |
566 | &s3c24xx_dclk0, | 566 | &s3c24xx_dclk0, |
567 | &s3c24xx_dclk1, | 567 | &s3c24xx_dclk1, |
568 | &s3c24xx_clkout0, | 568 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-s3c2410/mach-vr1000.c b/arch/arm/mach-s3c2410/mach-vr1000.c index 12cbca68f57d..fbc0213d5485 100644 --- a/arch/arm/mach-s3c2410/mach-vr1000.c +++ b/arch/arm/mach-s3c2410/mach-vr1000.c | |||
@@ -344,7 +344,7 @@ static struct platform_device *vr1000_devices[] __initdata = { | |||
344 | &vr1000_led3, | 344 | &vr1000_led3, |
345 | }; | 345 | }; |
346 | 346 | ||
347 | static struct clk *vr1000_clocks[] = { | 347 | static struct clk *vr1000_clocks[] __initdata = { |
348 | &s3c24xx_dclk0, | 348 | &s3c24xx_dclk0, |
349 | &s3c24xx_dclk1, | 349 | &s3c24xx_dclk1, |
350 | &s3c24xx_clkout0, | 350 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-s3c2412/mach-jive.c b/arch/arm/mach-s3c2412/mach-jive.c index 30f613a79bfe..4c061d29463c 100644 --- a/arch/arm/mach-s3c2412/mach-jive.c +++ b/arch/arm/mach-s3c2412/mach-jive.c | |||
@@ -26,9 +26,6 @@ | |||
26 | 26 | ||
27 | #include <linux/spi/spi.h> | 27 | #include <linux/spi/spi.h> |
28 | 28 | ||
29 | #include <linux/mtd/mtd.h> | ||
30 | #include <linux/mtd/partitions.h> | ||
31 | |||
32 | #include <asm/mach/arch.h> | 29 | #include <asm/mach/arch.h> |
33 | #include <asm/mach/map.h> | 30 | #include <asm/mach/map.h> |
34 | #include <asm/mach/irq.h> | 31 | #include <asm/mach/irq.h> |
diff --git a/arch/arm/mach-s3c2440/mach-anubis.c b/arch/arm/mach-s3c2440/mach-anubis.c index 265c77dec9d7..441f4bc09472 100644 --- a/arch/arm/mach-s3c2440/mach-anubis.c +++ b/arch/arm/mach-s3c2440/mach-anubis.c | |||
@@ -414,7 +414,7 @@ static struct platform_device *anubis_devices[] __initdata = { | |||
414 | &anubis_device_sm501, | 414 | &anubis_device_sm501, |
415 | }; | 415 | }; |
416 | 416 | ||
417 | static struct clk *anubis_clocks[] = { | 417 | static struct clk *anubis_clocks[] __initdata = { |
418 | &s3c24xx_dclk0, | 418 | &s3c24xx_dclk0, |
419 | &s3c24xx_dclk1, | 419 | &s3c24xx_dclk1, |
420 | &s3c24xx_clkout0, | 420 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-s3c2440/mach-osiris.c b/arch/arm/mach-s3c2440/mach-osiris.c index d2ee0cd148c6..8b83f93b6102 100644 --- a/arch/arm/mach-s3c2440/mach-osiris.c +++ b/arch/arm/mach-s3c2440/mach-osiris.c | |||
@@ -341,7 +341,7 @@ static struct platform_device *osiris_devices[] __initdata = { | |||
341 | &osiris_pcmcia, | 341 | &osiris_pcmcia, |
342 | }; | 342 | }; |
343 | 343 | ||
344 | static struct clk *osiris_clocks[] = { | 344 | static struct clk *osiris_clocks[] __initdata = { |
345 | &s3c24xx_dclk0, | 345 | &s3c24xx_dclk0, |
346 | &s3c24xx_dclk1, | 346 | &s3c24xx_dclk1, |
347 | &s3c24xx_clkout0, | 347 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-sa1100/Makefile b/arch/arm/mach-sa1100/Makefile index 8e0244631d65..8a5546e6d547 100644 --- a/arch/arm/mach-sa1100/Makefile +++ b/arch/arm/mach-sa1100/Makefile | |||
@@ -46,9 +46,6 @@ led-$(CONFIG_SA1100_SIMPAD) += leds-simpad.o | |||
46 | # LEDs support | 46 | # LEDs support |
47 | obj-$(CONFIG_LEDS) += $(led-y) | 47 | obj-$(CONFIG_LEDS) += $(led-y) |
48 | 48 | ||
49 | # SA1110 USB client support | ||
50 | #obj-$(CONFIG_SA1100_USB) += usb/ | ||
51 | |||
52 | # Miscelaneous functions | 49 | # Miscelaneous functions |
53 | obj-$(CONFIG_PM) += pm.o sleep.o | 50 | obj-$(CONFIG_PM) += pm.o sleep.o |
54 | obj-$(CONFIG_SA1100_SSP) += ssp.o | 51 | obj-$(CONFIG_SA1100_SSP) += ssp.o |
diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index 5a08fe20a319..1362994c78aa 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c | |||
@@ -31,6 +31,9 @@ | |||
31 | 31 | ||
32 | #include "generic.h" | 32 | #include "generic.h" |
33 | 33 | ||
34 | unsigned int reset_status; | ||
35 | EXPORT_SYMBOL(reset_status); | ||
36 | |||
34 | #define NR_FREQS 16 | 37 | #define NR_FREQS 16 |
35 | 38 | ||
36 | /* | 39 | /* |
diff --git a/arch/arm/mach-sa1100/include/mach/reset.h b/arch/arm/mach-sa1100/include/mach/reset.h new file mode 100644 index 000000000000..f61957e6842a --- /dev/null +++ b/arch/arm/mach-sa1100/include/mach/reset.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #ifndef __ASM_ARCH_RESET_H | ||
2 | #define __ASM_ARCH_RESET_H | ||
3 | |||
4 | #include "hardware.h" | ||
5 | |||
6 | #define RESET_STATUS_HARDWARE (1 << 0) /* Hardware Reset */ | ||
7 | #define RESET_STATUS_WATCHDOG (1 << 1) /* Watchdog Reset */ | ||
8 | #define RESET_STATUS_LOWPOWER (1 << 2) /* Exit from Low Power/Sleep */ | ||
9 | #define RESET_STATUS_GPIO (1 << 3) /* GPIO Reset */ | ||
10 | #define RESET_STATUS_ALL (0xf) | ||
11 | |||
12 | extern unsigned int reset_status; | ||
13 | static inline void clear_reset_status(unsigned int mask) | ||
14 | { | ||
15 | RCSR = mask; | ||
16 | } | ||
17 | |||
18 | #endif /* __ASM_ARCH_RESET_H */ | ||
diff --git a/arch/arm/plat-s3c24xx/cpu.c b/arch/arm/plat-s3c24xx/cpu.c index 6d60f0476bb8..89ce60eabd5b 100644 --- a/arch/arm/plat-s3c24xx/cpu.c +++ b/arch/arm/plat-s3c24xx/cpu.c | |||
@@ -169,9 +169,7 @@ static struct map_desc s3c_iodesc[] __initdata = { | |||
169 | IODESC_ENT(UART) | 169 | IODESC_ENT(UART) |
170 | }; | 170 | }; |
171 | 171 | ||
172 | 172 | static struct cpu_table * __init s3c_lookup_cpu(unsigned long idcode) | |
173 | static struct cpu_table * | ||
174 | s3c_lookup_cpu(unsigned long idcode) | ||
175 | { | 173 | { |
176 | struct cpu_table *tab; | 174 | struct cpu_table *tab; |
177 | int count; | 175 | int count; |