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.
9 #include <linux/delay.h>
10 #include <linux/dw_dmac.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 <asm/atmel-mci.h>
23 #include <mach/at32ap700x.h>
24 #include <mach/board.h>
25 #include <mach/hmatrix.h>
26 #include <mach/portmux.h>
27 #include <mach/sram.h>
29 #include <video/atmel_lcdc.h>
39 .end = base + 0x3ff, \
40 .flags = IORESOURCE_MEM, \
46 .flags = IORESOURCE_IRQ, \
48 #define NAMED_IRQ(num, _name) \
53 .flags = IORESOURCE_IRQ, \
56 /* REVISIT these assume *every* device supports DMA, but several
57 * don't ... tc, smc, pio, rtc, watchdog, pwm, ps2, and more.
59 #define DEFINE_DEV(_name, _id) \
60 static u64 _name##_id##_dma_mask = DMA_32BIT_MASK; \
61 static struct platform_device _name##_id##_device = { \
65 .dma_mask = &_name##_id##_dma_mask, \
66 .coherent_dma_mask = DMA_32BIT_MASK, \
68 .resource = _name##_id##_resource, \
69 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
71 #define DEFINE_DEV_DATA(_name, _id) \
72 static u64 _name##_id##_dma_mask = DMA_32BIT_MASK; \
73 static struct platform_device _name##_id##_device = { \
77 .dma_mask = &_name##_id##_dma_mask, \
78 .platform_data = &_name##_id##_data, \
79 .coherent_dma_mask = DMA_32BIT_MASK, \
81 .resource = _name##_id##_resource, \
82 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
85 #define select_peripheral(port, pin_mask, periph, flags) \
86 at32_select_periph(GPIO_##port##_BASE, pin_mask, \
89 #define DEV_CLK(_name, devname, bus, _index) \
90 static struct clk devname##_##_name = { \
92 .dev = &devname##_device.dev, \
93 .parent = &bus##_clk, \
94 .mode = bus##_clk_mode, \
95 .get_rate = bus##_clk_get_rate, \
99 static DEFINE_SPINLOCK(pm_lock
);
101 static struct clk osc0
;
102 static struct clk osc1
;
104 static unsigned long osc_get_rate(struct clk
*clk
)
106 return at32_board_osc_rates
[clk
->index
];
109 static unsigned long pll_get_rate(struct clk
*clk
, unsigned long control
)
111 unsigned long div
, mul
, rate
;
113 div
= PM_BFEXT(PLLDIV
, control
) + 1;
114 mul
= PM_BFEXT(PLLMUL
, control
) + 1;
116 rate
= clk
->parent
->get_rate(clk
->parent
);
117 rate
= (rate
+ div
/ 2) / div
;
123 static long pll_set_rate(struct clk
*clk
, unsigned long rate
,
127 unsigned long mul_best_fit
= 0;
129 unsigned long div_min
;
130 unsigned long div_max
;
131 unsigned long div_best_fit
= 0;
133 unsigned long pll_in
;
134 unsigned long actual
= 0;
135 unsigned long rate_error
;
136 unsigned long rate_error_prev
= ~0UL;
139 /* Rate must be between 80 MHz and 200 Mhz. */
140 if (rate
< 80000000UL || rate
> 200000000UL)
143 ctrl
= PM_BF(PLLOPT
, 4);
144 base
= clk
->parent
->get_rate(clk
->parent
);
146 /* PLL input frequency must be between 6 MHz and 32 MHz. */
147 div_min
= DIV_ROUND_UP(base
, 32000000UL);
148 div_max
= base
/ 6000000UL;
150 if (div_max
< div_min
)
153 for (div
= div_min
; div
<= div_max
; div
++) {
154 pll_in
= (base
+ div
/ 2) / div
;
155 mul
= (rate
+ pll_in
/ 2) / pll_in
;
160 actual
= pll_in
* mul
;
161 rate_error
= abs(actual
- rate
);
163 if (rate_error
< rate_error_prev
) {
166 rate_error_prev
= rate_error
;
173 if (div_best_fit
== 0)
176 ctrl
|= PM_BF(PLLMUL
, mul_best_fit
- 1);
177 ctrl
|= PM_BF(PLLDIV
, div_best_fit
- 1);
178 ctrl
|= PM_BF(PLLCOUNT
, 16);
180 if (clk
->parent
== &osc1
)
181 ctrl
|= PM_BIT(PLLOSC
);
188 static unsigned long pll0_get_rate(struct clk
*clk
)
192 control
= pm_readl(PLL0
);
194 return pll_get_rate(clk
, control
);
197 static void pll1_mode(struct clk
*clk
, int enabled
)
199 unsigned long timeout
;
203 ctrl
= pm_readl(PLL1
);
206 if (!PM_BFEXT(PLLMUL
, ctrl
) && !PM_BFEXT(PLLDIV
, ctrl
)) {
207 pr_debug("clk %s: failed to enable, rate not set\n",
212 ctrl
|= PM_BIT(PLLEN
);
213 pm_writel(PLL1
, ctrl
);
215 /* Wait for PLL lock. */
216 for (timeout
= 10000; timeout
; timeout
--) {
217 status
= pm_readl(ISR
);
218 if (status
& PM_BIT(LOCK1
))
223 if (!(status
& PM_BIT(LOCK1
)))
224 printk(KERN_ERR
"clk %s: timeout waiting for lock\n",
227 ctrl
&= ~PM_BIT(PLLEN
);
228 pm_writel(PLL1
, ctrl
);
232 static unsigned long pll1_get_rate(struct clk
*clk
)
236 control
= pm_readl(PLL1
);
238 return pll_get_rate(clk
, control
);
241 static long pll1_set_rate(struct clk
*clk
, unsigned long rate
, int apply
)
244 unsigned long actual_rate
;
246 actual_rate
= pll_set_rate(clk
, rate
, &ctrl
);
249 if (actual_rate
!= rate
)
253 pr_debug(KERN_INFO
"clk %s: new rate %lu (actual rate %lu)\n",
254 clk
->name
, rate
, actual_rate
);
255 pm_writel(PLL1
, ctrl
);
261 static int pll1_set_parent(struct clk
*clk
, struct clk
*parent
)
268 ctrl
= pm_readl(PLL1
);
269 WARN_ON(ctrl
& PM_BIT(PLLEN
));
272 ctrl
&= ~PM_BIT(PLLOSC
);
273 else if (parent
== &osc1
)
274 ctrl
|= PM_BIT(PLLOSC
);
278 pm_writel(PLL1
, ctrl
);
279 clk
->parent
= parent
;
285 * The AT32AP7000 has five primary clock sources: One 32kHz
286 * oscillator, two crystal oscillators and two PLLs.
288 static struct clk osc32k
= {
290 .get_rate
= osc_get_rate
,
294 static struct clk osc0
= {
296 .get_rate
= osc_get_rate
,
300 static struct clk osc1
= {
302 .get_rate
= osc_get_rate
,
305 static struct clk pll0
= {
307 .get_rate
= pll0_get_rate
,
310 static struct clk pll1
= {
313 .get_rate
= pll1_get_rate
,
314 .set_rate
= pll1_set_rate
,
315 .set_parent
= pll1_set_parent
,
320 * The main clock can be either osc0 or pll0. The boot loader may
321 * have chosen one for us, so we don't really know which one until we
322 * have a look at the SM.
324 static struct clk
*main_clock
;
327 * Synchronous clocks are generated from the main clock. The clocks
328 * must satisfy the constraint
329 * fCPU >= fHSB >= fPB
330 * i.e. each clock must not be faster than its parent.
332 static unsigned long bus_clk_get_rate(struct clk
*clk
, unsigned int shift
)
334 return main_clock
->get_rate(main_clock
) >> shift
;
337 static void cpu_clk_mode(struct clk
*clk
, int enabled
)
342 spin_lock_irqsave(&pm_lock
, flags
);
343 mask
= pm_readl(CPU_MASK
);
345 mask
|= 1 << clk
->index
;
347 mask
&= ~(1 << clk
->index
);
348 pm_writel(CPU_MASK
, mask
);
349 spin_unlock_irqrestore(&pm_lock
, flags
);
352 static unsigned long cpu_clk_get_rate(struct clk
*clk
)
354 unsigned long cksel
, shift
= 0;
356 cksel
= pm_readl(CKSEL
);
357 if (cksel
& PM_BIT(CPUDIV
))
358 shift
= PM_BFEXT(CPUSEL
, cksel
) + 1;
360 return bus_clk_get_rate(clk
, shift
);
363 static long cpu_clk_set_rate(struct clk
*clk
, unsigned long rate
, int apply
)
366 unsigned long parent_rate
, child_div
, actual_rate
, div
;
368 parent_rate
= clk
->parent
->get_rate(clk
->parent
);
369 control
= pm_readl(CKSEL
);
371 if (control
& PM_BIT(HSBDIV
))
372 child_div
= 1 << (PM_BFEXT(HSBSEL
, control
) + 1);
376 if (rate
> 3 * (parent_rate
/ 4) || child_div
== 1) {
377 actual_rate
= parent_rate
;
378 control
&= ~PM_BIT(CPUDIV
);
381 div
= (parent_rate
+ rate
/ 2) / rate
;
384 cpusel
= (div
> 1) ? (fls(div
) - 2) : 0;
385 control
= PM_BIT(CPUDIV
) | PM_BFINS(CPUSEL
, cpusel
, control
);
386 actual_rate
= parent_rate
/ (1 << (cpusel
+ 1));
389 pr_debug("clk %s: new rate %lu (actual rate %lu)\n",
390 clk
->name
, rate
, actual_rate
);
393 pm_writel(CKSEL
, control
);
398 static void hsb_clk_mode(struct clk
*clk
, int enabled
)
403 spin_lock_irqsave(&pm_lock
, flags
);
404 mask
= pm_readl(HSB_MASK
);
406 mask
|= 1 << clk
->index
;
408 mask
&= ~(1 << clk
->index
);
409 pm_writel(HSB_MASK
, mask
);
410 spin_unlock_irqrestore(&pm_lock
, flags
);
413 static unsigned long hsb_clk_get_rate(struct clk
*clk
)
415 unsigned long cksel
, shift
= 0;
417 cksel
= pm_readl(CKSEL
);
418 if (cksel
& PM_BIT(HSBDIV
))
419 shift
= PM_BFEXT(HSBSEL
, cksel
) + 1;
421 return bus_clk_get_rate(clk
, shift
);
424 static void pba_clk_mode(struct clk
*clk
, int enabled
)
429 spin_lock_irqsave(&pm_lock
, flags
);
430 mask
= pm_readl(PBA_MASK
);
432 mask
|= 1 << clk
->index
;
434 mask
&= ~(1 << clk
->index
);
435 pm_writel(PBA_MASK
, mask
);
436 spin_unlock_irqrestore(&pm_lock
, flags
);
439 static unsigned long pba_clk_get_rate(struct clk
*clk
)
441 unsigned long cksel
, shift
= 0;
443 cksel
= pm_readl(CKSEL
);
444 if (cksel
& PM_BIT(PBADIV
))
445 shift
= PM_BFEXT(PBASEL
, cksel
) + 1;
447 return bus_clk_get_rate(clk
, shift
);
450 static void pbb_clk_mode(struct clk
*clk
, int enabled
)
455 spin_lock_irqsave(&pm_lock
, flags
);
456 mask
= pm_readl(PBB_MASK
);
458 mask
|= 1 << clk
->index
;
460 mask
&= ~(1 << clk
->index
);
461 pm_writel(PBB_MASK
, mask
);
462 spin_unlock_irqrestore(&pm_lock
, flags
);
465 static unsigned long pbb_clk_get_rate(struct clk
*clk
)
467 unsigned long cksel
, shift
= 0;
469 cksel
= pm_readl(CKSEL
);
470 if (cksel
& PM_BIT(PBBDIV
))
471 shift
= PM_BFEXT(PBBSEL
, cksel
) + 1;
473 return bus_clk_get_rate(clk
, shift
);
476 static struct clk cpu_clk
= {
478 .get_rate
= cpu_clk_get_rate
,
479 .set_rate
= cpu_clk_set_rate
,
482 static struct clk hsb_clk
= {
485 .get_rate
= hsb_clk_get_rate
,
487 static struct clk pba_clk
= {
490 .mode
= hsb_clk_mode
,
491 .get_rate
= pba_clk_get_rate
,
494 static struct clk pbb_clk
= {
497 .mode
= hsb_clk_mode
,
498 .get_rate
= pbb_clk_get_rate
,
503 /* --------------------------------------------------------------------
504 * Generic Clock operations
505 * -------------------------------------------------------------------- */
507 static void genclk_mode(struct clk
*clk
, int enabled
)
511 control
= pm_readl(GCCTRL(clk
->index
));
513 control
|= PM_BIT(CEN
);
515 control
&= ~PM_BIT(CEN
);
516 pm_writel(GCCTRL(clk
->index
), control
);
519 static unsigned long genclk_get_rate(struct clk
*clk
)
522 unsigned long div
= 1;
524 control
= pm_readl(GCCTRL(clk
->index
));
525 if (control
& PM_BIT(DIVEN
))
526 div
= 2 * (PM_BFEXT(DIV
, control
) + 1);
528 return clk
->parent
->get_rate(clk
->parent
) / div
;
531 static long genclk_set_rate(struct clk
*clk
, unsigned long rate
, int apply
)
534 unsigned long parent_rate
, actual_rate
, div
;
536 parent_rate
= clk
->parent
->get_rate(clk
->parent
);
537 control
= pm_readl(GCCTRL(clk
->index
));
539 if (rate
> 3 * parent_rate
/ 4) {
540 actual_rate
= parent_rate
;
541 control
&= ~PM_BIT(DIVEN
);
543 div
= (parent_rate
+ rate
) / (2 * rate
) - 1;
544 control
= PM_BFINS(DIV
, div
, control
) | PM_BIT(DIVEN
);
545 actual_rate
= parent_rate
/ (2 * (div
+ 1));
548 dev_dbg(clk
->dev
, "clk %s: new rate %lu (actual rate %lu)\n",
549 clk
->name
, rate
, actual_rate
);
552 pm_writel(GCCTRL(clk
->index
), control
);
557 int genclk_set_parent(struct clk
*clk
, struct clk
*parent
)
561 dev_dbg(clk
->dev
, "clk %s: new parent %s (was %s)\n",
562 clk
->name
, parent
->name
, clk
->parent
->name
);
564 control
= pm_readl(GCCTRL(clk
->index
));
566 if (parent
== &osc1
|| parent
== &pll1
)
567 control
|= PM_BIT(OSCSEL
);
568 else if (parent
== &osc0
|| parent
== &pll0
)
569 control
&= ~PM_BIT(OSCSEL
);
573 if (parent
== &pll0
|| parent
== &pll1
)
574 control
|= PM_BIT(PLLSEL
);
576 control
&= ~PM_BIT(PLLSEL
);
578 pm_writel(GCCTRL(clk
->index
), control
);
579 clk
->parent
= parent
;
584 static void __init
genclk_init_parent(struct clk
*clk
)
589 BUG_ON(clk
->index
> 7);
591 control
= pm_readl(GCCTRL(clk
->index
));
592 if (control
& PM_BIT(OSCSEL
))
593 parent
= (control
& PM_BIT(PLLSEL
)) ? &pll1
: &osc1
;
595 parent
= (control
& PM_BIT(PLLSEL
)) ? &pll0
: &osc0
;
597 clk
->parent
= parent
;
600 static struct dw_dma_platform_data dw_dmac0_data
= {
604 static struct resource dw_dmac0_resource
[] = {
608 DEFINE_DEV_DATA(dw_dmac
, 0);
609 DEV_CLK(hclk
, dw_dmac0
, hsb
, 10);
611 /* --------------------------------------------------------------------
613 * -------------------------------------------------------------------- */
614 static struct resource at32_pm0_resource
[] = {
618 .flags
= IORESOURCE_MEM
,
623 static struct resource at32ap700x_rtc0_resource
[] = {
627 .flags
= IORESOURCE_MEM
,
632 static struct resource at32_wdt0_resource
[] = {
636 .flags
= IORESOURCE_MEM
,
640 static struct resource at32_eic0_resource
[] = {
644 .flags
= IORESOURCE_MEM
,
649 DEFINE_DEV(at32_pm
, 0);
650 DEFINE_DEV(at32ap700x_rtc
, 0);
651 DEFINE_DEV(at32_wdt
, 0);
652 DEFINE_DEV(at32_eic
, 0);
655 * Peripheral clock for PM, RTC, WDT and EIC. PM will ensure that this
658 static struct clk at32_pm_pclk
= {
660 .dev
= &at32_pm0_device
.dev
,
662 .mode
= pbb_clk_mode
,
663 .get_rate
= pbb_clk_get_rate
,
668 static struct resource intc0_resource
[] = {
671 struct platform_device at32_intc0_device
= {
674 .resource
= intc0_resource
,
675 .num_resources
= ARRAY_SIZE(intc0_resource
),
677 DEV_CLK(pclk
, at32_intc0
, pbb
, 1);
679 static struct clk ebi_clk
= {
682 .mode
= hsb_clk_mode
,
683 .get_rate
= hsb_clk_get_rate
,
686 static struct clk hramc_clk
= {
689 .mode
= hsb_clk_mode
,
690 .get_rate
= hsb_clk_get_rate
,
694 static struct clk sdramc_clk
= {
695 .name
= "sdramc_clk",
697 .mode
= pbb_clk_mode
,
698 .get_rate
= pbb_clk_get_rate
,
703 static struct resource smc0_resource
[] = {
707 DEV_CLK(pclk
, smc0
, pbb
, 13);
708 DEV_CLK(mck
, smc0
, hsb
, 0);
710 static struct platform_device pdc_device
= {
714 DEV_CLK(hclk
, pdc
, hsb
, 4);
715 DEV_CLK(pclk
, pdc
, pba
, 16);
717 static struct clk pico_clk
= {
720 .mode
= cpu_clk_mode
,
721 .get_rate
= cpu_clk_get_rate
,
725 /* --------------------------------------------------------------------
727 * -------------------------------------------------------------------- */
729 struct clk at32_hmatrix_clk
= {
730 .name
= "hmatrix_clk",
732 .mode
= pbb_clk_mode
,
733 .get_rate
= pbb_clk_get_rate
,
739 * Set bits in the HMATRIX Special Function Register (SFR) used by the
740 * External Bus Interface (EBI). This can be used to enable special
741 * features like CompactFlash support, NAND Flash support, etc. on
742 * certain chipselects.
744 static inline void set_ebi_sfr_bits(u32 mask
)
746 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI
, mask
);
749 /* --------------------------------------------------------------------
751 * -------------------------------------------------------------------- */
753 static struct resource at32_tcb0_resource
[] = {
757 static struct platform_device at32_tcb0_device
= {
760 .resource
= at32_tcb0_resource
,
761 .num_resources
= ARRAY_SIZE(at32_tcb0_resource
),
763 DEV_CLK(t0_clk
, at32_tcb0
, pbb
, 3);
765 static struct resource at32_tcb1_resource
[] = {
769 static struct platform_device at32_tcb1_device
= {
772 .resource
= at32_tcb1_resource
,
773 .num_resources
= ARRAY_SIZE(at32_tcb1_resource
),
775 DEV_CLK(t0_clk
, at32_tcb1
, pbb
, 4);
777 /* --------------------------------------------------------------------
779 * -------------------------------------------------------------------- */
781 static struct resource pio0_resource
[] = {
786 DEV_CLK(mck
, pio0
, pba
, 10);
788 static struct resource pio1_resource
[] = {
793 DEV_CLK(mck
, pio1
, pba
, 11);
795 static struct resource pio2_resource
[] = {
800 DEV_CLK(mck
, pio2
, pba
, 12);
802 static struct resource pio3_resource
[] = {
807 DEV_CLK(mck
, pio3
, pba
, 13);
809 static struct resource pio4_resource
[] = {
814 DEV_CLK(mck
, pio4
, pba
, 14);
816 static int __init
system_device_init(void)
818 platform_device_register(&at32_pm0_device
);
819 platform_device_register(&at32_intc0_device
);
820 platform_device_register(&at32ap700x_rtc0_device
);
821 platform_device_register(&at32_wdt0_device
);
822 platform_device_register(&at32_eic0_device
);
823 platform_device_register(&smc0_device
);
824 platform_device_register(&pdc_device
);
825 platform_device_register(&dw_dmac0_device
);
827 platform_device_register(&at32_tcb0_device
);
828 platform_device_register(&at32_tcb1_device
);
830 platform_device_register(&pio0_device
);
831 platform_device_register(&pio1_device
);
832 platform_device_register(&pio2_device
);
833 platform_device_register(&pio3_device
);
834 platform_device_register(&pio4_device
);
838 core_initcall(system_device_init
);
840 /* --------------------------------------------------------------------
842 * -------------------------------------------------------------------- */
843 static struct resource atmel_psif0_resource
[] __initdata
= {
847 .flags
= IORESOURCE_MEM
,
851 static struct clk atmel_psif0_pclk
= {
854 .mode
= pba_clk_mode
,
855 .get_rate
= pba_clk_get_rate
,
859 static struct resource atmel_psif1_resource
[] __initdata
= {
863 .flags
= IORESOURCE_MEM
,
867 static struct clk atmel_psif1_pclk
= {
870 .mode
= pba_clk_mode
,
871 .get_rate
= pba_clk_get_rate
,
875 struct platform_device
*__init
at32_add_device_psif(unsigned int id
)
877 struct platform_device
*pdev
;
880 if (!(id
== 0 || id
== 1))
883 pdev
= platform_device_alloc("atmel_psif", id
);
889 pin_mask
= (1 << 8) | (1 << 9); /* CLOCK & DATA */
891 if (platform_device_add_resources(pdev
, atmel_psif0_resource
,
892 ARRAY_SIZE(atmel_psif0_resource
)))
893 goto err_add_resources
;
894 atmel_psif0_pclk
.dev
= &pdev
->dev
;
895 select_peripheral(PIOA
, pin_mask
, PERIPH_A
, 0);
898 pin_mask
= (1 << 11) | (1 << 12); /* CLOCK & DATA */
900 if (platform_device_add_resources(pdev
, atmel_psif1_resource
,
901 ARRAY_SIZE(atmel_psif1_resource
)))
902 goto err_add_resources
;
903 atmel_psif1_pclk
.dev
= &pdev
->dev
;
904 select_peripheral(PIOB
, pin_mask
, PERIPH_A
, 0);
910 platform_device_add(pdev
);
914 platform_device_put(pdev
);
918 /* --------------------------------------------------------------------
920 * -------------------------------------------------------------------- */
922 static struct atmel_uart_data atmel_usart0_data
= {
926 static struct resource atmel_usart0_resource
[] = {
930 DEFINE_DEV_DATA(atmel_usart
, 0);
931 DEV_CLK(usart
, atmel_usart0
, pba
, 3);
933 static struct atmel_uart_data atmel_usart1_data
= {
937 static struct resource atmel_usart1_resource
[] = {
941 DEFINE_DEV_DATA(atmel_usart
, 1);
942 DEV_CLK(usart
, atmel_usart1
, pba
, 4);
944 static struct atmel_uart_data atmel_usart2_data
= {
948 static struct resource atmel_usart2_resource
[] = {
952 DEFINE_DEV_DATA(atmel_usart
, 2);
953 DEV_CLK(usart
, atmel_usart2
, pba
, 5);
955 static struct atmel_uart_data atmel_usart3_data
= {
959 static struct resource atmel_usart3_resource
[] = {
963 DEFINE_DEV_DATA(atmel_usart
, 3);
964 DEV_CLK(usart
, atmel_usart3
, pba
, 6);
966 static inline void configure_usart0_pins(void)
968 u32 pin_mask
= (1 << 8) | (1 << 9); /* RXD & TXD */
970 select_peripheral(PIOA
, pin_mask
, PERIPH_B
, 0);
973 static inline void configure_usart1_pins(void)
975 u32 pin_mask
= (1 << 17) | (1 << 18); /* RXD & TXD */
977 select_peripheral(PIOA
, pin_mask
, PERIPH_A
, 0);
980 static inline void configure_usart2_pins(void)
982 u32 pin_mask
= (1 << 26) | (1 << 27); /* RXD & TXD */
984 select_peripheral(PIOB
, pin_mask
, PERIPH_B
, 0);
987 static inline void configure_usart3_pins(void)
989 u32 pin_mask
= (1 << 18) | (1 << 17); /* RXD & TXD */
991 select_peripheral(PIOB
, pin_mask
, PERIPH_B
, 0);
994 static struct platform_device
*__initdata at32_usarts
[4];
996 void __init
at32_map_usart(unsigned int hw_id
, unsigned int line
)
998 struct platform_device
*pdev
;
1002 pdev
= &atmel_usart0_device
;
1003 configure_usart0_pins();
1006 pdev
= &atmel_usart1_device
;
1007 configure_usart1_pins();
1010 pdev
= &atmel_usart2_device
;
1011 configure_usart2_pins();
1014 pdev
= &atmel_usart3_device
;
1015 configure_usart3_pins();
1021 if (PXSEG(pdev
->resource
[0].start
) == P4SEG
) {
1022 /* Addresses in the P4 segment are permanently mapped 1:1 */
1023 struct atmel_uart_data
*data
= pdev
->dev
.platform_data
;
1024 data
->regs
= (void __iomem
*)pdev
->resource
[0].start
;
1028 at32_usarts
[line
] = pdev
;
1031 struct platform_device
*__init
at32_add_device_usart(unsigned int id
)
1033 platform_device_register(at32_usarts
[id
]);
1034 return at32_usarts
[id
];
1037 struct platform_device
*atmel_default_console_device
;
1039 void __init
at32_setup_serial_console(unsigned int usart_id
)
1041 atmel_default_console_device
= at32_usarts
[usart_id
];
1044 /* --------------------------------------------------------------------
1046 * -------------------------------------------------------------------- */
1048 #ifdef CONFIG_CPU_AT32AP7000
1049 static struct eth_platform_data macb0_data
;
1050 static struct resource macb0_resource
[] = {
1054 DEFINE_DEV_DATA(macb
, 0);
1055 DEV_CLK(hclk
, macb0
, hsb
, 8);
1056 DEV_CLK(pclk
, macb0
, pbb
, 6);
1058 static struct eth_platform_data macb1_data
;
1059 static struct resource macb1_resource
[] = {
1063 DEFINE_DEV_DATA(macb
, 1);
1064 DEV_CLK(hclk
, macb1
, hsb
, 9);
1065 DEV_CLK(pclk
, macb1
, pbb
, 7);
1067 struct platform_device
*__init
1068 at32_add_device_eth(unsigned int id
, struct eth_platform_data
*data
)
1070 struct platform_device
*pdev
;
1075 pdev
= &macb0_device
;
1077 pin_mask
= (1 << 3); /* TXD0 */
1078 pin_mask
|= (1 << 4); /* TXD1 */
1079 pin_mask
|= (1 << 7); /* TXEN */
1080 pin_mask
|= (1 << 8); /* TXCK */
1081 pin_mask
|= (1 << 9); /* RXD0 */
1082 pin_mask
|= (1 << 10); /* RXD1 */
1083 pin_mask
|= (1 << 13); /* RXER */
1084 pin_mask
|= (1 << 15); /* RXDV */
1085 pin_mask
|= (1 << 16); /* MDC */
1086 pin_mask
|= (1 << 17); /* MDIO */
1088 if (!data
->is_rmii
) {
1089 pin_mask
|= (1 << 0); /* COL */
1090 pin_mask
|= (1 << 1); /* CRS */
1091 pin_mask
|= (1 << 2); /* TXER */
1092 pin_mask
|= (1 << 5); /* TXD2 */
1093 pin_mask
|= (1 << 6); /* TXD3 */
1094 pin_mask
|= (1 << 11); /* RXD2 */
1095 pin_mask
|= (1 << 12); /* RXD3 */
1096 pin_mask
|= (1 << 14); /* RXCK */
1097 #ifndef CONFIG_BOARD_MIMC200
1098 pin_mask
|= (1 << 18); /* SPD */
1102 select_peripheral(PIOC
, pin_mask
, PERIPH_A
, 0);
1107 pdev
= &macb1_device
;
1109 pin_mask
= (1 << 13); /* TXD0 */
1110 pin_mask
|= (1 << 14); /* TXD1 */
1111 pin_mask
|= (1 << 11); /* TXEN */
1112 pin_mask
|= (1 << 12); /* TXCK */
1113 pin_mask
|= (1 << 10); /* RXD0 */
1114 pin_mask
|= (1 << 6); /* RXD1 */
1115 pin_mask
|= (1 << 5); /* RXER */
1116 pin_mask
|= (1 << 4); /* RXDV */
1117 pin_mask
|= (1 << 3); /* MDC */
1118 pin_mask
|= (1 << 2); /* MDIO */
1120 #ifndef CONFIG_BOARD_MIMC200
1122 pin_mask
|= (1 << 15); /* SPD */
1125 select_peripheral(PIOD
, pin_mask
, PERIPH_B
, 0);
1127 if (!data
->is_rmii
) {
1128 pin_mask
= (1 << 19); /* COL */
1129 pin_mask
|= (1 << 23); /* CRS */
1130 pin_mask
|= (1 << 26); /* TXER */
1131 pin_mask
|= (1 << 27); /* TXD2 */
1132 pin_mask
|= (1 << 28); /* TXD3 */
1133 pin_mask
|= (1 << 29); /* RXD2 */
1134 pin_mask
|= (1 << 30); /* RXD3 */
1135 pin_mask
|= (1 << 24); /* RXCK */
1137 select_peripheral(PIOC
, pin_mask
, PERIPH_B
, 0);
1145 memcpy(pdev
->dev
.platform_data
, data
, sizeof(struct eth_platform_data
));
1146 platform_device_register(pdev
);
1152 /* --------------------------------------------------------------------
1154 * -------------------------------------------------------------------- */
1155 static struct resource atmel_spi0_resource
[] = {
1159 DEFINE_DEV(atmel_spi
, 0);
1160 DEV_CLK(spi_clk
, atmel_spi0
, pba
, 0);
1162 static struct resource atmel_spi1_resource
[] = {
1166 DEFINE_DEV(atmel_spi
, 1);
1167 DEV_CLK(spi_clk
, atmel_spi1
, pba
, 1);
1170 at32_spi_setup_slaves(unsigned int bus_num
, struct spi_board_info
*b
,
1171 unsigned int n
, const u8
*pins
)
1173 unsigned int pin
, mode
;
1175 for (; n
; n
--, b
++) {
1176 b
->bus_num
= bus_num
;
1177 if (b
->chip_select
>= 4)
1179 pin
= (unsigned)b
->controller_data
;
1181 pin
= pins
[b
->chip_select
];
1182 b
->controller_data
= (void *)pin
;
1184 mode
= AT32_GPIOF_OUTPUT
;
1185 if (!(b
->mode
& SPI_CS_HIGH
))
1186 mode
|= AT32_GPIOF_HIGH
;
1187 at32_select_gpio(pin
, mode
);
1191 struct platform_device
*__init
1192 at32_add_device_spi(unsigned int id
, struct spi_board_info
*b
, unsigned int n
)
1195 * Manage the chipselects as GPIOs, normally using the same pins
1196 * the SPI controller expects; but boards can use other pins.
1198 static u8 __initdata spi0_pins
[] =
1199 { GPIO_PIN_PA(3), GPIO_PIN_PA(4),
1200 GPIO_PIN_PA(5), GPIO_PIN_PA(20), };
1201 static u8 __initdata spi1_pins
[] =
1202 { GPIO_PIN_PB(2), GPIO_PIN_PB(3),
1203 GPIO_PIN_PB(4), GPIO_PIN_PA(27), };
1204 struct platform_device
*pdev
;
1209 pdev
= &atmel_spi0_device
;
1210 pin_mask
= (1 << 1) | (1 << 2); /* MOSI & SCK */
1212 /* pullup MISO so a level is always defined */
1213 select_peripheral(PIOA
, (1 << 0), PERIPH_A
, AT32_GPIOF_PULLUP
);
1214 select_peripheral(PIOA
, pin_mask
, PERIPH_A
, 0);
1216 at32_spi_setup_slaves(0, b
, n
, spi0_pins
);
1220 pdev
= &atmel_spi1_device
;
1221 pin_mask
= (1 << 1) | (1 << 5); /* MOSI */
1223 /* pullup MISO so a level is always defined */
1224 select_peripheral(PIOB
, (1 << 0), PERIPH_B
, AT32_GPIOF_PULLUP
);
1225 select_peripheral(PIOB
, pin_mask
, PERIPH_B
, 0);
1227 at32_spi_setup_slaves(1, b
, n
, spi1_pins
);
1234 spi_register_board_info(b
, n
);
1235 platform_device_register(pdev
);
1239 /* --------------------------------------------------------------------
1241 * -------------------------------------------------------------------- */
1242 static struct resource atmel_twi0_resource
[] __initdata
= {
1246 static struct clk atmel_twi0_pclk
= {
1249 .mode
= pba_clk_mode
,
1250 .get_rate
= pba_clk_get_rate
,
1254 struct platform_device
*__init
at32_add_device_twi(unsigned int id
,
1255 struct i2c_board_info
*b
,
1258 struct platform_device
*pdev
;
1264 pdev
= platform_device_alloc("atmel_twi", id
);
1268 if (platform_device_add_resources(pdev
, atmel_twi0_resource
,
1269 ARRAY_SIZE(atmel_twi0_resource
)))
1270 goto err_add_resources
;
1272 pin_mask
= (1 << 6) | (1 << 7); /* SDA & SDL */
1274 select_peripheral(PIOA
, pin_mask
, PERIPH_A
, 0);
1276 atmel_twi0_pclk
.dev
= &pdev
->dev
;
1279 i2c_register_board_info(id
, b
, n
);
1281 platform_device_add(pdev
);
1285 platform_device_put(pdev
);
1289 /* --------------------------------------------------------------------
1291 * -------------------------------------------------------------------- */
1292 static struct resource atmel_mci0_resource
[] __initdata
= {
1296 static struct clk atmel_mci0_pclk
= {
1299 .mode
= pbb_clk_mode
,
1300 .get_rate
= pbb_clk_get_rate
,
1304 struct platform_device
*__init
1305 at32_add_device_mci(unsigned int id
, struct mci_platform_data
*data
)
1307 struct platform_device
*pdev
;
1308 struct dw_dma_slave
*dws
;
1312 if (id
!= 0 || !data
)
1315 /* Must have at least one usable slot */
1316 if (!data
->slot
[0].bus_width
&& !data
->slot
[1].bus_width
)
1319 pdev
= platform_device_alloc("atmel_mci", id
);
1323 if (platform_device_add_resources(pdev
, atmel_mci0_resource
,
1324 ARRAY_SIZE(atmel_mci0_resource
)))
1327 if (data
->dma_slave
)
1328 dws
= kmemdup(to_dw_dma_slave(data
->dma_slave
),
1329 sizeof(struct dw_dma_slave
), GFP_KERNEL
);
1331 dws
= kzalloc(sizeof(struct dw_dma_slave
), GFP_KERNEL
);
1333 dws
->slave
.dev
= &pdev
->dev
;
1334 dws
->slave
.dma_dev
= &dw_dmac0_device
.dev
;
1335 dws
->slave
.reg_width
= DMA_SLAVE_WIDTH_32BIT
;
1336 dws
->cfg_hi
= (DWC_CFGH_SRC_PER(0)
1337 | DWC_CFGH_DST_PER(1));
1338 dws
->cfg_lo
&= ~(DWC_CFGL_HS_DST_POL
1339 | DWC_CFGL_HS_SRC_POL
);
1341 data
->dma_slave
= &dws
->slave
;
1343 if (platform_device_add_data(pdev
, data
,
1344 sizeof(struct mci_platform_data
)))
1347 /* CLK line is common to both slots */
1348 pioa_mask
= 1 << 10;
1350 switch (data
->slot
[0].bus_width
) {
1352 pioa_mask
|= 1 << 13; /* DATA1 */
1353 pioa_mask
|= 1 << 14; /* DATA2 */
1354 pioa_mask
|= 1 << 15; /* DATA3 */
1357 pioa_mask
|= 1 << 11; /* CMD */
1358 pioa_mask
|= 1 << 12; /* DATA0 */
1360 if (gpio_is_valid(data
->slot
[0].detect_pin
))
1361 at32_select_gpio(data
->slot
[0].detect_pin
, 0);
1362 if (gpio_is_valid(data
->slot
[0].wp_pin
))
1363 at32_select_gpio(data
->slot
[0].wp_pin
, 0);
1366 /* Slot is unused */
1372 select_peripheral(PIOA
, pioa_mask
, PERIPH_A
, 0);
1375 switch (data
->slot
[1].bus_width
) {
1377 piob_mask
|= 1 << 8; /* DATA1 */
1378 piob_mask
|= 1 << 9; /* DATA2 */
1379 piob_mask
|= 1 << 10; /* DATA3 */
1382 piob_mask
|= 1 << 6; /* CMD */
1383 piob_mask
|= 1 << 7; /* DATA0 */
1384 select_peripheral(PIOB
, piob_mask
, PERIPH_B
, 0);
1386 if (gpio_is_valid(data
->slot
[1].detect_pin
))
1387 at32_select_gpio(data
->slot
[1].detect_pin
, 0);
1388 if (gpio_is_valid(data
->slot
[1].wp_pin
))
1389 at32_select_gpio(data
->slot
[1].wp_pin
, 0);
1392 /* Slot is unused */
1395 if (!data
->slot
[0].bus_width
)
1398 data
->slot
[1].bus_width
= 0;
1402 atmel_mci0_pclk
.dev
= &pdev
->dev
;
1404 platform_device_add(pdev
);
1408 platform_device_put(pdev
);
1412 /* --------------------------------------------------------------------
1414 * -------------------------------------------------------------------- */
1415 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
1416 static struct atmel_lcdfb_info atmel_lcdfb0_data
;
1417 static struct resource atmel_lcdfb0_resource
[] = {
1419 .start
= 0xff000000,
1421 .flags
= IORESOURCE_MEM
,
1425 /* Placeholder for pre-allocated fb memory */
1426 .start
= 0x00000000,
1431 DEFINE_DEV_DATA(atmel_lcdfb
, 0);
1432 DEV_CLK(hck1
, atmel_lcdfb0
, hsb
, 7);
1433 static struct clk atmel_lcdfb0_pixclk
= {
1435 .dev
= &atmel_lcdfb0_device
.dev
,
1436 .mode
= genclk_mode
,
1437 .get_rate
= genclk_get_rate
,
1438 .set_rate
= genclk_set_rate
,
1439 .set_parent
= genclk_set_parent
,
1443 struct platform_device
*__init
1444 at32_add_device_lcdc(unsigned int id
, struct atmel_lcdfb_info
*data
,
1445 unsigned long fbmem_start
, unsigned long fbmem_len
,
1448 struct platform_device
*pdev
;
1449 struct atmel_lcdfb_info
*info
;
1450 struct fb_monspecs
*monspecs
;
1451 struct fb_videomode
*modedb
;
1452 unsigned int modedb_size
;
1453 u32 portc_mask
, portd_mask
, porte_mask
;
1456 * Do a deep copy of the fb data, monspecs and modedb. Make
1457 * sure all allocations are done before setting up the
1460 monspecs
= kmemdup(data
->default_monspecs
,
1461 sizeof(struct fb_monspecs
), GFP_KERNEL
);
1465 modedb_size
= sizeof(struct fb_videomode
) * monspecs
->modedb_len
;
1466 modedb
= kmemdup(monspecs
->modedb
, modedb_size
, GFP_KERNEL
);
1468 goto err_dup_modedb
;
1469 monspecs
->modedb
= modedb
;
1473 pdev
= &atmel_lcdfb0_device
;
1475 if (pin_mask
== 0ULL)
1476 /* Default to "full" lcdc control signals and 24bit */
1477 pin_mask
= ATMEL_LCDC_PRI_24BIT
| ATMEL_LCDC_PRI_CONTROL
;
1479 /* LCDC on port C */
1480 portc_mask
= pin_mask
& 0xfff80000;
1481 select_peripheral(PIOC
, portc_mask
, PERIPH_A
, 0);
1483 /* LCDC on port D */
1484 portd_mask
= pin_mask
& 0x0003ffff;
1485 select_peripheral(PIOD
, portd_mask
, PERIPH_A
, 0);
1487 /* LCDC on port E */
1488 porte_mask
= (pin_mask
>> 32) & 0x0007ffff;
1489 select_peripheral(PIOE
, porte_mask
, PERIPH_B
, 0);
1491 clk_set_parent(&atmel_lcdfb0_pixclk
, &pll0
);
1492 clk_set_rate(&atmel_lcdfb0_pixclk
, clk_get_rate(&pll0
));
1496 goto err_invalid_id
;
1500 pdev
->resource
[2].start
= fbmem_start
;
1501 pdev
->resource
[2].end
= fbmem_start
+ fbmem_len
- 1;
1502 pdev
->resource
[2].flags
= IORESOURCE_MEM
;
1505 info
= pdev
->dev
.platform_data
;
1506 memcpy(info
, data
, sizeof(struct atmel_lcdfb_info
));
1507 info
->default_monspecs
= monspecs
;
1509 platform_device_register(pdev
);
1520 /* --------------------------------------------------------------------
1522 * -------------------------------------------------------------------- */
1523 static struct resource atmel_pwm0_resource
[] __initdata
= {
1527 static struct clk atmel_pwm0_mck
= {
1530 .mode
= pbb_clk_mode
,
1531 .get_rate
= pbb_clk_get_rate
,
1535 struct platform_device
*__init
at32_add_device_pwm(u32 mask
)
1537 struct platform_device
*pdev
;
1543 pdev
= platform_device_alloc("atmel_pwm", 0);
1547 if (platform_device_add_resources(pdev
, atmel_pwm0_resource
,
1548 ARRAY_SIZE(atmel_pwm0_resource
)))
1551 if (platform_device_add_data(pdev
, &mask
, sizeof(mask
)))
1555 if (mask
& (1 << 0))
1556 pin_mask
|= (1 << 28);
1557 if (mask
& (1 << 1))
1558 pin_mask
|= (1 << 29);
1560 select_peripheral(PIOA
, pin_mask
, PERIPH_A
, 0);
1563 if (mask
& (1 << 2))
1564 pin_mask
|= (1 << 21);
1565 if (mask
& (1 << 3))
1566 pin_mask
|= (1 << 22);
1568 select_peripheral(PIOA
, pin_mask
, PERIPH_B
, 0);
1570 atmel_pwm0_mck
.dev
= &pdev
->dev
;
1572 platform_device_add(pdev
);
1577 platform_device_put(pdev
);
1581 /* --------------------------------------------------------------------
1583 * -------------------------------------------------------------------- */
1584 static struct resource ssc0_resource
[] = {
1589 DEV_CLK(pclk
, ssc0
, pba
, 7);
1591 static struct resource ssc1_resource
[] = {
1596 DEV_CLK(pclk
, ssc1
, pba
, 8);
1598 static struct resource ssc2_resource
[] = {
1603 DEV_CLK(pclk
, ssc2
, pba
, 9);
1605 struct platform_device
*__init
1606 at32_add_device_ssc(unsigned int id
, unsigned int flags
)
1608 struct platform_device
*pdev
;
1613 pdev
= &ssc0_device
;
1614 if (flags
& ATMEL_SSC_RF
)
1615 pin_mask
|= (1 << 21); /* RF */
1616 if (flags
& ATMEL_SSC_RK
)
1617 pin_mask
|= (1 << 22); /* RK */
1618 if (flags
& ATMEL_SSC_TK
)
1619 pin_mask
|= (1 << 23); /* TK */
1620 if (flags
& ATMEL_SSC_TF
)
1621 pin_mask
|= (1 << 24); /* TF */
1622 if (flags
& ATMEL_SSC_TD
)
1623 pin_mask
|= (1 << 25); /* TD */
1624 if (flags
& ATMEL_SSC_RD
)
1625 pin_mask
|= (1 << 26); /* RD */
1628 select_peripheral(PIOA
, pin_mask
, PERIPH_A
, 0);
1632 pdev
= &ssc1_device
;
1633 if (flags
& ATMEL_SSC_RF
)
1634 pin_mask
|= (1 << 0); /* RF */
1635 if (flags
& ATMEL_SSC_RK
)
1636 pin_mask
|= (1 << 1); /* RK */
1637 if (flags
& ATMEL_SSC_TK
)
1638 pin_mask
|= (1 << 2); /* TK */
1639 if (flags
& ATMEL_SSC_TF
)
1640 pin_mask
|= (1 << 3); /* TF */
1641 if (flags
& ATMEL_SSC_TD
)
1642 pin_mask
|= (1 << 4); /* TD */
1643 if (flags
& ATMEL_SSC_RD
)
1644 pin_mask
|= (1 << 5); /* RD */
1647 select_peripheral(PIOA
, pin_mask
, PERIPH_B
, 0);
1651 pdev
= &ssc2_device
;
1652 if (flags
& ATMEL_SSC_TD
)
1653 pin_mask
|= (1 << 13); /* TD */
1654 if (flags
& ATMEL_SSC_RD
)
1655 pin_mask
|= (1 << 14); /* RD */
1656 if (flags
& ATMEL_SSC_TK
)
1657 pin_mask
|= (1 << 15); /* TK */
1658 if (flags
& ATMEL_SSC_TF
)
1659 pin_mask
|= (1 << 16); /* TF */
1660 if (flags
& ATMEL_SSC_RF
)
1661 pin_mask
|= (1 << 17); /* RF */
1662 if (flags
& ATMEL_SSC_RK
)
1663 pin_mask
|= (1 << 18); /* RK */
1666 select_peripheral(PIOB
, pin_mask
, PERIPH_A
, 0);
1673 platform_device_register(pdev
);
1677 /* --------------------------------------------------------------------
1678 * USB Device Controller
1679 * -------------------------------------------------------------------- */
1680 static struct resource usba0_resource
[] __initdata
= {
1682 .start
= 0xff300000,
1684 .flags
= IORESOURCE_MEM
,
1686 .start
= 0xfff03000,
1688 .flags
= IORESOURCE_MEM
,
1692 static struct clk usba0_pclk
= {
1695 .mode
= pbb_clk_mode
,
1696 .get_rate
= pbb_clk_get_rate
,
1699 static struct clk usba0_hclk
= {
1702 .mode
= hsb_clk_mode
,
1703 .get_rate
= hsb_clk_get_rate
,
1707 #define EP(nam, idx, maxpkt, maxbk, dma, isoc) \
1711 .fifo_size = maxpkt, \
1712 .nr_banks = maxbk, \
1717 static struct usba_ep_data at32_usba_ep
[] __initdata
= {
1718 EP("ep0", 0, 64, 1, 0, 0),
1719 EP("ep1", 1, 512, 2, 1, 1),
1720 EP("ep2", 2, 512, 2, 1, 1),
1721 EP("ep3-int", 3, 64, 3, 1, 0),
1722 EP("ep4-int", 4, 64, 3, 1, 0),
1723 EP("ep5", 5, 1024, 3, 1, 1),
1724 EP("ep6", 6, 1024, 3, 1, 1),
1729 struct platform_device
*__init
1730 at32_add_device_usba(unsigned int id
, struct usba_platform_data
*data
)
1733 * pdata doesn't have room for any endpoints, so we need to
1734 * append room for the ones we need right after it.
1737 struct usba_platform_data pdata
;
1738 struct usba_ep_data ep
[7];
1740 struct platform_device
*pdev
;
1745 pdev
= platform_device_alloc("atmel_usba_udc", 0);
1749 if (platform_device_add_resources(pdev
, usba0_resource
,
1750 ARRAY_SIZE(usba0_resource
)))
1754 usba_data
.pdata
.vbus_pin
= data
->vbus_pin
;
1756 usba_data
.pdata
.vbus_pin
= -EINVAL
;
1758 data
= &usba_data
.pdata
;
1759 data
->num_ep
= ARRAY_SIZE(at32_usba_ep
);
1760 memcpy(data
->ep
, at32_usba_ep
, sizeof(at32_usba_ep
));
1762 if (platform_device_add_data(pdev
, data
, sizeof(usba_data
)))
1765 if (data
->vbus_pin
>= 0)
1766 at32_select_gpio(data
->vbus_pin
, 0);
1768 usba0_pclk
.dev
= &pdev
->dev
;
1769 usba0_hclk
.dev
= &pdev
->dev
;
1771 platform_device_add(pdev
);
1776 platform_device_put(pdev
);
1780 /* --------------------------------------------------------------------
1781 * IDE / CompactFlash
1782 * -------------------------------------------------------------------- */
1783 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7001)
1784 static struct resource at32_smc_cs4_resource
[] __initdata
= {
1786 .start
= 0x04000000,
1788 .flags
= IORESOURCE_MEM
,
1790 IRQ(~0UL), /* Magic IRQ will be overridden */
1792 static struct resource at32_smc_cs5_resource
[] __initdata
= {
1794 .start
= 0x20000000,
1796 .flags
= IORESOURCE_MEM
,
1798 IRQ(~0UL), /* Magic IRQ will be overridden */
1801 static int __init
at32_init_ide_or_cf(struct platform_device
*pdev
,
1802 unsigned int cs
, unsigned int extint
)
1804 static unsigned int extint_pin_map
[4] __initdata
= {
1810 static bool common_pins_initialized __initdata
= false;
1811 unsigned int extint_pin
;
1815 if (extint
>= ARRAY_SIZE(extint_pin_map
))
1817 extint_pin
= extint_pin_map
[extint
];
1821 ret
= platform_device_add_resources(pdev
,
1822 at32_smc_cs4_resource
,
1823 ARRAY_SIZE(at32_smc_cs4_resource
));
1828 select_peripheral(PIOE
, (1 << 21), PERIPH_A
, 0);
1829 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI
, HMATRIX_EBI_CF0_ENABLE
);
1832 ret
= platform_device_add_resources(pdev
,
1833 at32_smc_cs5_resource
,
1834 ARRAY_SIZE(at32_smc_cs5_resource
));
1839 select_peripheral(PIOE
, (1 << 22), PERIPH_A
, 0);
1840 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI
, HMATRIX_EBI_CF1_ENABLE
);
1846 if (!common_pins_initialized
) {
1847 pin_mask
= (1 << 19); /* CFCE1 -> CS0_N */
1848 pin_mask
|= (1 << 20); /* CFCE2 -> CS1_N */
1849 pin_mask
|= (1 << 23); /* CFRNW -> DIR */
1850 pin_mask
|= (1 << 24); /* NWAIT <- IORDY */
1852 select_peripheral(PIOE
, pin_mask
, PERIPH_A
, 0);
1854 common_pins_initialized
= true;
1857 select_peripheral(PIOB
, extint_pin
, PERIPH_A
, AT32_GPIOF_DEGLITCH
);
1859 pdev
->resource
[1].start
= EIM_IRQ_BASE
+ extint
;
1860 pdev
->resource
[1].end
= pdev
->resource
[1].start
;
1865 struct platform_device
*__init
1866 at32_add_device_ide(unsigned int id
, unsigned int extint
,
1867 struct ide_platform_data
*data
)
1869 struct platform_device
*pdev
;
1871 pdev
= platform_device_alloc("at32_ide", id
);
1875 if (platform_device_add_data(pdev
, data
,
1876 sizeof(struct ide_platform_data
)))
1879 if (at32_init_ide_or_cf(pdev
, data
->cs
, extint
))
1882 platform_device_add(pdev
);
1886 platform_device_put(pdev
);
1890 struct platform_device
*__init
1891 at32_add_device_cf(unsigned int id
, unsigned int extint
,
1892 struct cf_platform_data
*data
)
1894 struct platform_device
*pdev
;
1896 pdev
= platform_device_alloc("at32_cf", id
);
1900 if (platform_device_add_data(pdev
, data
,
1901 sizeof(struct cf_platform_data
)))
1904 if (at32_init_ide_or_cf(pdev
, data
->cs
, extint
))
1907 if (gpio_is_valid(data
->detect_pin
))
1908 at32_select_gpio(data
->detect_pin
, AT32_GPIOF_DEGLITCH
);
1909 if (gpio_is_valid(data
->reset_pin
))
1910 at32_select_gpio(data
->reset_pin
, 0);
1911 if (gpio_is_valid(data
->vcc_pin
))
1912 at32_select_gpio(data
->vcc_pin
, 0);
1913 /* READY is used as extint, so we can't select it as gpio */
1915 platform_device_add(pdev
);
1919 platform_device_put(pdev
);
1924 /* --------------------------------------------------------------------
1925 * NAND Flash / SmartMedia
1926 * -------------------------------------------------------------------- */
1927 static struct resource smc_cs3_resource
[] __initdata
= {
1929 .start
= 0x0c000000,
1931 .flags
= IORESOURCE_MEM
,
1933 .start
= 0xfff03c00,
1935 .flags
= IORESOURCE_MEM
,
1939 struct platform_device
*__init
1940 at32_add_device_nand(unsigned int id
, struct atmel_nand_data
*data
)
1942 struct platform_device
*pdev
;
1944 if (id
!= 0 || !data
)
1947 pdev
= platform_device_alloc("atmel_nand", id
);
1951 if (platform_device_add_resources(pdev
, smc_cs3_resource
,
1952 ARRAY_SIZE(smc_cs3_resource
)))
1955 if (platform_device_add_data(pdev
, data
,
1956 sizeof(struct atmel_nand_data
)))
1959 hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI
, HMATRIX_EBI_NAND_ENABLE
);
1960 if (data
->enable_pin
)
1961 at32_select_gpio(data
->enable_pin
,
1962 AT32_GPIOF_OUTPUT
| AT32_GPIOF_HIGH
);
1964 at32_select_gpio(data
->rdy_pin
, 0);
1966 at32_select_gpio(data
->det_pin
, 0);
1968 platform_device_add(pdev
);
1972 platform_device_put(pdev
);
1976 /* --------------------------------------------------------------------
1978 * -------------------------------------------------------------------- */
1979 static struct resource atmel_ac97c0_resource
[] __initdata
= {
1983 static struct clk atmel_ac97c0_pclk
= {
1986 .mode
= pbb_clk_mode
,
1987 .get_rate
= pbb_clk_get_rate
,
1991 struct platform_device
*__init
1992 at32_add_device_ac97c(unsigned int id
, struct ac97c_platform_data
*data
)
1994 struct platform_device
*pdev
;
1995 struct ac97c_platform_data _data
;
2001 pdev
= platform_device_alloc("atmel_ac97c", id
);
2005 if (platform_device_add_resources(pdev
, atmel_ac97c0_resource
,
2006 ARRAY_SIZE(atmel_ac97c0_resource
)))
2011 memset(data
, 0, sizeof(struct ac97c_platform_data
));
2012 data
->reset_pin
= GPIO_PIN_NONE
;
2015 data
->dma_rx_periph_id
= 3;
2016 data
->dma_tx_periph_id
= 4;
2017 data
->dma_controller_id
= 0;
2019 if (platform_device_add_data(pdev
, data
,
2020 sizeof(struct ac97c_platform_data
)))
2023 pin_mask
= (1 << 20) | (1 << 21); /* SDO & SYNC */
2024 pin_mask
|= (1 << 22) | (1 << 23); /* SCLK & SDI */
2026 select_peripheral(PIOB
, pin_mask
, PERIPH_B
, 0);
2028 /* TODO: gpio_is_valid(data->reset_pin) with kernel 2.6.26. */
2029 if (data
->reset_pin
!= GPIO_PIN_NONE
)
2030 at32_select_gpio(data
->reset_pin
, 0);
2032 atmel_ac97c0_pclk
.dev
= &pdev
->dev
;
2034 platform_device_add(pdev
);
2038 platform_device_put(pdev
);
2042 /* --------------------------------------------------------------------
2044 * -------------------------------------------------------------------- */
2045 static struct resource abdac0_resource
[] __initdata
= {
2049 static struct clk abdac0_pclk
= {
2052 .mode
= pbb_clk_mode
,
2053 .get_rate
= pbb_clk_get_rate
,
2056 static struct clk abdac0_sample_clk
= {
2057 .name
= "sample_clk",
2058 .mode
= genclk_mode
,
2059 .get_rate
= genclk_get_rate
,
2060 .set_rate
= genclk_set_rate
,
2061 .set_parent
= genclk_set_parent
,
2065 struct platform_device
*__init
at32_add_device_abdac(unsigned int id
)
2067 struct platform_device
*pdev
;
2073 pdev
= platform_device_alloc("abdac", id
);
2077 if (platform_device_add_resources(pdev
, abdac0_resource
,
2078 ARRAY_SIZE(abdac0_resource
)))
2079 goto err_add_resources
;
2081 pin_mask
= (1 << 20) | (1 << 22); /* DATA1 & DATAN1 */
2082 pin_mask
|= (1 << 21) | (1 << 23); /* DATA0 & DATAN0 */
2084 select_peripheral(PIOB
, pin_mask
, PERIPH_A
, 0);
2086 abdac0_pclk
.dev
= &pdev
->dev
;
2087 abdac0_sample_clk
.dev
= &pdev
->dev
;
2089 platform_device_add(pdev
);
2093 platform_device_put(pdev
);
2097 /* --------------------------------------------------------------------
2099 * -------------------------------------------------------------------- */
2100 static struct clk gclk0
= {
2102 .mode
= genclk_mode
,
2103 .get_rate
= genclk_get_rate
,
2104 .set_rate
= genclk_set_rate
,
2105 .set_parent
= genclk_set_parent
,
2108 static struct clk gclk1
= {
2110 .mode
= genclk_mode
,
2111 .get_rate
= genclk_get_rate
,
2112 .set_rate
= genclk_set_rate
,
2113 .set_parent
= genclk_set_parent
,
2116 static struct clk gclk2
= {
2118 .mode
= genclk_mode
,
2119 .get_rate
= genclk_get_rate
,
2120 .set_rate
= genclk_set_rate
,
2121 .set_parent
= genclk_set_parent
,
2124 static struct clk gclk3
= {
2126 .mode
= genclk_mode
,
2127 .get_rate
= genclk_get_rate
,
2128 .set_rate
= genclk_set_rate
,
2129 .set_parent
= genclk_set_parent
,
2132 static struct clk gclk4
= {
2134 .mode
= genclk_mode
,
2135 .get_rate
= genclk_get_rate
,
2136 .set_rate
= genclk_set_rate
,
2137 .set_parent
= genclk_set_parent
,
2141 static __initdata
struct clk
*init_clocks
[] = {
2172 &atmel_usart0_usart
,
2173 &atmel_usart1_usart
,
2174 &atmel_usart2_usart
,
2175 &atmel_usart3_usart
,
2177 #if defined(CONFIG_CPU_AT32AP7000)
2183 &atmel_spi0_spi_clk
,
2184 &atmel_spi1_spi_clk
,
2187 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2189 &atmel_lcdfb0_pixclk
,
2206 void __init
setup_platform(void)
2208 u32 cpu_mask
= 0, hsb_mask
= 0, pba_mask
= 0, pbb_mask
= 0;
2211 if (pm_readl(MCCTRL
) & PM_BIT(PLLSEL
)) {
2213 cpu_clk
.parent
= &pll0
;
2216 cpu_clk
.parent
= &osc0
;
2219 if (pm_readl(PLL0
) & PM_BIT(PLLOSC
))
2220 pll0
.parent
= &osc1
;
2221 if (pm_readl(PLL1
) & PM_BIT(PLLOSC
))
2222 pll1
.parent
= &osc1
;
2224 genclk_init_parent(&gclk0
);
2225 genclk_init_parent(&gclk1
);
2226 genclk_init_parent(&gclk2
);
2227 genclk_init_parent(&gclk3
);
2228 genclk_init_parent(&gclk4
);
2229 #if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2230 genclk_init_parent(&atmel_lcdfb0_pixclk
);
2232 genclk_init_parent(&abdac0_sample_clk
);
2235 * Build initial dynamic clock list by registering all clocks
2237 * At the same time, turn on all clocks that have at least one
2238 * user already, and turn off everything else. We only do this
2239 * for module clocks, and even though it isn't particularly
2240 * pretty to check the address of the mode function, it should
2243 for (i
= 0; i
< ARRAY_SIZE(init_clocks
); i
++) {
2244 struct clk
*clk
= init_clocks
[i
];
2246 /* first, register clock */
2247 at32_clk_register(clk
);
2249 if (clk
->users
== 0)
2252 if (clk
->mode
== &cpu_clk_mode
)
2253 cpu_mask
|= 1 << clk
->index
;
2254 else if (clk
->mode
== &hsb_clk_mode
)
2255 hsb_mask
|= 1 << clk
->index
;
2256 else if (clk
->mode
== &pba_clk_mode
)
2257 pba_mask
|= 1 << clk
->index
;
2258 else if (clk
->mode
== &pbb_clk_mode
)
2259 pbb_mask
|= 1 << clk
->index
;
2262 pm_writel(CPU_MASK
, cpu_mask
);
2263 pm_writel(HSB_MASK
, hsb_mask
);
2264 pm_writel(PBA_MASK
, pba_mask
);
2265 pm_writel(PBB_MASK
, pbb_mask
);
2267 /* Initialize the port muxes */
2268 at32_init_pio(&pio0_device
);
2269 at32_init_pio(&pio1_device
);
2270 at32_init_pio(&pio2_device
);
2271 at32_init_pio(&pio3_device
);
2272 at32_init_pio(&pio4_device
);
2275 struct gen_pool
*sram_pool
;
2277 static int __init
sram_init(void)
2279 struct gen_pool
*pool
;
2281 /* 1KiB granularity */
2282 pool
= gen_pool_create(10, -1);
2286 if (gen_pool_add(pool
, 0x24000000, 0x8000, -1))
2293 gen_pool_destroy(pool
);
2295 pr_err("Failed to create SRAM pool\n");
2298 core_initcall(sram_init
);