[PATCH] atmel_serial: Pass fixed register mappings through platform_data
[pv_ops_mirror.git] / arch / avr32 / mach-at32ap / at32ap7000.c
blob3dd3058750878cf0fedc2895bc0b1442a49b2438
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/init.h>
10 #include <linux/platform_device.h>
12 #include <asm/io.h>
14 #include <asm/arch/board.h>
15 #include <asm/arch/portmux.h>
16 #include <asm/arch/sm.h>
18 #include "clock.h"
19 #include "pio.h"
20 #include "sm.h"
22 #define PBMEM(base) \
23 { \
24 .start = base, \
25 .end = base + 0x3ff, \
26 .flags = IORESOURCE_MEM, \
28 #define IRQ(num) \
29 { \
30 .start = num, \
31 .end = num, \
32 .flags = IORESOURCE_IRQ, \
34 #define NAMED_IRQ(num, _name) \
35 { \
36 .start = num, \
37 .end = num, \
38 .name = _name, \
39 .flags = IORESOURCE_IRQ, \
42 #define DEFINE_DEV(_name, _id) \
43 static struct platform_device _name##_id##_device = { \
44 .name = #_name, \
45 .id = _id, \
46 .resource = _name##_id##_resource, \
47 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
49 #define DEFINE_DEV_DATA(_name, _id) \
50 static struct platform_device _name##_id##_device = { \
51 .name = #_name, \
52 .id = _id, \
53 .dev = { \
54 .platform_data = &_name##_id##_data, \
55 }, \
56 .resource = _name##_id##_resource, \
57 .num_resources = ARRAY_SIZE(_name##_id##_resource), \
60 #define DEV_CLK(_name, devname, bus, _index) \
61 static struct clk devname##_##_name = { \
62 .name = #_name, \
63 .dev = &devname##_device.dev, \
64 .parent = &bus##_clk, \
65 .mode = bus##_clk_mode, \
66 .get_rate = bus##_clk_get_rate, \
67 .index = _index, \
70 enum {
71 PIOA,
72 PIOB,
73 PIOC,
74 PIOD,
77 enum {
78 FUNC_A,
79 FUNC_B,
82 unsigned long at32ap7000_osc_rates[3] = {
83 [0] = 32768,
84 /* FIXME: these are ATSTK1002-specific */
85 [1] = 20000000,
86 [2] = 12000000,
89 static unsigned long osc_get_rate(struct clk *clk)
91 return at32ap7000_osc_rates[clk->index];
94 static unsigned long pll_get_rate(struct clk *clk, unsigned long control)
96 unsigned long div, mul, rate;
98 if (!(control & SM_BIT(PLLEN)))
99 return 0;
101 div = SM_BFEXT(PLLDIV, control) + 1;
102 mul = SM_BFEXT(PLLMUL, control) + 1;
104 rate = clk->parent->get_rate(clk->parent);
105 rate = (rate + div / 2) / div;
106 rate *= mul;
108 return rate;
111 static unsigned long pll0_get_rate(struct clk *clk)
113 u32 control;
115 control = sm_readl(&system_manager, PM_PLL0);
117 return pll_get_rate(clk, control);
120 static unsigned long pll1_get_rate(struct clk *clk)
122 u32 control;
124 control = sm_readl(&system_manager, PM_PLL1);
126 return pll_get_rate(clk, control);
130 * The AT32AP7000 has five primary clock sources: One 32kHz
131 * oscillator, two crystal oscillators and two PLLs.
133 static struct clk osc32k = {
134 .name = "osc32k",
135 .get_rate = osc_get_rate,
136 .users = 1,
137 .index = 0,
139 static struct clk osc0 = {
140 .name = "osc0",
141 .get_rate = osc_get_rate,
142 .users = 1,
143 .index = 1,
145 static struct clk osc1 = {
146 .name = "osc1",
147 .get_rate = osc_get_rate,
148 .index = 2,
150 static struct clk pll0 = {
151 .name = "pll0",
152 .get_rate = pll0_get_rate,
153 .parent = &osc0,
155 static struct clk pll1 = {
156 .name = "pll1",
157 .get_rate = pll1_get_rate,
158 .parent = &osc0,
162 * The main clock can be either osc0 or pll0. The boot loader may
163 * have chosen one for us, so we don't really know which one until we
164 * have a look at the SM.
166 static struct clk *main_clock;
169 * Synchronous clocks are generated from the main clock. The clocks
170 * must satisfy the constraint
171 * fCPU >= fHSB >= fPB
172 * i.e. each clock must not be faster than its parent.
174 static unsigned long bus_clk_get_rate(struct clk *clk, unsigned int shift)
176 return main_clock->get_rate(main_clock) >> shift;
179 static void cpu_clk_mode(struct clk *clk, int enabled)
181 struct at32_sm *sm = &system_manager;
182 unsigned long flags;
183 u32 mask;
185 spin_lock_irqsave(&sm->lock, flags);
186 mask = sm_readl(sm, PM_CPU_MASK);
187 if (enabled)
188 mask |= 1 << clk->index;
189 else
190 mask &= ~(1 << clk->index);
191 sm_writel(sm, PM_CPU_MASK, mask);
192 spin_unlock_irqrestore(&sm->lock, flags);
195 static unsigned long cpu_clk_get_rate(struct clk *clk)
197 unsigned long cksel, shift = 0;
199 cksel = sm_readl(&system_manager, PM_CKSEL);
200 if (cksel & SM_BIT(CPUDIV))
201 shift = SM_BFEXT(CPUSEL, cksel) + 1;
203 return bus_clk_get_rate(clk, shift);
206 static void hsb_clk_mode(struct clk *clk, int enabled)
208 struct at32_sm *sm = &system_manager;
209 unsigned long flags;
210 u32 mask;
212 spin_lock_irqsave(&sm->lock, flags);
213 mask = sm_readl(sm, PM_HSB_MASK);
214 if (enabled)
215 mask |= 1 << clk->index;
216 else
217 mask &= ~(1 << clk->index);
218 sm_writel(sm, PM_HSB_MASK, mask);
219 spin_unlock_irqrestore(&sm->lock, flags);
222 static unsigned long hsb_clk_get_rate(struct clk *clk)
224 unsigned long cksel, shift = 0;
226 cksel = sm_readl(&system_manager, PM_CKSEL);
227 if (cksel & SM_BIT(HSBDIV))
228 shift = SM_BFEXT(HSBSEL, cksel) + 1;
230 return bus_clk_get_rate(clk, shift);
233 static void pba_clk_mode(struct clk *clk, int enabled)
235 struct at32_sm *sm = &system_manager;
236 unsigned long flags;
237 u32 mask;
239 spin_lock_irqsave(&sm->lock, flags);
240 mask = sm_readl(sm, PM_PBA_MASK);
241 if (enabled)
242 mask |= 1 << clk->index;
243 else
244 mask &= ~(1 << clk->index);
245 sm_writel(sm, PM_PBA_MASK, mask);
246 spin_unlock_irqrestore(&sm->lock, flags);
249 static unsigned long pba_clk_get_rate(struct clk *clk)
251 unsigned long cksel, shift = 0;
253 cksel = sm_readl(&system_manager, PM_CKSEL);
254 if (cksel & SM_BIT(PBADIV))
255 shift = SM_BFEXT(PBASEL, cksel) + 1;
257 return bus_clk_get_rate(clk, shift);
260 static void pbb_clk_mode(struct clk *clk, int enabled)
262 struct at32_sm *sm = &system_manager;
263 unsigned long flags;
264 u32 mask;
266 spin_lock_irqsave(&sm->lock, flags);
267 mask = sm_readl(sm, PM_PBB_MASK);
268 if (enabled)
269 mask |= 1 << clk->index;
270 else
271 mask &= ~(1 << clk->index);
272 sm_writel(sm, PM_PBB_MASK, mask);
273 spin_unlock_irqrestore(&sm->lock, flags);
276 static unsigned long pbb_clk_get_rate(struct clk *clk)
278 unsigned long cksel, shift = 0;
280 cksel = sm_readl(&system_manager, PM_CKSEL);
281 if (cksel & SM_BIT(PBBDIV))
282 shift = SM_BFEXT(PBBSEL, cksel) + 1;
284 return bus_clk_get_rate(clk, shift);
287 static struct clk cpu_clk = {
288 .name = "cpu",
289 .get_rate = cpu_clk_get_rate,
290 .users = 1,
292 static struct clk hsb_clk = {
293 .name = "hsb",
294 .parent = &cpu_clk,
295 .get_rate = hsb_clk_get_rate,
297 static struct clk pba_clk = {
298 .name = "pba",
299 .parent = &hsb_clk,
300 .mode = hsb_clk_mode,
301 .get_rate = pba_clk_get_rate,
302 .index = 1,
304 static struct clk pbb_clk = {
305 .name = "pbb",
306 .parent = &hsb_clk,
307 .mode = hsb_clk_mode,
308 .get_rate = pbb_clk_get_rate,
309 .users = 1,
310 .index = 2,
313 /* --------------------------------------------------------------------
314 * Generic Clock operations
315 * -------------------------------------------------------------------- */
317 static void genclk_mode(struct clk *clk, int enabled)
319 u32 control;
321 BUG_ON(clk->index > 7);
323 control = sm_readl(&system_manager, PM_GCCTRL + 4 * clk->index);
324 if (enabled)
325 control |= SM_BIT(CEN);
326 else
327 control &= ~SM_BIT(CEN);
328 sm_writel(&system_manager, PM_GCCTRL + 4 * clk->index, control);
331 static unsigned long genclk_get_rate(struct clk *clk)
333 u32 control;
334 unsigned long div = 1;
336 BUG_ON(clk->index > 7);
338 if (!clk->parent)
339 return 0;
341 control = sm_readl(&system_manager, PM_GCCTRL + 4 * clk->index);
342 if (control & SM_BIT(DIVEN))
343 div = 2 * (SM_BFEXT(DIV, control) + 1);
345 return clk->parent->get_rate(clk->parent) / div;
348 static long genclk_set_rate(struct clk *clk, unsigned long rate, int apply)
350 u32 control;
351 unsigned long parent_rate, actual_rate, div;
353 BUG_ON(clk->index > 7);
355 if (!clk->parent)
356 return 0;
358 parent_rate = clk->parent->get_rate(clk->parent);
359 control = sm_readl(&system_manager, PM_GCCTRL + 4 * clk->index);
361 if (rate > 3 * parent_rate / 4) {
362 actual_rate = parent_rate;
363 control &= ~SM_BIT(DIVEN);
364 } else {
365 div = (parent_rate + rate) / (2 * rate) - 1;
366 control = SM_BFINS(DIV, div, control) | SM_BIT(DIVEN);
367 actual_rate = parent_rate / (2 * (div + 1));
370 printk("clk %s: new rate %lu (actual rate %lu)\n",
371 clk->name, rate, actual_rate);
373 if (apply)
374 sm_writel(&system_manager, PM_GCCTRL + 4 * clk->index,
375 control);
377 return actual_rate;
380 int genclk_set_parent(struct clk *clk, struct clk *parent)
382 u32 control;
384 BUG_ON(clk->index > 7);
386 printk("clk %s: new parent %s (was %s)\n",
387 clk->name, parent->name,
388 clk->parent ? clk->parent->name : "(null)");
390 control = sm_readl(&system_manager, PM_GCCTRL + 4 * clk->index);
392 if (parent == &osc1 || parent == &pll1)
393 control |= SM_BIT(OSCSEL);
394 else if (parent == &osc0 || parent == &pll0)
395 control &= ~SM_BIT(OSCSEL);
396 else
397 return -EINVAL;
399 if (parent == &pll0 || parent == &pll1)
400 control |= SM_BIT(PLLSEL);
401 else
402 control &= ~SM_BIT(PLLSEL);
404 sm_writel(&system_manager, PM_GCCTRL + 4 * clk->index, control);
405 clk->parent = parent;
407 return 0;
410 /* --------------------------------------------------------------------
411 * System peripherals
412 * -------------------------------------------------------------------- */
413 static struct resource sm_resource[] = {
414 PBMEM(0xfff00000),
415 NAMED_IRQ(19, "eim"),
416 NAMED_IRQ(20, "pm"),
417 NAMED_IRQ(21, "rtc"),
419 struct platform_device at32_sm_device = {
420 .name = "sm",
421 .id = 0,
422 .resource = sm_resource,
423 .num_resources = ARRAY_SIZE(sm_resource),
425 DEV_CLK(pclk, at32_sm, pbb, 0);
427 static struct resource intc0_resource[] = {
428 PBMEM(0xfff00400),
430 struct platform_device at32_intc0_device = {
431 .name = "intc",
432 .id = 0,
433 .resource = intc0_resource,
434 .num_resources = ARRAY_SIZE(intc0_resource),
436 DEV_CLK(pclk, at32_intc0, pbb, 1);
438 static struct clk ebi_clk = {
439 .name = "ebi",
440 .parent = &hsb_clk,
441 .mode = hsb_clk_mode,
442 .get_rate = hsb_clk_get_rate,
443 .users = 1,
445 static struct clk hramc_clk = {
446 .name = "hramc",
447 .parent = &hsb_clk,
448 .mode = hsb_clk_mode,
449 .get_rate = hsb_clk_get_rate,
450 .users = 1,
453 static struct resource smc0_resource[] = {
454 PBMEM(0xfff03400),
456 DEFINE_DEV(smc, 0);
457 DEV_CLK(pclk, smc0, pbb, 13);
458 DEV_CLK(mck, smc0, hsb, 0);
460 static struct platform_device pdc_device = {
461 .name = "pdc",
462 .id = 0,
464 DEV_CLK(hclk, pdc, hsb, 4);
465 DEV_CLK(pclk, pdc, pba, 16);
467 static struct clk pico_clk = {
468 .name = "pico",
469 .parent = &cpu_clk,
470 .mode = cpu_clk_mode,
471 .get_rate = cpu_clk_get_rate,
472 .users = 1,
475 /* --------------------------------------------------------------------
476 * PIO
477 * -------------------------------------------------------------------- */
479 static struct resource pio0_resource[] = {
480 PBMEM(0xffe02800),
481 IRQ(13),
483 DEFINE_DEV(pio, 0);
484 DEV_CLK(mck, pio0, pba, 10);
486 static struct resource pio1_resource[] = {
487 PBMEM(0xffe02c00),
488 IRQ(14),
490 DEFINE_DEV(pio, 1);
491 DEV_CLK(mck, pio1, pba, 11);
493 static struct resource pio2_resource[] = {
494 PBMEM(0xffe03000),
495 IRQ(15),
497 DEFINE_DEV(pio, 2);
498 DEV_CLK(mck, pio2, pba, 12);
500 static struct resource pio3_resource[] = {
501 PBMEM(0xffe03400),
502 IRQ(16),
504 DEFINE_DEV(pio, 3);
505 DEV_CLK(mck, pio3, pba, 13);
507 void __init at32_add_system_devices(void)
509 system_manager.eim_first_irq = NR_INTERNAL_IRQS;
511 platform_device_register(&at32_sm_device);
512 platform_device_register(&at32_intc0_device);
513 platform_device_register(&smc0_device);
514 platform_device_register(&pdc_device);
516 platform_device_register(&pio0_device);
517 platform_device_register(&pio1_device);
518 platform_device_register(&pio2_device);
519 platform_device_register(&pio3_device);
522 /* --------------------------------------------------------------------
523 * USART
524 * -------------------------------------------------------------------- */
526 static struct atmel_uart_data atmel_usart0_data = {
527 .use_dma_tx = 1,
528 .use_dma_rx = 1,
530 static struct resource atmel_usart0_resource[] = {
531 PBMEM(0xffe00c00),
532 IRQ(7),
534 DEFINE_DEV_DATA(atmel_usart, 0);
535 DEV_CLK(usart, atmel_usart0, pba, 4);
537 static struct atmel_uart_data atmel_usart1_data = {
538 .use_dma_tx = 1,
539 .use_dma_rx = 1,
541 static struct resource atmel_usart1_resource[] = {
542 PBMEM(0xffe01000),
543 IRQ(7),
545 DEFINE_DEV_DATA(atmel_usart, 1);
546 DEV_CLK(usart, atmel_usart1, pba, 4);
548 static struct atmel_uart_data atmel_usart2_data = {
549 .use_dma_tx = 1,
550 .use_dma_rx = 1,
552 static struct resource atmel_usart2_resource[] = {
553 PBMEM(0xffe01400),
554 IRQ(8),
556 DEFINE_DEV_DATA(atmel_usart, 2);
557 DEV_CLK(usart, atmel_usart2, pba, 5);
559 static struct atmel_uart_data atmel_usart3_data = {
560 .use_dma_tx = 1,
561 .use_dma_rx = 1,
563 static struct resource atmel_usart3_resource[] = {
564 PBMEM(0xffe01800),
565 IRQ(9),
567 DEFINE_DEV_DATA(atmel_usart, 3);
568 DEV_CLK(usart, atmel_usart3, pba, 6);
570 static inline void configure_usart0_pins(void)
572 portmux_set_func(PIOA, 8, FUNC_B); /* RXD */
573 portmux_set_func(PIOA, 9, FUNC_B); /* TXD */
576 static inline void configure_usart1_pins(void)
578 portmux_set_func(PIOA, 17, FUNC_A); /* RXD */
579 portmux_set_func(PIOA, 18, FUNC_A); /* TXD */
582 static inline void configure_usart2_pins(void)
584 portmux_set_func(PIOB, 26, FUNC_B); /* RXD */
585 portmux_set_func(PIOB, 27, FUNC_B); /* TXD */
588 static inline void configure_usart3_pins(void)
590 portmux_set_func(PIOB, 18, FUNC_B); /* RXD */
591 portmux_set_func(PIOB, 17, FUNC_B); /* TXD */
594 static struct platform_device *setup_usart(unsigned int id)
596 struct platform_device *pdev;
598 switch (id) {
599 case 0:
600 pdev = &atmel_usart0_device;
601 configure_usart0_pins();
602 break;
603 case 1:
604 pdev = &atmel_usart1_device;
605 configure_usart1_pins();
606 break;
607 case 2:
608 pdev = &atmel_usart2_device;
609 configure_usart2_pins();
610 break;
611 case 3:
612 pdev = &atmel_usart3_device;
613 configure_usart3_pins();
614 break;
615 default:
616 return NULL;
619 if (PXSEG(pdev->resource[0].start) == P4SEG) {
620 /* Addresses in the P4 segment are permanently mapped 1:1 */
621 struct atmel_uart_data *data = pdev->dev.platform_data;
622 data->regs = (void __iomem *)pdev->resource[0].start;
625 return pdev;
628 struct platform_device *__init at32_add_device_usart(unsigned int id)
630 struct platform_device *pdev;
632 pdev = setup_usart(id);
633 if (pdev)
634 platform_device_register(pdev);
636 return pdev;
639 struct platform_device *atmel_default_console_device;
641 void __init at32_setup_serial_console(unsigned int usart_id)
643 atmel_default_console_device = setup_usart(usart_id);
646 /* --------------------------------------------------------------------
647 * Ethernet
648 * -------------------------------------------------------------------- */
650 static struct eth_platform_data macb0_data;
651 static struct resource macb0_resource[] = {
652 PBMEM(0xfff01800),
653 IRQ(25),
655 DEFINE_DEV_DATA(macb, 0);
656 DEV_CLK(hclk, macb0, hsb, 8);
657 DEV_CLK(pclk, macb0, pbb, 6);
659 struct platform_device *__init
660 at32_add_device_eth(unsigned int id, struct eth_platform_data *data)
662 struct platform_device *pdev;
664 switch (id) {
665 case 0:
666 pdev = &macb0_device;
668 portmux_set_func(PIOC, 3, FUNC_A); /* TXD0 */
669 portmux_set_func(PIOC, 4, FUNC_A); /* TXD1 */
670 portmux_set_func(PIOC, 7, FUNC_A); /* TXEN */
671 portmux_set_func(PIOC, 8, FUNC_A); /* TXCK */
672 portmux_set_func(PIOC, 9, FUNC_A); /* RXD0 */
673 portmux_set_func(PIOC, 10, FUNC_A); /* RXD1 */
674 portmux_set_func(PIOC, 13, FUNC_A); /* RXER */
675 portmux_set_func(PIOC, 15, FUNC_A); /* RXDV */
676 portmux_set_func(PIOC, 16, FUNC_A); /* MDC */
677 portmux_set_func(PIOC, 17, FUNC_A); /* MDIO */
679 if (!data->is_rmii) {
680 portmux_set_func(PIOC, 0, FUNC_A); /* COL */
681 portmux_set_func(PIOC, 1, FUNC_A); /* CRS */
682 portmux_set_func(PIOC, 2, FUNC_A); /* TXER */
683 portmux_set_func(PIOC, 5, FUNC_A); /* TXD2 */
684 portmux_set_func(PIOC, 6, FUNC_A); /* TXD3 */
685 portmux_set_func(PIOC, 11, FUNC_A); /* RXD2 */
686 portmux_set_func(PIOC, 12, FUNC_A); /* RXD3 */
687 portmux_set_func(PIOC, 14, FUNC_A); /* RXCK */
688 portmux_set_func(PIOC, 18, FUNC_A); /* SPD */
690 break;
692 default:
693 return NULL;
696 memcpy(pdev->dev.platform_data, data, sizeof(struct eth_platform_data));
697 platform_device_register(pdev);
699 return pdev;
702 /* --------------------------------------------------------------------
703 * SPI
704 * -------------------------------------------------------------------- */
705 static struct resource spi0_resource[] = {
706 PBMEM(0xffe00000),
707 IRQ(3),
709 DEFINE_DEV(spi, 0);
710 DEV_CLK(mck, spi0, pba, 0);
712 struct platform_device *__init at32_add_device_spi(unsigned int id)
714 struct platform_device *pdev;
716 switch (id) {
717 case 0:
718 pdev = &spi0_device;
719 portmux_set_func(PIOA, 0, FUNC_A); /* MISO */
720 portmux_set_func(PIOA, 1, FUNC_A); /* MOSI */
721 portmux_set_func(PIOA, 2, FUNC_A); /* SCK */
722 portmux_set_func(PIOA, 3, FUNC_A); /* NPCS0 */
723 portmux_set_func(PIOA, 4, FUNC_A); /* NPCS1 */
724 portmux_set_func(PIOA, 5, FUNC_A); /* NPCS2 */
725 break;
727 default:
728 return NULL;
731 platform_device_register(pdev);
732 return pdev;
735 /* --------------------------------------------------------------------
736 * LCDC
737 * -------------------------------------------------------------------- */
738 static struct lcdc_platform_data lcdc0_data;
739 static struct resource lcdc0_resource[] = {
741 .start = 0xff000000,
742 .end = 0xff000fff,
743 .flags = IORESOURCE_MEM,
745 IRQ(1),
747 DEFINE_DEV_DATA(lcdc, 0);
748 DEV_CLK(hclk, lcdc0, hsb, 7);
749 static struct clk lcdc0_pixclk = {
750 .name = "pixclk",
751 .dev = &lcdc0_device.dev,
752 .mode = genclk_mode,
753 .get_rate = genclk_get_rate,
754 .set_rate = genclk_set_rate,
755 .set_parent = genclk_set_parent,
756 .index = 7,
759 struct platform_device *__init
760 at32_add_device_lcdc(unsigned int id, struct lcdc_platform_data *data)
762 struct platform_device *pdev;
764 switch (id) {
765 case 0:
766 pdev = &lcdc0_device;
767 portmux_set_func(PIOC, 19, FUNC_A); /* CC */
768 portmux_set_func(PIOC, 20, FUNC_A); /* HSYNC */
769 portmux_set_func(PIOC, 21, FUNC_A); /* PCLK */
770 portmux_set_func(PIOC, 22, FUNC_A); /* VSYNC */
771 portmux_set_func(PIOC, 23, FUNC_A); /* DVAL */
772 portmux_set_func(PIOC, 24, FUNC_A); /* MODE */
773 portmux_set_func(PIOC, 25, FUNC_A); /* PWR */
774 portmux_set_func(PIOC, 26, FUNC_A); /* DATA0 */
775 portmux_set_func(PIOC, 27, FUNC_A); /* DATA1 */
776 portmux_set_func(PIOC, 28, FUNC_A); /* DATA2 */
777 portmux_set_func(PIOC, 29, FUNC_A); /* DATA3 */
778 portmux_set_func(PIOC, 30, FUNC_A); /* DATA4 */
779 portmux_set_func(PIOC, 31, FUNC_A); /* DATA5 */
780 portmux_set_func(PIOD, 0, FUNC_A); /* DATA6 */
781 portmux_set_func(PIOD, 1, FUNC_A); /* DATA7 */
782 portmux_set_func(PIOD, 2, FUNC_A); /* DATA8 */
783 portmux_set_func(PIOD, 3, FUNC_A); /* DATA9 */
784 portmux_set_func(PIOD, 4, FUNC_A); /* DATA10 */
785 portmux_set_func(PIOD, 5, FUNC_A); /* DATA11 */
786 portmux_set_func(PIOD, 6, FUNC_A); /* DATA12 */
787 portmux_set_func(PIOD, 7, FUNC_A); /* DATA13 */
788 portmux_set_func(PIOD, 8, FUNC_A); /* DATA14 */
789 portmux_set_func(PIOD, 9, FUNC_A); /* DATA15 */
790 portmux_set_func(PIOD, 10, FUNC_A); /* DATA16 */
791 portmux_set_func(PIOD, 11, FUNC_A); /* DATA17 */
792 portmux_set_func(PIOD, 12, FUNC_A); /* DATA18 */
793 portmux_set_func(PIOD, 13, FUNC_A); /* DATA19 */
794 portmux_set_func(PIOD, 14, FUNC_A); /* DATA20 */
795 portmux_set_func(PIOD, 15, FUNC_A); /* DATA21 */
796 portmux_set_func(PIOD, 16, FUNC_A); /* DATA22 */
797 portmux_set_func(PIOD, 17, FUNC_A); /* DATA23 */
799 clk_set_parent(&lcdc0_pixclk, &pll0);
800 clk_set_rate(&lcdc0_pixclk, clk_get_rate(&pll0));
801 break;
803 default:
804 return NULL;
807 memcpy(pdev->dev.platform_data, data,
808 sizeof(struct lcdc_platform_data));
810 platform_device_register(pdev);
811 return pdev;
814 struct clk *at32_clock_list[] = {
815 &osc32k,
816 &osc0,
817 &osc1,
818 &pll0,
819 &pll1,
820 &cpu_clk,
821 &hsb_clk,
822 &pba_clk,
823 &pbb_clk,
824 &at32_sm_pclk,
825 &at32_intc0_pclk,
826 &ebi_clk,
827 &hramc_clk,
828 &smc0_pclk,
829 &smc0_mck,
830 &pdc_hclk,
831 &pdc_pclk,
832 &pico_clk,
833 &pio0_mck,
834 &pio1_mck,
835 &pio2_mck,
836 &pio3_mck,
837 &atmel_usart0_usart,
838 &atmel_usart1_usart,
839 &atmel_usart2_usart,
840 &atmel_usart3_usart,
841 &macb0_hclk,
842 &macb0_pclk,
843 &spi0_mck,
844 &lcdc0_hclk,
845 &lcdc0_pixclk,
847 unsigned int at32_nr_clocks = ARRAY_SIZE(at32_clock_list);
849 void __init at32_portmux_init(void)
851 at32_init_pio(&pio0_device);
852 at32_init_pio(&pio1_device);
853 at32_init_pio(&pio2_device);
854 at32_init_pio(&pio3_device);
857 void __init at32_clock_init(void)
859 struct at32_sm *sm = &system_manager;
860 u32 cpu_mask = 0, hsb_mask = 0, pba_mask = 0, pbb_mask = 0;
861 int i;
863 if (sm_readl(sm, PM_MCCTRL) & SM_BIT(PLLSEL))
864 main_clock = &pll0;
865 else
866 main_clock = &osc0;
868 if (sm_readl(sm, PM_PLL0) & SM_BIT(PLLOSC))
869 pll0.parent = &osc1;
870 if (sm_readl(sm, PM_PLL1) & SM_BIT(PLLOSC))
871 pll1.parent = &osc1;
874 * Turn on all clocks that have at least one user already, and
875 * turn off everything else. We only do this for module
876 * clocks, and even though it isn't particularly pretty to
877 * check the address of the mode function, it should do the
878 * trick...
880 for (i = 0; i < ARRAY_SIZE(at32_clock_list); i++) {
881 struct clk *clk = at32_clock_list[i];
883 if (clk->mode == &cpu_clk_mode)
884 cpu_mask |= 1 << clk->index;
885 else if (clk->mode == &hsb_clk_mode)
886 hsb_mask |= 1 << clk->index;
887 else if (clk->mode == &pba_clk_mode)
888 pba_mask |= 1 << clk->index;
889 else if (clk->mode == &pbb_clk_mode)
890 pbb_mask |= 1 << clk->index;
893 sm_writel(sm, PM_CPU_MASK, cpu_mask);
894 sm_writel(sm, PM_HSB_MASK, hsb_mask);
895 sm_writel(sm, PM_PBA_MASK, pba_mask);
896 sm_writel(sm, PM_PBB_MASK, pbb_mask);