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>
23 #include <linux/reboot.h>
26 #include <asm/mach/map.h>
27 #include <asm/mach/time.h>
28 #include <mach/kirkwood.h>
29 #include <mach/bridge-regs.h>
30 #include <linux/platform_data/asoc-kirkwood.h>
31 #include <plat/cache-feroceon-l2.h>
32 #include <linux/platform_data/mmc-mvsdio.h>
33 #include <linux/platform_data/mtd-orion_nand.h>
34 #include <linux/platform_data/usb-ehci-orion.h>
35 #include <plat/common.h>
36 #include <plat/time.h>
37 #include <linux/platform_data/dma-mv_xor.h>
40 /* These can go away once Kirkwood uses the mvebu-mbus DT binding */
41 #define KIRKWOOD_MBUS_NAND_TARGET 0x01
42 #define KIRKWOOD_MBUS_NAND_ATTR 0x2f
43 #define KIRKWOOD_MBUS_SRAM_TARGET 0x03
44 #define KIRKWOOD_MBUS_SRAM_ATTR 0x01
46 /*****************************************************************************
48 ****************************************************************************/
49 static struct map_desc kirkwood_io_desc
[] __initdata
= {
51 .virtual = (unsigned long) KIRKWOOD_REGS_VIRT_BASE
,
52 .pfn
= __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE
),
53 .length
= KIRKWOOD_REGS_SIZE
,
58 void __init
kirkwood_map_io(void)
60 iotable_init(kirkwood_io_desc
, ARRAY_SIZE(kirkwood_io_desc
));
63 /*****************************************************************************
65 ****************************************************************************/
67 static void enable_sata0(void)
69 /* Enable PLL and IVREF */
70 writel(readl(SATA0_PHY_MODE_2
) | 0xf, SATA0_PHY_MODE_2
);
72 writel(readl(SATA0_IF_CTRL
) & ~0x200, SATA0_IF_CTRL
);
75 static void disable_sata0(void)
77 /* Disable PLL and IVREF */
78 writel(readl(SATA0_PHY_MODE_2
) & ~0xf, SATA0_PHY_MODE_2
);
80 writel(readl(SATA0_IF_CTRL
) | 0x200, SATA0_IF_CTRL
);
83 static void enable_sata1(void)
85 /* Enable PLL and IVREF */
86 writel(readl(SATA1_PHY_MODE_2
) | 0xf, SATA1_PHY_MODE_2
);
88 writel(readl(SATA1_IF_CTRL
) & ~0x200, SATA1_IF_CTRL
);
91 static void disable_sata1(void)
93 /* Disable PLL and IVREF */
94 writel(readl(SATA1_PHY_MODE_2
) & ~0xf, SATA1_PHY_MODE_2
);
96 writel(readl(SATA1_IF_CTRL
) | 0x200, SATA1_IF_CTRL
);
99 static void disable_pcie0(void)
101 writel(readl(PCIE_LINK_CTRL
) | 0x10, PCIE_LINK_CTRL
);
103 if (readl(PCIE_STATUS
) & 0x1)
105 writel(readl(PCIE_LINK_CTRL
) & ~0x10, PCIE_LINK_CTRL
);
108 static void disable_pcie1(void)
112 kirkwood_pcie_id(&dev
, &rev
);
114 if (dev
== MV88F6282_DEV_ID
) {
115 writel(readl(PCIE1_LINK_CTRL
) | 0x10, PCIE1_LINK_CTRL
);
117 if (readl(PCIE1_STATUS
) & 0x1)
119 writel(readl(PCIE1_LINK_CTRL
) & ~0x10, PCIE1_LINK_CTRL
);
123 /* An extended version of the gated clk. This calls fn_en()/fn_dis
124 * before enabling/disabling the clock. We use this to turn on/off
127 struct clk_gate gate
;
129 void (*fn_dis
)(void);
132 #define to_clk_gate_fn(_gate) container_of(_gate, struct clk_gate_fn, gate)
133 #define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
135 static int clk_gate_fn_enable(struct clk_hw
*hw
)
137 struct clk_gate
*gate
= to_clk_gate(hw
);
138 struct clk_gate_fn
*gate_fn
= to_clk_gate_fn(gate
);
141 ret
= clk_gate_ops
.enable(hw
);
142 if (!ret
&& gate_fn
->fn_en
)
148 static void clk_gate_fn_disable(struct clk_hw
*hw
)
150 struct clk_gate
*gate
= to_clk_gate(hw
);
151 struct clk_gate_fn
*gate_fn
= to_clk_gate_fn(gate
);
156 clk_gate_ops
.disable(hw
);
159 static struct clk_ops clk_gate_fn_ops
;
161 static struct clk __init
*clk_register_gate_fn(struct device
*dev
,
163 const char *parent_name
, unsigned long flags
,
164 void __iomem
*reg
, u8 bit_idx
,
165 u8 clk_gate_flags
, spinlock_t
*lock
,
166 void (*fn_en
)(void), void (*fn_dis
)(void))
168 struct clk_gate_fn
*gate_fn
;
170 struct clk_init_data init
;
172 gate_fn
= kzalloc(sizeof(struct clk_gate_fn
), GFP_KERNEL
);
174 pr_err("%s: could not allocate gated clk\n", __func__
);
175 return ERR_PTR(-ENOMEM
);
179 init
.ops
= &clk_gate_fn_ops
;
181 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
182 init
.num_parents
= (parent_name
? 1 : 0);
184 /* struct clk_gate assignments */
185 gate_fn
->gate
.reg
= reg
;
186 gate_fn
->gate
.bit_idx
= bit_idx
;
187 gate_fn
->gate
.flags
= clk_gate_flags
;
188 gate_fn
->gate
.lock
= lock
;
189 gate_fn
->gate
.hw
.init
= &init
;
190 gate_fn
->fn_en
= fn_en
;
191 gate_fn
->fn_dis
= fn_dis
;
193 /* ops is the gate ops, but with our enable/disable functions */
194 if (clk_gate_fn_ops
.enable
!= clk_gate_fn_enable
||
195 clk_gate_fn_ops
.disable
!= clk_gate_fn_disable
) {
196 clk_gate_fn_ops
= clk_gate_ops
;
197 clk_gate_fn_ops
.enable
= clk_gate_fn_enable
;
198 clk_gate_fn_ops
.disable
= clk_gate_fn_disable
;
201 clk
= clk_register(dev
, &gate_fn
->gate
.hw
);
209 static DEFINE_SPINLOCK(gating_lock
);
210 static struct clk
*tclk
;
212 static struct clk __init
*kirkwood_register_gate(const char *name
, u8 bit_idx
)
214 return clk_register_gate(NULL
, name
, "tclk", 0, CLOCK_GATING_CTRL
,
215 bit_idx
, 0, &gating_lock
);
218 static struct clk __init
*kirkwood_register_gate_fn(const char *name
,
221 void (*fn_dis
)(void))
223 return clk_register_gate_fn(NULL
, name
, "tclk", 0, CLOCK_GATING_CTRL
,
224 bit_idx
, 0, &gating_lock
, fn_en
, fn_dis
);
227 static struct clk
*ge0
, *ge1
;
229 void __init
kirkwood_clk_init(void)
231 struct clk
*runit
, *sata0
, *sata1
, *usb0
, *sdio
;
232 struct clk
*crypto
, *xor0
, *xor1
, *pex0
, *pex1
, *audio
;
234 tclk
= clk_register_fixed_rate(NULL
, "tclk", NULL
,
235 CLK_IS_ROOT
, kirkwood_tclk
);
237 runit
= kirkwood_register_gate("runit", CGC_BIT_RUNIT
);
238 ge0
= kirkwood_register_gate("ge0", CGC_BIT_GE0
);
239 ge1
= kirkwood_register_gate("ge1", CGC_BIT_GE1
);
240 sata0
= kirkwood_register_gate_fn("sata0", CGC_BIT_SATA0
,
241 enable_sata0
, disable_sata0
);
242 sata1
= kirkwood_register_gate_fn("sata1", CGC_BIT_SATA1
,
243 enable_sata1
, disable_sata1
);
244 usb0
= kirkwood_register_gate("usb0", CGC_BIT_USB0
);
245 sdio
= kirkwood_register_gate("sdio", CGC_BIT_SDIO
);
246 crypto
= kirkwood_register_gate("crypto", CGC_BIT_CRYPTO
);
247 xor0
= kirkwood_register_gate("xor0", CGC_BIT_XOR0
);
248 xor1
= kirkwood_register_gate("xor1", CGC_BIT_XOR1
);
249 pex0
= kirkwood_register_gate_fn("pex0", CGC_BIT_PEX0
,
250 NULL
, disable_pcie0
);
251 pex1
= kirkwood_register_gate_fn("pex1", CGC_BIT_PEX1
,
252 NULL
, disable_pcie1
);
253 audio
= kirkwood_register_gate("audio", CGC_BIT_AUDIO
);
254 kirkwood_register_gate("tdm", CGC_BIT_TDM
);
255 kirkwood_register_gate("tsu", CGC_BIT_TSU
);
257 /* clkdev entries, mapping clks to devices */
258 orion_clkdev_add(NULL
, "orion_spi.0", runit
);
259 orion_clkdev_add(NULL
, "orion_spi.1", runit
);
260 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".0", ge0
);
261 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".1", ge1
);
262 orion_clkdev_add(NULL
, "orion_wdt", tclk
);
263 orion_clkdev_add("0", "sata_mv.0", sata0
);
264 orion_clkdev_add("1", "sata_mv.0", sata1
);
265 orion_clkdev_add(NULL
, "orion-ehci.0", usb0
);
266 orion_clkdev_add(NULL
, "orion_nand", runit
);
267 orion_clkdev_add(NULL
, "mvsdio", sdio
);
268 orion_clkdev_add(NULL
, "mv_crypto", crypto
);
269 orion_clkdev_add(NULL
, MV_XOR_NAME
".0", xor0
);
270 orion_clkdev_add(NULL
, MV_XOR_NAME
".1", xor1
);
271 orion_clkdev_add("0", "pcie", pex0
);
272 orion_clkdev_add("1", "pcie", pex1
);
273 orion_clkdev_add(NULL
, "mvebu-audio", audio
);
274 orion_clkdev_add(NULL
, MV64XXX_I2C_CTLR_NAME
".0", runit
);
275 orion_clkdev_add(NULL
, MV64XXX_I2C_CTLR_NAME
".1", runit
);
277 /* Marvell says runit is used by SPI, UART, NAND, TWSI, ...,
278 * so should never be gated.
280 clk_prepare_enable(runit
);
283 /*****************************************************************************
285 ****************************************************************************/
286 void __init
kirkwood_ehci_init(void)
288 orion_ehci_init(USB_PHYS_BASE
, IRQ_KIRKWOOD_USB
, EHCI_PHY_NA
);
292 /*****************************************************************************
294 ****************************************************************************/
295 void __init
kirkwood_ge00_init(struct mv643xx_eth_platform_data
*eth_data
)
297 orion_ge00_init(eth_data
,
298 GE00_PHYS_BASE
, IRQ_KIRKWOOD_GE00_SUM
,
299 IRQ_KIRKWOOD_GE00_ERR
, 1600);
300 /* The interface forgets the MAC address assigned by u-boot if
301 the clock is turned off, so claim the clk now. */
302 clk_prepare_enable(ge0
);
306 /*****************************************************************************
308 ****************************************************************************/
309 void __init
kirkwood_ge01_init(struct mv643xx_eth_platform_data
*eth_data
)
311 orion_ge01_init(eth_data
,
312 GE01_PHYS_BASE
, IRQ_KIRKWOOD_GE01_SUM
,
313 IRQ_KIRKWOOD_GE01_ERR
, 1600);
314 clk_prepare_enable(ge1
);
318 /*****************************************************************************
320 ****************************************************************************/
321 void __init
kirkwood_ge00_switch_init(struct dsa_platform_data
*d
, int irq
)
323 orion_ge00_switch_init(d
, irq
);
327 /*****************************************************************************
329 ****************************************************************************/
330 static struct resource kirkwood_nand_resource
= {
331 .flags
= IORESOURCE_MEM
,
332 .start
= KIRKWOOD_NAND_MEM_PHYS_BASE
,
333 .end
= KIRKWOOD_NAND_MEM_PHYS_BASE
+
334 KIRKWOOD_NAND_MEM_SIZE
- 1,
337 static struct orion_nand_data kirkwood_nand_data
= {
343 static struct platform_device kirkwood_nand_flash
= {
344 .name
= "orion_nand",
347 .platform_data
= &kirkwood_nand_data
,
349 .resource
= &kirkwood_nand_resource
,
353 void __init
kirkwood_nand_init(struct mtd_partition
*parts
, int nr_parts
,
356 kirkwood_nand_data
.parts
= parts
;
357 kirkwood_nand_data
.nr_parts
= nr_parts
;
358 kirkwood_nand_data
.chip_delay
= chip_delay
;
359 platform_device_register(&kirkwood_nand_flash
);
362 void __init
kirkwood_nand_init_rnb(struct mtd_partition
*parts
, int nr_parts
,
363 int (*dev_ready
)(struct mtd_info
*))
365 kirkwood_nand_data
.parts
= parts
;
366 kirkwood_nand_data
.nr_parts
= nr_parts
;
367 kirkwood_nand_data
.dev_ready
= dev_ready
;
368 platform_device_register(&kirkwood_nand_flash
);
371 /*****************************************************************************
373 ****************************************************************************/
374 static void __init
kirkwood_rtc_init(void)
376 orion_rtc_init(RTC_PHYS_BASE
, IRQ_KIRKWOOD_RTC
);
380 /*****************************************************************************
382 ****************************************************************************/
383 void __init
kirkwood_sata_init(struct mv_sata_platform_data
*sata_data
)
385 orion_sata_init(sata_data
, SATA_PHYS_BASE
, IRQ_KIRKWOOD_SATA
);
389 /*****************************************************************************
391 ****************************************************************************/
392 static struct resource mvsdio_resources
[] = {
394 .start
= SDIO_PHYS_BASE
,
395 .end
= SDIO_PHYS_BASE
+ SZ_1K
- 1,
396 .flags
= IORESOURCE_MEM
,
399 .start
= IRQ_KIRKWOOD_SDIO
,
400 .end
= IRQ_KIRKWOOD_SDIO
,
401 .flags
= IORESOURCE_IRQ
,
405 static u64 mvsdio_dmamask
= DMA_BIT_MASK(32);
407 static struct platform_device kirkwood_sdio
= {
411 .dma_mask
= &mvsdio_dmamask
,
412 .coherent_dma_mask
= DMA_BIT_MASK(32),
414 .num_resources
= ARRAY_SIZE(mvsdio_resources
),
415 .resource
= mvsdio_resources
,
418 void __init
kirkwood_sdio_init(struct mvsdio_platform_data
*mvsdio_data
)
422 kirkwood_pcie_id(&dev
, &rev
);
423 if (rev
== 0 && dev
!= MV88F6282_DEV_ID
) /* catch all Kirkwood Z0's */
424 mvsdio_data
->clock
= 100000000;
426 mvsdio_data
->clock
= 200000000;
427 kirkwood_sdio
.dev
.platform_data
= mvsdio_data
;
428 platform_device_register(&kirkwood_sdio
);
432 /*****************************************************************************
434 ****************************************************************************/
435 void __init
kirkwood_spi_init(void)
437 orion_spi_init(SPI_PHYS_BASE
);
441 /*****************************************************************************
443 ****************************************************************************/
444 void __init
kirkwood_i2c_init(void)
446 orion_i2c_init(I2C_PHYS_BASE
, IRQ_KIRKWOOD_TWSI
, 8);
450 /*****************************************************************************
452 ****************************************************************************/
454 void __init
kirkwood_uart0_init(void)
456 orion_uart0_init(UART0_VIRT_BASE
, UART0_PHYS_BASE
,
457 IRQ_KIRKWOOD_UART_0
, tclk
);
461 /*****************************************************************************
463 ****************************************************************************/
464 void __init
kirkwood_uart1_init(void)
466 orion_uart1_init(UART1_VIRT_BASE
, UART1_PHYS_BASE
,
467 IRQ_KIRKWOOD_UART_1
, tclk
);
470 /*****************************************************************************
471 * Cryptographic Engines and Security Accelerator (CESA)
472 ****************************************************************************/
473 void __init
kirkwood_crypto_init(void)
475 orion_crypto_init(CRYPTO_PHYS_BASE
, KIRKWOOD_SRAM_PHYS_BASE
,
476 KIRKWOOD_SRAM_SIZE
, IRQ_KIRKWOOD_CRYPTO
);
480 /*****************************************************************************
482 ****************************************************************************/
483 void __init
kirkwood_xor0_init(void)
485 orion_xor0_init(XOR0_PHYS_BASE
, XOR0_HIGH_PHYS_BASE
,
486 IRQ_KIRKWOOD_XOR_00
, IRQ_KIRKWOOD_XOR_01
);
490 /*****************************************************************************
492 ****************************************************************************/
493 void __init
kirkwood_xor1_init(void)
495 orion_xor1_init(XOR1_PHYS_BASE
, XOR1_HIGH_PHYS_BASE
,
496 IRQ_KIRKWOOD_XOR_10
, IRQ_KIRKWOOD_XOR_11
);
500 /*****************************************************************************
502 ****************************************************************************/
503 void __init
kirkwood_wdt_init(void)
508 /*****************************************************************************
510 ****************************************************************************/
511 static struct resource kirkwood_cpuidle_resource
[] = {
513 .flags
= IORESOURCE_MEM
,
514 .start
= DDR_OPERATION_BASE
,
515 .end
= DDR_OPERATION_BASE
+ 3,
519 static struct platform_device kirkwood_cpuidle
= {
520 .name
= "kirkwood_cpuidle",
522 .resource
= kirkwood_cpuidle_resource
,
526 void __init
kirkwood_cpuidle_init(void)
528 platform_device_register(&kirkwood_cpuidle
);
531 /*****************************************************************************
533 ****************************************************************************/
534 void __init
kirkwood_init_early(void)
536 orion_time_set_base(TIMER_VIRT_BASE
);
541 static int __init
kirkwood_find_tclk(void)
545 kirkwood_pcie_id(&dev
, &rev
);
547 if (dev
== MV88F6281_DEV_ID
|| dev
== MV88F6282_DEV_ID
)
548 if (((readl(SAMPLE_AT_RESET
) >> 21) & 1) == 0)
554 void __init
kirkwood_timer_init(void)
556 kirkwood_tclk
= kirkwood_find_tclk();
558 orion_time_init(BRIDGE_VIRT_BASE
, BRIDGE_INT_TIMER1_CLR
,
559 IRQ_KIRKWOOD_BRIDGE
, kirkwood_tclk
);
562 /*****************************************************************************
564 ****************************************************************************/
565 static struct resource kirkwood_audio_resources
[] = {
567 .start
= AUDIO_PHYS_BASE
,
568 .end
= AUDIO_PHYS_BASE
+ SZ_16K
- 1,
569 .flags
= IORESOURCE_MEM
,
572 .start
= IRQ_KIRKWOOD_I2S
,
573 .end
= IRQ_KIRKWOOD_I2S
,
574 .flags
= IORESOURCE_IRQ
,
578 static struct kirkwood_asoc_platform_data kirkwood_audio_data
= {
582 static struct platform_device kirkwood_audio_device
= {
583 .name
= "mvebu-audio",
585 .num_resources
= ARRAY_SIZE(kirkwood_audio_resources
),
586 .resource
= kirkwood_audio_resources
,
588 .platform_data
= &kirkwood_audio_data
,
592 void __init
kirkwood_audio_init(void)
594 platform_device_register(&kirkwood_audio_device
);
597 /*****************************************************************************
599 ****************************************************************************/
600 static struct resource kirkwood_cpufreq_resources
[] = {
602 .start
= CPU_CONTROL_PHYS
,
603 .end
= CPU_CONTROL_PHYS
+ 3,
604 .flags
= IORESOURCE_MEM
,
608 static struct platform_device kirkwood_cpufreq_device
= {
609 .name
= "kirkwood-cpufreq",
611 .num_resources
= ARRAY_SIZE(kirkwood_cpufreq_resources
),
612 .resource
= kirkwood_cpufreq_resources
,
615 void __init
kirkwood_cpufreq_init(void)
617 platform_device_register(&kirkwood_cpufreq_device
);
620 /*****************************************************************************
622 ****************************************************************************/
624 * Identify device ID and revision.
626 char * __init
kirkwood_id(void)
630 kirkwood_pcie_id(&dev
, &rev
);
632 if (dev
== MV88F6281_DEV_ID
) {
633 if (rev
== MV88F6281_REV_Z0
)
634 return "MV88F6281-Z0";
635 else if (rev
== MV88F6281_REV_A0
)
636 return "MV88F6281-A0";
637 else if (rev
== MV88F6281_REV_A1
)
638 return "MV88F6281-A1";
640 return "MV88F6281-Rev-Unsupported";
641 } else if (dev
== MV88F6192_DEV_ID
) {
642 if (rev
== MV88F6192_REV_Z0
)
643 return "MV88F6192-Z0";
644 else if (rev
== MV88F6192_REV_A0
)
645 return "MV88F6192-A0";
646 else if (rev
== MV88F6192_REV_A1
)
647 return "MV88F6192-A1";
649 return "MV88F6192-Rev-Unsupported";
650 } else if (dev
== MV88F6180_DEV_ID
) {
651 if (rev
== MV88F6180_REV_A0
)
652 return "MV88F6180-Rev-A0";
653 else if (rev
== MV88F6180_REV_A1
)
654 return "MV88F6180-Rev-A1";
656 return "MV88F6180-Rev-Unsupported";
657 } else if (dev
== MV88F6282_DEV_ID
) {
658 if (rev
== MV88F6282_REV_A0
)
659 return "MV88F6282-Rev-A0";
660 else if (rev
== MV88F6282_REV_A1
)
661 return "MV88F6282-Rev-A1";
663 return "MV88F6282-Rev-Unsupported";
665 return "Device-Unknown";
669 void __init
kirkwood_setup_wins(void)
671 mvebu_mbus_add_window_by_id(KIRKWOOD_MBUS_NAND_TARGET
,
672 KIRKWOOD_MBUS_NAND_ATTR
,
673 KIRKWOOD_NAND_MEM_PHYS_BASE
,
674 KIRKWOOD_NAND_MEM_SIZE
);
675 mvebu_mbus_add_window_by_id(KIRKWOOD_MBUS_SRAM_TARGET
,
676 KIRKWOOD_MBUS_SRAM_ATTR
,
677 KIRKWOOD_SRAM_PHYS_BASE
,
681 void __init
kirkwood_l2_init(void)
683 #ifdef CONFIG_CACHE_FEROCEON_L2
684 #ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
685 writel(readl(L2_CONFIG_REG
) | L2_WRITETHROUGH
, L2_CONFIG_REG
);
688 writel(readl(L2_CONFIG_REG
) & ~L2_WRITETHROUGH
, L2_CONFIG_REG
);
694 void __init
kirkwood_init(void)
696 pr_info("Kirkwood: %s, TCLK=%d.\n", kirkwood_id(), kirkwood_tclk
);
699 * Disable propagation of mbus errors to the CPU local bus,
700 * as this causes mbus errors (which can occur for example
701 * for PCI aborts) to throw CPU aborts, which we're not set
704 writel(readl(CPU_CONFIG
) & ~CPU_CONFIG_ERROR_PROP
, CPU_CONFIG
);
706 BUG_ON(mvebu_mbus_init("marvell,kirkwood-mbus",
707 BRIDGE_WINS_BASE
, BRIDGE_WINS_SZ
,
708 DDR_WINDOW_CPU_BASE
, DDR_WINDOW_CPU_SZ
));
710 kirkwood_setup_wins();
714 /* Setup root of clk tree */
717 /* internal devices that every board has */
720 kirkwood_xor0_init();
721 kirkwood_xor1_init();
722 kirkwood_crypto_init();
724 kirkwood_cpuidle_init();
726 kexec_reinit
= kirkwood_enable_pcie
;
730 void kirkwood_restart(enum reboot_mode mode
, const char *cmd
)
733 * Enable soft reset to assert RSTOUTn.
735 writel(SOFT_RESET_OUT_EN
, RSTOUTn_MASK
);
740 writel(SOFT_RESET
, SYSTEM_SOFT_RESET
);