blob: c651f6eb863c0e750dd0260d582ba91fb9771ae9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-sa1100/generic.c
3 *
4 * Author: Nicolas Pitre
5 *
6 * Code common to all SA11x0 machines.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
Russell King2f8163b2011-07-26 10:53:52 +010012#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/delay.h>
Russell King7931d922012-01-09 21:45:51 +000017#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pm.h>
19#include <linux/cpufreq.h>
20#include <linux/ioport.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010021#include <linux/platform_device.h>
Robin Holt7b6d8642013-07-08 16:01:40 -070022#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Russell Kinge1b7a722012-01-14 11:50:04 +000024#include <video/sa1100fb.h>
25
Dmitry Eremin-Solenikov982b4652015-05-18 15:58:57 +010026#include <soc/sa1100/pwer.h>
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/mach/map.h>
Russell King14e66f72005-10-29 16:08:31 +010030#include <asm/mach/flash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/irq.h>
David Howells9f97da72012-03-28 18:30:01 +010032#include <asm/system_misc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Rob Herringf314f332012-02-24 00:06:51 +010034#include <mach/hardware.h>
35#include <mach/irqs.h>
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "generic.h"
Dmitry Eremin-Solenikov7a8ca0a2014-12-21 16:08:13 +010038#include <clocksource/pxa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Eric Miao04fef222008-07-29 14:26:00 +080040unsigned int reset_status;
41EXPORT_SYMBOL(reset_status);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define NR_FREQS 16
44
45/*
46 * This table is setup for a 3.6864MHz Crystal.
47 */
Viresh Kumar22c8b4f2013-09-16 18:56:32 +053048struct cpufreq_frequency_table sa11x0_freq_table[NR_FREQS+1] = {
49 { .frequency = 59000, /* 59.0 MHz */},
50 { .frequency = 73700, /* 73.7 MHz */},
51 { .frequency = 88500, /* 88.5 MHz */},
52 { .frequency = 103200, /* 103.2 MHz */},
53 { .frequency = 118000, /* 118.0 MHz */},
54 { .frequency = 132700, /* 132.7 MHz */},
55 { .frequency = 147500, /* 147.5 MHz */},
56 { .frequency = 162200, /* 162.2 MHz */},
57 { .frequency = 176900, /* 176.9 MHz */},
58 { .frequency = 191700, /* 191.7 MHz */},
59 { .frequency = 206400, /* 206.4 MHz */},
60 { .frequency = 221200, /* 221.2 MHz */},
61 { .frequency = 235900, /* 235.9 MHz */},
62 { .frequency = 250700, /* 250.7 MHz */},
63 { .frequency = 265400, /* 265.4 MHz */},
64 { .frequency = 280200, /* 280.2 MHz */},
65 { .frequency = CPUFREQ_TABLE_END, },
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068unsigned int sa11x0_getspeed(unsigned int cpu)
69{
70 if (cpu)
71 return 0;
Viresh Kumar22c8b4f2013-09-16 18:56:32 +053072 return sa11x0_freq_table[PPCR & 0xf].frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 * Default power-off for SA1100
77 */
78static void sa1100_power_off(void)
79{
80 mdelay(100);
81 local_irq_disable();
82 /* disable internal oscillator, float CS lines */
83 PCFR = (PCFR_OPDE | PCFR_FP | PCFR_FS);
84 /* enable wake-up on GPIO0 (Assabet...) */
85 PWER = GFER = GRER = 1;
86 /*
87 * set scratchpad to zero, just in case it is used as a
88 * restart address by the bootloader.
89 */
90 PSPR = 0;
91 /* enter sleep mode */
92 PMCR = PMCR_SF;
93}
94
Robin Holt7b6d8642013-07-08 16:01:40 -070095void sa11x0_restart(enum reboot_mode mode, const char *cmd)
Russell Kingd9ca5832011-11-05 10:28:50 +000096{
Robin Holt7b6d8642013-07-08 16:01:40 -070097 if (mode == REBOOT_SOFT) {
Russell Kingd9ca5832011-11-05 10:28:50 +000098 /* Jump into ROM at address 0 */
99 soft_restart(0);
100 } else {
101 /* Use on-chip reset capability */
102 RSRR = RSRR_SWR;
103 }
104}
105
Russell King7a5b4e12009-10-06 14:55:53 +0100106static void sa11x0_register_device(struct platform_device *dev, void *data)
107{
108 int err;
109 dev->dev.platform_data = data;
110 err = platform_device_register(dev);
111 if (err)
112 printk(KERN_ERR "Unable to register device %s: %d\n",
113 dev->name, err);
114}
115
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct resource sa11x0udc_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000118 [0] = DEFINE_RES_MEM(__PREG(Ser0UDCCR), SZ_64K),
119 [1] = DEFINE_RES_IRQ(IRQ_Ser0UDC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
122static u64 sa11x0udc_dma_mask = 0xffffffffUL;
123
124static struct platform_device sa11x0udc_device = {
125 .name = "sa11x0-udc",
126 .id = -1,
127 .dev = {
128 .dma_mask = &sa11x0udc_dma_mask,
129 .coherent_dma_mask = 0xffffffff,
130 },
131 .num_resources = ARRAY_SIZE(sa11x0udc_resources),
132 .resource = sa11x0udc_resources,
133};
134
135static struct resource sa11x0uart1_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000136 [0] = DEFINE_RES_MEM(__PREG(Ser1UTCR0), SZ_64K),
137 [1] = DEFINE_RES_IRQ(IRQ_Ser1UART),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
140static struct platform_device sa11x0uart1_device = {
141 .name = "sa11x0-uart",
142 .id = 1,
143 .num_resources = ARRAY_SIZE(sa11x0uart1_resources),
144 .resource = sa11x0uart1_resources,
145};
146
147static struct resource sa11x0uart3_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000148 [0] = DEFINE_RES_MEM(__PREG(Ser3UTCR0), SZ_64K),
149 [1] = DEFINE_RES_IRQ(IRQ_Ser3UART),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
152static struct platform_device sa11x0uart3_device = {
153 .name = "sa11x0-uart",
154 .id = 3,
155 .num_resources = ARRAY_SIZE(sa11x0uart3_resources),
156 .resource = sa11x0uart3_resources,
157};
158
159static struct resource sa11x0mcp_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000160 [0] = DEFINE_RES_MEM(__PREG(Ser4MCCR0), SZ_64K),
Russell King7256ecc2012-03-25 23:56:30 +0100161 [1] = DEFINE_RES_MEM(__PREG(Ser4MCCR1), 4),
162 [2] = DEFINE_RES_IRQ(IRQ_Ser4MCP),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165static u64 sa11x0mcp_dma_mask = 0xffffffffUL;
166
167static struct platform_device sa11x0mcp_device = {
168 .name = "sa11x0-mcp",
169 .id = -1,
170 .dev = {
171 .dma_mask = &sa11x0mcp_dma_mask,
172 .coherent_dma_mask = 0xffffffff,
173 },
174 .num_resources = ARRAY_SIZE(sa11x0mcp_resources),
175 .resource = sa11x0mcp_resources,
176};
177
Russell Kinge36e26a2012-01-20 22:24:07 +0000178void __init sa11x0_ppc_configure_mcp(void)
179{
180 /* Setup the PPC unit for the MCP */
181 PPDR &= ~PPC_RXD4;
182 PPDR |= PPC_TXD4 | PPC_SCLK | PPC_SFRM;
183 PSDR |= PPC_RXD4;
184 PSDR &= ~(PPC_TXD4 | PPC_SCLK | PPC_SFRM);
185 PPSR &= ~(PPC_TXD4 | PPC_SCLK | PPC_SFRM);
186}
187
Russell King7a5b4e12009-10-06 14:55:53 +0100188void sa11x0_register_mcp(struct mcp_plat_data *data)
Russell King323cdfc2005-08-18 10:10:46 +0100189{
Russell King7a5b4e12009-10-06 14:55:53 +0100190 sa11x0_register_device(&sa11x0mcp_device, data);
Russell King323cdfc2005-08-18 10:10:46 +0100191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static struct resource sa11x0ssp_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000194 [0] = DEFINE_RES_MEM(0x80070000, SZ_64K),
195 [1] = DEFINE_RES_IRQ(IRQ_Ser4SSP),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
198static u64 sa11x0ssp_dma_mask = 0xffffffffUL;
199
200static struct platform_device sa11x0ssp_device = {
201 .name = "sa11x0-ssp",
202 .id = -1,
203 .dev = {
204 .dma_mask = &sa11x0ssp_dma_mask,
205 .coherent_dma_mask = 0xffffffff,
206 },
207 .num_resources = ARRAY_SIZE(sa11x0ssp_resources),
208 .resource = sa11x0ssp_resources,
209};
210
211static struct resource sa11x0fb_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000212 [0] = DEFINE_RES_MEM(0xb0100000, SZ_64K),
213 [1] = DEFINE_RES_IRQ(IRQ_LCD),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
216static struct platform_device sa11x0fb_device = {
217 .name = "sa11x0-fb",
218 .id = -1,
219 .dev = {
220 .coherent_dma_mask = 0xffffffff,
221 },
222 .num_resources = ARRAY_SIZE(sa11x0fb_resources),
223 .resource = sa11x0fb_resources,
224};
225
Russell Kinge1b7a722012-01-14 11:50:04 +0000226void sa11x0_register_lcd(struct sa1100fb_mach_info *inf)
227{
228 sa11x0_register_device(&sa11x0fb_device, inf);
229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231static struct platform_device sa11x0pcmcia_device = {
232 .name = "sa11x0-pcmcia",
233 .id = -1,
234};
235
236static struct platform_device sa11x0mtd_device = {
Uwe Kleine-Königbcc8f3e2009-01-31 01:21:58 +0100237 .name = "sa1100-mtd",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .id = -1,
239};
240
Russell King7a5b4e12009-10-06 14:55:53 +0100241void sa11x0_register_mtd(struct flash_platform_data *flash,
242 struct resource *res, int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Russell King14e66f72005-10-29 16:08:31 +0100244 flash->name = "sa1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 sa11x0mtd_device.resource = res;
246 sa11x0mtd_device.num_resources = nr;
Russell King7a5b4e12009-10-06 14:55:53 +0100247 sa11x0_register_device(&sa11x0mtd_device, flash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250static struct resource sa11x0ir_resources[] = {
Russell Kinga1810992012-01-12 10:25:29 +0000251 DEFINE_RES_MEM(__PREG(Ser2UTCR0), 0x24),
252 DEFINE_RES_MEM(__PREG(Ser2HSCR0), 0x1c),
253 DEFINE_RES_MEM(__PREG(Ser2HSCR2), 0x04),
254 DEFINE_RES_IRQ(IRQ_Ser2ICP),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255};
256
257static struct platform_device sa11x0ir_device = {
258 .name = "sa11x0-ir",
259 .id = -1,
260 .num_resources = ARRAY_SIZE(sa11x0ir_resources),
261 .resource = sa11x0ir_resources,
262};
263
Russell King7a5b4e12009-10-06 14:55:53 +0100264void sa11x0_register_irda(struct irda_platform_data *irda)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Russell King7a5b4e12009-10-06 14:55:53 +0100266 sa11x0_register_device(&sa11x0ir_device, irda);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Haojian Zhuang3888c092012-02-21 11:51:13 +0800269static struct resource sa1100_rtc_resources[] = {
Dmitry Artamonow9f9d27e2012-04-14 10:26:19 +0400270 DEFINE_RES_MEM(0x90010000, 0x40),
Haojian Zhuang3888c092012-02-21 11:51:13 +0800271 DEFINE_RES_IRQ_NAMED(IRQ_RTC1Hz, "rtc 1Hz"),
272 DEFINE_RES_IRQ_NAMED(IRQ_RTCAlrm, "rtc alarm"),
273};
274
Richard Purdiee842f1c2006-03-27 01:16:46 -0800275static struct platform_device sa11x0rtc_device = {
276 .name = "sa1100-rtc",
277 .id = -1,
Haojian Zhuang3888c092012-02-21 11:51:13 +0800278 .num_resources = ARRAY_SIZE(sa1100_rtc_resources),
279 .resource = sa1100_rtc_resources,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800280};
281
Russell King7931d922012-01-09 21:45:51 +0000282static struct resource sa11x0dma_resources[] = {
Russell Kingc2132012012-01-14 16:57:02 +0000283 DEFINE_RES_MEM(DMA_PHYS, DMA_SIZE),
Russell King7931d922012-01-09 21:45:51 +0000284 DEFINE_RES_IRQ(IRQ_DMA0),
285 DEFINE_RES_IRQ(IRQ_DMA1),
286 DEFINE_RES_IRQ(IRQ_DMA2),
287 DEFINE_RES_IRQ(IRQ_DMA3),
288 DEFINE_RES_IRQ(IRQ_DMA4),
289 DEFINE_RES_IRQ(IRQ_DMA5),
290};
291
292static u64 sa11x0dma_dma_mask = DMA_BIT_MASK(32);
293
294static struct platform_device sa11x0dma_device = {
295 .name = "sa11x0-dma",
296 .id = -1,
297 .dev = {
298 .dma_mask = &sa11x0dma_dma_mask,
299 .coherent_dma_mask = 0xffffffff,
300 },
301 .num_resources = ARRAY_SIZE(sa11x0dma_resources),
302 .resource = sa11x0dma_resources,
303};
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static struct platform_device *sa11x0_devices[] __initdata = {
306 &sa11x0udc_device,
307 &sa11x0uart1_device,
308 &sa11x0uart3_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 &sa11x0ssp_device,
310 &sa11x0pcmcia_device,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800311 &sa11x0rtc_device,
Russell King7931d922012-01-09 21:45:51 +0000312 &sa11x0dma_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313};
314
315static int __init sa1100_init(void)
316{
317 pm_power_off = sa1100_power_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return platform_add_devices(sa11x0_devices, ARRAY_SIZE(sa11x0_devices));
319}
320
321arch_initcall(sa1100_init);
322
Shawn Guo7fea1ba2012-04-26 21:22:45 +0800323void __init sa11x0_init_late(void)
324{
325 sa11x0_pm_init();
326}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328/*
329 * Common I/O mapping:
330 *
331 * Typically, static virtual address mappings are as follow:
332 *
333 * 0xf0000000-0xf3ffffff: miscellaneous stuff (CPLDs, etc.)
334 * 0xf4000000-0xf4ffffff: SA-1111
335 * 0xf5000000-0xf5ffffff: reserved (used by cache flushing area)
336 * 0xf6000000-0xfffeffff: reserved (internal SA1100 IO defined above)
337 * 0xffff0000-0xffff0fff: SA1100 exception vectors
338 * 0xffff2000-0xffff2fff: Minicache copy_user_page area
339 *
340 * Below 0xe8000000 is reserved for vm allocation.
341 *
342 * The machine specific code must provide the extra mapping beside the
343 * default mapping provided here.
344 */
345
346static struct map_desc standard_io_desc[] __initdata = {
Kristoffer Ericsonbda03082008-09-29 17:09:10 +0100347 { /* PCM */
Deepak Saxena92519d82005-10-28 15:19:04 +0100348 .virtual = 0xf8000000,
349 .pfn = __phys_to_pfn(0x80000000),
350 .length = 0x00100000,
351 .type = MT_DEVICE
352 }, { /* SCM */
353 .virtual = 0xfa000000,
354 .pfn = __phys_to_pfn(0x90000000),
355 .length = 0x00100000,
356 .type = MT_DEVICE
357 }, { /* MER */
358 .virtual = 0xfc000000,
359 .pfn = __phys_to_pfn(0xa0000000),
360 .length = 0x00100000,
361 .type = MT_DEVICE
362 }, { /* LCD + DMA */
363 .virtual = 0xfe000000,
364 .pfn = __phys_to_pfn(0xb0000000),
365 .length = 0x00200000,
366 .type = MT_DEVICE
367 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
370void __init sa1100_map_io(void)
371{
372 iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
373}
374
Dmitry Eremin-Solenikov7a8ca0a2014-12-21 16:08:13 +0100375void __init sa1100_timer_init(void)
376{
377 pxa_timer_nodt_init(IRQ_OST0, io_p2v(0x90000000), 3686400);
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/*
381 * Disable the memory bus request/grant signals on the SA1110 to
382 * ensure that we don't receive spurious memory requests. We set
383 * the MBGNT signal false to ensure the SA1111 doesn't own the
384 * SDRAM bus.
385 */
Russell King80ea2062012-02-03 18:16:45 +0000386void sa1110_mb_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 unsigned long flags;
389
390 local_irq_save(flags);
391
392 PGSR &= ~GPIO_MBGNT;
393 GPCR = GPIO_MBGNT;
394 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
395
396 GAFR &= ~(GPIO_MBGNT | GPIO_MBREQ);
397
398 local_irq_restore(flags);
399}
400
401/*
402 * If the system is going to use the SA-1111 DMA engines, set up
403 * the memory bus request/grant pins.
404 */
Russell King80ea2062012-02-03 18:16:45 +0000405void sa1110_mb_enable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 unsigned long flags;
408
409 local_irq_save(flags);
410
411 PGSR &= ~GPIO_MBGNT;
412 GPCR = GPIO_MBGNT;
413 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
414
415 GAFR |= (GPIO_MBGNT | GPIO_MBREQ);
416 TUCR |= TUCR_MR;
417
418 local_irq_restore(flags);
419}
420
Dmitry Eremin-Solenikov982b4652015-05-18 15:58:57 +0100421int sa11x0_gpio_set_wake(unsigned int gpio, unsigned int on)
422{
423 if (on)
424 PWER |= BIT(gpio);
425 else
426 PWER &= ~BIT(gpio);
427
428 return 0;
429}
430
431int sa11x0_sc_set_wake(unsigned int irq, unsigned int on)
432{
433 if (BIT(irq) != IC_RTCAlrm)
434 return -EINVAL;
435
436 if (on)
437 PWER |= PWER_RTC;
438 else
439 PWER &= ~PWER_RTC;
440
441 return 0;
442}