xref: /openbmc/linux/arch/powerpc/platforms/85xx/mpc85xx_rdb.c (revision c900529f3d9161bfde5cca0754f83b4d3c3e0220)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2fb8e3e1fSPoonam Aggrwal /*
3fb8e3e1fSPoonam Aggrwal  * MPC85xx RDB Board Setup
4fb8e3e1fSPoonam Aggrwal  *
572c916aeSXie Xiaobo  * Copyright 2009,2012-2013 Freescale Semiconductor Inc.
6fb8e3e1fSPoonam Aggrwal  */
7fb8e3e1fSPoonam Aggrwal 
8fb8e3e1fSPoonam Aggrwal #include <linux/stddef.h>
9fb8e3e1fSPoonam Aggrwal #include <linux/kernel.h>
10fb8e3e1fSPoonam Aggrwal #include <linux/pci.h>
11fb8e3e1fSPoonam Aggrwal #include <linux/kdev_t.h>
12fb8e3e1fSPoonam Aggrwal #include <linux/delay.h>
13fb8e3e1fSPoonam Aggrwal #include <linux/seq_file.h>
14fb8e3e1fSPoonam Aggrwal #include <linux/interrupt.h>
15*81d7cac4SRob Herring #include <linux/of.h>
16*81d7cac4SRob Herring #include <linux/of_address.h>
1794848654SScott Wood #include <linux/fsl/guts.h>
18fb8e3e1fSPoonam Aggrwal 
19fb8e3e1fSPoonam Aggrwal #include <asm/time.h>
20fb8e3e1fSPoonam Aggrwal #include <asm/machdep.h>
21fb8e3e1fSPoonam Aggrwal #include <asm/pci-bridge.h>
22fb8e3e1fSPoonam Aggrwal #include <mm/mmu_decl.h>
23fb8e3e1fSPoonam Aggrwal #include <asm/udbg.h>
24fb8e3e1fSPoonam Aggrwal #include <asm/mpic.h>
257aa1aa6eSZhao Qiang #include <soc/fsl/qe/qe.h>
26fb8e3e1fSPoonam Aggrwal 
27fb8e3e1fSPoonam Aggrwal #include <sysdev/fsl_soc.h>
28fb8e3e1fSPoonam Aggrwal #include <sysdev/fsl_pci.h>
29582d3e09SKyle Moffett #include "smp.h"
30fb8e3e1fSPoonam Aggrwal 
31543a07b1SDmitry Eremin-Solenikov #include "mpc85xx.h"
32543a07b1SDmitry Eremin-Solenikov 
mpc85xx_rdb_pic_init(void)337d8ae6e0SPali Rohár static void __init mpc85xx_rdb_pic_init(void)
34fb8e3e1fSPoonam Aggrwal {
35fb8e3e1fSPoonam Aggrwal 	struct mpic *mpic;
360abc1eadSChristophe Leroy 	int flags = MPIC_BIG_ENDIAN | MPIC_SINGLE_DEST_CPU;
37fb8e3e1fSPoonam Aggrwal 
380abc1eadSChristophe Leroy 	if (of_machine_is_compatible("fsl,MPC85XXRDB-CAMP"))
390abc1eadSChristophe Leroy 		flags |= MPIC_NO_RESET;
400abc1eadSChristophe Leroy 
410abc1eadSChristophe Leroy 	mpic = mpic_alloc(NULL, 0, flags, 0, 256, " OpenPIC  ");
42fb8e3e1fSPoonam Aggrwal 
431bca2f82SChristophe Leroy 	if (WARN_ON(!mpic))
441bca2f82SChristophe Leroy 		return;
451bca2f82SChristophe Leroy 
46fb8e3e1fSPoonam Aggrwal 	mpic_init(mpic);
47fb8e3e1fSPoonam Aggrwal }
48fb8e3e1fSPoonam Aggrwal 
49fb8e3e1fSPoonam Aggrwal /*
50fb8e3e1fSPoonam Aggrwal  * Setup the architecture
51fb8e3e1fSPoonam Aggrwal  */
mpc85xx_rdb_setup_arch(void)527d8ae6e0SPali Rohár static void __init mpc85xx_rdb_setup_arch(void)
53fb8e3e1fSPoonam Aggrwal {
54fb8e3e1fSPoonam Aggrwal 	if (ppc_md.progress)
55fb8e3e1fSPoonam Aggrwal 		ppc_md.progress("mpc85xx_rdb_setup_arch()", 0);
56fb8e3e1fSPoonam Aggrwal 
57fb8e3e1fSPoonam Aggrwal 	mpc85xx_smp_init();
5804e358d8SZhicheng Fan 
59905e75c4SJia Hongtao 	fsl_pci_assign_primary();
60905e75c4SJia Hongtao 
61706f4aa0SZhao Qiang 	mpc85xx_qe_par_io_init();
6204e358d8SZhicheng Fan #if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)
6304e358d8SZhicheng Fan 	if (machine_is(p1025_rdb)) {
64b0ad062cSSebastian Siewior 		struct device_node *np;
6504e358d8SZhicheng Fan 
669cb6abcbSTimur Tabi 		struct ccsr_guts __iomem *guts;
6704e358d8SZhicheng Fan 
6804e358d8SZhicheng Fan 		np = of_find_node_by_name(NULL, "global-utilities");
6904e358d8SZhicheng Fan 		if (np) {
7004e358d8SZhicheng Fan 			guts = of_iomap(np, 0);
7104e358d8SZhicheng Fan 			if (!guts) {
7204e358d8SZhicheng Fan 
7304e358d8SZhicheng Fan 				pr_err("mpc85xx-rdb: could not map global utilities register\n");
7404e358d8SZhicheng Fan 
7504e358d8SZhicheng Fan 			} else {
7604e358d8SZhicheng Fan 			/* P1025 has pins muxed for QE and other functions. To
7704e358d8SZhicheng Fan 			* enable QE UEC mode, we need to set bit QE0 for UCC1
7804e358d8SZhicheng Fan 			* in Eth mode, QE0 and QE3 for UCC5 in Eth mode, QE9
7904e358d8SZhicheng Fan 			* and QE12 for QE MII management singals in PMUXCR
8004e358d8SZhicheng Fan 			* register.
8104e358d8SZhicheng Fan 			*/
8204e358d8SZhicheng Fan 				setbits32(&guts->pmuxcr, MPC85xx_PMUXCR_QE(0) |
8304e358d8SZhicheng Fan 						MPC85xx_PMUXCR_QE(3) |
8404e358d8SZhicheng Fan 						MPC85xx_PMUXCR_QE(9) |
8504e358d8SZhicheng Fan 						MPC85xx_PMUXCR_QE(12));
8604e358d8SZhicheng Fan 				iounmap(guts);
8704e358d8SZhicheng Fan 			}
8804e358d8SZhicheng Fan 			of_node_put(np);
8904e358d8SZhicheng Fan 		}
9004e358d8SZhicheng Fan 
9104e358d8SZhicheng Fan 	}
9204e358d8SZhicheng Fan #endif
9304e358d8SZhicheng Fan 
9415c6ba79SChristophe Leroy 	pr_info("MPC85xx RDB board from Freescale Semiconductor\n");
95fb8e3e1fSPoonam Aggrwal }
96fb8e3e1fSPoonam Aggrwal 
97905e75c4SJia Hongtao machine_arch_initcall(p1020_mbg_pc, mpc85xx_common_publish_devices);
98905e75c4SJia Hongtao machine_arch_initcall(p1020_rdb, mpc85xx_common_publish_devices);
99905e75c4SJia Hongtao machine_arch_initcall(p1020_rdb_pc, mpc85xx_common_publish_devices);
100550593e8SHaijun.Zhang machine_arch_initcall(p1020_rdb_pd, mpc85xx_common_publish_devices);
101905e75c4SJia Hongtao machine_arch_initcall(p1020_utm_pc, mpc85xx_common_publish_devices);
102905e75c4SJia Hongtao machine_arch_initcall(p1021_rdb_pc, mpc85xx_common_publish_devices);
103905e75c4SJia Hongtao machine_arch_initcall(p1025_rdb, mpc85xx_common_publish_devices);
104905e75c4SJia Hongtao machine_arch_initcall(p1024_rdb, mpc85xx_common_publish_devices);
105fb8e3e1fSPoonam Aggrwal 
define_machine(p1020_rdb)10652dffd7fSPoonam Aggrwal define_machine(p1020_rdb) {
10752dffd7fSPoonam Aggrwal 	.name			= "P1020 RDB",
1081c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1020RDB",
10952dffd7fSPoonam Aggrwal 	.setup_arch		= mpc85xx_rdb_setup_arch,
11052dffd7fSPoonam Aggrwal 	.init_IRQ		= mpc85xx_rdb_pic_init,
11152dffd7fSPoonam Aggrwal #ifdef CONFIG_PCI
11252dffd7fSPoonam Aggrwal 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
11348b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
11452dffd7fSPoonam Aggrwal #endif
11552dffd7fSPoonam Aggrwal 	.get_irq		= mpic_get_irq,
11652dffd7fSPoonam Aggrwal 	.progress		= udbg_progress,
11752dffd7fSPoonam Aggrwal };
118b73bdf48SXu Jiucheng 
define_machine(p1021_rdb_pc)119b73bdf48SXu Jiucheng define_machine(p1021_rdb_pc) {
120b73bdf48SXu Jiucheng 	.name			= "P1021 RDB-PC",
1211c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1021RDB-PC",
122b73bdf48SXu Jiucheng 	.setup_arch		= mpc85xx_rdb_setup_arch,
123b73bdf48SXu Jiucheng 	.init_IRQ		= mpc85xx_rdb_pic_init,
124b73bdf48SXu Jiucheng #ifdef CONFIG_PCI
125b73bdf48SXu Jiucheng 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
12648b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
127b73bdf48SXu Jiucheng #endif
128b73bdf48SXu Jiucheng 	.get_irq		= mpic_get_irq,
129b73bdf48SXu Jiucheng 	.progress		= udbg_progress,
130b73bdf48SXu Jiucheng };
13135ce1b5aSTang Yuantian 
define_machine(p1025_rdb)1326886780aSZhicheng Fan define_machine(p1025_rdb) {
1336886780aSZhicheng Fan 	.name			= "P1025 RDB",
1341c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1025RDB",
1356886780aSZhicheng Fan 	.setup_arch		= mpc85xx_rdb_setup_arch,
1366886780aSZhicheng Fan 	.init_IRQ		= mpc85xx_rdb_pic_init,
1376886780aSZhicheng Fan #ifdef CONFIG_PCI
1386886780aSZhicheng Fan 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
13948b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
1406886780aSZhicheng Fan #endif
1416886780aSZhicheng Fan 	.get_irq		= mpic_get_irq,
1426886780aSZhicheng Fan 	.progress		= udbg_progress,
1436886780aSZhicheng Fan };
144d1fb1060SJerry Huang 
define_machine(p1020_mbg_pc)145d1fb1060SJerry Huang define_machine(p1020_mbg_pc) {
146d1fb1060SJerry Huang 	.name			= "P1020 MBG-PC",
1471c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1020MBG-PC",
148d1fb1060SJerry Huang 	.setup_arch		= mpc85xx_rdb_setup_arch,
149d1fb1060SJerry Huang 	.init_IRQ		= mpc85xx_rdb_pic_init,
150d1fb1060SJerry Huang #ifdef CONFIG_PCI
151d1fb1060SJerry Huang 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
15248b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
153d1fb1060SJerry Huang #endif
154d1fb1060SJerry Huang 	.get_irq		= mpic_get_irq,
155d1fb1060SJerry Huang 	.progress		= udbg_progress,
156d1fb1060SJerry Huang };
1571a244b83SJerry Huang 
define_machine(p1020_utm_pc)1581a244b83SJerry Huang define_machine(p1020_utm_pc) {
1591a244b83SJerry Huang 	.name			= "P1020 UTM-PC",
1601c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1020UTM-PC",
1611a244b83SJerry Huang 	.setup_arch		= mpc85xx_rdb_setup_arch,
1621a244b83SJerry Huang 	.init_IRQ		= mpc85xx_rdb_pic_init,
1631a244b83SJerry Huang #ifdef CONFIG_PCI
1641a244b83SJerry Huang 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
16548b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
1661a244b83SJerry Huang #endif
1671a244b83SJerry Huang 	.get_irq		= mpic_get_irq,
1681a244b83SJerry Huang 	.progress		= udbg_progress,
1691a244b83SJerry Huang };
1707e6af144SZhicheng Fan 
define_machine(p1020_rdb_pc)1717e6af144SZhicheng Fan define_machine(p1020_rdb_pc) {
1727e6af144SZhicheng Fan 	.name			= "P1020RDB-PC",
1731c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1020RDB-PC",
1747e6af144SZhicheng Fan 	.setup_arch		= mpc85xx_rdb_setup_arch,
1757e6af144SZhicheng Fan 	.init_IRQ		= mpc85xx_rdb_pic_init,
1767e6af144SZhicheng Fan #ifdef CONFIG_PCI
1777e6af144SZhicheng Fan 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
17848b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
1797e6af144SZhicheng Fan #endif
1807e6af144SZhicheng Fan 	.get_irq		= mpic_get_irq,
1817e6af144SZhicheng Fan 	.progress		= udbg_progress,
1827e6af144SZhicheng Fan };
183063e94bbSTang Yuantian 
define_machine(p1020_rdb_pd)184550593e8SHaijun.Zhang define_machine(p1020_rdb_pd) {
185550593e8SHaijun.Zhang 	.name			= "P1020RDB-PD",
1861c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1020RDB-PD",
187550593e8SHaijun.Zhang 	.setup_arch		= mpc85xx_rdb_setup_arch,
188550593e8SHaijun.Zhang 	.init_IRQ		= mpc85xx_rdb_pic_init,
189550593e8SHaijun.Zhang #ifdef CONFIG_PCI
190550593e8SHaijun.Zhang 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
19148b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
192550593e8SHaijun.Zhang #endif
193550593e8SHaijun.Zhang 	.get_irq		= mpic_get_irq,
194550593e8SHaijun.Zhang 	.progress		= udbg_progress,
195550593e8SHaijun.Zhang };
196550593e8SHaijun.Zhang 
define_machine(p1024_rdb)197063e94bbSTang Yuantian define_machine(p1024_rdb) {
198063e94bbSTang Yuantian 	.name			= "P1024 RDB",
1991c96fcdeSChristophe Leroy 	.compatible		= "fsl,P1024RDB",
200063e94bbSTang Yuantian 	.setup_arch		= mpc85xx_rdb_setup_arch,
201063e94bbSTang Yuantian 	.init_IRQ		= mpc85xx_rdb_pic_init,
202063e94bbSTang Yuantian #ifdef CONFIG_PCI
203063e94bbSTang Yuantian 	.pcibios_fixup_bus	= fsl_pcibios_fixup_bus,
20448b16180SWang Dongsheng 	.pcibios_fixup_phb      = fsl_pcibios_fixup_phb,
205063e94bbSTang Yuantian #endif
206063e94bbSTang Yuantian 	.get_irq		= mpic_get_irq,
207063e94bbSTang Yuantian 	.progress		= udbg_progress,
208063e94bbSTang Yuantian };
209