1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2009 Extreme Engineering Solutions, Inc.
5 * X-ES board-specific functionality
7 * Based on mpc85xx_ds code from Freescale Semiconductor, Inc.
9 * Author: Nate Case <ncase@xes-inc.com>
12 #include <linux/stddef.h>
13 #include <linux/kernel.h>
14 #include <linux/pci.h>
15 #include <linux/kdev_t.h>
16 #include <linux/delay.h>
17 #include <linux/seq_file.h>
18 #include <linux/interrupt.h>
19 #include <linux/of_platform.h>
22 #include <asm/machdep.h>
23 #include <asm/pci-bridge.h>
24 #include <mm/mmu_decl.h>
29 #include <sysdev/fsl_soc.h>
30 #include <sysdev/fsl_pci.h>
35 /* A few bit definitions needed for fixups on some boards */
36 #define MPC85xx_L2CTL_L2E 0x80000000 /* L2 enable */
37 #define MPC85xx_L2CTL_L2I 0x40000000 /* L2 flash invalidate */
38 #define MPC85xx_L2CTL_L2SIZ_MASK 0x30000000 /* L2 SRAM size (R/O) */
40 void __init
xes_mpc85xx_pic_init(void)
42 struct mpic
*mpic
= mpic_alloc(NULL
, 0, MPIC_BIG_ENDIAN
,
48 static void xes_mpc85xx_configure_l2(void __iomem
*l2_base
)
50 volatile uint32_t ctl
, tmp
;
52 asm volatile("msync; isync");
53 tmp
= in_be32(l2_base
);
56 * xMon may have enabled part of L2 as SRAM, so we need to set it
57 * up for all cache mode just to be safe.
59 printk(KERN_INFO
"xes_mpc85xx: Enabling L2 as cache\n");
61 ctl
= MPC85xx_L2CTL_L2E
| MPC85xx_L2CTL_L2I
;
62 if (of_machine_is_compatible("MPC8540") ||
63 of_machine_is_compatible("MPC8560"))
65 * Assume L2 SRAM is used fully for cache, so set
66 * L2BLKSZ (bits 4:5) to match L2SIZ (bits 2:3).
68 ctl
|= (tmp
& MPC85xx_L2CTL_L2SIZ_MASK
) >> 2;
70 asm volatile("msync; isync");
71 out_be32(l2_base
, ctl
);
72 asm volatile("msync; isync");
75 static void xes_mpc85xx_fixups(void)
77 struct device_node
*np
;
81 * Legacy xMon firmware on some X-ES boards does not enable L2
82 * as cache. We must ensure that they get enabled here.
84 for_each_node_by_name(np
, "l2-cache-controller") {
86 void __iomem
*l2_base
;
88 /* Only MPC8548, MPC8540, and MPC8560 boards are affected */
89 if (!of_device_is_compatible(np
,
90 "fsl,mpc8548-l2-cache-controller") &&
91 !of_device_is_compatible(np
,
92 "fsl,mpc8540-l2-cache-controller") &&
93 !of_device_is_compatible(np
,
94 "fsl,mpc8560-l2-cache-controller"))
97 err
= of_address_to_resource(np
, 0, &r
[0]);
99 printk(KERN_WARNING
"xes_mpc85xx: Could not get "
100 "resource for device tree node '%pOF'",
105 l2_base
= ioremap(r
[0].start
, resource_size(&r
[0]));
107 xes_mpc85xx_configure_l2(l2_base
);
112 * Setup the architecture
114 static void __init
xes_mpc85xx_setup_arch(void)
116 struct device_node
*root
;
117 const char *model
= "Unknown";
119 root
= of_find_node_by_path("/");
123 model
= of_get_property(root
, "model", NULL
);
125 printk(KERN_INFO
"X-ES MPC85xx-based single-board computer: %s\n",
126 model
+ strlen("xes,"));
128 xes_mpc85xx_fixups();
132 fsl_pci_assign_primary();
135 machine_arch_initcall(xes_mpc8572
, mpc85xx_common_publish_devices
);
136 machine_arch_initcall(xes_mpc8548
, mpc85xx_common_publish_devices
);
137 machine_arch_initcall(xes_mpc8540
, mpc85xx_common_publish_devices
);
140 * Called very early, device-tree isn't unflattened
142 static int __init
xes_mpc8572_probe(void)
144 return of_machine_is_compatible("xes,MPC8572");
147 static int __init
xes_mpc8548_probe(void)
149 return of_machine_is_compatible("xes,MPC8548");
152 static int __init
xes_mpc8540_probe(void)
154 return of_machine_is_compatible("xes,MPC8540");
157 define_machine(xes_mpc8572
) {
158 .name
= "X-ES MPC8572",
159 .probe
= xes_mpc8572_probe
,
160 .setup_arch
= xes_mpc85xx_setup_arch
,
161 .init_IRQ
= xes_mpc85xx_pic_init
,
163 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
164 .pcibios_fixup_phb
= fsl_pcibios_fixup_phb
,
166 .get_irq
= mpic_get_irq
,
167 .calibrate_decr
= generic_calibrate_decr
,
168 .progress
= udbg_progress
,
171 define_machine(xes_mpc8548
) {
172 .name
= "X-ES MPC8548",
173 .probe
= xes_mpc8548_probe
,
174 .setup_arch
= xes_mpc85xx_setup_arch
,
175 .init_IRQ
= xes_mpc85xx_pic_init
,
177 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
178 .pcibios_fixup_phb
= fsl_pcibios_fixup_phb
,
180 .get_irq
= mpic_get_irq
,
181 .calibrate_decr
= generic_calibrate_decr
,
182 .progress
= udbg_progress
,
185 define_machine(xes_mpc8540
) {
186 .name
= "X-ES MPC8540",
187 .probe
= xes_mpc8540_probe
,
188 .setup_arch
= xes_mpc85xx_setup_arch
,
189 .init_IRQ
= xes_mpc85xx_pic_init
,
191 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
192 .pcibios_fixup_phb
= fsl_pcibios_fixup_phb
,
194 .get_irq
= mpic_get_irq
,
195 .calibrate_decr
= generic_calibrate_decr
,
196 .progress
= udbg_progress
,