blk: rq_data_dir() should not return a boolean
[cris-mirror.git] / arch / avr32 / mach-at32ap / at32ap700x.c
blob1d8b147282cf789498843c7817552d9959a46544
1 /*
2 * Copyright (C) 2005-2006 Atmel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8 #include <linux/clk.h>
9 #include <linux/delay.h>
10 #include <linux/platform_data/dma-dw.h>
11 #include <linux/fb.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/slab.h>
16 #include <linux/gpio.h>
17 #include <linux/spi/spi.h>
18 #include <linux/usb/atmel_usba_udc.h>
20 #include <linux/platform_data/mmc-atmel-mci.h>
21 #include <linux/atmel-mci.h>
23 #include <asm/io.h>
24 #include <asm/irq.h>
26 #include <mach/at32ap700x.h>
27 #include <mach/board.h>
28 #include <mach/hmatrix.h>
29 #include <mach/portmux.h>
30 #include <mach/sram.h>
32 #include <sound/atmel-abdac.h>
33 #include <sound/atmel-ac97c.h>
35 #include <video/atmel_lcdc.h>
37 #include "clock.h"
38 #include "pio.h"
39 #include "pm.h"
42 #define PBMEM(base) \
43 { \
44 .start = base, \
45 .end = base + 0x3ff, \
46 .flags = IORESOURCE_MEM, \
48 #define IRQ(num) \
49 { \
50 .start = num, \
51 .end = num, \
52 .flags = IORESOURCE_IRQ, \
54 #define NAMED_IRQ(num, _name) \
55 { \
56 .start = num, \
57 .end = num, \
58 .name = _name, \
59 .flags = IORESOURCE_IRQ, \
62 /* REVISIT these assume *every* device supports DMA, but several
63 * don't ... tc, smc, pio, rtc, watchdog, pwm, ps2, and more.
65 #define DEFINE_DEV(_name, _id) \
66 static u64 _name##_id##_dma_mask = DMA_BIT_MASK(32); \
67 static struct platform_device _name##_id##_device = { \
68 .name = #_name, \
69 .id = _id, \
70 .dev = { \
71 .dma_mask = &_name##_id##_dma_mask, \
72 .coherent_dma_mask = DMA_BIT_MASK(32), \
73 }, \
74 .resource = _name##_id##_resource, \
75 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
77 #define DEFINE_DEV_DATA(_name, _id) \
78 static u64 _name##_id##_dma_mask = DMA_BIT_MASK(32); \
79 static struct platform_device _name##_id##_device = { \
80 .name = #_name, \
81 .id = _id, \
82 .dev = { \
83 .dma_mask = &_name##_id##_dma_mask, \
84 .platform_data = &_name##_id##_data, \
85 .coherent_dma_mask = DMA_BIT_MASK(32), \
86 }, \
87 .resource = _name##_id##_resource, \
88 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
91 #define select_peripheral(port, pin_mask, periph, flags) \
92 at32_select_periph(GPIO_##port##_BASE, pin_mask, \
93 GPIO_##periph, flags)
95 #define DEV_CLK(_name, devname, bus, _index) \
96 static struct clk devname##_##_name = { \
97 .name = #_name, \
98 .dev = &devname##_device.dev, \
99 .parent = &bus##_clk, \
100 .mode = bus##_clk_mode, \
101 .get_rate = bus##_clk_get_rate, \
102 .index = _index, \
105 static DEFINE_SPINLOCK(pm_lock);
107 static struct clk osc0;
108 static struct clk osc1;
110 static unsigned long osc_get_rate(struct clk *clk)
112 return at32_board_osc_rates[clk->index];
115 static unsigned long pll_get_rate(struct clk *clk, unsigned long control)
117 unsigned long div, mul, rate;
119 div = PM_BFEXT(PLLDIV, control) + 1;
120 mul = PM_BFEXT(PLLMUL, control) + 1;
122 rate = clk->parent->get_rate(clk->parent);
123 rate = (rate + div / 2) / div;
124 rate *= mul;
126 return rate;
129 static long pll_set_rate(struct clk *clk, unsigned long rate,
130 u32 *pll_ctrl)
132 unsigned long mul;
133 unsigned long mul_best_fit = 0;
134 unsigned long div;
135 unsigned long div_min;
136 unsigned long div_max;
137 unsigned long div_best_fit = 0;
138 unsigned long base;
139 unsigned long pll_in;
140 unsigned long actual = 0;
141 unsigned long rate_error;
142 unsigned long rate_error_prev = ~0UL;
143 u32 ctrl;
145 /* Rate must be between 80 MHz and 200 Mhz. */
146 if (rate < 80000000UL || rate > 200000000UL)
147 return -EINVAL;
149 ctrl = PM_BF(PLLOPT, 4);
150 base = clk->parent->get_rate(clk->parent);
152 /* PLL input frequency must be between 6 MHz and 32 MHz. */
153 div_min = DIV_ROUND_UP(base, 32000000UL);
154 div_max = base / 6000000UL;
156 if (div_max < div_min)
157 return -EINVAL;
159 for (div = div_min; div <= div_max; div++) {
160 pll_in = (base + div / 2) / div;
161 mul = (rate + pll_in / 2) / pll_in;
163 if (mul == 0)
164 continue;
166 actual = pll_in * mul;
167 rate_error = abs(actual - rate);
169 if (rate_error < rate_error_prev) {
170 mul_best_fit = mul;
171 div_best_fit = div;
172 rate_error_prev = rate_error;
175 if (rate_error == 0)
176 break;
179 if (div_best_fit == 0)
180 return -EINVAL;
182 ctrl |= PM_BF(PLLMUL, mul_best_fit - 1);
183 ctrl |= PM_BF(PLLDIV, div_best_fit - 1);
184 ctrl |= PM_BF(PLLCOUNT, 16);
186 if (clk->parent == &osc1)
187 ctrl |= PM_BIT(PLLOSC);
189 *pll_ctrl = ctrl;
191 return actual;
194 static unsigned long pll0_get_rate(struct clk *clk)
196 u32 control;
198 control = pm_readl(PLL0);
200 return pll_get_rate(clk, control);
203 static void pll1_mode(struct clk *clk, int enabled)
205 unsigned long timeout;
206 u32 status;
207 u32 ctrl;
209 ctrl = pm_readl(PLL1);
211 if (enabled) {
212 if (!PM_BFEXT(PLLMUL, ctrl) && !PM_BFEXT(PLLDIV, ctrl)) {
213 pr_debug("clk %s: failed to enable, rate not set\n",
214 clk->name);
215 return;
218 ctrl |= PM_BIT(PLLEN);
219 pm_writel(PLL1, ctrl);
221 /* Wait for PLL lock. */
222 for (timeout = 10000; timeout; timeout--) {
223 status = pm_readl(ISR);
224 if (status & PM_BIT(LOCK1))
225 break;
226 udelay(10);
229 if (!(status & PM_BIT(LOCK1)))
230 printk(KERN_ERR "clk %s: timeout waiting for lock\n",
231 clk->name);
232 } else {
233 ctrl &= ~PM_BIT(PLLEN);
234 pm_writel(PLL1, ctrl);
238 static unsigned long pll1_get_rate(struct clk *clk)
240 u32 control;
242 control = pm_readl(PLL1);
244 return pll_get_rate(clk, control);
247 static long pll1_set_rate(struct clk *clk, unsigned long rate, int apply)
249 u32 ctrl = 0;
250 unsigned long actual_rate;
252 actual_rate = pll_set_rate(clk, rate, &ctrl);
254 if (apply) {
255 if (actual_rate != rate)
256 return -EINVAL;
257 if (clk->users > 0)
258 return -EBUSY;
259 pr_debug(KERN_INFO "clk %s: new rate %lu (actual rate %lu)\n",
260 clk->name, rate, actual_rate);
261 pm_writel(PLL1, ctrl);
264 return actual_rate;
267 static int pll1_set_parent(struct clk *clk, struct clk *parent)
269 u32 ctrl;
271 if (clk->users > 0)
272 return -EBUSY;
274 ctrl = pm_readl(PLL1);
275 WARN_ON(ctrl & PM_BIT(PLLEN));
277 if (parent == &osc0)
278 ctrl &= ~PM_BIT(PLLOSC);
279 else if (parent == &osc1)
280 ctrl |= PM_BIT(PLLOSC);
281 else
282 return -EINVAL;
284 pm_writel(PLL1, ctrl);
285 clk->parent = parent;
287 return 0;
291 * The AT32AP7000 has five primary clock sources: One 32kHz
292 * oscillator, two crystal oscillators and two PLLs.
294 static struct clk osc32k = {
295 .name = "osc32k",
296 .get_rate = osc_get_rate,
297 .users = 1,
298 .index = 0,
300 static struct clk osc0 = {
301 .name = "osc0",
302 .get_rate = osc_get_rate,
303 .users = 1,
304 .index = 1,
306 static struct clk osc1 = {
307 .name = "osc1",
308 .get_rate = osc_get_rate,
309 .index = 2,
311 static struct clk pll0 = {
312 .name = "pll0",
313 .get_rate = pll0_get_rate,
314 .parent = &osc0,
316 static struct clk pll1 = {
317 .name = "pll1",
318 .mode = pll1_mode,
319 .get_rate = pll1_get_rate,
320 .set_rate = pll1_set_rate,
321 .set_parent = pll1_set_parent,
322 .parent = &osc0,
326 * The main clock can be either osc0 or pll0. The boot loader may
327 * have chosen one for us, so we don't really know which one until we
328 * have a look at the SM.
330 static struct clk *main_clock;
333 * Synchronous clocks are generated from the main clock. The clocks
334 * must satisfy the constraint
335 * fCPU >= fHSB >= fPB
336 * i.e. each clock must not be faster than its parent.
338 static unsigned long bus_clk_get_rate(struct clk *clk, unsigned int shift)
340 return main_clock->get_rate(main_clock) >> shift;
343 static void cpu_clk_mode(struct clk *clk, int enabled)
345 unsigned long flags;
346 u32 mask;
348 spin_lock_irqsave(&pm_lock, flags);
349 mask = pm_readl(CPU_MASK);
350 if (enabled)
351 mask |= 1 << clk->index;
352 else
353 mask &= ~(1 << clk->index);
354 pm_writel(CPU_MASK, mask);
355 spin_unlock_irqrestore(&pm_lock, flags);
358 static unsigned long cpu_clk_get_rate(struct clk *clk)
360 unsigned long cksel, shift = 0;
362 cksel = pm_readl(CKSEL);
363 if (cksel & PM_BIT(CPUDIV))
364 shift = PM_BFEXT(CPUSEL, cksel) + 1;
366 return bus_clk_get_rate(clk, shift);
369 static long cpu_clk_set_rate(struct clk *clk, unsigned long rate, int apply)
371 u32 control;
372 unsigned long parent_rate, child_div, actual_rate, div;
374 parent_rate = clk->parent->get_rate(clk->parent);
375 control = pm_readl(CKSEL);
377 if (control & PM_BIT(HSBDIV))
378 child_div = 1 << (PM_BFEXT(HSBSEL, control) + 1);
379 else
380 child_div = 1;
382 if (rate > 3 * (parent_rate / 4) || child_div == 1) {
383 actual_rate = parent_rate;
384 control &= ~PM_BIT(CPUDIV);
385 } else {
386 unsigned int cpusel;
387 div = (parent_rate + rate / 2) / rate;
388 if (div > child_div)
389 div = child_div;
390 cpusel = (div > 1) ? (fls(div) - 2) : 0;
391 control = PM_BIT(CPUDIV) | PM_BFINS(CPUSEL, cpusel, control);
392 actual_rate = parent_rate / (1 << (cpusel + 1));
395 pr_debug("clk %s: new rate %lu (actual rate %lu)\n",
396 clk->name, rate, actual_rate);
398 if (apply)
399 pm_writel(CKSEL, control);
401 return actual_rate;
404 static void hsb_clk_mode(struct clk *clk, int enabled)
406 unsigned long flags;
407 u32 mask;
409 spin_lock_irqsave(&pm_lock, flags);
410 mask = pm_readl(HSB_MASK);
411 if (enabled)
412 mask |= 1 << clk->index;
413 else
414 mask &= ~(1 << clk->index);
415 pm_writel(HSB_MASK, mask);
416 spin_unlock_irqrestore(&pm_lock, flags);
419 static unsigned long hsb_clk_get_rate(struct clk *clk)
421 unsigned long cksel, shift = 0;
423 cksel = pm_readl(CKSEL);
424 if (cksel & PM_BIT(HSBDIV))
425 shift = PM_BFEXT(HSBSEL, cksel) + 1;
427 return bus_clk_get_rate(clk, shift);
430 void pba_clk_mode(struct clk *clk, int enabled)
432 unsigned long flags;
433 u32 mask;
435 spin_lock_irqsave(&pm_lock, flags);
436 mask = pm_readl(PBA_MASK);
437 if (enabled)
438 mask |= 1 << clk->index;
439 else
440 mask &= ~(1 << clk->index);
441 pm_writel(PBA_MASK, mask);
442 spin_unlock_irqrestore(&pm_lock, flags);
445 unsigned long pba_clk_get_rate(struct clk *clk)
447 unsigned long cksel, shift = 0;
449 cksel = pm_readl(CKSEL);
450 if (cksel & PM_BIT(PBADIV))
451 shift = PM_BFEXT(PBASEL, cksel) + 1;
453 return bus_clk_get_rate(clk, shift);
456 static void pbb_clk_mode(struct clk *clk, int enabled)
458 unsigned long flags;
459 u32 mask;
461 spin_lock_irqsave(&pm_lock, flags);
462 mask = pm_readl(PBB_MASK);
463 if (enabled)
464 mask |= 1 << clk->index;
465 else
466 mask &= ~(1 << clk->index);
467 pm_writel(PBB_MASK, mask);
468 spin_unlock_irqrestore(&pm_lock, flags);
471 static unsigned long pbb_clk_get_rate(struct clk *clk)
473 unsigned long cksel, shift = 0;
475 cksel = pm_readl(CKSEL);
476 if (cksel & PM_BIT(PBBDIV))
477 shift = PM_BFEXT(PBBSEL, cksel) + 1;
479 return bus_clk_get_rate(clk, shift);
482 static struct clk cpu_clk = {
483 .name = "cpu",
484 .get_rate = cpu_clk_get_rate,
485 .set_rate = cpu_clk_set_rate,
486 .users = 1,
488 static struct clk hsb_clk = {
489 .name = "hsb",
490 .parent = &cpu_clk,
491 .get_rate = hsb_clk_get_rate,
493 static struct clk pba_clk = {
494 .name = "pba",
495 .parent = &hsb_clk,
496 .mode = hsb_clk_mode,
497 .get_rate = pba_clk_get_rate,
498 .index = 1,
500 static struct clk pbb_clk = {
501 .name = "pbb",
502 .parent = &hsb_clk,
503 .mode = hsb_clk_mode,
504 .get_rate = pbb_clk_get_rate,
505 .users = 1,
506 .index = 2,
509 /* --------------------------------------------------------------------
510 * Generic Clock operations
511 * -------------------------------------------------------------------- */
513 static void genclk_mode(struct clk *clk, int enabled)
515 u32 control;
517 control = pm_readl(GCCTRL(clk->index));
518 if (enabled)
519 control |= PM_BIT(CEN);
520 else
521 control &= ~PM_BIT(CEN);
522 pm_writel(GCCTRL(clk->index), control);
525 static unsigned long genclk_get_rate(struct clk *clk)
527 u32 control;
528 unsigned long div = 1;
530 control = pm_readl(GCCTRL(clk->index));
531 if (control & PM_BIT(DIVEN))
532 div = 2 * (PM_BFEXT(DIV, control) + 1);
534 return clk->parent->get_rate(clk->parent) / div;
537 static long genclk_set_rate(struct clk *clk, unsigned long rate, int apply)
539 u32 control;
540 unsigned long parent_rate, actual_rate, div;
542 parent_rate = clk->parent->get_rate(clk->parent);
543 control = pm_readl(GCCTRL(clk->index));
545 if (rate > 3 * parent_rate / 4) {
546 actual_rate = parent_rate;
547 control &= ~PM_BIT(DIVEN);
548 } else {
549 div = (parent_rate + rate) / (2 * rate) - 1;
550 control = PM_BFINS(DIV, div, control) | PM_BIT(DIVEN);
551 actual_rate = parent_rate / (2 * (div + 1));
554 dev_dbg(clk->dev, "clk %s: new rate %lu (actual rate %lu)\n",
555 clk->name, rate, actual_rate);
557 if (apply)
558 pm_writel(GCCTRL(clk->index), control);
560 return actual_rate;
563 int genclk_set_parent(struct clk *clk, struct clk *parent)
565 u32 control;
567 dev_dbg(clk->dev, "clk %s: new parent %s (was %s)\n",
568 clk->name, parent->name, clk->parent->name);
570 control = pm_readl(GCCTRL(clk->index));
572 if (parent == &osc1 || parent == &pll1)
573 control |= PM_BIT(OSCSEL);
574 else if (parent == &osc0 || parent == &pll0)
575 control &= ~PM_BIT(OSCSEL);
576 else
577 return -EINVAL;
579 if (parent == &pll0 || parent == &pll1)
580 control |= PM_BIT(PLLSEL);
581 else
582 control &= ~PM_BIT(PLLSEL);
584 pm_writel(GCCTRL(clk->index), control);
585 clk->parent = parent;
587 return 0;
590 static void __init genclk_init_parent(struct clk *clk)
592 u32 control;
593 struct clk *parent;
595 BUG_ON(clk->index > 7);
597 control = pm_readl(GCCTRL(clk->index));
598 if (control & PM_BIT(OSCSEL))
599 parent = (control & PM_BIT(PLLSEL)) ? &pll1 : &osc1;
600 else
601 parent = (control & PM_BIT(PLLSEL)) ? &pll0 : &osc0;
603 clk->parent = parent;
606 static struct dw_dma_platform_data dw_dmac0_data = {
607 .nr_channels = 3,
608 .block_size = 4095U,
609 .nr_masters = 2,
610 .data_width = { 2, 2 },
613 static struct resource dw_dmac0_resource[] = {
614 PBMEM(0xff200000),
615 IRQ(2),
617 DEFINE_DEV_DATA(dw_dmac, 0);
618 DEV_CLK(hclk, dw_dmac0, hsb, 10);
620 /* --------------------------------------------------------------------
621 * System peripherals
622 * -------------------------------------------------------------------- */
623 static struct resource at32_pm0_resource[] = {
625 .start = 0xfff00000,
626 .end = 0xfff0007f,
627 .flags = IORESOURCE_MEM,
629 IRQ(20),
632 static struct resource at32ap700x_rtc0_resource[] = {
634 .start = 0xfff00080,
635 .end = 0xfff000af,
636 .flags = IORESOURCE_MEM,
638 IRQ(21),
641 static struct resource at32_wdt0_resource[] = {
643 .start = 0xfff000b0,
644 .end = 0xfff000cf,
645 .flags = IORESOURCE_MEM,
649 static struct resource at32_eic0_resource[] = {
651 .start = 0xfff00100,
652 .end = 0xfff0013f,
653 .flags = IORESOURCE_MEM,
655 IRQ(19),
658 DEFINE_DEV(at32_pm, 0);
659 DEFINE_DEV(at32ap700x_rtc, 0);
660 DEFINE_DEV(at32_wdt, 0);
661 DEFINE_DEV(at32_eic, 0);
664 * Peripheral clock for PM, RTC, WDT and EIC. PM will ensure that this
665 * is always running.
667 static struct clk at32_pm_pclk = {
668 .name = "pclk",
669 .dev = &at32_pm0_device.dev,
670 .parent = &pbb_clk,
671 .mode = pbb_clk_mode,
672 .get_rate = pbb_clk_get_rate,
673 .users = 1,
674 .index = 0,
677 static struct resource intc0_resource[] = {
678 PBMEM(0xfff00400),
680 struct platform_device at32_intc0_device = {
681 .name = "intc",
682 .id = 0,
683 .resource = intc0_resource,
684 .num_resources = ARRAY_SIZE(intc0_resource),
686 DEV_CLK(pclk, at32_intc0, pbb, 1);
688 static struct clk ebi_clk = {
689 .name = "ebi",
690 .parent = &hsb_clk,
691 .mode = hsb_clk_mode,
692 .get_rate = hsb_clk_get_rate,
693 .users = 1,
695 static struct clk hramc_clk = {
696 .name = "hramc",
697 .parent = &hsb_clk,
698 .mode = hsb_clk_mode,
699 .get_rate = hsb_clk_get_rate,
700 .users = 1,
701 .index = 3,
703 static struct clk sdramc_clk = {
704 .name = "sdramc_clk",
705 .parent = &pbb_clk,
706 .mode = pbb_clk_mode,
707 .get_rate = pbb_clk_get_rate,
708 .users = 1,
709 .index = 14,
712 static struct resource smc0_resource[] = {
713 PBMEM(0xfff03400),
715 DEFINE_DEV(smc, 0);
716 DEV_CLK(pclk, smc0, pbb, 13);
717 DEV_CLK(mck, smc0, hsb, 0);
719 static struct platform_device pdc_device = {
720 .name = "pdc",
721 .id = 0,
723 DEV_CLK(hclk, pdc, hsb, 4);
724 DEV_CLK(pclk, pdc, pba, 16);
726 static struct clk pico_clk = {
727 .name = "pico",
728 .parent = &cpu_clk,
729 .mode = cpu_clk_mode,
730 .get_rate = cpu_clk_get_rate,
731 .users = 1,
734 /* --------------------------------------------------------------------
735 * HMATRIX
736 * -------------------------------------------------------------------- */
738 struct clk at32_hmatrix_clk = {
739 .name = "hmatrix_clk",
740 .parent = &pbb_clk,
741 .mode = pbb_clk_mode,
742 .get_rate = pbb_clk_get_rate,
743 .index = 2,
744 .users = 1,
748 * Set bits in the HMATRIX Special Function Register (SFR) used by the
749 * External Bus Interface (EBI). This can be used to enable special
750 * features like CompactFlash support, NAND Flash support, etc. on
751 * certain chipselects.
753 static inline void set_ebi_sfr_bits(u32 mask)
755 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, mask);
758 /* --------------------------------------------------------------------
759 * Timer/Counter (TC)
760 * -------------------------------------------------------------------- */
762 static struct resource at32_tcb0_resource[] = {
763 PBMEM(0xfff00c00),
764 IRQ(22),
766 static struct platform_device at32_tcb0_device = {
767 .name = "atmel_tcb",
768 .id = 0,
769 .resource = at32_tcb0_resource,
770 .num_resources = ARRAY_SIZE(at32_tcb0_resource),
772 DEV_CLK(t0_clk, at32_tcb0, pbb, 3);
774 static struct resource at32_tcb1_resource[] = {
775 PBMEM(0xfff01000),
776 IRQ(23),
778 static struct platform_device at32_tcb1_device = {
779 .name = "atmel_tcb",
780 .id = 1,
781 .resource = at32_tcb1_resource,
782 .num_resources = ARRAY_SIZE(at32_tcb1_resource),
784 DEV_CLK(t0_clk, at32_tcb1, pbb, 4);
786 /* --------------------------------------------------------------------
787 * PIO
788 * -------------------------------------------------------------------- */
790 static struct resource pio0_resource[] = {
791 PBMEM(0xffe02800),
792 IRQ(13),
794 DEFINE_DEV(pio, 0);
795 DEV_CLK(mck, pio0, pba, 10);
797 static struct resource pio1_resource[] = {
798 PBMEM(0xffe02c00),
799 IRQ(14),
801 DEFINE_DEV(pio, 1);
802 DEV_CLK(mck, pio1, pba, 11);
804 static struct resource pio2_resource[] = {
805 PBMEM(0xffe03000),
806 IRQ(15),
808 DEFINE_DEV(pio, 2);
809 DEV_CLK(mck, pio2, pba, 12);
811 static struct resource pio3_resource[] = {
812 PBMEM(0xffe03400),
813 IRQ(16),
815 DEFINE_DEV(pio, 3);
816 DEV_CLK(mck, pio3, pba, 13);
818 static struct resource pio4_resource[] = {
819 PBMEM(0xffe03800),
820 IRQ(17),
822 DEFINE_DEV(pio, 4);
823 DEV_CLK(mck, pio4, pba, 14);
825 static int __init system_device_init(void)
827 platform_device_register(&at32_pm0_device);
828 platform_device_register(&at32_intc0_device);
829 platform_device_register(&at32ap700x_rtc0_device);
830 platform_device_register(&at32_wdt0_device);
831 platform_device_register(&at32_eic0_device);
832 platform_device_register(&smc0_device);
833 platform_device_register(&pdc_device);
834 platform_device_register(&dw_dmac0_device);
836 platform_device_register(&at32_tcb0_device);
837 platform_device_register(&at32_tcb1_device);
839 platform_device_register(&pio0_device);
840 platform_device_register(&pio1_device);
841 platform_device_register(&pio2_device);
842 platform_device_register(&pio3_device);
843 platform_device_register(&pio4_device);
845 return 0;
847 core_initcall(system_device_init);
849 /* --------------------------------------------------------------------
850 * PSIF
851 * -------------------------------------------------------------------- */
852 static struct resource atmel_psif0_resource[] __initdata = {
854 .start = 0xffe03c00,
855 .end = 0xffe03cff,
856 .flags = IORESOURCE_MEM,
858 IRQ(18),
860 static struct clk atmel_psif0_pclk = {
861 .name = "pclk",
862 .parent = &pba_clk,
863 .mode = pba_clk_mode,
864 .get_rate = pba_clk_get_rate,
865 .index = 15,
868 static struct resource atmel_psif1_resource[] __initdata = {
870 .start = 0xffe03d00,
871 .end = 0xffe03dff,
872 .flags = IORESOURCE_MEM,
874 IRQ(18),
876 static struct clk atmel_psif1_pclk = {
877 .name = "pclk",
878 .parent = &pba_clk,
879 .mode = pba_clk_mode,
880 .get_rate = pba_clk_get_rate,
881 .index = 15,
884 struct platform_device *__init at32_add_device_psif(unsigned int id)
886 struct platform_device *pdev;
887 u32 pin_mask;
889 if (!(id == 0 || id == 1))
890 return NULL;
892 pdev = platform_device_alloc("atmel_psif", id);
893 if (!pdev)
894 return NULL;
896 switch (id) {
897 case 0:
898 pin_mask = (1 << 8) | (1 << 9); /* CLOCK & DATA */
900 if (platform_device_add_resources(pdev, atmel_psif0_resource,
901 ARRAY_SIZE(atmel_psif0_resource)))
902 goto err_add_resources;
903 atmel_psif0_pclk.dev = &pdev->dev;
904 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
905 break;
906 case 1:
907 pin_mask = (1 << 11) | (1 << 12); /* CLOCK & DATA */
909 if (platform_device_add_resources(pdev, atmel_psif1_resource,
910 ARRAY_SIZE(atmel_psif1_resource)))
911 goto err_add_resources;
912 atmel_psif1_pclk.dev = &pdev->dev;
913 select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
914 break;
915 default:
916 return NULL;
919 platform_device_add(pdev);
920 return pdev;
922 err_add_resources:
923 platform_device_put(pdev);
924 return NULL;
927 /* --------------------------------------------------------------------
928 * USART
929 * -------------------------------------------------------------------- */
931 static struct atmel_uart_data atmel_usart0_data = {
932 .use_dma_tx = 1,
933 .use_dma_rx = 1,
935 static struct resource atmel_usart0_resource[] = {
936 PBMEM(0xffe00c00),
937 IRQ(6),
939 DEFINE_DEV_DATA(atmel_usart, 0);
940 DEV_CLK(usart, atmel_usart0, pba, 3);
942 static struct atmel_uart_data atmel_usart1_data = {
943 .use_dma_tx = 1,
944 .use_dma_rx = 1,
946 static struct resource atmel_usart1_resource[] = {
947 PBMEM(0xffe01000),
948 IRQ(7),
950 DEFINE_DEV_DATA(atmel_usart, 1);
951 DEV_CLK(usart, atmel_usart1, pba, 4);
953 static struct atmel_uart_data atmel_usart2_data = {
954 .use_dma_tx = 1,
955 .use_dma_rx = 1,
957 static struct resource atmel_usart2_resource[] = {
958 PBMEM(0xffe01400),
959 IRQ(8),
961 DEFINE_DEV_DATA(atmel_usart, 2);
962 DEV_CLK(usart, atmel_usart2, pba, 5);
964 static struct atmel_uart_data atmel_usart3_data = {
965 .use_dma_tx = 1,
966 .use_dma_rx = 1,
968 static struct resource atmel_usart3_resource[] = {
969 PBMEM(0xffe01800),
970 IRQ(9),
972 DEFINE_DEV_DATA(atmel_usart, 3);
973 DEV_CLK(usart, atmel_usart3, pba, 6);
975 static inline void configure_usart0_pins(int flags)
977 u32 pin_mask = (1 << 8) | (1 << 9); /* RXD & TXD */
978 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 6);
979 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 7);
980 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 10);
982 select_peripheral(PIOA, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
985 static inline void configure_usart1_pins(int flags)
987 u32 pin_mask = (1 << 17) | (1 << 18); /* RXD & TXD */
988 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 19);
989 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 20);
990 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 16);
992 select_peripheral(PIOA, pin_mask, PERIPH_A, AT32_GPIOF_PULLUP);
995 static inline void configure_usart2_pins(int flags)
997 u32 pin_mask = (1 << 26) | (1 << 27); /* RXD & TXD */
998 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 30);
999 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 29);
1000 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 28);
1002 select_peripheral(PIOB, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
1005 static inline void configure_usart3_pins(int flags)
1007 u32 pin_mask = (1 << 18) | (1 << 17); /* RXD & TXD */
1008 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 16);
1009 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 15);
1010 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 19);
1012 select_peripheral(PIOB, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
1015 static struct platform_device *__initdata at32_usarts[4];
1017 void __init at32_map_usart(unsigned int hw_id, unsigned int line, int flags)
1019 struct platform_device *pdev;
1020 struct atmel_uart_data *pdata;
1022 switch (hw_id) {
1023 case 0:
1024 pdev = &atmel_usart0_device;
1025 configure_usart0_pins(flags);
1026 break;
1027 case 1:
1028 pdev = &atmel_usart1_device;
1029 configure_usart1_pins(flags);
1030 break;
1031 case 2:
1032 pdev = &atmel_usart2_device;
1033 configure_usart2_pins(flags);
1034 break;
1035 case 3:
1036 pdev = &atmel_usart3_device;
1037 configure_usart3_pins(flags);
1038 break;
1039 default:
1040 return;
1043 if (PXSEG(pdev->resource[0].start) == P4SEG) {
1044 /* Addresses in the P4 segment are permanently mapped 1:1 */
1045 struct atmel_uart_data *data = pdev->dev.platform_data;
1046 data->regs = (void __iomem *)pdev->resource[0].start;
1049 pdev->id = line;
1050 pdata = pdev->dev.platform_data;
1051 pdata->num = line;
1052 at32_usarts[line] = pdev;
1055 struct platform_device *__init at32_add_device_usart(unsigned int id)
1057 platform_device_register(at32_usarts[id]);
1058 return at32_usarts[id];
1061 void __init at32_setup_serial_console(unsigned int usart_id)
1063 #ifdef CONFIG_SERIAL_ATMEL
1064 atmel_default_console_device = at32_usarts[usart_id];
1065 #endif
1068 /* --------------------------------------------------------------------
1069 * Ethernet
1070 * -------------------------------------------------------------------- */
1072 #ifdef CONFIG_CPU_AT32AP7000
1073 static struct macb_platform_data macb0_data;
1074 static struct resource macb0_resource[] = {
1075 PBMEM(0xfff01800),
1076 IRQ(25),
1078 DEFINE_DEV_DATA(macb, 0);
1079 DEV_CLK(hclk, macb0, hsb, 8);
1080 DEV_CLK(pclk, macb0, pbb, 6);
1082 static struct macb_platform_data macb1_data;
1083 static struct resource macb1_resource[] = {
1084 PBMEM(0xfff01c00),
1085 IRQ(26),
1087 DEFINE_DEV_DATA(macb, 1);
1088 DEV_CLK(hclk, macb1, hsb, 9);
1089 DEV_CLK(pclk, macb1, pbb, 7);
1091 struct platform_device *__init
1092 at32_add_device_eth(unsigned int id, struct macb_platform_data *data)
1094 struct platform_device *pdev;
1095 u32 pin_mask;
1097 switch (id) {
1098 case 0:
1099 pdev = &macb0_device;
1101 pin_mask = (1 << 3); /* TXD0 */
1102 pin_mask |= (1 << 4); /* TXD1 */
1103 pin_mask |= (1 << 7); /* TXEN */
1104 pin_mask |= (1 << 8); /* TXCK */
1105 pin_mask |= (1 << 9); /* RXD0 */
1106 pin_mask |= (1 << 10); /* RXD1 */
1107 pin_mask |= (1 << 13); /* RXER */
1108 pin_mask |= (1 << 15); /* RXDV */
1109 pin_mask |= (1 << 16); /* MDC */
1110 pin_mask |= (1 << 17); /* MDIO */
1112 if (!data->is_rmii) {
1113 pin_mask |= (1 << 0); /* COL */
1114 pin_mask |= (1 << 1); /* CRS */
1115 pin_mask |= (1 << 2); /* TXER */
1116 pin_mask |= (1 << 5); /* TXD2 */
1117 pin_mask |= (1 << 6); /* TXD3 */
1118 pin_mask |= (1 << 11); /* RXD2 */
1119 pin_mask |= (1 << 12); /* RXD3 */
1120 pin_mask |= (1 << 14); /* RXCK */
1121 #ifndef CONFIG_BOARD_MIMC200
1122 pin_mask |= (1 << 18); /* SPD */
1123 #endif
1126 select_peripheral(PIOC, pin_mask, PERIPH_A, 0);
1128 break;
1130 case 1:
1131 pdev = &macb1_device;
1133 pin_mask = (1 << 13); /* TXD0 */
1134 pin_mask |= (1 << 14); /* TXD1 */
1135 pin_mask |= (1 << 11); /* TXEN */
1136 pin_mask |= (1 << 12); /* TXCK */
1137 pin_mask |= (1 << 10); /* RXD0 */
1138 pin_mask |= (1 << 6); /* RXD1 */
1139 pin_mask |= (1 << 5); /* RXER */
1140 pin_mask |= (1 << 4); /* RXDV */
1141 pin_mask |= (1 << 3); /* MDC */
1142 pin_mask |= (1 << 2); /* MDIO */
1144 #ifndef CONFIG_BOARD_MIMC200
1145 if (!data->is_rmii)
1146 pin_mask |= (1 << 15); /* SPD */
1147 #endif
1149 select_peripheral(PIOD, pin_mask, PERIPH_B, 0);
1151 if (!data->is_rmii) {
1152 pin_mask = (1 << 19); /* COL */
1153 pin_mask |= (1 << 23); /* CRS */
1154 pin_mask |= (1 << 26); /* TXER */
1155 pin_mask |= (1 << 27); /* TXD2 */
1156 pin_mask |= (1 << 28); /* TXD3 */
1157 pin_mask |= (1 << 29); /* RXD2 */
1158 pin_mask |= (1 << 30); /* RXD3 */
1159 pin_mask |= (1 << 24); /* RXCK */
1161 select_peripheral(PIOC, pin_mask, PERIPH_B, 0);
1163 break;
1165 default:
1166 return NULL;
1169 memcpy(pdev->dev.platform_data, data, sizeof(struct macb_platform_data));
1170 platform_device_register(pdev);
1172 return pdev;
1174 #endif
1176 /* --------------------------------------------------------------------
1177 * SPI
1178 * -------------------------------------------------------------------- */
1179 static struct resource atmel_spi0_resource[] = {
1180 PBMEM(0xffe00000),
1181 IRQ(3),
1183 DEFINE_DEV(atmel_spi, 0);
1184 DEV_CLK(spi_clk, atmel_spi0, pba, 0);
1186 static struct resource atmel_spi1_resource[] = {
1187 PBMEM(0xffe00400),
1188 IRQ(4),
1190 DEFINE_DEV(atmel_spi, 1);
1191 DEV_CLK(spi_clk, atmel_spi1, pba, 1);
1193 void __init
1194 at32_spi_setup_slaves(unsigned int bus_num, struct spi_board_info *b, unsigned int n)
1197 * Manage the chipselects as GPIOs, normally using the same pins
1198 * the SPI controller expects; but boards can use other pins.
1200 static u8 __initdata spi_pins[][4] = {
1201 { GPIO_PIN_PA(3), GPIO_PIN_PA(4),
1202 GPIO_PIN_PA(5), GPIO_PIN_PA(20) },
1203 { GPIO_PIN_PB(2), GPIO_PIN_PB(3),
1204 GPIO_PIN_PB(4), GPIO_PIN_PA(27) },
1206 unsigned int pin, mode;
1208 /* There are only 2 SPI controllers */
1209 if (bus_num > 1)
1210 return;
1212 for (; n; n--, b++) {
1213 b->bus_num = bus_num;
1214 if (b->chip_select >= 4)
1215 continue;
1216 pin = (unsigned)b->controller_data;
1217 if (!pin) {
1218 pin = spi_pins[bus_num][b->chip_select];
1219 b->controller_data = (void *)pin;
1221 mode = AT32_GPIOF_OUTPUT;
1222 if (!(b->mode & SPI_CS_HIGH))
1223 mode |= AT32_GPIOF_HIGH;
1224 at32_select_gpio(pin, mode);
1228 struct platform_device *__init
1229 at32_add_device_spi(unsigned int id, struct spi_board_info *b, unsigned int n)
1231 struct platform_device *pdev;
1232 u32 pin_mask;
1234 switch (id) {
1235 case 0:
1236 pdev = &atmel_spi0_device;
1237 pin_mask = (1 << 1) | (1 << 2); /* MOSI & SCK */
1239 /* pullup MISO so a level is always defined */
1240 select_peripheral(PIOA, (1 << 0), PERIPH_A, AT32_GPIOF_PULLUP);
1241 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1243 at32_spi_setup_slaves(0, b, n);
1244 break;
1246 case 1:
1247 pdev = &atmel_spi1_device;
1248 pin_mask = (1 << 1) | (1 << 5); /* MOSI */
1250 /* pullup MISO so a level is always defined */
1251 select_peripheral(PIOB, (1 << 0), PERIPH_B, AT32_GPIOF_PULLUP);
1252 select_peripheral(PIOB, pin_mask, PERIPH_B, 0);
1254 at32_spi_setup_slaves(1, b, n);
1255 break;
1257 default:
1258 return NULL;
1261 spi_register_board_info(b, n);
1262 platform_device_register(pdev);
1263 return pdev;
1266 /* --------------------------------------------------------------------
1267 * TWI
1268 * -------------------------------------------------------------------- */
1269 static struct resource atmel_twi0_resource[] __initdata = {
1270 PBMEM(0xffe00800),
1271 IRQ(5),
1273 static struct clk atmel_twi0_pclk = {
1274 .name = "twi_pclk",
1275 .parent = &pba_clk,
1276 .mode = pba_clk_mode,
1277 .get_rate = pba_clk_get_rate,
1278 .index = 2,
1281 struct platform_device *__init at32_add_device_twi(unsigned int id,
1282 struct i2c_board_info *b,
1283 unsigned int n)
1285 struct platform_device *pdev;
1286 u32 pin_mask;
1288 if (id != 0)
1289 return NULL;
1291 pdev = platform_device_alloc("atmel_twi", id);
1292 if (!pdev)
1293 return NULL;
1295 if (platform_device_add_resources(pdev, atmel_twi0_resource,
1296 ARRAY_SIZE(atmel_twi0_resource)))
1297 goto err_add_resources;
1299 pin_mask = (1 << 6) | (1 << 7); /* SDA & SDL */
1301 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1303 atmel_twi0_pclk.dev = &pdev->dev;
1305 if (b)
1306 i2c_register_board_info(id, b, n);
1308 platform_device_add(pdev);
1309 return pdev;
1311 err_add_resources:
1312 platform_device_put(pdev);
1313 return NULL;
1316 /* --------------------------------------------------------------------
1317 * MMC
1318 * -------------------------------------------------------------------- */
1319 static struct resource atmel_mci0_resource[] __initdata = {
1320 PBMEM(0xfff02400),
1321 IRQ(28),
1323 static struct clk atmel_mci0_pclk = {
1324 .name = "mci_clk",
1325 .parent = &pbb_clk,
1326 .mode = pbb_clk_mode,
1327 .get_rate = pbb_clk_get_rate,
1328 .index = 9,
1331 struct platform_device *__init
1332 at32_add_device_mci(unsigned int id, struct mci_platform_data *data)
1334 struct platform_device *pdev;
1335 struct mci_dma_data *slave;
1336 u32 pioa_mask;
1337 u32 piob_mask;
1339 if (id != 0 || !data)
1340 return NULL;
1342 /* Must have at least one usable slot */
1343 if (!data->slot[0].bus_width && !data->slot[1].bus_width)
1344 return NULL;
1346 pdev = platform_device_alloc("atmel_mci", id);
1347 if (!pdev)
1348 goto fail;
1350 if (platform_device_add_resources(pdev, atmel_mci0_resource,
1351 ARRAY_SIZE(atmel_mci0_resource)))
1352 goto fail;
1354 slave = kzalloc(sizeof(struct mci_dma_data), GFP_KERNEL);
1355 if (!slave)
1356 goto fail;
1358 slave->sdata.dma_dev = &dw_dmac0_device.dev;
1359 slave->sdata.src_id = 0;
1360 slave->sdata.dst_id = 1;
1361 slave->sdata.src_master = 1;
1362 slave->sdata.dst_master = 0;
1364 data->dma_slave = slave;
1366 if (platform_device_add_data(pdev, data,
1367 sizeof(struct mci_platform_data)))
1368 goto fail_free;
1370 /* CLK line is common to both slots */
1371 pioa_mask = 1 << 10;
1373 switch (data->slot[0].bus_width) {
1374 case 4:
1375 pioa_mask |= 1 << 13; /* DATA1 */
1376 pioa_mask |= 1 << 14; /* DATA2 */
1377 pioa_mask |= 1 << 15; /* DATA3 */
1378 /* fall through */
1379 case 1:
1380 pioa_mask |= 1 << 11; /* CMD */
1381 pioa_mask |= 1 << 12; /* DATA0 */
1383 if (gpio_is_valid(data->slot[0].detect_pin))
1384 at32_select_gpio(data->slot[0].detect_pin, 0);
1385 if (gpio_is_valid(data->slot[0].wp_pin))
1386 at32_select_gpio(data->slot[0].wp_pin, 0);
1387 break;
1388 case 0:
1389 /* Slot is unused */
1390 break;
1391 default:
1392 goto fail_free;
1395 select_peripheral(PIOA, pioa_mask, PERIPH_A, 0);
1396 piob_mask = 0;
1398 switch (data->slot[1].bus_width) {
1399 case 4:
1400 piob_mask |= 1 << 8; /* DATA1 */
1401 piob_mask |= 1 << 9; /* DATA2 */
1402 piob_mask |= 1 << 10; /* DATA3 */
1403 /* fall through */
1404 case 1:
1405 piob_mask |= 1 << 6; /* CMD */
1406 piob_mask |= 1 << 7; /* DATA0 */
1407 select_peripheral(PIOB, piob_mask, PERIPH_B, 0);
1409 if (gpio_is_valid(data->slot[1].detect_pin))
1410 at32_select_gpio(data->slot[1].detect_pin, 0);
1411 if (gpio_is_valid(data->slot[1].wp_pin))
1412 at32_select_gpio(data->slot[1].wp_pin, 0);
1413 break;
1414 case 0:
1415 /* Slot is unused */
1416 break;
1417 default:
1418 if (!data->slot[0].bus_width)
1419 goto fail_free;
1421 data->slot[1].bus_width = 0;
1422 break;
1425 atmel_mci0_pclk.dev = &pdev->dev;
1427 platform_device_add(pdev);
1428 return pdev;
1430 fail_free:
1431 kfree(slave);
1432 fail:
1433 data->dma_slave = NULL;
1434 platform_device_put(pdev);
1435 return NULL;
1438 /* --------------------------------------------------------------------
1439 * LCDC
1440 * -------------------------------------------------------------------- */
1441 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
1442 static struct atmel_lcdfb_pdata atmel_lcdfb0_data;
1443 static struct resource atmel_lcdfb0_resource[] = {
1445 .start = 0xff000000,
1446 .end = 0xff000fff,
1447 .flags = IORESOURCE_MEM,
1449 IRQ(1),
1451 /* Placeholder for pre-allocated fb memory */
1452 .start = 0x00000000,
1453 .end = 0x00000000,
1454 .flags = 0,
1457 DEFINE_DEV_DATA(atmel_lcdfb, 0);
1458 DEV_CLK(hclk, atmel_lcdfb0, hsb, 7);
1459 static struct clk atmel_lcdfb0_pixclk = {
1460 .name = "lcdc_clk",
1461 .dev = &atmel_lcdfb0_device.dev,
1462 .mode = genclk_mode,
1463 .get_rate = genclk_get_rate,
1464 .set_rate = genclk_set_rate,
1465 .set_parent = genclk_set_parent,
1466 .index = 7,
1469 struct platform_device *__init
1470 at32_add_device_lcdc(unsigned int id, struct atmel_lcdfb_pdata *data,
1471 unsigned long fbmem_start, unsigned long fbmem_len,
1472 u64 pin_mask)
1474 struct platform_device *pdev;
1475 struct atmel_lcdfb_pdata *info;
1476 struct fb_monspecs *monspecs;
1477 struct fb_videomode *modedb;
1478 unsigned int modedb_size;
1479 u32 portc_mask, portd_mask, porte_mask;
1482 * Do a deep copy of the fb data, monspecs and modedb. Make
1483 * sure all allocations are done before setting up the
1484 * portmux.
1486 monspecs = kmemdup(data->default_monspecs,
1487 sizeof(struct fb_monspecs), GFP_KERNEL);
1488 if (!monspecs)
1489 return NULL;
1491 modedb_size = sizeof(struct fb_videomode) * monspecs->modedb_len;
1492 modedb = kmemdup(monspecs->modedb, modedb_size, GFP_KERNEL);
1493 if (!modedb)
1494 goto err_dup_modedb;
1495 monspecs->modedb = modedb;
1497 switch (id) {
1498 case 0:
1499 pdev = &atmel_lcdfb0_device;
1501 if (pin_mask == 0ULL)
1502 /* Default to "full" lcdc control signals and 24bit */
1503 pin_mask = ATMEL_LCDC_PRI_24BIT | ATMEL_LCDC_PRI_CONTROL;
1505 /* LCDC on port C */
1506 portc_mask = pin_mask & 0xfff80000;
1507 select_peripheral(PIOC, portc_mask, PERIPH_A, 0);
1509 /* LCDC on port D */
1510 portd_mask = pin_mask & 0x0003ffff;
1511 select_peripheral(PIOD, portd_mask, PERIPH_A, 0);
1513 /* LCDC on port E */
1514 porte_mask = (pin_mask >> 32) & 0x0007ffff;
1515 select_peripheral(PIOE, porte_mask, PERIPH_B, 0);
1517 clk_set_parent(&atmel_lcdfb0_pixclk, &pll0);
1518 clk_set_rate(&atmel_lcdfb0_pixclk, clk_get_rate(&pll0));
1519 break;
1521 default:
1522 goto err_invalid_id;
1525 if (fbmem_len) {
1526 pdev->resource[2].start = fbmem_start;
1527 pdev->resource[2].end = fbmem_start + fbmem_len - 1;
1528 pdev->resource[2].flags = IORESOURCE_MEM;
1531 info = pdev->dev.platform_data;
1532 memcpy(info, data, sizeof(struct atmel_lcdfb_pdata));
1533 info->default_monspecs = monspecs;
1535 pdev->name = "at32ap-lcdfb";
1537 platform_device_register(pdev);
1538 return pdev;
1540 err_invalid_id:
1541 kfree(modedb);
1542 err_dup_modedb:
1543 kfree(monspecs);
1544 return NULL;
1546 #endif
1548 /* --------------------------------------------------------------------
1549 * PWM
1550 * -------------------------------------------------------------------- */
1551 static struct resource atmel_pwm0_resource[] __initdata = {
1552 PBMEM(0xfff01400),
1553 IRQ(24),
1555 static struct clk atmel_pwm0_mck = {
1556 .name = "at91sam9rl-pwm",
1557 .parent = &pbb_clk,
1558 .mode = pbb_clk_mode,
1559 .get_rate = pbb_clk_get_rate,
1560 .index = 5,
1563 struct platform_device *__init at32_add_device_pwm(u32 mask)
1565 struct platform_device *pdev;
1566 u32 pin_mask;
1568 if (!mask)
1569 return NULL;
1571 pdev = platform_device_alloc("at91sam9rl-pwm", 0);
1572 if (!pdev)
1573 return NULL;
1575 if (platform_device_add_resources(pdev, atmel_pwm0_resource,
1576 ARRAY_SIZE(atmel_pwm0_resource)))
1577 goto out_free_pdev;
1579 pin_mask = 0;
1580 if (mask & (1 << 0))
1581 pin_mask |= (1 << 28);
1582 if (mask & (1 << 1))
1583 pin_mask |= (1 << 29);
1584 if (pin_mask > 0)
1585 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1587 pin_mask = 0;
1588 if (mask & (1 << 2))
1589 pin_mask |= (1 << 21);
1590 if (mask & (1 << 3))
1591 pin_mask |= (1 << 22);
1592 if (pin_mask > 0)
1593 select_peripheral(PIOA, pin_mask, PERIPH_B, 0);
1595 atmel_pwm0_mck.dev = &pdev->dev;
1597 platform_device_add(pdev);
1599 return pdev;
1601 out_free_pdev:
1602 platform_device_put(pdev);
1603 return NULL;
1606 /* --------------------------------------------------------------------
1607 * SSC
1608 * -------------------------------------------------------------------- */
1609 static struct resource ssc0_resource[] = {
1610 PBMEM(0xffe01c00),
1611 IRQ(10),
1613 DEFINE_DEV(ssc, 0);
1614 DEV_CLK(pclk, ssc0, pba, 7);
1616 static struct resource ssc1_resource[] = {
1617 PBMEM(0xffe02000),
1618 IRQ(11),
1620 DEFINE_DEV(ssc, 1);
1621 DEV_CLK(pclk, ssc1, pba, 8);
1623 static struct resource ssc2_resource[] = {
1624 PBMEM(0xffe02400),
1625 IRQ(12),
1627 DEFINE_DEV(ssc, 2);
1628 DEV_CLK(pclk, ssc2, pba, 9);
1630 struct platform_device *__init
1631 at32_add_device_ssc(unsigned int id, unsigned int flags)
1633 struct platform_device *pdev;
1634 u32 pin_mask = 0;
1636 switch (id) {
1637 case 0:
1638 pdev = &ssc0_device;
1639 if (flags & ATMEL_SSC_RF)
1640 pin_mask |= (1 << 21); /* RF */
1641 if (flags & ATMEL_SSC_RK)
1642 pin_mask |= (1 << 22); /* RK */
1643 if (flags & ATMEL_SSC_TK)
1644 pin_mask |= (1 << 23); /* TK */
1645 if (flags & ATMEL_SSC_TF)
1646 pin_mask |= (1 << 24); /* TF */
1647 if (flags & ATMEL_SSC_TD)
1648 pin_mask |= (1 << 25); /* TD */
1649 if (flags & ATMEL_SSC_RD)
1650 pin_mask |= (1 << 26); /* RD */
1652 if (pin_mask > 0)
1653 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1655 break;
1656 case 1:
1657 pdev = &ssc1_device;
1658 if (flags & ATMEL_SSC_RF)
1659 pin_mask |= (1 << 0); /* RF */
1660 if (flags & ATMEL_SSC_RK)
1661 pin_mask |= (1 << 1); /* RK */
1662 if (flags & ATMEL_SSC_TK)
1663 pin_mask |= (1 << 2); /* TK */
1664 if (flags & ATMEL_SSC_TF)
1665 pin_mask |= (1 << 3); /* TF */
1666 if (flags & ATMEL_SSC_TD)
1667 pin_mask |= (1 << 4); /* TD */
1668 if (flags & ATMEL_SSC_RD)
1669 pin_mask |= (1 << 5); /* RD */
1671 if (pin_mask > 0)
1672 select_peripheral(PIOA, pin_mask, PERIPH_B, 0);
1674 break;
1675 case 2:
1676 pdev = &ssc2_device;
1677 if (flags & ATMEL_SSC_TD)
1678 pin_mask |= (1 << 13); /* TD */
1679 if (flags & ATMEL_SSC_RD)
1680 pin_mask |= (1 << 14); /* RD */
1681 if (flags & ATMEL_SSC_TK)
1682 pin_mask |= (1 << 15); /* TK */
1683 if (flags & ATMEL_SSC_TF)
1684 pin_mask |= (1 << 16); /* TF */
1685 if (flags & ATMEL_SSC_RF)
1686 pin_mask |= (1 << 17); /* RF */
1687 if (flags & ATMEL_SSC_RK)
1688 pin_mask |= (1 << 18); /* RK */
1690 if (pin_mask > 0)
1691 select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
1693 break;
1694 default:
1695 return NULL;
1698 platform_device_register(pdev);
1699 return pdev;
1702 /* --------------------------------------------------------------------
1703 * USB Device Controller
1704 * -------------------------------------------------------------------- */
1705 static struct resource usba0_resource[] __initdata = {
1707 .start = 0xff300000,
1708 .end = 0xff3fffff,
1709 .flags = IORESOURCE_MEM,
1710 }, {
1711 .start = 0xfff03000,
1712 .end = 0xfff033ff,
1713 .flags = IORESOURCE_MEM,
1715 IRQ(31),
1717 static struct clk usba0_pclk = {
1718 .name = "pclk",
1719 .parent = &pbb_clk,
1720 .mode = pbb_clk_mode,
1721 .get_rate = pbb_clk_get_rate,
1722 .index = 12,
1724 static struct clk usba0_hclk = {
1725 .name = "hclk",
1726 .parent = &hsb_clk,
1727 .mode = hsb_clk_mode,
1728 .get_rate = hsb_clk_get_rate,
1729 .index = 6,
1732 #define EP(nam, idx, maxpkt, maxbk, dma, isoc) \
1733 [idx] = { \
1734 .name = nam, \
1735 .index = idx, \
1736 .fifo_size = maxpkt, \
1737 .nr_banks = maxbk, \
1738 .can_dma = dma, \
1739 .can_isoc = isoc, \
1742 static struct usba_ep_data at32_usba_ep[] __initdata = {
1743 EP("ep0", 0, 64, 1, 0, 0),
1744 EP("ep1", 1, 512, 2, 1, 1),
1745 EP("ep2", 2, 512, 2, 1, 1),
1746 EP("ep3-int", 3, 64, 3, 1, 0),
1747 EP("ep4-int", 4, 64, 3, 1, 0),
1748 EP("ep5", 5, 1024, 3, 1, 1),
1749 EP("ep6", 6, 1024, 3, 1, 1),
1752 #undef EP
1754 struct platform_device *__init
1755 at32_add_device_usba(unsigned int id, struct usba_platform_data *data)
1758 * pdata doesn't have room for any endpoints, so we need to
1759 * append room for the ones we need right after it.
1761 struct {
1762 struct usba_platform_data pdata;
1763 struct usba_ep_data ep[7];
1764 } usba_data;
1765 struct platform_device *pdev;
1767 if (id != 0)
1768 return NULL;
1770 pdev = platform_device_alloc("atmel_usba_udc", 0);
1771 if (!pdev)
1772 return NULL;
1774 if (platform_device_add_resources(pdev, usba0_resource,
1775 ARRAY_SIZE(usba0_resource)))
1776 goto out_free_pdev;
1778 if (data) {
1779 usba_data.pdata.vbus_pin = data->vbus_pin;
1780 usba_data.pdata.vbus_pin_inverted = data->vbus_pin_inverted;
1781 } else {
1782 usba_data.pdata.vbus_pin = -EINVAL;
1783 usba_data.pdata.vbus_pin_inverted = -EINVAL;
1786 data = &usba_data.pdata;
1787 data->num_ep = ARRAY_SIZE(at32_usba_ep);
1788 memcpy(data->ep, at32_usba_ep, sizeof(at32_usba_ep));
1790 if (platform_device_add_data(pdev, data, sizeof(usba_data)))
1791 goto out_free_pdev;
1793 if (gpio_is_valid(data->vbus_pin))
1794 at32_select_gpio(data->vbus_pin, 0);
1796 usba0_pclk.dev = &pdev->dev;
1797 usba0_hclk.dev = &pdev->dev;
1799 platform_device_add(pdev);
1801 return pdev;
1803 out_free_pdev:
1804 platform_device_put(pdev);
1805 return NULL;
1808 /* --------------------------------------------------------------------
1809 * IDE / CompactFlash
1810 * -------------------------------------------------------------------- */
1811 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7001)
1812 static struct resource at32_smc_cs4_resource[] __initdata = {
1814 .start = 0x04000000,
1815 .end = 0x07ffffff,
1816 .flags = IORESOURCE_MEM,
1818 IRQ(~0UL), /* Magic IRQ will be overridden */
1820 static struct resource at32_smc_cs5_resource[] __initdata = {
1822 .start = 0x20000000,
1823 .end = 0x23ffffff,
1824 .flags = IORESOURCE_MEM,
1826 IRQ(~0UL), /* Magic IRQ will be overridden */
1829 static int __init at32_init_ide_or_cf(struct platform_device *pdev,
1830 unsigned int cs, unsigned int extint)
1832 static unsigned int extint_pin_map[4] __initdata = {
1833 (1 << 25),
1834 (1 << 26),
1835 (1 << 27),
1836 (1 << 28),
1838 static bool common_pins_initialized __initdata = false;
1839 unsigned int extint_pin;
1840 int ret;
1841 u32 pin_mask;
1843 if (extint >= ARRAY_SIZE(extint_pin_map))
1844 return -EINVAL;
1845 extint_pin = extint_pin_map[extint];
1847 switch (cs) {
1848 case 4:
1849 ret = platform_device_add_resources(pdev,
1850 at32_smc_cs4_resource,
1851 ARRAY_SIZE(at32_smc_cs4_resource));
1852 if (ret)
1853 return ret;
1855 /* NCS4 -> OE_N */
1856 select_peripheral(PIOE, (1 << 21), PERIPH_A, 0);
1857 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_CF0_ENABLE);
1858 break;
1859 case 5:
1860 ret = platform_device_add_resources(pdev,
1861 at32_smc_cs5_resource,
1862 ARRAY_SIZE(at32_smc_cs5_resource));
1863 if (ret)
1864 return ret;
1866 /* NCS5 -> OE_N */
1867 select_peripheral(PIOE, (1 << 22), PERIPH_A, 0);
1868 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_CF1_ENABLE);
1869 break;
1870 default:
1871 return -EINVAL;
1874 if (!common_pins_initialized) {
1875 pin_mask = (1 << 19); /* CFCE1 -> CS0_N */
1876 pin_mask |= (1 << 20); /* CFCE2 -> CS1_N */
1877 pin_mask |= (1 << 23); /* CFRNW -> DIR */
1878 pin_mask |= (1 << 24); /* NWAIT <- IORDY */
1880 select_peripheral(PIOE, pin_mask, PERIPH_A, 0);
1882 common_pins_initialized = true;
1885 select_peripheral(PIOB, extint_pin, PERIPH_A, AT32_GPIOF_DEGLITCH);
1887 pdev->resource[1].start = EIM_IRQ_BASE + extint;
1888 pdev->resource[1].end = pdev->resource[1].start;
1890 return 0;
1893 struct platform_device *__init
1894 at32_add_device_ide(unsigned int id, unsigned int extint,
1895 struct ide_platform_data *data)
1897 struct platform_device *pdev;
1899 pdev = platform_device_alloc("at32_ide", id);
1900 if (!pdev)
1901 goto fail;
1903 if (platform_device_add_data(pdev, data,
1904 sizeof(struct ide_platform_data)))
1905 goto fail;
1907 if (at32_init_ide_or_cf(pdev, data->cs, extint))
1908 goto fail;
1910 platform_device_add(pdev);
1911 return pdev;
1913 fail:
1914 platform_device_put(pdev);
1915 return NULL;
1918 struct platform_device *__init
1919 at32_add_device_cf(unsigned int id, unsigned int extint,
1920 struct cf_platform_data *data)
1922 struct platform_device *pdev;
1924 pdev = platform_device_alloc("at32_cf", id);
1925 if (!pdev)
1926 goto fail;
1928 if (platform_device_add_data(pdev, data,
1929 sizeof(struct cf_platform_data)))
1930 goto fail;
1932 if (at32_init_ide_or_cf(pdev, data->cs, extint))
1933 goto fail;
1935 if (gpio_is_valid(data->detect_pin))
1936 at32_select_gpio(data->detect_pin, AT32_GPIOF_DEGLITCH);
1937 if (gpio_is_valid(data->reset_pin))
1938 at32_select_gpio(data->reset_pin, 0);
1939 if (gpio_is_valid(data->vcc_pin))
1940 at32_select_gpio(data->vcc_pin, 0);
1941 /* READY is used as extint, so we can't select it as gpio */
1943 platform_device_add(pdev);
1944 return pdev;
1946 fail:
1947 platform_device_put(pdev);
1948 return NULL;
1950 #endif
1952 /* --------------------------------------------------------------------
1953 * NAND Flash / SmartMedia
1954 * -------------------------------------------------------------------- */
1955 static struct resource smc_cs3_resource[] __initdata = {
1957 .start = 0x0c000000,
1958 .end = 0x0fffffff,
1959 .flags = IORESOURCE_MEM,
1960 }, {
1961 .start = 0xfff03c00,
1962 .end = 0xfff03fff,
1963 .flags = IORESOURCE_MEM,
1967 struct platform_device *__init
1968 at32_add_device_nand(unsigned int id, struct atmel_nand_data *data)
1970 struct platform_device *pdev;
1972 if (id != 0 || !data)
1973 return NULL;
1975 pdev = platform_device_alloc("atmel_nand", id);
1976 if (!pdev)
1977 goto fail;
1979 if (platform_device_add_resources(pdev, smc_cs3_resource,
1980 ARRAY_SIZE(smc_cs3_resource)))
1981 goto fail;
1983 /* For at32ap7000, we use the reset workaround for nand driver */
1984 data->need_reset_workaround = true;
1986 if (platform_device_add_data(pdev, data,
1987 sizeof(struct atmel_nand_data)))
1988 goto fail;
1990 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_NAND_ENABLE);
1991 if (data->enable_pin)
1992 at32_select_gpio(data->enable_pin,
1993 AT32_GPIOF_OUTPUT | AT32_GPIOF_HIGH);
1994 if (data->rdy_pin)
1995 at32_select_gpio(data->rdy_pin, 0);
1996 if (data->det_pin)
1997 at32_select_gpio(data->det_pin, 0);
1999 platform_device_add(pdev);
2000 return pdev;
2002 fail:
2003 platform_device_put(pdev);
2004 return NULL;
2007 /* --------------------------------------------------------------------
2008 * AC97C
2009 * -------------------------------------------------------------------- */
2010 static struct resource atmel_ac97c0_resource[] __initdata = {
2011 PBMEM(0xfff02800),
2012 IRQ(29),
2014 static struct clk atmel_ac97c0_pclk = {
2015 .name = "pclk",
2016 .parent = &pbb_clk,
2017 .mode = pbb_clk_mode,
2018 .get_rate = pbb_clk_get_rate,
2019 .index = 10,
2022 struct platform_device *__init
2023 at32_add_device_ac97c(unsigned int id, struct ac97c_platform_data *data,
2024 unsigned int flags)
2026 struct platform_device *pdev;
2027 struct dw_dma_slave *rx_dws;
2028 struct dw_dma_slave *tx_dws;
2029 struct ac97c_platform_data _data;
2030 u32 pin_mask;
2032 if (id != 0)
2033 return NULL;
2035 pdev = platform_device_alloc("atmel_ac97c", id);
2036 if (!pdev)
2037 return NULL;
2039 if (platform_device_add_resources(pdev, atmel_ac97c0_resource,
2040 ARRAY_SIZE(atmel_ac97c0_resource)))
2041 goto out_free_resources;
2043 if (!data) {
2044 data = &_data;
2045 memset(data, 0, sizeof(struct ac97c_platform_data));
2046 data->reset_pin = -ENODEV;
2049 rx_dws = &data->rx_dws;
2050 tx_dws = &data->tx_dws;
2052 /* Check if DMA slave interface for capture should be configured. */
2053 if (flags & AC97C_CAPTURE) {
2054 rx_dws->dma_dev = &dw_dmac0_device.dev;
2055 rx_dws->src_id = 3;
2056 rx_dws->src_master = 0;
2057 rx_dws->dst_master = 1;
2060 /* Check if DMA slave interface for playback should be configured. */
2061 if (flags & AC97C_PLAYBACK) {
2062 tx_dws->dma_dev = &dw_dmac0_device.dev;
2063 tx_dws->dst_id = 4;
2064 tx_dws->src_master = 0;
2065 tx_dws->dst_master = 1;
2068 if (platform_device_add_data(pdev, data,
2069 sizeof(struct ac97c_platform_data)))
2070 goto out_free_resources;
2072 /* SDO | SYNC | SCLK | SDI */
2073 pin_mask = (1 << 20) | (1 << 21) | (1 << 22) | (1 << 23);
2075 select_peripheral(PIOB, pin_mask, PERIPH_B, 0);
2077 if (gpio_is_valid(data->reset_pin))
2078 at32_select_gpio(data->reset_pin, AT32_GPIOF_OUTPUT
2079 | AT32_GPIOF_HIGH);
2081 atmel_ac97c0_pclk.dev = &pdev->dev;
2083 platform_device_add(pdev);
2084 return pdev;
2086 out_free_resources:
2087 platform_device_put(pdev);
2088 return NULL;
2091 /* --------------------------------------------------------------------
2092 * ABDAC
2093 * -------------------------------------------------------------------- */
2094 static struct resource abdac0_resource[] __initdata = {
2095 PBMEM(0xfff02000),
2096 IRQ(27),
2098 static struct clk abdac0_pclk = {
2099 .name = "pclk",
2100 .parent = &pbb_clk,
2101 .mode = pbb_clk_mode,
2102 .get_rate = pbb_clk_get_rate,
2103 .index = 8,
2105 static struct clk abdac0_sample_clk = {
2106 .name = "sample_clk",
2107 .mode = genclk_mode,
2108 .get_rate = genclk_get_rate,
2109 .set_rate = genclk_set_rate,
2110 .set_parent = genclk_set_parent,
2111 .index = 6,
2114 struct platform_device *__init
2115 at32_add_device_abdac(unsigned int id, struct atmel_abdac_pdata *data)
2117 struct platform_device *pdev;
2118 struct dw_dma_slave *dws;
2119 u32 pin_mask;
2121 if (id != 0 || !data)
2122 return NULL;
2124 pdev = platform_device_alloc("atmel_abdac", id);
2125 if (!pdev)
2126 return NULL;
2128 if (platform_device_add_resources(pdev, abdac0_resource,
2129 ARRAY_SIZE(abdac0_resource)))
2130 goto out_free_resources;
2132 dws = &data->dws;
2134 dws->dma_dev = &dw_dmac0_device.dev;
2135 dws->dst_id = 2;
2136 dws->src_master = 0;
2137 dws->dst_master = 1;
2139 if (platform_device_add_data(pdev, data,
2140 sizeof(struct atmel_abdac_pdata)))
2141 goto out_free_resources;
2143 pin_mask = (1 << 20) | (1 << 22); /* DATA1 & DATAN1 */
2144 pin_mask |= (1 << 21) | (1 << 23); /* DATA0 & DATAN0 */
2146 select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
2148 abdac0_pclk.dev = &pdev->dev;
2149 abdac0_sample_clk.dev = &pdev->dev;
2151 platform_device_add(pdev);
2152 return pdev;
2154 out_free_resources:
2155 platform_device_put(pdev);
2156 return NULL;
2159 /* --------------------------------------------------------------------
2160 * GCLK
2161 * -------------------------------------------------------------------- */
2162 static struct clk gclk0 = {
2163 .name = "gclk0",
2164 .mode = genclk_mode,
2165 .get_rate = genclk_get_rate,
2166 .set_rate = genclk_set_rate,
2167 .set_parent = genclk_set_parent,
2168 .index = 0,
2170 static struct clk gclk1 = {
2171 .name = "gclk1",
2172 .mode = genclk_mode,
2173 .get_rate = genclk_get_rate,
2174 .set_rate = genclk_set_rate,
2175 .set_parent = genclk_set_parent,
2176 .index = 1,
2178 static struct clk gclk2 = {
2179 .name = "gclk2",
2180 .mode = genclk_mode,
2181 .get_rate = genclk_get_rate,
2182 .set_rate = genclk_set_rate,
2183 .set_parent = genclk_set_parent,
2184 .index = 2,
2186 static struct clk gclk3 = {
2187 .name = "gclk3",
2188 .mode = genclk_mode,
2189 .get_rate = genclk_get_rate,
2190 .set_rate = genclk_set_rate,
2191 .set_parent = genclk_set_parent,
2192 .index = 3,
2194 static struct clk gclk4 = {
2195 .name = "gclk4",
2196 .mode = genclk_mode,
2197 .get_rate = genclk_get_rate,
2198 .set_rate = genclk_set_rate,
2199 .set_parent = genclk_set_parent,
2200 .index = 4,
2203 static __initdata struct clk *init_clocks[] = {
2204 &osc32k,
2205 &osc0,
2206 &osc1,
2207 &pll0,
2208 &pll1,
2209 &cpu_clk,
2210 &hsb_clk,
2211 &pba_clk,
2212 &pbb_clk,
2213 &at32_pm_pclk,
2214 &at32_intc0_pclk,
2215 &at32_hmatrix_clk,
2216 &ebi_clk,
2217 &hramc_clk,
2218 &sdramc_clk,
2219 &smc0_pclk,
2220 &smc0_mck,
2221 &pdc_hclk,
2222 &pdc_pclk,
2223 &dw_dmac0_hclk,
2224 &pico_clk,
2225 &pio0_mck,
2226 &pio1_mck,
2227 &pio2_mck,
2228 &pio3_mck,
2229 &pio4_mck,
2230 &at32_tcb0_t0_clk,
2231 &at32_tcb1_t0_clk,
2232 &atmel_psif0_pclk,
2233 &atmel_psif1_pclk,
2234 &atmel_usart0_usart,
2235 &atmel_usart1_usart,
2236 &atmel_usart2_usart,
2237 &atmel_usart3_usart,
2238 &atmel_pwm0_mck,
2239 #if defined(CONFIG_CPU_AT32AP7000)
2240 &macb0_hclk,
2241 &macb0_pclk,
2242 &macb1_hclk,
2243 &macb1_pclk,
2244 #endif
2245 &atmel_spi0_spi_clk,
2246 &atmel_spi1_spi_clk,
2247 &atmel_twi0_pclk,
2248 &atmel_mci0_pclk,
2249 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2250 &atmel_lcdfb0_hclk,
2251 &atmel_lcdfb0_pixclk,
2252 #endif
2253 &ssc0_pclk,
2254 &ssc1_pclk,
2255 &ssc2_pclk,
2256 &usba0_hclk,
2257 &usba0_pclk,
2258 &atmel_ac97c0_pclk,
2259 &abdac0_pclk,
2260 &abdac0_sample_clk,
2261 &gclk0,
2262 &gclk1,
2263 &gclk2,
2264 &gclk3,
2265 &gclk4,
2268 void __init setup_platform(void)
2270 u32 cpu_mask = 0, hsb_mask = 0, pba_mask = 0, pbb_mask = 0;
2271 int i;
2273 if (pm_readl(MCCTRL) & PM_BIT(PLLSEL)) {
2274 main_clock = &pll0;
2275 cpu_clk.parent = &pll0;
2276 } else {
2277 main_clock = &osc0;
2278 cpu_clk.parent = &osc0;
2281 if (pm_readl(PLL0) & PM_BIT(PLLOSC))
2282 pll0.parent = &osc1;
2283 if (pm_readl(PLL1) & PM_BIT(PLLOSC))
2284 pll1.parent = &osc1;
2286 genclk_init_parent(&gclk0);
2287 genclk_init_parent(&gclk1);
2288 genclk_init_parent(&gclk2);
2289 genclk_init_parent(&gclk3);
2290 genclk_init_parent(&gclk4);
2291 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2292 genclk_init_parent(&atmel_lcdfb0_pixclk);
2293 #endif
2294 genclk_init_parent(&abdac0_sample_clk);
2297 * Build initial dynamic clock list by registering all clocks
2298 * from the array.
2299 * At the same time, turn on all clocks that have at least one
2300 * user already, and turn off everything else. We only do this
2301 * for module clocks, and even though it isn't particularly
2302 * pretty to check the address of the mode function, it should
2303 * do the trick...
2305 for (i = 0; i < ARRAY_SIZE(init_clocks); i++) {
2306 struct clk *clk = init_clocks[i];
2308 /* first, register clock */
2309 at32_clk_register(clk);
2311 if (clk->users == 0)
2312 continue;
2314 if (clk->mode == &cpu_clk_mode)
2315 cpu_mask |= 1 << clk->index;
2316 else if (clk->mode == &hsb_clk_mode)
2317 hsb_mask |= 1 << clk->index;
2318 else if (clk->mode == &pba_clk_mode)
2319 pba_mask |= 1 << clk->index;
2320 else if (clk->mode == &pbb_clk_mode)
2321 pbb_mask |= 1 << clk->index;
2324 pm_writel(CPU_MASK, cpu_mask);
2325 pm_writel(HSB_MASK, hsb_mask);
2326 pm_writel(PBA_MASK, pba_mask);
2327 pm_writel(PBB_MASK, pbb_mask);
2329 /* Initialize the port muxes */
2330 at32_init_pio(&pio0_device);
2331 at32_init_pio(&pio1_device);
2332 at32_init_pio(&pio2_device);
2333 at32_init_pio(&pio3_device);
2334 at32_init_pio(&pio4_device);
2337 struct gen_pool *sram_pool;
2339 static int __init sram_init(void)
2341 struct gen_pool *pool;
2343 /* 1KiB granularity */
2344 pool = gen_pool_create(10, -1);
2345 if (!pool)
2346 goto fail;
2348 if (gen_pool_add(pool, 0x24000000, 0x8000, -1))
2349 goto err_pool_add;
2351 sram_pool = pool;
2352 return 0;
2354 err_pool_add:
2355 gen_pool_destroy(pool);
2356 fail:
2357 pr_err("Failed to create SRAM pool\n");
2358 return -ENOMEM;
2360 core_initcall(sram_init);