2 * arch/arm/mach-kirkwood/common.c
4 * Core functions for Marvell Kirkwood SoCs
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/serial_8250.h>
15 #include <linux/ata_platform.h>
16 #include <linux/mtd/nand.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/clk-provider.h>
19 #include <linux/spinlock.h>
20 #include <linux/mv643xx_i2c.h>
21 #include <linux/timex.h>
22 #include <linux/kexec.h>
25 #include <asm/mach/map.h>
26 #include <asm/mach/time.h>
27 #include <mach/kirkwood.h>
28 #include <mach/bridge-regs.h>
29 #include <linux/platform_data/asoc-kirkwood.h>
30 #include <plat/cache-feroceon-l2.h>
31 #include <linux/platform_data/mmc-mvsdio.h>
32 #include <linux/platform_data/mtd-orion_nand.h>
33 #include <linux/platform_data/usb-ehci-orion.h>
34 #include <plat/common.h>
35 #include <plat/time.h>
36 #include <plat/addr-map.h>
37 #include <linux/platform_data/dma-mv_xor.h>
40 /*****************************************************************************
42 ****************************************************************************/
43 static struct map_desc kirkwood_io_desc
[] __initdata
= {
45 .virtual = (unsigned long) KIRKWOOD_REGS_VIRT_BASE
,
46 .pfn
= __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE
),
47 .length
= KIRKWOOD_REGS_SIZE
,
52 void __init
kirkwood_map_io(void)
54 iotable_init(kirkwood_io_desc
, ARRAY_SIZE(kirkwood_io_desc
));
57 /*****************************************************************************
59 ****************************************************************************/
61 static void enable_sata0(void)
63 /* Enable PLL and IVREF */
64 writel(readl(SATA0_PHY_MODE_2
) | 0xf, SATA0_PHY_MODE_2
);
66 writel(readl(SATA0_IF_CTRL
) & ~0x200, SATA0_IF_CTRL
);
69 static void disable_sata0(void)
71 /* Disable PLL and IVREF */
72 writel(readl(SATA0_PHY_MODE_2
) & ~0xf, SATA0_PHY_MODE_2
);
74 writel(readl(SATA0_IF_CTRL
) | 0x200, SATA0_IF_CTRL
);
77 static void enable_sata1(void)
79 /* Enable PLL and IVREF */
80 writel(readl(SATA1_PHY_MODE_2
) | 0xf, SATA1_PHY_MODE_2
);
82 writel(readl(SATA1_IF_CTRL
) & ~0x200, SATA1_IF_CTRL
);
85 static void disable_sata1(void)
87 /* Disable PLL and IVREF */
88 writel(readl(SATA1_PHY_MODE_2
) & ~0xf, SATA1_PHY_MODE_2
);
90 writel(readl(SATA1_IF_CTRL
) | 0x200, SATA1_IF_CTRL
);
93 static void disable_pcie0(void)
95 writel(readl(PCIE_LINK_CTRL
) | 0x10, PCIE_LINK_CTRL
);
97 if (readl(PCIE_STATUS
) & 0x1)
99 writel(readl(PCIE_LINK_CTRL
) & ~0x10, PCIE_LINK_CTRL
);
102 static void disable_pcie1(void)
106 kirkwood_pcie_id(&dev
, &rev
);
108 if (dev
== MV88F6282_DEV_ID
) {
109 writel(readl(PCIE1_LINK_CTRL
) | 0x10, PCIE1_LINK_CTRL
);
111 if (readl(PCIE1_STATUS
) & 0x1)
113 writel(readl(PCIE1_LINK_CTRL
) & ~0x10, PCIE1_LINK_CTRL
);
117 /* An extended version of the gated clk. This calls fn_en()/fn_dis
118 * before enabling/disabling the clock. We use this to turn on/off
121 struct clk_gate gate
;
123 void (*fn_dis
)(void);
126 #define to_clk_gate_fn(_gate) container_of(_gate, struct clk_gate_fn, gate)
127 #define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
129 static int clk_gate_fn_enable(struct clk_hw
*hw
)
131 struct clk_gate
*gate
= to_clk_gate(hw
);
132 struct clk_gate_fn
*gate_fn
= to_clk_gate_fn(gate
);
135 ret
= clk_gate_ops
.enable(hw
);
136 if (!ret
&& gate_fn
->fn_en
)
142 static void clk_gate_fn_disable(struct clk_hw
*hw
)
144 struct clk_gate
*gate
= to_clk_gate(hw
);
145 struct clk_gate_fn
*gate_fn
= to_clk_gate_fn(gate
);
150 clk_gate_ops
.disable(hw
);
153 static struct clk_ops clk_gate_fn_ops
;
155 static struct clk __init
*clk_register_gate_fn(struct device
*dev
,
157 const char *parent_name
, unsigned long flags
,
158 void __iomem
*reg
, u8 bit_idx
,
159 u8 clk_gate_flags
, spinlock_t
*lock
,
160 void (*fn_en
)(void), void (*fn_dis
)(void))
162 struct clk_gate_fn
*gate_fn
;
164 struct clk_init_data init
;
166 gate_fn
= kzalloc(sizeof(struct clk_gate_fn
), GFP_KERNEL
);
168 pr_err("%s: could not allocate gated clk\n", __func__
);
169 return ERR_PTR(-ENOMEM
);
173 init
.ops
= &clk_gate_fn_ops
;
175 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
176 init
.num_parents
= (parent_name
? 1 : 0);
178 /* struct clk_gate assignments */
179 gate_fn
->gate
.reg
= reg
;
180 gate_fn
->gate
.bit_idx
= bit_idx
;
181 gate_fn
->gate
.flags
= clk_gate_flags
;
182 gate_fn
->gate
.lock
= lock
;
183 gate_fn
->gate
.hw
.init
= &init
;
184 gate_fn
->fn_en
= fn_en
;
185 gate_fn
->fn_dis
= fn_dis
;
187 /* ops is the gate ops, but with our enable/disable functions */
188 if (clk_gate_fn_ops
.enable
!= clk_gate_fn_enable
||
189 clk_gate_fn_ops
.disable
!= clk_gate_fn_disable
) {
190 clk_gate_fn_ops
= clk_gate_ops
;
191 clk_gate_fn_ops
.enable
= clk_gate_fn_enable
;
192 clk_gate_fn_ops
.disable
= clk_gate_fn_disable
;
195 clk
= clk_register(dev
, &gate_fn
->gate
.hw
);
203 static DEFINE_SPINLOCK(gating_lock
);
204 static struct clk
*tclk
;
206 static struct clk __init
*kirkwood_register_gate(const char *name
, u8 bit_idx
)
208 return clk_register_gate(NULL
, name
, "tclk", 0, CLOCK_GATING_CTRL
,
209 bit_idx
, 0, &gating_lock
);
212 static struct clk __init
*kirkwood_register_gate_fn(const char *name
,
215 void (*fn_dis
)(void))
217 return clk_register_gate_fn(NULL
, name
, "tclk", 0, CLOCK_GATING_CTRL
,
218 bit_idx
, 0, &gating_lock
, fn_en
, fn_dis
);
221 static struct clk
*ge0
, *ge1
;
223 void __init
kirkwood_clk_init(void)
225 struct clk
*runit
, *sata0
, *sata1
, *usb0
, *sdio
;
226 struct clk
*crypto
, *xor0
, *xor1
, *pex0
, *pex1
, *audio
;
228 tclk
= clk_register_fixed_rate(NULL
, "tclk", NULL
,
229 CLK_IS_ROOT
, kirkwood_tclk
);
231 runit
= kirkwood_register_gate("runit", CGC_BIT_RUNIT
);
232 ge0
= kirkwood_register_gate("ge0", CGC_BIT_GE0
);
233 ge1
= kirkwood_register_gate("ge1", CGC_BIT_GE1
);
234 sata0
= kirkwood_register_gate_fn("sata0", CGC_BIT_SATA0
,
235 enable_sata0
, disable_sata0
);
236 sata1
= kirkwood_register_gate_fn("sata1", CGC_BIT_SATA1
,
237 enable_sata1
, disable_sata1
);
238 usb0
= kirkwood_register_gate("usb0", CGC_BIT_USB0
);
239 sdio
= kirkwood_register_gate("sdio", CGC_BIT_SDIO
);
240 crypto
= kirkwood_register_gate("crypto", CGC_BIT_CRYPTO
);
241 xor0
= kirkwood_register_gate("xor0", CGC_BIT_XOR0
);
242 xor1
= kirkwood_register_gate("xor1", CGC_BIT_XOR1
);
243 pex0
= kirkwood_register_gate_fn("pex0", CGC_BIT_PEX0
,
244 NULL
, disable_pcie0
);
245 pex1
= kirkwood_register_gate_fn("pex1", CGC_BIT_PEX1
,
246 NULL
, disable_pcie1
);
247 audio
= kirkwood_register_gate("audio", CGC_BIT_AUDIO
);
248 kirkwood_register_gate("tdm", CGC_BIT_TDM
);
249 kirkwood_register_gate("tsu", CGC_BIT_TSU
);
251 /* clkdev entries, mapping clks to devices */
252 orion_clkdev_add(NULL
, "orion_spi.0", runit
);
253 orion_clkdev_add(NULL
, "orion_spi.1", runit
);
254 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".0", ge0
);
255 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".1", ge1
);
256 orion_clkdev_add(NULL
, "orion_wdt", tclk
);
257 orion_clkdev_add("0", "sata_mv.0", sata0
);
258 orion_clkdev_add("1", "sata_mv.0", sata1
);
259 orion_clkdev_add(NULL
, "orion-ehci.0", usb0
);
260 orion_clkdev_add(NULL
, "orion_nand", runit
);
261 orion_clkdev_add(NULL
, "mvsdio", sdio
);
262 orion_clkdev_add(NULL
, "mv_crypto", crypto
);
263 orion_clkdev_add(NULL
, MV_XOR_NAME
".0", xor0
);
264 orion_clkdev_add(NULL
, MV_XOR_NAME
".1", xor1
);
265 orion_clkdev_add("0", "pcie", pex0
);
266 orion_clkdev_add("1", "pcie", pex1
);
267 orion_clkdev_add(NULL
, "kirkwood-i2s", audio
);
268 orion_clkdev_add(NULL
, MV64XXX_I2C_CTLR_NAME
".0", runit
);
269 orion_clkdev_add(NULL
, MV64XXX_I2C_CTLR_NAME
".1", runit
);
271 /* Marvell says runit is used by SPI, UART, NAND, TWSI, ...,
272 * so should never be gated.
274 clk_prepare_enable(runit
);
277 /*****************************************************************************
279 ****************************************************************************/
280 void __init
kirkwood_ehci_init(void)
282 orion_ehci_init(USB_PHYS_BASE
, IRQ_KIRKWOOD_USB
, EHCI_PHY_NA
);
286 /*****************************************************************************
288 ****************************************************************************/
289 void __init
kirkwood_ge00_init(struct mv643xx_eth_platform_data
*eth_data
)
291 orion_ge00_init(eth_data
,
292 GE00_PHYS_BASE
, IRQ_KIRKWOOD_GE00_SUM
,
293 IRQ_KIRKWOOD_GE00_ERR
, 1600);
294 /* The interface forgets the MAC address assigned by u-boot if
295 the clock is turned off, so claim the clk now. */
296 clk_prepare_enable(ge0
);
300 /*****************************************************************************
302 ****************************************************************************/
303 void __init
kirkwood_ge01_init(struct mv643xx_eth_platform_data
*eth_data
)
305 orion_ge01_init(eth_data
,
306 GE01_PHYS_BASE
, IRQ_KIRKWOOD_GE01_SUM
,
307 IRQ_KIRKWOOD_GE01_ERR
, 1600);
308 clk_prepare_enable(ge1
);
312 /*****************************************************************************
314 ****************************************************************************/
315 void __init
kirkwood_ge00_switch_init(struct dsa_platform_data
*d
, int irq
)
317 orion_ge00_switch_init(d
, irq
);
321 /*****************************************************************************
323 ****************************************************************************/
324 static struct resource kirkwood_nand_resource
= {
325 .flags
= IORESOURCE_MEM
,
326 .start
= KIRKWOOD_NAND_MEM_PHYS_BASE
,
327 .end
= KIRKWOOD_NAND_MEM_PHYS_BASE
+
328 KIRKWOOD_NAND_MEM_SIZE
- 1,
331 static struct orion_nand_data kirkwood_nand_data
= {
337 static struct platform_device kirkwood_nand_flash
= {
338 .name
= "orion_nand",
341 .platform_data
= &kirkwood_nand_data
,
343 .resource
= &kirkwood_nand_resource
,
347 void __init
kirkwood_nand_init(struct mtd_partition
*parts
, int nr_parts
,
350 kirkwood_nand_data
.parts
= parts
;
351 kirkwood_nand_data
.nr_parts
= nr_parts
;
352 kirkwood_nand_data
.chip_delay
= chip_delay
;
353 platform_device_register(&kirkwood_nand_flash
);
356 void __init
kirkwood_nand_init_rnb(struct mtd_partition
*parts
, int nr_parts
,
357 int (*dev_ready
)(struct mtd_info
*))
359 kirkwood_nand_data
.parts
= parts
;
360 kirkwood_nand_data
.nr_parts
= nr_parts
;
361 kirkwood_nand_data
.dev_ready
= dev_ready
;
362 platform_device_register(&kirkwood_nand_flash
);
365 /*****************************************************************************
367 ****************************************************************************/
368 static void __init
kirkwood_rtc_init(void)
370 orion_rtc_init(RTC_PHYS_BASE
, IRQ_KIRKWOOD_RTC
);
374 /*****************************************************************************
376 ****************************************************************************/
377 void __init
kirkwood_sata_init(struct mv_sata_platform_data
*sata_data
)
379 orion_sata_init(sata_data
, SATA_PHYS_BASE
, IRQ_KIRKWOOD_SATA
);
383 /*****************************************************************************
385 ****************************************************************************/
386 static struct resource mvsdio_resources
[] = {
388 .start
= SDIO_PHYS_BASE
,
389 .end
= SDIO_PHYS_BASE
+ SZ_1K
- 1,
390 .flags
= IORESOURCE_MEM
,
393 .start
= IRQ_KIRKWOOD_SDIO
,
394 .end
= IRQ_KIRKWOOD_SDIO
,
395 .flags
= IORESOURCE_IRQ
,
399 static u64 mvsdio_dmamask
= DMA_BIT_MASK(32);
401 static struct platform_device kirkwood_sdio
= {
405 .dma_mask
= &mvsdio_dmamask
,
406 .coherent_dma_mask
= DMA_BIT_MASK(32),
408 .num_resources
= ARRAY_SIZE(mvsdio_resources
),
409 .resource
= mvsdio_resources
,
412 void __init
kirkwood_sdio_init(struct mvsdio_platform_data
*mvsdio_data
)
416 kirkwood_pcie_id(&dev
, &rev
);
417 if (rev
== 0 && dev
!= MV88F6282_DEV_ID
) /* catch all Kirkwood Z0's */
418 mvsdio_data
->clock
= 100000000;
420 mvsdio_data
->clock
= 200000000;
421 kirkwood_sdio
.dev
.platform_data
= mvsdio_data
;
422 platform_device_register(&kirkwood_sdio
);
426 /*****************************************************************************
428 ****************************************************************************/
429 void __init
kirkwood_spi_init(void)
431 orion_spi_init(SPI_PHYS_BASE
);
435 /*****************************************************************************
437 ****************************************************************************/
438 void __init
kirkwood_i2c_init(void)
440 orion_i2c_init(I2C_PHYS_BASE
, IRQ_KIRKWOOD_TWSI
, 8);
444 /*****************************************************************************
446 ****************************************************************************/
448 void __init
kirkwood_uart0_init(void)
450 orion_uart0_init(UART0_VIRT_BASE
, UART0_PHYS_BASE
,
451 IRQ_KIRKWOOD_UART_0
, tclk
);
455 /*****************************************************************************
457 ****************************************************************************/
458 void __init
kirkwood_uart1_init(void)
460 orion_uart1_init(UART1_VIRT_BASE
, UART1_PHYS_BASE
,
461 IRQ_KIRKWOOD_UART_1
, tclk
);
464 /*****************************************************************************
465 * Cryptographic Engines and Security Accelerator (CESA)
466 ****************************************************************************/
467 void __init
kirkwood_crypto_init(void)
469 orion_crypto_init(CRYPTO_PHYS_BASE
, KIRKWOOD_SRAM_PHYS_BASE
,
470 KIRKWOOD_SRAM_SIZE
, IRQ_KIRKWOOD_CRYPTO
);
474 /*****************************************************************************
476 ****************************************************************************/
477 void __init
kirkwood_xor0_init(void)
479 orion_xor0_init(XOR0_PHYS_BASE
, XOR0_HIGH_PHYS_BASE
,
480 IRQ_KIRKWOOD_XOR_00
, IRQ_KIRKWOOD_XOR_01
);
484 /*****************************************************************************
486 ****************************************************************************/
487 void __init
kirkwood_xor1_init(void)
489 orion_xor1_init(XOR1_PHYS_BASE
, XOR1_HIGH_PHYS_BASE
,
490 IRQ_KIRKWOOD_XOR_10
, IRQ_KIRKWOOD_XOR_11
);
494 /*****************************************************************************
496 ****************************************************************************/
497 void __init
kirkwood_wdt_init(void)
503 /*****************************************************************************
505 ****************************************************************************/
506 void __init
kirkwood_init_early(void)
508 orion_time_set_base(TIMER_VIRT_BASE
);
511 * Some Kirkwood devices allocate their coherent buffers from atomic
512 * context. Increase size of atomic coherent pool to make sure such
513 * the allocations won't fail.
515 init_dma_coherent_pool_size(SZ_1M
);
520 static int __init
kirkwood_find_tclk(void)
524 kirkwood_pcie_id(&dev
, &rev
);
526 if (dev
== MV88F6281_DEV_ID
|| dev
== MV88F6282_DEV_ID
)
527 if (((readl(SAMPLE_AT_RESET
) >> 21) & 1) == 0)
533 static void __init
kirkwood_timer_init(void)
535 kirkwood_tclk
= kirkwood_find_tclk();
537 orion_time_init(BRIDGE_VIRT_BASE
, BRIDGE_INT_TIMER1_CLR
,
538 IRQ_KIRKWOOD_BRIDGE
, kirkwood_tclk
);
541 struct sys_timer kirkwood_timer
= {
542 .init
= kirkwood_timer_init
,
545 /*****************************************************************************
547 ****************************************************************************/
548 static struct resource kirkwood_i2s_resources
[] = {
550 .start
= AUDIO_PHYS_BASE
,
551 .end
= AUDIO_PHYS_BASE
+ SZ_16K
- 1,
552 .flags
= IORESOURCE_MEM
,
555 .start
= IRQ_KIRKWOOD_I2S
,
556 .end
= IRQ_KIRKWOOD_I2S
,
557 .flags
= IORESOURCE_IRQ
,
561 static struct kirkwood_asoc_platform_data kirkwood_i2s_data
= {
565 static struct platform_device kirkwood_i2s_device
= {
566 .name
= "kirkwood-i2s",
568 .num_resources
= ARRAY_SIZE(kirkwood_i2s_resources
),
569 .resource
= kirkwood_i2s_resources
,
571 .platform_data
= &kirkwood_i2s_data
,
575 static struct platform_device kirkwood_pcm_device
= {
576 .name
= "kirkwood-pcm-audio",
580 void __init
kirkwood_audio_init(void)
582 platform_device_register(&kirkwood_i2s_device
);
583 platform_device_register(&kirkwood_pcm_device
);
586 /*****************************************************************************
588 ****************************************************************************/
590 * Identify device ID and revision.
592 char * __init
kirkwood_id(void)
596 kirkwood_pcie_id(&dev
, &rev
);
598 if (dev
== MV88F6281_DEV_ID
) {
599 if (rev
== MV88F6281_REV_Z0
)
600 return "MV88F6281-Z0";
601 else if (rev
== MV88F6281_REV_A0
)
602 return "MV88F6281-A0";
603 else if (rev
== MV88F6281_REV_A1
)
604 return "MV88F6281-A1";
606 return "MV88F6281-Rev-Unsupported";
607 } else if (dev
== MV88F6192_DEV_ID
) {
608 if (rev
== MV88F6192_REV_Z0
)
609 return "MV88F6192-Z0";
610 else if (rev
== MV88F6192_REV_A0
)
611 return "MV88F6192-A0";
612 else if (rev
== MV88F6192_REV_A1
)
613 return "MV88F6192-A1";
615 return "MV88F6192-Rev-Unsupported";
616 } else if (dev
== MV88F6180_DEV_ID
) {
617 if (rev
== MV88F6180_REV_A0
)
618 return "MV88F6180-Rev-A0";
619 else if (rev
== MV88F6180_REV_A1
)
620 return "MV88F6180-Rev-A1";
622 return "MV88F6180-Rev-Unsupported";
623 } else if (dev
== MV88F6282_DEV_ID
) {
624 if (rev
== MV88F6282_REV_A0
)
625 return "MV88F6282-Rev-A0";
626 else if (rev
== MV88F6282_REV_A1
)
627 return "MV88F6282-Rev-A1";
629 return "MV88F6282-Rev-Unsupported";
631 return "Device-Unknown";
635 void __init
kirkwood_l2_init(void)
637 #ifdef CONFIG_CACHE_FEROCEON_L2
638 #ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
639 writel(readl(L2_CONFIG_REG
) | L2_WRITETHROUGH
, L2_CONFIG_REG
);
642 writel(readl(L2_CONFIG_REG
) & ~L2_WRITETHROUGH
, L2_CONFIG_REG
);
648 void __init
kirkwood_init(void)
650 pr_info("Kirkwood: %s, TCLK=%d.\n", kirkwood_id(), kirkwood_tclk
);
653 * Disable propagation of mbus errors to the CPU local bus,
654 * as this causes mbus errors (which can occur for example
655 * for PCI aborts) to throw CPU aborts, which we're not set
658 writel(readl(CPU_CONFIG
) & ~CPU_CONFIG_ERROR_PROP
, CPU_CONFIG
);
660 kirkwood_setup_cpu_mbus();
664 /* Setup root of clk tree */
667 /* internal devices that every board has */
670 kirkwood_xor0_init();
671 kirkwood_xor1_init();
672 kirkwood_crypto_init();
675 kexec_reinit
= kirkwood_enable_pcie
;
679 void kirkwood_restart(char mode
, const char *cmd
)
682 * Enable soft reset to assert RSTOUTn.
684 writel(SOFT_RESET_OUT_EN
, RSTOUTn_MASK
);
689 writel(SOFT_RESET
, SYSTEM_SOFT_RESET
);