thinkpad-acpi: fix brightness hotkey poll handling
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / avr32 / mach-at32ap / at32ap700x.c
blobb13d1879e51b9f0d961fdff8af8c15b9950dcd0e
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/dw_dmac.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/gpio.h>
16 #include <linux/spi/spi.h>
17 #include <linux/usb/atmel_usba_udc.h>
19 #include <mach/atmel-mci.h>
20 #include <linux/atmel-mci.h>
22 #include <asm/io.h>
23 #include <asm/irq.h>
25 #include <mach/at32ap700x.h>
26 #include <mach/board.h>
27 #include <mach/hmatrix.h>
28 #include <mach/portmux.h>
29 #include <mach/sram.h>
31 #include <sound/atmel-abdac.h>
32 #include <sound/atmel-ac97c.h>
34 #include <video/atmel_lcdc.h>
36 #include "clock.h"
37 #include "pio.h"
38 #include "pm.h"
41 #define PBMEM(base) \
42 { \
43 .start = base, \
44 .end = base + 0x3ff, \
45 .flags = IORESOURCE_MEM, \
47 #define IRQ(num) \
48 { \
49 .start = num, \
50 .end = num, \
51 .flags = IORESOURCE_IRQ, \
53 #define NAMED_IRQ(num, _name) \
54 { \
55 .start = num, \
56 .end = num, \
57 .name = _name, \
58 .flags = IORESOURCE_IRQ, \
61 /* REVISIT these assume *every* device supports DMA, but several
62 * don't ... tc, smc, pio, rtc, watchdog, pwm, ps2, and more.
64 #define DEFINE_DEV(_name, _id) \
65 static u64 _name##_id##_dma_mask = DMA_BIT_MASK(32); \
66 static struct platform_device _name##_id##_device = { \
67 .name = #_name, \
68 .id = _id, \
69 .dev = { \
70 .dma_mask = &_name##_id##_dma_mask, \
71 .coherent_dma_mask = DMA_BIT_MASK(32), \
72 }, \
73 .resource = _name##_id##_resource, \
74 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
76 #define DEFINE_DEV_DATA(_name, _id) \
77 static u64 _name##_id##_dma_mask = DMA_BIT_MASK(32); \
78 static struct platform_device _name##_id##_device = { \
79 .name = #_name, \
80 .id = _id, \
81 .dev = { \
82 .dma_mask = &_name##_id##_dma_mask, \
83 .platform_data = &_name##_id##_data, \
84 .coherent_dma_mask = DMA_BIT_MASK(32), \
85 }, \
86 .resource = _name##_id##_resource, \
87 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
90 #define select_peripheral(port, pin_mask, periph, flags) \
91 at32_select_periph(GPIO_##port##_BASE, pin_mask, \
92 GPIO_##periph, flags)
94 #define DEV_CLK(_name, devname, bus, _index) \
95 static struct clk devname##_##_name = { \
96 .name = #_name, \
97 .dev = &devname##_device.dev, \
98 .parent = &bus##_clk, \
99 .mode = bus##_clk_mode, \
100 .get_rate = bus##_clk_get_rate, \
101 .index = _index, \
104 static DEFINE_SPINLOCK(pm_lock);
106 static struct clk osc0;
107 static struct clk osc1;
109 static unsigned long osc_get_rate(struct clk *clk)
111 return at32_board_osc_rates[clk->index];
114 static unsigned long pll_get_rate(struct clk *clk, unsigned long control)
116 unsigned long div, mul, rate;
118 div = PM_BFEXT(PLLDIV, control) + 1;
119 mul = PM_BFEXT(PLLMUL, control) + 1;
121 rate = clk->parent->get_rate(clk->parent);
122 rate = (rate + div / 2) / div;
123 rate *= mul;
125 return rate;
128 static long pll_set_rate(struct clk *clk, unsigned long rate,
129 u32 *pll_ctrl)
131 unsigned long mul;
132 unsigned long mul_best_fit = 0;
133 unsigned long div;
134 unsigned long div_min;
135 unsigned long div_max;
136 unsigned long div_best_fit = 0;
137 unsigned long base;
138 unsigned long pll_in;
139 unsigned long actual = 0;
140 unsigned long rate_error;
141 unsigned long rate_error_prev = ~0UL;
142 u32 ctrl;
144 /* Rate must be between 80 MHz and 200 Mhz. */
145 if (rate < 80000000UL || rate > 200000000UL)
146 return -EINVAL;
148 ctrl = PM_BF(PLLOPT, 4);
149 base = clk->parent->get_rate(clk->parent);
151 /* PLL input frequency must be between 6 MHz and 32 MHz. */
152 div_min = DIV_ROUND_UP(base, 32000000UL);
153 div_max = base / 6000000UL;
155 if (div_max < div_min)
156 return -EINVAL;
158 for (div = div_min; div <= div_max; div++) {
159 pll_in = (base + div / 2) / div;
160 mul = (rate + pll_in / 2) / pll_in;
162 if (mul == 0)
163 continue;
165 actual = pll_in * mul;
166 rate_error = abs(actual - rate);
168 if (rate_error < rate_error_prev) {
169 mul_best_fit = mul;
170 div_best_fit = div;
171 rate_error_prev = rate_error;
174 if (rate_error == 0)
175 break;
178 if (div_best_fit == 0)
179 return -EINVAL;
181 ctrl |= PM_BF(PLLMUL, mul_best_fit - 1);
182 ctrl |= PM_BF(PLLDIV, div_best_fit - 1);
183 ctrl |= PM_BF(PLLCOUNT, 16);
185 if (clk->parent == &osc1)
186 ctrl |= PM_BIT(PLLOSC);
188 *pll_ctrl = ctrl;
190 return actual;
193 static unsigned long pll0_get_rate(struct clk *clk)
195 u32 control;
197 control = pm_readl(PLL0);
199 return pll_get_rate(clk, control);
202 static void pll1_mode(struct clk *clk, int enabled)
204 unsigned long timeout;
205 u32 status;
206 u32 ctrl;
208 ctrl = pm_readl(PLL1);
210 if (enabled) {
211 if (!PM_BFEXT(PLLMUL, ctrl) && !PM_BFEXT(PLLDIV, ctrl)) {
212 pr_debug("clk %s: failed to enable, rate not set\n",
213 clk->name);
214 return;
217 ctrl |= PM_BIT(PLLEN);
218 pm_writel(PLL1, ctrl);
220 /* Wait for PLL lock. */
221 for (timeout = 10000; timeout; timeout--) {
222 status = pm_readl(ISR);
223 if (status & PM_BIT(LOCK1))
224 break;
225 udelay(10);
228 if (!(status & PM_BIT(LOCK1)))
229 printk(KERN_ERR "clk %s: timeout waiting for lock\n",
230 clk->name);
231 } else {
232 ctrl &= ~PM_BIT(PLLEN);
233 pm_writel(PLL1, ctrl);
237 static unsigned long pll1_get_rate(struct clk *clk)
239 u32 control;
241 control = pm_readl(PLL1);
243 return pll_get_rate(clk, control);
246 static long pll1_set_rate(struct clk *clk, unsigned long rate, int apply)
248 u32 ctrl = 0;
249 unsigned long actual_rate;
251 actual_rate = pll_set_rate(clk, rate, &ctrl);
253 if (apply) {
254 if (actual_rate != rate)
255 return -EINVAL;
256 if (clk->users > 0)
257 return -EBUSY;
258 pr_debug(KERN_INFO "clk %s: new rate %lu (actual rate %lu)\n",
259 clk->name, rate, actual_rate);
260 pm_writel(PLL1, ctrl);
263 return actual_rate;
266 static int pll1_set_parent(struct clk *clk, struct clk *parent)
268 u32 ctrl;
270 if (clk->users > 0)
271 return -EBUSY;
273 ctrl = pm_readl(PLL1);
274 WARN_ON(ctrl & PM_BIT(PLLEN));
276 if (parent == &osc0)
277 ctrl &= ~PM_BIT(PLLOSC);
278 else if (parent == &osc1)
279 ctrl |= PM_BIT(PLLOSC);
280 else
281 return -EINVAL;
283 pm_writel(PLL1, ctrl);
284 clk->parent = parent;
286 return 0;
290 * The AT32AP7000 has five primary clock sources: One 32kHz
291 * oscillator, two crystal oscillators and two PLLs.
293 static struct clk osc32k = {
294 .name = "osc32k",
295 .get_rate = osc_get_rate,
296 .users = 1,
297 .index = 0,
299 static struct clk osc0 = {
300 .name = "osc0",
301 .get_rate = osc_get_rate,
302 .users = 1,
303 .index = 1,
305 static struct clk osc1 = {
306 .name = "osc1",
307 .get_rate = osc_get_rate,
308 .index = 2,
310 static struct clk pll0 = {
311 .name = "pll0",
312 .get_rate = pll0_get_rate,
313 .parent = &osc0,
315 static struct clk pll1 = {
316 .name = "pll1",
317 .mode = pll1_mode,
318 .get_rate = pll1_get_rate,
319 .set_rate = pll1_set_rate,
320 .set_parent = pll1_set_parent,
321 .parent = &osc0,
325 * The main clock can be either osc0 or pll0. The boot loader may
326 * have chosen one for us, so we don't really know which one until we
327 * have a look at the SM.
329 static struct clk *main_clock;
332 * Synchronous clocks are generated from the main clock. The clocks
333 * must satisfy the constraint
334 * fCPU >= fHSB >= fPB
335 * i.e. each clock must not be faster than its parent.
337 static unsigned long bus_clk_get_rate(struct clk *clk, unsigned int shift)
339 return main_clock->get_rate(main_clock) >> shift;
342 static void cpu_clk_mode(struct clk *clk, int enabled)
344 unsigned long flags;
345 u32 mask;
347 spin_lock_irqsave(&pm_lock, flags);
348 mask = pm_readl(CPU_MASK);
349 if (enabled)
350 mask |= 1 << clk->index;
351 else
352 mask &= ~(1 << clk->index);
353 pm_writel(CPU_MASK, mask);
354 spin_unlock_irqrestore(&pm_lock, flags);
357 static unsigned long cpu_clk_get_rate(struct clk *clk)
359 unsigned long cksel, shift = 0;
361 cksel = pm_readl(CKSEL);
362 if (cksel & PM_BIT(CPUDIV))
363 shift = PM_BFEXT(CPUSEL, cksel) + 1;
365 return bus_clk_get_rate(clk, shift);
368 static long cpu_clk_set_rate(struct clk *clk, unsigned long rate, int apply)
370 u32 control;
371 unsigned long parent_rate, child_div, actual_rate, div;
373 parent_rate = clk->parent->get_rate(clk->parent);
374 control = pm_readl(CKSEL);
376 if (control & PM_BIT(HSBDIV))
377 child_div = 1 << (PM_BFEXT(HSBSEL, control) + 1);
378 else
379 child_div = 1;
381 if (rate > 3 * (parent_rate / 4) || child_div == 1) {
382 actual_rate = parent_rate;
383 control &= ~PM_BIT(CPUDIV);
384 } else {
385 unsigned int cpusel;
386 div = (parent_rate + rate / 2) / rate;
387 if (div > child_div)
388 div = child_div;
389 cpusel = (div > 1) ? (fls(div) - 2) : 0;
390 control = PM_BIT(CPUDIV) | PM_BFINS(CPUSEL, cpusel, control);
391 actual_rate = parent_rate / (1 << (cpusel + 1));
394 pr_debug("clk %s: new rate %lu (actual rate %lu)\n",
395 clk->name, rate, actual_rate);
397 if (apply)
398 pm_writel(CKSEL, control);
400 return actual_rate;
403 static void hsb_clk_mode(struct clk *clk, int enabled)
405 unsigned long flags;
406 u32 mask;
408 spin_lock_irqsave(&pm_lock, flags);
409 mask = pm_readl(HSB_MASK);
410 if (enabled)
411 mask |= 1 << clk->index;
412 else
413 mask &= ~(1 << clk->index);
414 pm_writel(HSB_MASK, mask);
415 spin_unlock_irqrestore(&pm_lock, flags);
418 static unsigned long hsb_clk_get_rate(struct clk *clk)
420 unsigned long cksel, shift = 0;
422 cksel = pm_readl(CKSEL);
423 if (cksel & PM_BIT(HSBDIV))
424 shift = PM_BFEXT(HSBSEL, cksel) + 1;
426 return bus_clk_get_rate(clk, shift);
429 void pba_clk_mode(struct clk *clk, int enabled)
431 unsigned long flags;
432 u32 mask;
434 spin_lock_irqsave(&pm_lock, flags);
435 mask = pm_readl(PBA_MASK);
436 if (enabled)
437 mask |= 1 << clk->index;
438 else
439 mask &= ~(1 << clk->index);
440 pm_writel(PBA_MASK, mask);
441 spin_unlock_irqrestore(&pm_lock, flags);
444 unsigned long pba_clk_get_rate(struct clk *clk)
446 unsigned long cksel, shift = 0;
448 cksel = pm_readl(CKSEL);
449 if (cksel & PM_BIT(PBADIV))
450 shift = PM_BFEXT(PBASEL, cksel) + 1;
452 return bus_clk_get_rate(clk, shift);
455 static void pbb_clk_mode(struct clk *clk, int enabled)
457 unsigned long flags;
458 u32 mask;
460 spin_lock_irqsave(&pm_lock, flags);
461 mask = pm_readl(PBB_MASK);
462 if (enabled)
463 mask |= 1 << clk->index;
464 else
465 mask &= ~(1 << clk->index);
466 pm_writel(PBB_MASK, mask);
467 spin_unlock_irqrestore(&pm_lock, flags);
470 static unsigned long pbb_clk_get_rate(struct clk *clk)
472 unsigned long cksel, shift = 0;
474 cksel = pm_readl(CKSEL);
475 if (cksel & PM_BIT(PBBDIV))
476 shift = PM_BFEXT(PBBSEL, cksel) + 1;
478 return bus_clk_get_rate(clk, shift);
481 static struct clk cpu_clk = {
482 .name = "cpu",
483 .get_rate = cpu_clk_get_rate,
484 .set_rate = cpu_clk_set_rate,
485 .users = 1,
487 static struct clk hsb_clk = {
488 .name = "hsb",
489 .parent = &cpu_clk,
490 .get_rate = hsb_clk_get_rate,
492 static struct clk pba_clk = {
493 .name = "pba",
494 .parent = &hsb_clk,
495 .mode = hsb_clk_mode,
496 .get_rate = pba_clk_get_rate,
497 .index = 1,
499 static struct clk pbb_clk = {
500 .name = "pbb",
501 .parent = &hsb_clk,
502 .mode = hsb_clk_mode,
503 .get_rate = pbb_clk_get_rate,
504 .users = 1,
505 .index = 2,
508 /* --------------------------------------------------------------------
509 * Generic Clock operations
510 * -------------------------------------------------------------------- */
512 static void genclk_mode(struct clk *clk, int enabled)
514 u32 control;
516 control = pm_readl(GCCTRL(clk->index));
517 if (enabled)
518 control |= PM_BIT(CEN);
519 else
520 control &= ~PM_BIT(CEN);
521 pm_writel(GCCTRL(clk->index), control);
524 static unsigned long genclk_get_rate(struct clk *clk)
526 u32 control;
527 unsigned long div = 1;
529 control = pm_readl(GCCTRL(clk->index));
530 if (control & PM_BIT(DIVEN))
531 div = 2 * (PM_BFEXT(DIV, control) + 1);
533 return clk->parent->get_rate(clk->parent) / div;
536 static long genclk_set_rate(struct clk *clk, unsigned long rate, int apply)
538 u32 control;
539 unsigned long parent_rate, actual_rate, div;
541 parent_rate = clk->parent->get_rate(clk->parent);
542 control = pm_readl(GCCTRL(clk->index));
544 if (rate > 3 * parent_rate / 4) {
545 actual_rate = parent_rate;
546 control &= ~PM_BIT(DIVEN);
547 } else {
548 div = (parent_rate + rate) / (2 * rate) - 1;
549 control = PM_BFINS(DIV, div, control) | PM_BIT(DIVEN);
550 actual_rate = parent_rate / (2 * (div + 1));
553 dev_dbg(clk->dev, "clk %s: new rate %lu (actual rate %lu)\n",
554 clk->name, rate, actual_rate);
556 if (apply)
557 pm_writel(GCCTRL(clk->index), control);
559 return actual_rate;
562 int genclk_set_parent(struct clk *clk, struct clk *parent)
564 u32 control;
566 dev_dbg(clk->dev, "clk %s: new parent %s (was %s)\n",
567 clk->name, parent->name, clk->parent->name);
569 control = pm_readl(GCCTRL(clk->index));
571 if (parent == &osc1 || parent == &pll1)
572 control |= PM_BIT(OSCSEL);
573 else if (parent == &osc0 || parent == &pll0)
574 control &= ~PM_BIT(OSCSEL);
575 else
576 return -EINVAL;
578 if (parent == &pll0 || parent == &pll1)
579 control |= PM_BIT(PLLSEL);
580 else
581 control &= ~PM_BIT(PLLSEL);
583 pm_writel(GCCTRL(clk->index), control);
584 clk->parent = parent;
586 return 0;
589 static void __init genclk_init_parent(struct clk *clk)
591 u32 control;
592 struct clk *parent;
594 BUG_ON(clk->index > 7);
596 control = pm_readl(GCCTRL(clk->index));
597 if (control & PM_BIT(OSCSEL))
598 parent = (control & PM_BIT(PLLSEL)) ? &pll1 : &osc1;
599 else
600 parent = (control & PM_BIT(PLLSEL)) ? &pll0 : &osc0;
602 clk->parent = parent;
605 static struct dw_dma_platform_data dw_dmac0_data = {
606 .nr_channels = 3,
609 static struct resource dw_dmac0_resource[] = {
610 PBMEM(0xff200000),
611 IRQ(2),
613 DEFINE_DEV_DATA(dw_dmac, 0);
614 DEV_CLK(hclk, dw_dmac0, hsb, 10);
616 /* --------------------------------------------------------------------
617 * System peripherals
618 * -------------------------------------------------------------------- */
619 static struct resource at32_pm0_resource[] = {
621 .start = 0xfff00000,
622 .end = 0xfff0007f,
623 .flags = IORESOURCE_MEM,
625 IRQ(20),
628 static struct resource at32ap700x_rtc0_resource[] = {
630 .start = 0xfff00080,
631 .end = 0xfff000af,
632 .flags = IORESOURCE_MEM,
634 IRQ(21),
637 static struct resource at32_wdt0_resource[] = {
639 .start = 0xfff000b0,
640 .end = 0xfff000cf,
641 .flags = IORESOURCE_MEM,
645 static struct resource at32_eic0_resource[] = {
647 .start = 0xfff00100,
648 .end = 0xfff0013f,
649 .flags = IORESOURCE_MEM,
651 IRQ(19),
654 DEFINE_DEV(at32_pm, 0);
655 DEFINE_DEV(at32ap700x_rtc, 0);
656 DEFINE_DEV(at32_wdt, 0);
657 DEFINE_DEV(at32_eic, 0);
660 * Peripheral clock for PM, RTC, WDT and EIC. PM will ensure that this
661 * is always running.
663 static struct clk at32_pm_pclk = {
664 .name = "pclk",
665 .dev = &at32_pm0_device.dev,
666 .parent = &pbb_clk,
667 .mode = pbb_clk_mode,
668 .get_rate = pbb_clk_get_rate,
669 .users = 1,
670 .index = 0,
673 static struct resource intc0_resource[] = {
674 PBMEM(0xfff00400),
676 struct platform_device at32_intc0_device = {
677 .name = "intc",
678 .id = 0,
679 .resource = intc0_resource,
680 .num_resources = ARRAY_SIZE(intc0_resource),
682 DEV_CLK(pclk, at32_intc0, pbb, 1);
684 static struct clk ebi_clk = {
685 .name = "ebi",
686 .parent = &hsb_clk,
687 .mode = hsb_clk_mode,
688 .get_rate = hsb_clk_get_rate,
689 .users = 1,
691 static struct clk hramc_clk = {
692 .name = "hramc",
693 .parent = &hsb_clk,
694 .mode = hsb_clk_mode,
695 .get_rate = hsb_clk_get_rate,
696 .users = 1,
697 .index = 3,
699 static struct clk sdramc_clk = {
700 .name = "sdramc_clk",
701 .parent = &pbb_clk,
702 .mode = pbb_clk_mode,
703 .get_rate = pbb_clk_get_rate,
704 .users = 1,
705 .index = 14,
708 static struct resource smc0_resource[] = {
709 PBMEM(0xfff03400),
711 DEFINE_DEV(smc, 0);
712 DEV_CLK(pclk, smc0, pbb, 13);
713 DEV_CLK(mck, smc0, hsb, 0);
715 static struct platform_device pdc_device = {
716 .name = "pdc",
717 .id = 0,
719 DEV_CLK(hclk, pdc, hsb, 4);
720 DEV_CLK(pclk, pdc, pba, 16);
722 static struct clk pico_clk = {
723 .name = "pico",
724 .parent = &cpu_clk,
725 .mode = cpu_clk_mode,
726 .get_rate = cpu_clk_get_rate,
727 .users = 1,
730 /* --------------------------------------------------------------------
731 * HMATRIX
732 * -------------------------------------------------------------------- */
734 struct clk at32_hmatrix_clk = {
735 .name = "hmatrix_clk",
736 .parent = &pbb_clk,
737 .mode = pbb_clk_mode,
738 .get_rate = pbb_clk_get_rate,
739 .index = 2,
740 .users = 1,
744 * Set bits in the HMATRIX Special Function Register (SFR) used by the
745 * External Bus Interface (EBI). This can be used to enable special
746 * features like CompactFlash support, NAND Flash support, etc. on
747 * certain chipselects.
749 static inline void set_ebi_sfr_bits(u32 mask)
751 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, mask);
754 /* --------------------------------------------------------------------
755 * Timer/Counter (TC)
756 * -------------------------------------------------------------------- */
758 static struct resource at32_tcb0_resource[] = {
759 PBMEM(0xfff00c00),
760 IRQ(22),
762 static struct platform_device at32_tcb0_device = {
763 .name = "atmel_tcb",
764 .id = 0,
765 .resource = at32_tcb0_resource,
766 .num_resources = ARRAY_SIZE(at32_tcb0_resource),
768 DEV_CLK(t0_clk, at32_tcb0, pbb, 3);
770 static struct resource at32_tcb1_resource[] = {
771 PBMEM(0xfff01000),
772 IRQ(23),
774 static struct platform_device at32_tcb1_device = {
775 .name = "atmel_tcb",
776 .id = 1,
777 .resource = at32_tcb1_resource,
778 .num_resources = ARRAY_SIZE(at32_tcb1_resource),
780 DEV_CLK(t0_clk, at32_tcb1, pbb, 4);
782 /* --------------------------------------------------------------------
783 * PIO
784 * -------------------------------------------------------------------- */
786 static struct resource pio0_resource[] = {
787 PBMEM(0xffe02800),
788 IRQ(13),
790 DEFINE_DEV(pio, 0);
791 DEV_CLK(mck, pio0, pba, 10);
793 static struct resource pio1_resource[] = {
794 PBMEM(0xffe02c00),
795 IRQ(14),
797 DEFINE_DEV(pio, 1);
798 DEV_CLK(mck, pio1, pba, 11);
800 static struct resource pio2_resource[] = {
801 PBMEM(0xffe03000),
802 IRQ(15),
804 DEFINE_DEV(pio, 2);
805 DEV_CLK(mck, pio2, pba, 12);
807 static struct resource pio3_resource[] = {
808 PBMEM(0xffe03400),
809 IRQ(16),
811 DEFINE_DEV(pio, 3);
812 DEV_CLK(mck, pio3, pba, 13);
814 static struct resource pio4_resource[] = {
815 PBMEM(0xffe03800),
816 IRQ(17),
818 DEFINE_DEV(pio, 4);
819 DEV_CLK(mck, pio4, pba, 14);
821 static int __init system_device_init(void)
823 platform_device_register(&at32_pm0_device);
824 platform_device_register(&at32_intc0_device);
825 platform_device_register(&at32ap700x_rtc0_device);
826 platform_device_register(&at32_wdt0_device);
827 platform_device_register(&at32_eic0_device);
828 platform_device_register(&smc0_device);
829 platform_device_register(&pdc_device);
830 platform_device_register(&dw_dmac0_device);
832 platform_device_register(&at32_tcb0_device);
833 platform_device_register(&at32_tcb1_device);
835 platform_device_register(&pio0_device);
836 platform_device_register(&pio1_device);
837 platform_device_register(&pio2_device);
838 platform_device_register(&pio3_device);
839 platform_device_register(&pio4_device);
841 return 0;
843 core_initcall(system_device_init);
845 /* --------------------------------------------------------------------
846 * PSIF
847 * -------------------------------------------------------------------- */
848 static struct resource atmel_psif0_resource[] __initdata = {
850 .start = 0xffe03c00,
851 .end = 0xffe03cff,
852 .flags = IORESOURCE_MEM,
854 IRQ(18),
856 static struct clk atmel_psif0_pclk = {
857 .name = "pclk",
858 .parent = &pba_clk,
859 .mode = pba_clk_mode,
860 .get_rate = pba_clk_get_rate,
861 .index = 15,
864 static struct resource atmel_psif1_resource[] __initdata = {
866 .start = 0xffe03d00,
867 .end = 0xffe03dff,
868 .flags = IORESOURCE_MEM,
870 IRQ(18),
872 static struct clk atmel_psif1_pclk = {
873 .name = "pclk",
874 .parent = &pba_clk,
875 .mode = pba_clk_mode,
876 .get_rate = pba_clk_get_rate,
877 .index = 15,
880 struct platform_device *__init at32_add_device_psif(unsigned int id)
882 struct platform_device *pdev;
883 u32 pin_mask;
885 if (!(id == 0 || id == 1))
886 return NULL;
888 pdev = platform_device_alloc("atmel_psif", id);
889 if (!pdev)
890 return NULL;
892 switch (id) {
893 case 0:
894 pin_mask = (1 << 8) | (1 << 9); /* CLOCK & DATA */
896 if (platform_device_add_resources(pdev, atmel_psif0_resource,
897 ARRAY_SIZE(atmel_psif0_resource)))
898 goto err_add_resources;
899 atmel_psif0_pclk.dev = &pdev->dev;
900 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
901 break;
902 case 1:
903 pin_mask = (1 << 11) | (1 << 12); /* CLOCK & DATA */
905 if (platform_device_add_resources(pdev, atmel_psif1_resource,
906 ARRAY_SIZE(atmel_psif1_resource)))
907 goto err_add_resources;
908 atmel_psif1_pclk.dev = &pdev->dev;
909 select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
910 break;
911 default:
912 return NULL;
915 platform_device_add(pdev);
916 return pdev;
918 err_add_resources:
919 platform_device_put(pdev);
920 return NULL;
923 /* --------------------------------------------------------------------
924 * USART
925 * -------------------------------------------------------------------- */
927 static struct atmel_uart_data atmel_usart0_data = {
928 .use_dma_tx = 1,
929 .use_dma_rx = 1,
931 static struct resource atmel_usart0_resource[] = {
932 PBMEM(0xffe00c00),
933 IRQ(6),
935 DEFINE_DEV_DATA(atmel_usart, 0);
936 DEV_CLK(usart, atmel_usart0, pba, 3);
938 static struct atmel_uart_data atmel_usart1_data = {
939 .use_dma_tx = 1,
940 .use_dma_rx = 1,
942 static struct resource atmel_usart1_resource[] = {
943 PBMEM(0xffe01000),
944 IRQ(7),
946 DEFINE_DEV_DATA(atmel_usart, 1);
947 DEV_CLK(usart, atmel_usart1, pba, 4);
949 static struct atmel_uart_data atmel_usart2_data = {
950 .use_dma_tx = 1,
951 .use_dma_rx = 1,
953 static struct resource atmel_usart2_resource[] = {
954 PBMEM(0xffe01400),
955 IRQ(8),
957 DEFINE_DEV_DATA(atmel_usart, 2);
958 DEV_CLK(usart, atmel_usart2, pba, 5);
960 static struct atmel_uart_data atmel_usart3_data = {
961 .use_dma_tx = 1,
962 .use_dma_rx = 1,
964 static struct resource atmel_usart3_resource[] = {
965 PBMEM(0xffe01800),
966 IRQ(9),
968 DEFINE_DEV_DATA(atmel_usart, 3);
969 DEV_CLK(usart, atmel_usart3, pba, 6);
971 static inline void configure_usart0_pins(int flags)
973 u32 pin_mask = (1 << 8) | (1 << 9); /* RXD & TXD */
974 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 6);
975 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 7);
976 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 10);
978 select_peripheral(PIOA, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
981 static inline void configure_usart1_pins(int flags)
983 u32 pin_mask = (1 << 17) | (1 << 18); /* RXD & TXD */
984 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 19);
985 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 20);
986 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 16);
988 select_peripheral(PIOA, pin_mask, PERIPH_A, AT32_GPIOF_PULLUP);
991 static inline void configure_usart2_pins(int flags)
993 u32 pin_mask = (1 << 26) | (1 << 27); /* RXD & TXD */
994 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 30);
995 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 29);
996 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 28);
998 select_peripheral(PIOB, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
1001 static inline void configure_usart3_pins(int flags)
1003 u32 pin_mask = (1 << 18) | (1 << 17); /* RXD & TXD */
1004 if (flags & ATMEL_USART_RTS) pin_mask |= (1 << 16);
1005 if (flags & ATMEL_USART_CTS) pin_mask |= (1 << 15);
1006 if (flags & ATMEL_USART_CLK) pin_mask |= (1 << 19);
1008 select_peripheral(PIOB, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
1011 static struct platform_device *__initdata at32_usarts[4];
1013 void __init at32_map_usart(unsigned int hw_id, unsigned int line, int flags)
1015 struct platform_device *pdev;
1017 switch (hw_id) {
1018 case 0:
1019 pdev = &atmel_usart0_device;
1020 configure_usart0_pins(flags);
1021 break;
1022 case 1:
1023 pdev = &atmel_usart1_device;
1024 configure_usart1_pins(flags);
1025 break;
1026 case 2:
1027 pdev = &atmel_usart2_device;
1028 configure_usart2_pins(flags);
1029 break;
1030 case 3:
1031 pdev = &atmel_usart3_device;
1032 configure_usart3_pins(flags);
1033 break;
1034 default:
1035 return;
1038 if (PXSEG(pdev->resource[0].start) == P4SEG) {
1039 /* Addresses in the P4 segment are permanently mapped 1:1 */
1040 struct atmel_uart_data *data = pdev->dev.platform_data;
1041 data->regs = (void __iomem *)pdev->resource[0].start;
1044 pdev->id = line;
1045 at32_usarts[line] = pdev;
1048 struct platform_device *__init at32_add_device_usart(unsigned int id)
1050 platform_device_register(at32_usarts[id]);
1051 return at32_usarts[id];
1054 struct platform_device *atmel_default_console_device;
1056 void __init at32_setup_serial_console(unsigned int usart_id)
1058 atmel_default_console_device = at32_usarts[usart_id];
1061 /* --------------------------------------------------------------------
1062 * Ethernet
1063 * -------------------------------------------------------------------- */
1065 #ifdef CONFIG_CPU_AT32AP7000
1066 static struct eth_platform_data macb0_data;
1067 static struct resource macb0_resource[] = {
1068 PBMEM(0xfff01800),
1069 IRQ(25),
1071 DEFINE_DEV_DATA(macb, 0);
1072 DEV_CLK(hclk, macb0, hsb, 8);
1073 DEV_CLK(pclk, macb0, pbb, 6);
1075 static struct eth_platform_data macb1_data;
1076 static struct resource macb1_resource[] = {
1077 PBMEM(0xfff01c00),
1078 IRQ(26),
1080 DEFINE_DEV_DATA(macb, 1);
1081 DEV_CLK(hclk, macb1, hsb, 9);
1082 DEV_CLK(pclk, macb1, pbb, 7);
1084 struct platform_device *__init
1085 at32_add_device_eth(unsigned int id, struct eth_platform_data *data)
1087 struct platform_device *pdev;
1088 u32 pin_mask;
1090 switch (id) {
1091 case 0:
1092 pdev = &macb0_device;
1094 pin_mask = (1 << 3); /* TXD0 */
1095 pin_mask |= (1 << 4); /* TXD1 */
1096 pin_mask |= (1 << 7); /* TXEN */
1097 pin_mask |= (1 << 8); /* TXCK */
1098 pin_mask |= (1 << 9); /* RXD0 */
1099 pin_mask |= (1 << 10); /* RXD1 */
1100 pin_mask |= (1 << 13); /* RXER */
1101 pin_mask |= (1 << 15); /* RXDV */
1102 pin_mask |= (1 << 16); /* MDC */
1103 pin_mask |= (1 << 17); /* MDIO */
1105 if (!data->is_rmii) {
1106 pin_mask |= (1 << 0); /* COL */
1107 pin_mask |= (1 << 1); /* CRS */
1108 pin_mask |= (1 << 2); /* TXER */
1109 pin_mask |= (1 << 5); /* TXD2 */
1110 pin_mask |= (1 << 6); /* TXD3 */
1111 pin_mask |= (1 << 11); /* RXD2 */
1112 pin_mask |= (1 << 12); /* RXD3 */
1113 pin_mask |= (1 << 14); /* RXCK */
1114 #ifndef CONFIG_BOARD_MIMC200
1115 pin_mask |= (1 << 18); /* SPD */
1116 #endif
1119 select_peripheral(PIOC, pin_mask, PERIPH_A, 0);
1121 break;
1123 case 1:
1124 pdev = &macb1_device;
1126 pin_mask = (1 << 13); /* TXD0 */
1127 pin_mask |= (1 << 14); /* TXD1 */
1128 pin_mask |= (1 << 11); /* TXEN */
1129 pin_mask |= (1 << 12); /* TXCK */
1130 pin_mask |= (1 << 10); /* RXD0 */
1131 pin_mask |= (1 << 6); /* RXD1 */
1132 pin_mask |= (1 << 5); /* RXER */
1133 pin_mask |= (1 << 4); /* RXDV */
1134 pin_mask |= (1 << 3); /* MDC */
1135 pin_mask |= (1 << 2); /* MDIO */
1137 #ifndef CONFIG_BOARD_MIMC200
1138 if (!data->is_rmii)
1139 pin_mask |= (1 << 15); /* SPD */
1140 #endif
1142 select_peripheral(PIOD, pin_mask, PERIPH_B, 0);
1144 if (!data->is_rmii) {
1145 pin_mask = (1 << 19); /* COL */
1146 pin_mask |= (1 << 23); /* CRS */
1147 pin_mask |= (1 << 26); /* TXER */
1148 pin_mask |= (1 << 27); /* TXD2 */
1149 pin_mask |= (1 << 28); /* TXD3 */
1150 pin_mask |= (1 << 29); /* RXD2 */
1151 pin_mask |= (1 << 30); /* RXD3 */
1152 pin_mask |= (1 << 24); /* RXCK */
1154 select_peripheral(PIOC, pin_mask, PERIPH_B, 0);
1156 break;
1158 default:
1159 return NULL;
1162 memcpy(pdev->dev.platform_data, data, sizeof(struct eth_platform_data));
1163 platform_device_register(pdev);
1165 return pdev;
1167 #endif
1169 /* --------------------------------------------------------------------
1170 * SPI
1171 * -------------------------------------------------------------------- */
1172 static struct resource atmel_spi0_resource[] = {
1173 PBMEM(0xffe00000),
1174 IRQ(3),
1176 DEFINE_DEV(atmel_spi, 0);
1177 DEV_CLK(spi_clk, atmel_spi0, pba, 0);
1179 static struct resource atmel_spi1_resource[] = {
1180 PBMEM(0xffe00400),
1181 IRQ(4),
1183 DEFINE_DEV(atmel_spi, 1);
1184 DEV_CLK(spi_clk, atmel_spi1, pba, 1);
1186 void __init
1187 at32_spi_setup_slaves(unsigned int bus_num, struct spi_board_info *b, unsigned int n)
1190 * Manage the chipselects as GPIOs, normally using the same pins
1191 * the SPI controller expects; but boards can use other pins.
1193 static u8 __initdata spi_pins[][4] = {
1194 { GPIO_PIN_PA(3), GPIO_PIN_PA(4),
1195 GPIO_PIN_PA(5), GPIO_PIN_PA(20) },
1196 { GPIO_PIN_PB(2), GPIO_PIN_PB(3),
1197 GPIO_PIN_PB(4), GPIO_PIN_PA(27) },
1199 unsigned int pin, mode;
1201 /* There are only 2 SPI controllers */
1202 if (bus_num > 1)
1203 return;
1205 for (; n; n--, b++) {
1206 b->bus_num = bus_num;
1207 if (b->chip_select >= 4)
1208 continue;
1209 pin = (unsigned)b->controller_data;
1210 if (!pin) {
1211 pin = spi_pins[bus_num][b->chip_select];
1212 b->controller_data = (void *)pin;
1214 mode = AT32_GPIOF_OUTPUT;
1215 if (!(b->mode & SPI_CS_HIGH))
1216 mode |= AT32_GPIOF_HIGH;
1217 at32_select_gpio(pin, mode);
1221 struct platform_device *__init
1222 at32_add_device_spi(unsigned int id, struct spi_board_info *b, unsigned int n)
1224 struct platform_device *pdev;
1225 u32 pin_mask;
1227 switch (id) {
1228 case 0:
1229 pdev = &atmel_spi0_device;
1230 pin_mask = (1 << 1) | (1 << 2); /* MOSI & SCK */
1232 /* pullup MISO so a level is always defined */
1233 select_peripheral(PIOA, (1 << 0), PERIPH_A, AT32_GPIOF_PULLUP);
1234 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1236 at32_spi_setup_slaves(0, b, n);
1237 break;
1239 case 1:
1240 pdev = &atmel_spi1_device;
1241 pin_mask = (1 << 1) | (1 << 5); /* MOSI */
1243 /* pullup MISO so a level is always defined */
1244 select_peripheral(PIOB, (1 << 0), PERIPH_B, AT32_GPIOF_PULLUP);
1245 select_peripheral(PIOB, pin_mask, PERIPH_B, 0);
1247 at32_spi_setup_slaves(1, b, n);
1248 break;
1250 default:
1251 return NULL;
1254 spi_register_board_info(b, n);
1255 platform_device_register(pdev);
1256 return pdev;
1259 /* --------------------------------------------------------------------
1260 * TWI
1261 * -------------------------------------------------------------------- */
1262 static struct resource atmel_twi0_resource[] __initdata = {
1263 PBMEM(0xffe00800),
1264 IRQ(5),
1266 static struct clk atmel_twi0_pclk = {
1267 .name = "twi_pclk",
1268 .parent = &pba_clk,
1269 .mode = pba_clk_mode,
1270 .get_rate = pba_clk_get_rate,
1271 .index = 2,
1274 struct platform_device *__init at32_add_device_twi(unsigned int id,
1275 struct i2c_board_info *b,
1276 unsigned int n)
1278 struct platform_device *pdev;
1279 u32 pin_mask;
1281 if (id != 0)
1282 return NULL;
1284 pdev = platform_device_alloc("atmel_twi", id);
1285 if (!pdev)
1286 return NULL;
1288 if (platform_device_add_resources(pdev, atmel_twi0_resource,
1289 ARRAY_SIZE(atmel_twi0_resource)))
1290 goto err_add_resources;
1292 pin_mask = (1 << 6) | (1 << 7); /* SDA & SDL */
1294 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1296 atmel_twi0_pclk.dev = &pdev->dev;
1298 if (b)
1299 i2c_register_board_info(id, b, n);
1301 platform_device_add(pdev);
1302 return pdev;
1304 err_add_resources:
1305 platform_device_put(pdev);
1306 return NULL;
1309 /* --------------------------------------------------------------------
1310 * MMC
1311 * -------------------------------------------------------------------- */
1312 static struct resource atmel_mci0_resource[] __initdata = {
1313 PBMEM(0xfff02400),
1314 IRQ(28),
1316 static struct clk atmel_mci0_pclk = {
1317 .name = "mci_clk",
1318 .parent = &pbb_clk,
1319 .mode = pbb_clk_mode,
1320 .get_rate = pbb_clk_get_rate,
1321 .index = 9,
1324 struct platform_device *__init
1325 at32_add_device_mci(unsigned int id, struct mci_platform_data *data)
1327 struct platform_device *pdev;
1328 struct mci_dma_data *slave;
1329 u32 pioa_mask;
1330 u32 piob_mask;
1332 if (id != 0 || !data)
1333 return NULL;
1335 /* Must have at least one usable slot */
1336 if (!data->slot[0].bus_width && !data->slot[1].bus_width)
1337 return NULL;
1339 pdev = platform_device_alloc("atmel_mci", id);
1340 if (!pdev)
1341 goto fail;
1343 if (platform_device_add_resources(pdev, atmel_mci0_resource,
1344 ARRAY_SIZE(atmel_mci0_resource)))
1345 goto fail;
1347 slave = kzalloc(sizeof(struct mci_dma_data), GFP_KERNEL);
1348 if (!slave)
1349 goto fail;
1351 slave->sdata.dma_dev = &dw_dmac0_device.dev;
1352 slave->sdata.reg_width = DW_DMA_SLAVE_WIDTH_32BIT;
1353 slave->sdata.cfg_hi = (DWC_CFGH_SRC_PER(0)
1354 | DWC_CFGH_DST_PER(1));
1355 slave->sdata.cfg_lo &= ~(DWC_CFGL_HS_DST_POL
1356 | DWC_CFGL_HS_SRC_POL);
1358 data->dma_slave = slave;
1360 if (platform_device_add_data(pdev, data,
1361 sizeof(struct mci_platform_data)))
1362 goto fail_free;
1364 /* CLK line is common to both slots */
1365 pioa_mask = 1 << 10;
1367 switch (data->slot[0].bus_width) {
1368 case 4:
1369 pioa_mask |= 1 << 13; /* DATA1 */
1370 pioa_mask |= 1 << 14; /* DATA2 */
1371 pioa_mask |= 1 << 15; /* DATA3 */
1372 /* fall through */
1373 case 1:
1374 pioa_mask |= 1 << 11; /* CMD */
1375 pioa_mask |= 1 << 12; /* DATA0 */
1377 if (gpio_is_valid(data->slot[0].detect_pin))
1378 at32_select_gpio(data->slot[0].detect_pin, 0);
1379 if (gpio_is_valid(data->slot[0].wp_pin))
1380 at32_select_gpio(data->slot[0].wp_pin, 0);
1381 break;
1382 case 0:
1383 /* Slot is unused */
1384 break;
1385 default:
1386 goto fail_free;
1389 select_peripheral(PIOA, pioa_mask, PERIPH_A, 0);
1390 piob_mask = 0;
1392 switch (data->slot[1].bus_width) {
1393 case 4:
1394 piob_mask |= 1 << 8; /* DATA1 */
1395 piob_mask |= 1 << 9; /* DATA2 */
1396 piob_mask |= 1 << 10; /* DATA3 */
1397 /* fall through */
1398 case 1:
1399 piob_mask |= 1 << 6; /* CMD */
1400 piob_mask |= 1 << 7; /* DATA0 */
1401 select_peripheral(PIOB, piob_mask, PERIPH_B, 0);
1403 if (gpio_is_valid(data->slot[1].detect_pin))
1404 at32_select_gpio(data->slot[1].detect_pin, 0);
1405 if (gpio_is_valid(data->slot[1].wp_pin))
1406 at32_select_gpio(data->slot[1].wp_pin, 0);
1407 break;
1408 case 0:
1409 /* Slot is unused */
1410 break;
1411 default:
1412 if (!data->slot[0].bus_width)
1413 goto fail_free;
1415 data->slot[1].bus_width = 0;
1416 break;
1419 atmel_mci0_pclk.dev = &pdev->dev;
1421 platform_device_add(pdev);
1422 return pdev;
1424 fail_free:
1425 kfree(slave);
1426 fail:
1427 data->dma_slave = NULL;
1428 platform_device_put(pdev);
1429 return NULL;
1432 /* --------------------------------------------------------------------
1433 * LCDC
1434 * -------------------------------------------------------------------- */
1435 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
1436 static struct atmel_lcdfb_info atmel_lcdfb0_data;
1437 static struct resource atmel_lcdfb0_resource[] = {
1439 .start = 0xff000000,
1440 .end = 0xff000fff,
1441 .flags = IORESOURCE_MEM,
1443 IRQ(1),
1445 /* Placeholder for pre-allocated fb memory */
1446 .start = 0x00000000,
1447 .end = 0x00000000,
1448 .flags = 0,
1451 DEFINE_DEV_DATA(atmel_lcdfb, 0);
1452 DEV_CLK(hck1, atmel_lcdfb0, hsb, 7);
1453 static struct clk atmel_lcdfb0_pixclk = {
1454 .name = "lcdc_clk",
1455 .dev = &atmel_lcdfb0_device.dev,
1456 .mode = genclk_mode,
1457 .get_rate = genclk_get_rate,
1458 .set_rate = genclk_set_rate,
1459 .set_parent = genclk_set_parent,
1460 .index = 7,
1463 struct platform_device *__init
1464 at32_add_device_lcdc(unsigned int id, struct atmel_lcdfb_info *data,
1465 unsigned long fbmem_start, unsigned long fbmem_len,
1466 u64 pin_mask)
1468 struct platform_device *pdev;
1469 struct atmel_lcdfb_info *info;
1470 struct fb_monspecs *monspecs;
1471 struct fb_videomode *modedb;
1472 unsigned int modedb_size;
1473 u32 portc_mask, portd_mask, porte_mask;
1476 * Do a deep copy of the fb data, monspecs and modedb. Make
1477 * sure all allocations are done before setting up the
1478 * portmux.
1480 monspecs = kmemdup(data->default_monspecs,
1481 sizeof(struct fb_monspecs), GFP_KERNEL);
1482 if (!monspecs)
1483 return NULL;
1485 modedb_size = sizeof(struct fb_videomode) * monspecs->modedb_len;
1486 modedb = kmemdup(monspecs->modedb, modedb_size, GFP_KERNEL);
1487 if (!modedb)
1488 goto err_dup_modedb;
1489 monspecs->modedb = modedb;
1491 switch (id) {
1492 case 0:
1493 pdev = &atmel_lcdfb0_device;
1495 if (pin_mask == 0ULL)
1496 /* Default to "full" lcdc control signals and 24bit */
1497 pin_mask = ATMEL_LCDC_PRI_24BIT | ATMEL_LCDC_PRI_CONTROL;
1499 /* LCDC on port C */
1500 portc_mask = pin_mask & 0xfff80000;
1501 select_peripheral(PIOC, portc_mask, PERIPH_A, 0);
1503 /* LCDC on port D */
1504 portd_mask = pin_mask & 0x0003ffff;
1505 select_peripheral(PIOD, portd_mask, PERIPH_A, 0);
1507 /* LCDC on port E */
1508 porte_mask = (pin_mask >> 32) & 0x0007ffff;
1509 select_peripheral(PIOE, porte_mask, PERIPH_B, 0);
1511 clk_set_parent(&atmel_lcdfb0_pixclk, &pll0);
1512 clk_set_rate(&atmel_lcdfb0_pixclk, clk_get_rate(&pll0));
1513 break;
1515 default:
1516 goto err_invalid_id;
1519 if (fbmem_len) {
1520 pdev->resource[2].start = fbmem_start;
1521 pdev->resource[2].end = fbmem_start + fbmem_len - 1;
1522 pdev->resource[2].flags = IORESOURCE_MEM;
1525 info = pdev->dev.platform_data;
1526 memcpy(info, data, sizeof(struct atmel_lcdfb_info));
1527 info->default_monspecs = monspecs;
1529 platform_device_register(pdev);
1530 return pdev;
1532 err_invalid_id:
1533 kfree(modedb);
1534 err_dup_modedb:
1535 kfree(monspecs);
1536 return NULL;
1538 #endif
1540 /* --------------------------------------------------------------------
1541 * PWM
1542 * -------------------------------------------------------------------- */
1543 static struct resource atmel_pwm0_resource[] __initdata = {
1544 PBMEM(0xfff01400),
1545 IRQ(24),
1547 static struct clk atmel_pwm0_mck = {
1548 .name = "pwm_clk",
1549 .parent = &pbb_clk,
1550 .mode = pbb_clk_mode,
1551 .get_rate = pbb_clk_get_rate,
1552 .index = 5,
1555 struct platform_device *__init at32_add_device_pwm(u32 mask)
1557 struct platform_device *pdev;
1558 u32 pin_mask;
1560 if (!mask)
1561 return NULL;
1563 pdev = platform_device_alloc("atmel_pwm", 0);
1564 if (!pdev)
1565 return NULL;
1567 if (platform_device_add_resources(pdev, atmel_pwm0_resource,
1568 ARRAY_SIZE(atmel_pwm0_resource)))
1569 goto out_free_pdev;
1571 if (platform_device_add_data(pdev, &mask, sizeof(mask)))
1572 goto out_free_pdev;
1574 pin_mask = 0;
1575 if (mask & (1 << 0))
1576 pin_mask |= (1 << 28);
1577 if (mask & (1 << 1))
1578 pin_mask |= (1 << 29);
1579 if (pin_mask > 0)
1580 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1582 pin_mask = 0;
1583 if (mask & (1 << 2))
1584 pin_mask |= (1 << 21);
1585 if (mask & (1 << 3))
1586 pin_mask |= (1 << 22);
1587 if (pin_mask > 0)
1588 select_peripheral(PIOA, pin_mask, PERIPH_B, 0);
1590 atmel_pwm0_mck.dev = &pdev->dev;
1592 platform_device_add(pdev);
1594 return pdev;
1596 out_free_pdev:
1597 platform_device_put(pdev);
1598 return NULL;
1601 /* --------------------------------------------------------------------
1602 * SSC
1603 * -------------------------------------------------------------------- */
1604 static struct resource ssc0_resource[] = {
1605 PBMEM(0xffe01c00),
1606 IRQ(10),
1608 DEFINE_DEV(ssc, 0);
1609 DEV_CLK(pclk, ssc0, pba, 7);
1611 static struct resource ssc1_resource[] = {
1612 PBMEM(0xffe02000),
1613 IRQ(11),
1615 DEFINE_DEV(ssc, 1);
1616 DEV_CLK(pclk, ssc1, pba, 8);
1618 static struct resource ssc2_resource[] = {
1619 PBMEM(0xffe02400),
1620 IRQ(12),
1622 DEFINE_DEV(ssc, 2);
1623 DEV_CLK(pclk, ssc2, pba, 9);
1625 struct platform_device *__init
1626 at32_add_device_ssc(unsigned int id, unsigned int flags)
1628 struct platform_device *pdev;
1629 u32 pin_mask = 0;
1631 switch (id) {
1632 case 0:
1633 pdev = &ssc0_device;
1634 if (flags & ATMEL_SSC_RF)
1635 pin_mask |= (1 << 21); /* RF */
1636 if (flags & ATMEL_SSC_RK)
1637 pin_mask |= (1 << 22); /* RK */
1638 if (flags & ATMEL_SSC_TK)
1639 pin_mask |= (1 << 23); /* TK */
1640 if (flags & ATMEL_SSC_TF)
1641 pin_mask |= (1 << 24); /* TF */
1642 if (flags & ATMEL_SSC_TD)
1643 pin_mask |= (1 << 25); /* TD */
1644 if (flags & ATMEL_SSC_RD)
1645 pin_mask |= (1 << 26); /* RD */
1647 if (pin_mask > 0)
1648 select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1650 break;
1651 case 1:
1652 pdev = &ssc1_device;
1653 if (flags & ATMEL_SSC_RF)
1654 pin_mask |= (1 << 0); /* RF */
1655 if (flags & ATMEL_SSC_RK)
1656 pin_mask |= (1 << 1); /* RK */
1657 if (flags & ATMEL_SSC_TK)
1658 pin_mask |= (1 << 2); /* TK */
1659 if (flags & ATMEL_SSC_TF)
1660 pin_mask |= (1 << 3); /* TF */
1661 if (flags & ATMEL_SSC_TD)
1662 pin_mask |= (1 << 4); /* TD */
1663 if (flags & ATMEL_SSC_RD)
1664 pin_mask |= (1 << 5); /* RD */
1666 if (pin_mask > 0)
1667 select_peripheral(PIOA, pin_mask, PERIPH_B, 0);
1669 break;
1670 case 2:
1671 pdev = &ssc2_device;
1672 if (flags & ATMEL_SSC_TD)
1673 pin_mask |= (1 << 13); /* TD */
1674 if (flags & ATMEL_SSC_RD)
1675 pin_mask |= (1 << 14); /* RD */
1676 if (flags & ATMEL_SSC_TK)
1677 pin_mask |= (1 << 15); /* TK */
1678 if (flags & ATMEL_SSC_TF)
1679 pin_mask |= (1 << 16); /* TF */
1680 if (flags & ATMEL_SSC_RF)
1681 pin_mask |= (1 << 17); /* RF */
1682 if (flags & ATMEL_SSC_RK)
1683 pin_mask |= (1 << 18); /* RK */
1685 if (pin_mask > 0)
1686 select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
1688 break;
1689 default:
1690 return NULL;
1693 platform_device_register(pdev);
1694 return pdev;
1697 /* --------------------------------------------------------------------
1698 * USB Device Controller
1699 * -------------------------------------------------------------------- */
1700 static struct resource usba0_resource[] __initdata = {
1702 .start = 0xff300000,
1703 .end = 0xff3fffff,
1704 .flags = IORESOURCE_MEM,
1705 }, {
1706 .start = 0xfff03000,
1707 .end = 0xfff033ff,
1708 .flags = IORESOURCE_MEM,
1710 IRQ(31),
1712 static struct clk usba0_pclk = {
1713 .name = "pclk",
1714 .parent = &pbb_clk,
1715 .mode = pbb_clk_mode,
1716 .get_rate = pbb_clk_get_rate,
1717 .index = 12,
1719 static struct clk usba0_hclk = {
1720 .name = "hclk",
1721 .parent = &hsb_clk,
1722 .mode = hsb_clk_mode,
1723 .get_rate = hsb_clk_get_rate,
1724 .index = 6,
1727 #define EP(nam, idx, maxpkt, maxbk, dma, isoc) \
1728 [idx] = { \
1729 .name = nam, \
1730 .index = idx, \
1731 .fifo_size = maxpkt, \
1732 .nr_banks = maxbk, \
1733 .can_dma = dma, \
1734 .can_isoc = isoc, \
1737 static struct usba_ep_data at32_usba_ep[] __initdata = {
1738 EP("ep0", 0, 64, 1, 0, 0),
1739 EP("ep1", 1, 512, 2, 1, 1),
1740 EP("ep2", 2, 512, 2, 1, 1),
1741 EP("ep3-int", 3, 64, 3, 1, 0),
1742 EP("ep4-int", 4, 64, 3, 1, 0),
1743 EP("ep5", 5, 1024, 3, 1, 1),
1744 EP("ep6", 6, 1024, 3, 1, 1),
1747 #undef EP
1749 struct platform_device *__init
1750 at32_add_device_usba(unsigned int id, struct usba_platform_data *data)
1753 * pdata doesn't have room for any endpoints, so we need to
1754 * append room for the ones we need right after it.
1756 struct {
1757 struct usba_platform_data pdata;
1758 struct usba_ep_data ep[7];
1759 } usba_data;
1760 struct platform_device *pdev;
1762 if (id != 0)
1763 return NULL;
1765 pdev = platform_device_alloc("atmel_usba_udc", 0);
1766 if (!pdev)
1767 return NULL;
1769 if (platform_device_add_resources(pdev, usba0_resource,
1770 ARRAY_SIZE(usba0_resource)))
1771 goto out_free_pdev;
1773 if (data)
1774 usba_data.pdata.vbus_pin = data->vbus_pin;
1775 else
1776 usba_data.pdata.vbus_pin = -EINVAL;
1778 data = &usba_data.pdata;
1779 data->num_ep = ARRAY_SIZE(at32_usba_ep);
1780 memcpy(data->ep, at32_usba_ep, sizeof(at32_usba_ep));
1782 if (platform_device_add_data(pdev, data, sizeof(usba_data)))
1783 goto out_free_pdev;
1785 if (gpio_is_valid(data->vbus_pin))
1786 at32_select_gpio(data->vbus_pin, 0);
1788 usba0_pclk.dev = &pdev->dev;
1789 usba0_hclk.dev = &pdev->dev;
1791 platform_device_add(pdev);
1793 return pdev;
1795 out_free_pdev:
1796 platform_device_put(pdev);
1797 return NULL;
1800 /* --------------------------------------------------------------------
1801 * IDE / CompactFlash
1802 * -------------------------------------------------------------------- */
1803 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7001)
1804 static struct resource at32_smc_cs4_resource[] __initdata = {
1806 .start = 0x04000000,
1807 .end = 0x07ffffff,
1808 .flags = IORESOURCE_MEM,
1810 IRQ(~0UL), /* Magic IRQ will be overridden */
1812 static struct resource at32_smc_cs5_resource[] __initdata = {
1814 .start = 0x20000000,
1815 .end = 0x23ffffff,
1816 .flags = IORESOURCE_MEM,
1818 IRQ(~0UL), /* Magic IRQ will be overridden */
1821 static int __init at32_init_ide_or_cf(struct platform_device *pdev,
1822 unsigned int cs, unsigned int extint)
1824 static unsigned int extint_pin_map[4] __initdata = {
1825 (1 << 25),
1826 (1 << 26),
1827 (1 << 27),
1828 (1 << 28),
1830 static bool common_pins_initialized __initdata = false;
1831 unsigned int extint_pin;
1832 int ret;
1833 u32 pin_mask;
1835 if (extint >= ARRAY_SIZE(extint_pin_map))
1836 return -EINVAL;
1837 extint_pin = extint_pin_map[extint];
1839 switch (cs) {
1840 case 4:
1841 ret = platform_device_add_resources(pdev,
1842 at32_smc_cs4_resource,
1843 ARRAY_SIZE(at32_smc_cs4_resource));
1844 if (ret)
1845 return ret;
1847 /* NCS4 -> OE_N */
1848 select_peripheral(PIOE, (1 << 21), PERIPH_A, 0);
1849 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_CF0_ENABLE);
1850 break;
1851 case 5:
1852 ret = platform_device_add_resources(pdev,
1853 at32_smc_cs5_resource,
1854 ARRAY_SIZE(at32_smc_cs5_resource));
1855 if (ret)
1856 return ret;
1858 /* NCS5 -> OE_N */
1859 select_peripheral(PIOE, (1 << 22), PERIPH_A, 0);
1860 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_CF1_ENABLE);
1861 break;
1862 default:
1863 return -EINVAL;
1866 if (!common_pins_initialized) {
1867 pin_mask = (1 << 19); /* CFCE1 -> CS0_N */
1868 pin_mask |= (1 << 20); /* CFCE2 -> CS1_N */
1869 pin_mask |= (1 << 23); /* CFRNW -> DIR */
1870 pin_mask |= (1 << 24); /* NWAIT <- IORDY */
1872 select_peripheral(PIOE, pin_mask, PERIPH_A, 0);
1874 common_pins_initialized = true;
1877 select_peripheral(PIOB, extint_pin, PERIPH_A, AT32_GPIOF_DEGLITCH);
1879 pdev->resource[1].start = EIM_IRQ_BASE + extint;
1880 pdev->resource[1].end = pdev->resource[1].start;
1882 return 0;
1885 struct platform_device *__init
1886 at32_add_device_ide(unsigned int id, unsigned int extint,
1887 struct ide_platform_data *data)
1889 struct platform_device *pdev;
1891 pdev = platform_device_alloc("at32_ide", id);
1892 if (!pdev)
1893 goto fail;
1895 if (platform_device_add_data(pdev, data,
1896 sizeof(struct ide_platform_data)))
1897 goto fail;
1899 if (at32_init_ide_or_cf(pdev, data->cs, extint))
1900 goto fail;
1902 platform_device_add(pdev);
1903 return pdev;
1905 fail:
1906 platform_device_put(pdev);
1907 return NULL;
1910 struct platform_device *__init
1911 at32_add_device_cf(unsigned int id, unsigned int extint,
1912 struct cf_platform_data *data)
1914 struct platform_device *pdev;
1916 pdev = platform_device_alloc("at32_cf", id);
1917 if (!pdev)
1918 goto fail;
1920 if (platform_device_add_data(pdev, data,
1921 sizeof(struct cf_platform_data)))
1922 goto fail;
1924 if (at32_init_ide_or_cf(pdev, data->cs, extint))
1925 goto fail;
1927 if (gpio_is_valid(data->detect_pin))
1928 at32_select_gpio(data->detect_pin, AT32_GPIOF_DEGLITCH);
1929 if (gpio_is_valid(data->reset_pin))
1930 at32_select_gpio(data->reset_pin, 0);
1931 if (gpio_is_valid(data->vcc_pin))
1932 at32_select_gpio(data->vcc_pin, 0);
1933 /* READY is used as extint, so we can't select it as gpio */
1935 platform_device_add(pdev);
1936 return pdev;
1938 fail:
1939 platform_device_put(pdev);
1940 return NULL;
1942 #endif
1944 /* --------------------------------------------------------------------
1945 * NAND Flash / SmartMedia
1946 * -------------------------------------------------------------------- */
1947 static struct resource smc_cs3_resource[] __initdata = {
1949 .start = 0x0c000000,
1950 .end = 0x0fffffff,
1951 .flags = IORESOURCE_MEM,
1952 }, {
1953 .start = 0xfff03c00,
1954 .end = 0xfff03fff,
1955 .flags = IORESOURCE_MEM,
1959 struct platform_device *__init
1960 at32_add_device_nand(unsigned int id, struct atmel_nand_data *data)
1962 struct platform_device *pdev;
1964 if (id != 0 || !data)
1965 return NULL;
1967 pdev = platform_device_alloc("atmel_nand", id);
1968 if (!pdev)
1969 goto fail;
1971 if (platform_device_add_resources(pdev, smc_cs3_resource,
1972 ARRAY_SIZE(smc_cs3_resource)))
1973 goto fail;
1975 if (platform_device_add_data(pdev, data,
1976 sizeof(struct atmel_nand_data)))
1977 goto fail;
1979 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_NAND_ENABLE);
1980 if (data->enable_pin)
1981 at32_select_gpio(data->enable_pin,
1982 AT32_GPIOF_OUTPUT | AT32_GPIOF_HIGH);
1983 if (data->rdy_pin)
1984 at32_select_gpio(data->rdy_pin, 0);
1985 if (data->det_pin)
1986 at32_select_gpio(data->det_pin, 0);
1988 platform_device_add(pdev);
1989 return pdev;
1991 fail:
1992 platform_device_put(pdev);
1993 return NULL;
1996 /* --------------------------------------------------------------------
1997 * AC97C
1998 * -------------------------------------------------------------------- */
1999 static struct resource atmel_ac97c0_resource[] __initdata = {
2000 PBMEM(0xfff02800),
2001 IRQ(29),
2003 static struct clk atmel_ac97c0_pclk = {
2004 .name = "pclk",
2005 .parent = &pbb_clk,
2006 .mode = pbb_clk_mode,
2007 .get_rate = pbb_clk_get_rate,
2008 .index = 10,
2011 struct platform_device *__init
2012 at32_add_device_ac97c(unsigned int id, struct ac97c_platform_data *data,
2013 unsigned int flags)
2015 struct platform_device *pdev;
2016 struct dw_dma_slave *rx_dws;
2017 struct dw_dma_slave *tx_dws;
2018 struct ac97c_platform_data _data;
2019 u32 pin_mask;
2021 if (id != 0)
2022 return NULL;
2024 pdev = platform_device_alloc("atmel_ac97c", id);
2025 if (!pdev)
2026 return NULL;
2028 if (platform_device_add_resources(pdev, atmel_ac97c0_resource,
2029 ARRAY_SIZE(atmel_ac97c0_resource)))
2030 goto out_free_resources;
2032 if (!data) {
2033 data = &_data;
2034 memset(data, 0, sizeof(struct ac97c_platform_data));
2035 data->reset_pin = -ENODEV;
2038 rx_dws = &data->rx_dws;
2039 tx_dws = &data->tx_dws;
2041 /* Check if DMA slave interface for capture should be configured. */
2042 if (flags & AC97C_CAPTURE) {
2043 rx_dws->dma_dev = &dw_dmac0_device.dev;
2044 rx_dws->reg_width = DW_DMA_SLAVE_WIDTH_16BIT;
2045 rx_dws->cfg_hi = DWC_CFGH_SRC_PER(3);
2046 rx_dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL);
2049 /* Check if DMA slave interface for playback should be configured. */
2050 if (flags & AC97C_PLAYBACK) {
2051 tx_dws->dma_dev = &dw_dmac0_device.dev;
2052 tx_dws->reg_width = DW_DMA_SLAVE_WIDTH_16BIT;
2053 tx_dws->cfg_hi = DWC_CFGH_DST_PER(4);
2054 tx_dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL);
2057 if (platform_device_add_data(pdev, data,
2058 sizeof(struct ac97c_platform_data)))
2059 goto out_free_resources;
2061 /* SDO | SYNC | SCLK | SDI */
2062 pin_mask = (1 << 20) | (1 << 21) | (1 << 22) | (1 << 23);
2064 select_peripheral(PIOB, pin_mask, PERIPH_B, 0);
2066 if (gpio_is_valid(data->reset_pin))
2067 at32_select_gpio(data->reset_pin, AT32_GPIOF_OUTPUT
2068 | AT32_GPIOF_HIGH);
2070 atmel_ac97c0_pclk.dev = &pdev->dev;
2072 platform_device_add(pdev);
2073 return pdev;
2075 out_free_resources:
2076 platform_device_put(pdev);
2077 return NULL;
2080 /* --------------------------------------------------------------------
2081 * ABDAC
2082 * -------------------------------------------------------------------- */
2083 static struct resource abdac0_resource[] __initdata = {
2084 PBMEM(0xfff02000),
2085 IRQ(27),
2087 static struct clk abdac0_pclk = {
2088 .name = "pclk",
2089 .parent = &pbb_clk,
2090 .mode = pbb_clk_mode,
2091 .get_rate = pbb_clk_get_rate,
2092 .index = 8,
2094 static struct clk abdac0_sample_clk = {
2095 .name = "sample_clk",
2096 .mode = genclk_mode,
2097 .get_rate = genclk_get_rate,
2098 .set_rate = genclk_set_rate,
2099 .set_parent = genclk_set_parent,
2100 .index = 6,
2103 struct platform_device *__init
2104 at32_add_device_abdac(unsigned int id, struct atmel_abdac_pdata *data)
2106 struct platform_device *pdev;
2107 struct dw_dma_slave *dws;
2108 u32 pin_mask;
2110 if (id != 0 || !data)
2111 return NULL;
2113 pdev = platform_device_alloc("atmel_abdac", id);
2114 if (!pdev)
2115 return NULL;
2117 if (platform_device_add_resources(pdev, abdac0_resource,
2118 ARRAY_SIZE(abdac0_resource)))
2119 goto out_free_resources;
2121 dws = &data->dws;
2123 dws->dma_dev = &dw_dmac0_device.dev;
2124 dws->reg_width = DW_DMA_SLAVE_WIDTH_32BIT;
2125 dws->cfg_hi = DWC_CFGH_DST_PER(2);
2126 dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL);
2128 if (platform_device_add_data(pdev, data,
2129 sizeof(struct atmel_abdac_pdata)))
2130 goto out_free_resources;
2132 pin_mask = (1 << 20) | (1 << 22); /* DATA1 & DATAN1 */
2133 pin_mask |= (1 << 21) | (1 << 23); /* DATA0 & DATAN0 */
2135 select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
2137 abdac0_pclk.dev = &pdev->dev;
2138 abdac0_sample_clk.dev = &pdev->dev;
2140 platform_device_add(pdev);
2141 return pdev;
2143 out_free_resources:
2144 platform_device_put(pdev);
2145 return NULL;
2148 /* --------------------------------------------------------------------
2149 * GCLK
2150 * -------------------------------------------------------------------- */
2151 static struct clk gclk0 = {
2152 .name = "gclk0",
2153 .mode = genclk_mode,
2154 .get_rate = genclk_get_rate,
2155 .set_rate = genclk_set_rate,
2156 .set_parent = genclk_set_parent,
2157 .index = 0,
2159 static struct clk gclk1 = {
2160 .name = "gclk1",
2161 .mode = genclk_mode,
2162 .get_rate = genclk_get_rate,
2163 .set_rate = genclk_set_rate,
2164 .set_parent = genclk_set_parent,
2165 .index = 1,
2167 static struct clk gclk2 = {
2168 .name = "gclk2",
2169 .mode = genclk_mode,
2170 .get_rate = genclk_get_rate,
2171 .set_rate = genclk_set_rate,
2172 .set_parent = genclk_set_parent,
2173 .index = 2,
2175 static struct clk gclk3 = {
2176 .name = "gclk3",
2177 .mode = genclk_mode,
2178 .get_rate = genclk_get_rate,
2179 .set_rate = genclk_set_rate,
2180 .set_parent = genclk_set_parent,
2181 .index = 3,
2183 static struct clk gclk4 = {
2184 .name = "gclk4",
2185 .mode = genclk_mode,
2186 .get_rate = genclk_get_rate,
2187 .set_rate = genclk_set_rate,
2188 .set_parent = genclk_set_parent,
2189 .index = 4,
2192 static __initdata struct clk *init_clocks[] = {
2193 &osc32k,
2194 &osc0,
2195 &osc1,
2196 &pll0,
2197 &pll1,
2198 &cpu_clk,
2199 &hsb_clk,
2200 &pba_clk,
2201 &pbb_clk,
2202 &at32_pm_pclk,
2203 &at32_intc0_pclk,
2204 &at32_hmatrix_clk,
2205 &ebi_clk,
2206 &hramc_clk,
2207 &sdramc_clk,
2208 &smc0_pclk,
2209 &smc0_mck,
2210 &pdc_hclk,
2211 &pdc_pclk,
2212 &dw_dmac0_hclk,
2213 &pico_clk,
2214 &pio0_mck,
2215 &pio1_mck,
2216 &pio2_mck,
2217 &pio3_mck,
2218 &pio4_mck,
2219 &at32_tcb0_t0_clk,
2220 &at32_tcb1_t0_clk,
2221 &atmel_psif0_pclk,
2222 &atmel_psif1_pclk,
2223 &atmel_usart0_usart,
2224 &atmel_usart1_usart,
2225 &atmel_usart2_usart,
2226 &atmel_usart3_usart,
2227 &atmel_pwm0_mck,
2228 #if defined(CONFIG_CPU_AT32AP7000)
2229 &macb0_hclk,
2230 &macb0_pclk,
2231 &macb1_hclk,
2232 &macb1_pclk,
2233 #endif
2234 &atmel_spi0_spi_clk,
2235 &atmel_spi1_spi_clk,
2236 &atmel_twi0_pclk,
2237 &atmel_mci0_pclk,
2238 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2239 &atmel_lcdfb0_hck1,
2240 &atmel_lcdfb0_pixclk,
2241 #endif
2242 &ssc0_pclk,
2243 &ssc1_pclk,
2244 &ssc2_pclk,
2245 &usba0_hclk,
2246 &usba0_pclk,
2247 &atmel_ac97c0_pclk,
2248 &abdac0_pclk,
2249 &abdac0_sample_clk,
2250 &gclk0,
2251 &gclk1,
2252 &gclk2,
2253 &gclk3,
2254 &gclk4,
2257 void __init setup_platform(void)
2259 u32 cpu_mask = 0, hsb_mask = 0, pba_mask = 0, pbb_mask = 0;
2260 int i;
2262 if (pm_readl(MCCTRL) & PM_BIT(PLLSEL)) {
2263 main_clock = &pll0;
2264 cpu_clk.parent = &pll0;
2265 } else {
2266 main_clock = &osc0;
2267 cpu_clk.parent = &osc0;
2270 if (pm_readl(PLL0) & PM_BIT(PLLOSC))
2271 pll0.parent = &osc1;
2272 if (pm_readl(PLL1) & PM_BIT(PLLOSC))
2273 pll1.parent = &osc1;
2275 genclk_init_parent(&gclk0);
2276 genclk_init_parent(&gclk1);
2277 genclk_init_parent(&gclk2);
2278 genclk_init_parent(&gclk3);
2279 genclk_init_parent(&gclk4);
2280 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2281 genclk_init_parent(&atmel_lcdfb0_pixclk);
2282 #endif
2283 genclk_init_parent(&abdac0_sample_clk);
2286 * Build initial dynamic clock list by registering all clocks
2287 * from the array.
2288 * At the same time, turn on all clocks that have at least one
2289 * user already, and turn off everything else. We only do this
2290 * for module clocks, and even though it isn't particularly
2291 * pretty to check the address of the mode function, it should
2292 * do the trick...
2294 for (i = 0; i < ARRAY_SIZE(init_clocks); i++) {
2295 struct clk *clk = init_clocks[i];
2297 /* first, register clock */
2298 at32_clk_register(clk);
2300 if (clk->users == 0)
2301 continue;
2303 if (clk->mode == &cpu_clk_mode)
2304 cpu_mask |= 1 << clk->index;
2305 else if (clk->mode == &hsb_clk_mode)
2306 hsb_mask |= 1 << clk->index;
2307 else if (clk->mode == &pba_clk_mode)
2308 pba_mask |= 1 << clk->index;
2309 else if (clk->mode == &pbb_clk_mode)
2310 pbb_mask |= 1 << clk->index;
2313 pm_writel(CPU_MASK, cpu_mask);
2314 pm_writel(HSB_MASK, hsb_mask);
2315 pm_writel(PBA_MASK, pba_mask);
2316 pm_writel(PBB_MASK, pbb_mask);
2318 /* Initialize the port muxes */
2319 at32_init_pio(&pio0_device);
2320 at32_init_pio(&pio1_device);
2321 at32_init_pio(&pio2_device);
2322 at32_init_pio(&pio3_device);
2323 at32_init_pio(&pio4_device);
2326 struct gen_pool *sram_pool;
2328 static int __init sram_init(void)
2330 struct gen_pool *pool;
2332 /* 1KiB granularity */
2333 pool = gen_pool_create(10, -1);
2334 if (!pool)
2335 goto fail;
2337 if (gen_pool_add(pool, 0x24000000, 0x8000, -1))
2338 goto err_pool_add;
2340 sram_pool = pool;
2341 return 0;
2343 err_pool_add:
2344 gen_pool_destroy(pool);
2345 fail:
2346 pr_err("Failed to create SRAM pool\n");
2347 return -ENOMEM;
2349 core_initcall(sram_init);