]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/powerpc/platforms/86xx/gef_sbc610.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152
[mirror_ubuntu-kernels.git] / arch / powerpc / platforms / 86xx / gef_sbc610.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
54508214 2/*
948e78c3 3 * GE SBC610 board support
54508214 4 *
948e78c3 5 * Author: Martyn Welch <martyn.welch@ge.com>
54508214 6 *
948e78c3 7 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
54508214 8 *
54508214
MW
9 * Based on: mpc86xx_hpcn.c (MPC86xx HPCN board specific routines)
10 * Copyright 2006 Freescale Semiconductor Inc.
a969e76a
MW
11 *
12 * NEC fixup adapted from arch/mips/pci/fixup-lm2e.c
54508214
MW
13 */
14
15#include <linux/stddef.h>
16#include <linux/kernel.h>
17#include <linux/pci.h>
18#include <linux/kdev_t.h>
19#include <linux/delay.h>
20#include <linux/seq_file.h>
21#include <linux/of_platform.h>
22
54508214
MW
23#include <asm/time.h>
24#include <asm/machdep.h>
25#include <asm/pci-bridge.h>
54508214
MW
26#include <asm/prom.h>
27#include <mm/mmu_decl.h>
28#include <asm/udbg.h>
29
30#include <asm/mpic.h>
0d81df87 31#include <asm/nvram.h>
54508214
MW
32
33#include <sysdev/fsl_pci.h>
34#include <sysdev/fsl_soc.h>
44b24b74 35#include <sysdev/ge/ge_pic.h>
54508214
MW
36
37#include "mpc86xx.h"
38
39#undef DEBUG
40
41#ifdef DEBUG
42#define DBG (fmt...) do { printk(KERN_ERR "SBC610: " fmt); } while (0)
43#else
44#define DBG (fmt...) do { } while (0)
45#endif
46
3a470247
MW
47void __iomem *sbc610_regs;
48
49static void __init gef_sbc610_init_irq(void)
50{
51 struct device_node *cascade_node = NULL;
52
53 mpc86xx_init_irq();
54
55 /*
56 * There is a simple interrupt handler in the main FPGA, this needs
57 * to be cascaded into the MPIC
58 */
59 cascade_node = of_find_compatible_node(NULL, NULL, "gef,fpga-pic");
60 if (!cascade_node) {
61 printk(KERN_WARNING "SBC610: No FPGA PIC\n");
62 return;
63 }
64
65 gef_pic_init(cascade_node);
66 of_node_put(cascade_node);
67}
68
54508214
MW
69static void __init gef_sbc610_setup_arch(void)
70{
6675847e 71 struct device_node *regs;
54508214 72
948e78c3 73 printk(KERN_INFO "GE Intelligent Platforms SBC610 6U VPX SBC\n");
54508214
MW
74
75#ifdef CONFIG_SMP
76 mpc86xx_smp_init();
77#endif
6675847e 78
905e75c4
JH
79 fsl_pci_assign_primary();
80
6675847e
MW
81 /* Remap basic board registers */
82 regs = of_find_compatible_node(NULL, NULL, "gef,fpga-regs");
83 if (regs) {
84 sbc610_regs = of_iomap(regs, 0);
85 if (sbc610_regs == NULL)
86 printk(KERN_WARNING "Unable to map board registers\n");
87 of_node_put(regs);
88 }
0d81df87
MW
89
90#if defined(CONFIG_MMIO_NVRAM)
91 mmio_nvram_init();
92#endif
6675847e
MW
93}
94
95/* Return the PCB revision */
96static unsigned int gef_sbc610_get_pcb_rev(void)
97{
98 unsigned int reg;
99
100 reg = ioread32(sbc610_regs);
101 return (reg >> 8) & 0xff;
102}
103
104/* Return the board (software) revision */
105static unsigned int gef_sbc610_get_board_rev(void)
106{
107 unsigned int reg;
108
109 reg = ioread32(sbc610_regs);
110 return (reg >> 16) & 0xff;
54508214
MW
111}
112
6675847e
MW
113/* Return the FPGA revision */
114static unsigned int gef_sbc610_get_fpga_rev(void)
115{
116 unsigned int reg;
117
118 reg = ioread32(sbc610_regs);
119 return (reg >> 24) & 0xf;
120}
54508214
MW
121
122static void gef_sbc610_show_cpuinfo(struct seq_file *m)
123{
54508214
MW
124 uint svid = mfspr(SPRN_SVR);
125
948e78c3 126 seq_printf(m, "Vendor\t\t: GE Intelligent Platforms\n");
54508214 127
6675847e
MW
128 seq_printf(m, "Revision\t: %u%c\n", gef_sbc610_get_pcb_rev(),
129 ('A' + gef_sbc610_get_board_rev() - 1));
130 seq_printf(m, "FPGA Revision\t: %u\n", gef_sbc610_get_fpga_rev());
131
54508214 132 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
54508214
MW
133}
134
cad5cef6 135static void gef_sbc610_nec_fixup(struct pci_dev *pdev)
a969e76a
MW
136{
137 unsigned int val;
138
368a1211
TB
139 /* Do not do the fixup on other platforms! */
140 if (!machine_is(gef_sbc610))
141 return;
142
a969e76a
MW
143 printk(KERN_INFO "Running NEC uPD720101 Fixup\n");
144
145 /* Ensure ports 1, 2, 3, 4 & 5 are enabled */
146 pci_read_config_dword(pdev, 0xe0, &val);
147 pci_write_config_dword(pdev, 0xe0, (val & ~7) | 0x5);
148
149 /* System clock is 48-MHz Oscillator and EHCI Enabled. */
150 pci_write_config_dword(pdev, 0xe4, 1 << 5);
151}
152DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NEC, PCI_DEVICE_ID_NEC_USB,
153 gef_sbc610_nec_fixup);
54508214
MW
154
155/*
156 * Called very early, device-tree isn't unflattened
157 *
158 * This function is called to determine whether the BSP is compatible with the
159 * supplied device-tree, which is assumed to be the correct one for the actual
160 * board. It is expected thati, in the future, a kernel may support multiple
161 * boards.
162 */
163static int __init gef_sbc610_probe(void)
164{
56571384 165 if (of_machine_is_compatible("gef,sbc610"))
54508214
MW
166 return 1;
167
168 return 0;
169}
170
4f9d6e95 171machine_arch_initcall(gef_sbc610, mpc86xx_common_publish_devices);
54508214
MW
172
173define_machine(gef_sbc610) {
948e78c3 174 .name = "GE SBC610",
54508214
MW
175 .probe = gef_sbc610_probe,
176 .setup_arch = gef_sbc610_setup_arch,
3a470247 177 .init_IRQ = gef_sbc610_init_irq,
54508214
MW
178 .show_cpuinfo = gef_sbc610_show_cpuinfo,
179 .get_irq = mpic_get_irq,
54508214
MW
180 .time_init = mpc86xx_time_init,
181 .calibrate_decr = generic_calibrate_decr,
182 .progress = udbg_progress,
183#ifdef CONFIG_PCI
184 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
185#endif
186};