xref: /openbmc/linux/arch/mips/bcm63xx/prom.c (revision 0e983d7b)
1e7300d04SMaxime Bizon /*
2e7300d04SMaxime Bizon  * This file is subject to the terms and conditions of the GNU General Public
3e7300d04SMaxime Bizon  * License.  See the file "COPYING" in the main directory of this archive
4e7300d04SMaxime Bizon  * for more details.
5e7300d04SMaxime Bizon  *
6e7300d04SMaxime Bizon  * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
7e7300d04SMaxime Bizon  */
8e7300d04SMaxime Bizon 
9e7300d04SMaxime Bizon #include <linux/init.h>
10e7300d04SMaxime Bizon #include <linux/bootmem.h>
11a068dde1SKevin Cernekee #include <linux/smp.h>
12e7300d04SMaxime Bizon #include <asm/bootinfo.h>
13a068dde1SKevin Cernekee #include <asm/bmips.h>
14a068dde1SKevin Cernekee #include <asm/smp-ops.h>
15a068dde1SKevin Cernekee #include <asm/mipsregs.h>
16e7300d04SMaxime Bizon #include <bcm63xx_board.h>
17e7300d04SMaxime Bizon #include <bcm63xx_cpu.h>
18e7300d04SMaxime Bizon #include <bcm63xx_io.h>
19e7300d04SMaxime Bizon #include <bcm63xx_regs.h>
20e7300d04SMaxime Bizon #include <bcm63xx_gpio.h>
21e7300d04SMaxime Bizon 
22e7300d04SMaxime Bizon void __init prom_init(void)
23e7300d04SMaxime Bizon {
24e7300d04SMaxime Bizon 	u32 reg, mask;
25e7300d04SMaxime Bizon 
26e7300d04SMaxime Bizon 	bcm63xx_cpu_init();
27e7300d04SMaxime Bizon 
28e7300d04SMaxime Bizon 	/* stop any running watchdog */
29e7300d04SMaxime Bizon 	bcm_wdt_writel(WDT_STOP_1, WDT_CTL_REG);
30e7300d04SMaxime Bizon 	bcm_wdt_writel(WDT_STOP_2, WDT_CTL_REG);
31e7300d04SMaxime Bizon 
32e7300d04SMaxime Bizon 	/* disable all hardware blocks clock for now */
337b933421SFlorian Fainelli 	if (BCMCPU_IS_3368())
347b933421SFlorian Fainelli 		mask = CKCTL_3368_ALL_SAFE_EN;
357b933421SFlorian Fainelli 	else if (BCMCPU_IS_6328())
36e5766aeaSJonas Gorski 		mask = CKCTL_6328_ALL_SAFE_EN;
37e5766aeaSJonas Gorski 	else if (BCMCPU_IS_6338())
38e7300d04SMaxime Bizon 		mask = CKCTL_6338_ALL_SAFE_EN;
39e7300d04SMaxime Bizon 	else if (BCMCPU_IS_6345())
40e7300d04SMaxime Bizon 		mask = CKCTL_6345_ALL_SAFE_EN;
41e7300d04SMaxime Bizon 	else if (BCMCPU_IS_6348())
42e7300d04SMaxime Bizon 		mask = CKCTL_6348_ALL_SAFE_EN;
4304712f3fSMaxime Bizon 	else if (BCMCPU_IS_6358())
44e7300d04SMaxime Bizon 		mask = CKCTL_6358_ALL_SAFE_EN;
452c8aaf71SJonas Gorski 	else if (BCMCPU_IS_6362())
462c8aaf71SJonas Gorski 		mask = CKCTL_6362_ALL_SAFE_EN;
4704712f3fSMaxime Bizon 	else if (BCMCPU_IS_6368())
4804712f3fSMaxime Bizon 		mask = CKCTL_6368_ALL_SAFE_EN;
4904712f3fSMaxime Bizon 	else
5004712f3fSMaxime Bizon 		mask = 0;
51e7300d04SMaxime Bizon 
52e7300d04SMaxime Bizon 	reg = bcm_perf_readl(PERF_CKCTL_REG);
53e7300d04SMaxime Bizon 	reg &= ~mask;
54e7300d04SMaxime Bizon 	bcm_perf_writel(reg, PERF_CKCTL_REG);
55e7300d04SMaxime Bizon 
56e7300d04SMaxime Bizon 	/* register gpiochip */
57e7300d04SMaxime Bizon 	bcm63xx_gpio_init();
58e7300d04SMaxime Bizon 
59e7300d04SMaxime Bizon 	/* do low level board init */
60e7300d04SMaxime Bizon 	board_prom_init();
61a068dde1SKevin Cernekee 
62a068dde1SKevin Cernekee 	if (IS_ENABLED(CONFIG_CPU_BMIPS4350) && IS_ENABLED(CONFIG_SMP)) {
63a068dde1SKevin Cernekee 		/* set up SMP */
64a068dde1SKevin Cernekee 		register_smp_ops(&bmips_smp_ops);
65a068dde1SKevin Cernekee 
66a068dde1SKevin Cernekee 		/*
670e983d7bSJonas Gorski 		 * BCM6328 might not have its second CPU enabled, while BCM3368
680e983d7bSJonas Gorski 		 * and BCM6358 need special handling for their shared TLB, so
690e983d7bSJonas Gorski 		 * disable SMP for now.
70a068dde1SKevin Cernekee 		 */
71a068dde1SKevin Cernekee 		if (BCMCPU_IS_6328()) {
727ac836ceSJonas Gorski 			reg = bcm_readl(BCM_6328_OTP_BASE +
737ac836ceSJonas Gorski 					OTP_USER_BITS_6328_REG(3));
747ac836ceSJonas Gorski 
757ac836ceSJonas Gorski 			if (reg & OTP_6328_REG3_TP1_DISABLED)
76a068dde1SKevin Cernekee 				bmips_smp_enabled = 0;
770e983d7bSJonas Gorski 		} else if (BCMCPU_IS_3368() || BCMCPU_IS_6358()) {
78a068dde1SKevin Cernekee 			bmips_smp_enabled = 0;
79a068dde1SKevin Cernekee 		}
80a068dde1SKevin Cernekee 
81a068dde1SKevin Cernekee 		if (!bmips_smp_enabled)
82a068dde1SKevin Cernekee 			return;
83a068dde1SKevin Cernekee 
84a068dde1SKevin Cernekee 		/*
85a068dde1SKevin Cernekee 		 * The bootloader has set up the CPU1 reset vector at
86a068dde1SKevin Cernekee 		 * 0xa000_0200.
87a068dde1SKevin Cernekee 		 * This conflicts with the special interrupt vector (IV).
88a068dde1SKevin Cernekee 		 * The bootloader has also set up CPU1 to respond to the wrong
89a068dde1SKevin Cernekee 		 * IPI interrupt.
90a068dde1SKevin Cernekee 		 * Here we will start up CPU1 in the background and ask it to
91a068dde1SKevin Cernekee 		 * reconfigure itself then go back to sleep.
92a068dde1SKevin Cernekee 		 */
93a068dde1SKevin Cernekee 		memcpy((void *)0xa0000200, &bmips_smp_movevec, 0x20);
94a068dde1SKevin Cernekee 		__sync();
95a068dde1SKevin Cernekee 		set_c0_cause(C_SW0);
96a068dde1SKevin Cernekee 		cpumask_set_cpu(1, &bmips_booted_mask);
97a068dde1SKevin Cernekee 
98a068dde1SKevin Cernekee 		/*
99a068dde1SKevin Cernekee 		 * FIXME: we really should have some sort of hazard barrier here
100a068dde1SKevin Cernekee 		 */
101a068dde1SKevin Cernekee 	}
102e7300d04SMaxime Bizon }
103e7300d04SMaxime Bizon 
104e7300d04SMaxime Bizon void __init prom_free_prom_memory(void)
105e7300d04SMaxime Bizon {
106e7300d04SMaxime Bizon }
107