]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/powerpc/platforms/86xx/gef_sbc610.c
powerpc: Drop redundant machine type print in show_cpuinfo
[mirror_ubuntu-kernels.git] / arch / powerpc / platforms / 86xx / gef_sbc610.c
CommitLineData
54508214
MW
1/*
2 * GE Fanuc SBC610 board support
3 *
4 * Author: Martyn Welch <martyn.welch@gefanuc.com>
5 *
6 * Copyright 2008 GE Fanuc Intelligent Platforms Embedded Systems, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * Based on: mpc86xx_hpcn.c (MPC86xx HPCN board specific routines)
14 * Copyright 2006 Freescale Semiconductor Inc.
15 */
16
17#include <linux/stddef.h>
18#include <linux/kernel.h>
19#include <linux/pci.h>
20#include <linux/kdev_t.h>
21#include <linux/delay.h>
22#include <linux/seq_file.h>
23#include <linux/of_platform.h>
24
25#include <asm/system.h>
26#include <asm/time.h>
27#include <asm/machdep.h>
28#include <asm/pci-bridge.h>
29#include <asm/mpc86xx.h>
30#include <asm/prom.h>
31#include <mm/mmu_decl.h>
32#include <asm/udbg.h>
33
34#include <asm/mpic.h>
35
36#include <sysdev/fsl_pci.h>
37#include <sysdev/fsl_soc.h>
38
39#include "mpc86xx.h"
40
41#undef DEBUG
42
43#ifdef DEBUG
44#define DBG (fmt...) do { printk(KERN_ERR "SBC610: " fmt); } while (0)
45#else
46#define DBG (fmt...) do { } while (0)
47#endif
48
49static void __init gef_sbc610_setup_arch(void)
50{
51#ifdef CONFIG_PCI
52 struct device_node *np;
53
54 for_each_compatible_node(np, "pci", "fsl,mpc8641-pcie") {
55 fsl_add_bridge(np, 1);
56 }
57#endif
58
59 printk(KERN_INFO "GE Fanuc Intelligent Platforms SBC610 6U VPX SBC\n");
60
61#ifdef CONFIG_SMP
62 mpc86xx_smp_init();
63#endif
64}
65
66
67static void gef_sbc610_show_cpuinfo(struct seq_file *m)
68{
54508214 69 uint memsize = total_memory;
54508214
MW
70 uint svid = mfspr(SPRN_SVR);
71
72 seq_printf(m, "Vendor\t\t: GE Fanuc Intelligent Platforms\n");
73
54508214
MW
74 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
75 seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
76}
77
78
79/*
80 * Called very early, device-tree isn't unflattened
81 *
82 * This function is called to determine whether the BSP is compatible with the
83 * supplied device-tree, which is assumed to be the correct one for the actual
84 * board. It is expected thati, in the future, a kernel may support multiple
85 * boards.
86 */
87static int __init gef_sbc610_probe(void)
88{
89 unsigned long root = of_get_flat_dt_root();
90
91 if (of_flat_dt_is_compatible(root, "gef,sbc610"))
92 return 1;
93
94 return 0;
95}
96
97static long __init mpc86xx_time_init(void)
98{
99 unsigned int temp;
100
101 /* Set the time base to zero */
102 mtspr(SPRN_TBWL, 0);
103 mtspr(SPRN_TBWU, 0);
104
105 temp = mfspr(SPRN_HID0);
106 temp |= HID0_TBEN;
107 mtspr(SPRN_HID0, temp);
108 asm volatile("isync");
109
110 return 0;
111}
112
113static __initdata struct of_device_id of_bus_ids[] = {
114 { .compatible = "simple-bus", },
115 {},
116};
117
118static int __init declare_of_platform_devices(void)
119{
120 printk(KERN_DEBUG "Probe platform devices\n");
121 of_platform_bus_probe(NULL, of_bus_ids, NULL);
122
123 return 0;
124}
125machine_device_initcall(gef_sbc610, declare_of_platform_devices);
126
127define_machine(gef_sbc610) {
128 .name = "GE Fanuc SBC610",
129 .probe = gef_sbc610_probe,
130 .setup_arch = gef_sbc610_setup_arch,
131 .init_IRQ = mpc86xx_init_irq,
132 .show_cpuinfo = gef_sbc610_show_cpuinfo,
133 .get_irq = mpic_get_irq,
134 .restart = fsl_rstcr_restart,
135 .time_init = mpc86xx_time_init,
136 .calibrate_decr = generic_calibrate_decr,
137 .progress = udbg_progress,
138#ifdef CONFIG_PCI
139 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
140#endif
141};