2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/delay.h>
12 #include <linux/bootmem.h>
13 #include <linux/ioport.h>
15 #include <asm/bootinfo.h>
17 #include <asm/reboot.h>
18 #include <asm/cacheflush.h>
19 #include <bcm63xx_board.h>
20 #include <bcm63xx_cpu.h>
21 #include <bcm63xx_regs.h>
22 #include <bcm63xx_io.h>
24 void bcm63xx_machine_halt(void)
26 printk(KERN_INFO
"System halted\n");
31 static void bcm6348_a1_reboot(void)
35 /* soft reset all blocks */
36 printk(KERN_INFO
"soft-resetting all blocks ...\n");
37 reg
= bcm_perf_readl(PERF_SOFTRESET_REG
);
38 reg
&= ~SOFTRESET_6348_ALL
;
39 bcm_perf_writel(reg
, PERF_SOFTRESET_REG
);
42 reg
= bcm_perf_readl(PERF_SOFTRESET_REG
);
43 reg
|= SOFTRESET_6348_ALL
;
44 bcm_perf_writel(reg
, PERF_SOFTRESET_REG
);
47 /* Jump to the power on address. */
48 printk(KERN_INFO
"jumping to reset vector.\n");
49 /* set high vectors (base at 0xbfc00000 */
50 set_c0_status(ST0_BEV
| ST0_ERL
);
51 /* run uncached in kseg0 */
52 change_c0_config(CONF_CM_CMASK
, CONF_CM_UNCACHED
);
54 /* remove all wired TLB entries */
64 void bcm63xx_machine_reboot(void)
66 u32 reg
, perf_regs
[2] = { 0, 0 };
69 /* mask and clear all external irq */
70 switch (bcm63xx_get_cpu_id()) {
72 perf_regs
[0] = PERF_EXTIRQ_CFG_REG_6328
;
75 perf_regs
[0] = PERF_EXTIRQ_CFG_REG_6338
;
78 perf_regs
[0] = PERF_EXTIRQ_CFG_REG_6348
;
81 perf_regs
[0] = PERF_EXTIRQ_CFG_REG_6358
;
85 for (i
= 0; i
< 2; i
++) {
86 reg
= bcm_perf_readl(perf_regs
[i
]);
87 if (BCMCPU_IS_6348()) {
88 reg
&= ~EXTIRQ_CFG_MASK_ALL_6348
;
89 reg
|= EXTIRQ_CFG_CLEAR_ALL_6348
;
91 reg
&= ~EXTIRQ_CFG_MASK_ALL
;
92 reg
|= EXTIRQ_CFG_CLEAR_ALL
;
94 bcm_perf_writel(reg
, perf_regs
[i
]);
97 if (BCMCPU_IS_6348() && (bcm63xx_get_cpu_rev() == 0xa1))
100 printk(KERN_INFO
"triggering watchdog soft-reset...\n");
101 if (BCMCPU_IS_6328()) {
102 bcm_wdt_writel(1, WDT_SOFTRESET_REG
);
104 reg
= bcm_perf_readl(PERF_SYS_PLL_CTL_REG
);
105 reg
|= SYS_PLL_SOFT_RESET
;
106 bcm_perf_writel(reg
, PERF_SYS_PLL_CTL_REG
);
112 static void __bcm63xx_machine_reboot(char *p
)
114 bcm63xx_machine_reboot();
118 * return system type in /proc/cpuinfo
120 const char *get_system_type(void)
122 static char buf
[128];
123 snprintf(buf
, sizeof(buf
), "bcm63xx/%s (0x%04x/0x%04X)",
125 bcm63xx_get_cpu_id(), bcm63xx_get_cpu_rev());
129 void __init
plat_time_init(void)
131 mips_hpt_frequency
= bcm63xx_get_cpu_freq() / 2;
134 void __init
plat_mem_setup(void)
136 add_memory_region(0, bcm63xx_get_memory_size(), BOOT_MEM_RAM
);
138 _machine_halt
= bcm63xx_machine_halt
;
139 _machine_restart
= __bcm63xx_machine_reboot
;
140 pm_power_off
= bcm63xx_machine_halt
;
143 ioport_resource
.start
= 0;
144 ioport_resource
.end
= ~0;
149 int __init
bcm63xx_register_devices(void)
151 return board_register_devices();
154 device_initcall(bcm63xx_register_devices
);