[POWERPC] ps3: remove cpuinfo
[powerpc.git] / arch / powerpc / platforms / ps3 / setup.c
1 /*
2  *  PS3 platform setup routines.
3  *
4  *  Copyright (C) 2006 Sony Computer Entertainment Inc.
5  *  Copyright 2006 Sony Corp.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; version 2 of the License.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <linux/kernel.h>
22 #include <linux/delay.h>
23 #include <linux/fs.h>
24 #include <linux/root_dev.h>
25 #include <linux/console.h>
26 #include <linux/kexec.h>
27
28 #include <asm/machdep.h>
29 #include <asm/firmware.h>
30 #include <asm/time.h>
31 #include <asm/iommu.h>
32 #include <asm/udbg.h>
33 #include <asm/prom.h>
34 #include <asm/lv1call.h>
35
36 #include "platform.h"
37
38 #if defined(DEBUG)
39 #define DBG(fmt...) udbg_printf(fmt)
40 #else
41 #define DBG(fmt...) do{if(0)printk(fmt);}while(0)
42 #endif
43
44 static void ps3_power_save(void)
45 {
46         /*
47          * lv1_pause() puts the PPE thread into inactive state until an
48          * irq on an unmasked plug exists. MSR[EE] has no effect.
49          * flags: 0 = wake on DEC interrupt, 1 = ignore DEC interrupt.
50          */
51
52         lv1_pause(0);
53 }
54
55 static void ps3_panic(char *str)
56 {
57         DBG("%s:%d %s\n", __func__, __LINE__, str);
58
59 #ifdef CONFIG_SMP
60         smp_send_stop();
61 #endif
62         printk("\n");
63         printk("   System does not reboot automatically.\n");
64         printk("   Please press POWER button.\n");
65         printk("\n");
66
67         for (;;) ;
68 }
69
70 static void __init ps3_setup_arch(void)
71 {
72         DBG(" -> %s:%d\n", __func__, __LINE__);
73
74         ps3_spu_set_platform();
75         ps3_map_htab();
76
77 #ifdef CONFIG_SMP
78         smp_init_ps3();
79 #endif
80
81 #ifdef CONFIG_DUMMY_CONSOLE
82         conswitchp = &dummy_con;
83 #endif
84
85         ppc_md.power_save = ps3_power_save;
86
87         DBG(" <- %s:%d\n", __func__, __LINE__);
88 }
89
90 static void __init ps3_progress(char *s, unsigned short hex)
91 {
92         printk("*** %04x : %s\n", hex, s ? s : "");
93 }
94
95 static int __init ps3_probe(void)
96 {
97         unsigned long htab_size;
98         unsigned long dt_root;
99
100         DBG(" -> %s:%d\n", __func__, __LINE__);
101
102         dt_root = of_get_flat_dt_root();
103         if (!of_flat_dt_is_compatible(dt_root, "PS3"))
104                 return 0;
105
106         powerpc_firmware_features |= FW_FEATURE_PS3_POSSIBLE;
107
108         ps3_os_area_init();
109         ps3_mm_init();
110         ps3_mm_vas_create(&htab_size);
111         ps3_hpte_init(htab_size);
112
113         DBG(" <- %s:%d\n", __func__, __LINE__);
114         return 1;
115 }
116
117 #if defined(CONFIG_KEXEC)
118 static void ps3_kexec_cpu_down(int crash_shutdown, int secondary)
119 {
120         DBG(" -> %s:%d\n", __func__, __LINE__);
121
122         if (secondary) {
123                 int cpu;
124                 for_each_online_cpu(cpu)
125                         if (cpu)
126                                 ps3_smp_cleanup_cpu(cpu);
127         } else
128                 ps3_smp_cleanup_cpu(0);
129
130         DBG(" <- %s:%d\n", __func__, __LINE__);
131 }
132
133 static void ps3_machine_kexec(struct kimage *image)
134 {
135         unsigned long ppe_id;
136
137         DBG(" -> %s:%d\n", __func__, __LINE__);
138
139         lv1_get_logical_ppe_id(&ppe_id);
140         lv1_configure_irq_state_bitmap(ppe_id, 0, 0);
141         ps3_mm_shutdown();
142         ps3_mm_vas_destroy();
143
144         default_machine_kexec(image);
145
146         DBG(" <- %s:%d\n", __func__, __LINE__);
147 }
148 #endif
149
150 define_machine(ps3) {
151         .name                           = "PS3",
152         .probe                          = ps3_probe,
153         .setup_arch                     = ps3_setup_arch,
154         .init_IRQ                       = ps3_init_IRQ,
155         .panic                          = ps3_panic,
156         .get_boot_time                  = ps3_get_boot_time,
157         .set_rtc_time                   = ps3_set_rtc_time,
158         .get_rtc_time                   = ps3_get_rtc_time,
159         .calibrate_decr                 = ps3_calibrate_decr,
160         .progress                       = ps3_progress,
161 #if defined(CONFIG_KEXEC)
162         .kexec_cpu_down                 = ps3_kexec_cpu_down,
163         .machine_kexec                  = ps3_machine_kexec,
164         .machine_kexec_prepare          = default_machine_kexec_prepare,
165         .machine_crash_shutdown         = default_machine_crash_shutdown,
166 #endif
167 };