2 * PS3 platform setup routines.
4 * Copyright (C) 2006 Sony Computer Entertainment Inc.
5 * Copyright 2006 Sony Corp.
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.
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.
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
21 #include <linux/kernel.h>
22 #include <linux/delay.h>
24 #include <linux/root_dev.h>
25 #include <linux/console.h>
26 #include <linux/kexec.h>
27 #include <linux/bootmem.h>
29 #include <asm/machdep.h>
30 #include <asm/firmware.h>
32 #include <asm/iommu.h>
35 #include <asm/lv1call.h>
40 #define DBG udbg_printf
45 #if !defined(CONFIG_SMP)
46 static void smp_send_stop(void) {}
49 static union ps3_firmware_version ps3_firmware_version;
51 void ps3_get_firmware_version(union ps3_firmware_version *v)
53 *v = ps3_firmware_version;
55 EXPORT_SYMBOL_GPL(ps3_get_firmware_version);
57 int ps3_compare_firmware_version(u16 major, u16 minor, u16 rev)
59 union ps3_firmware_version x;
66 return (ps3_firmware_version.raw > x.raw) -
67 (ps3_firmware_version.raw < x.raw);
69 EXPORT_SYMBOL_GPL(ps3_compare_firmware_version);
71 static void ps3_power_save(void)
74 * lv1_pause() puts the PPE thread into inactive state until an
75 * irq on an unmasked plug exists. MSR[EE] has no effect.
76 * flags: 0 = wake on DEC interrupt, 1 = ignore DEC interrupt.
82 static void ps3_restart(char *cmd)
84 DBG("%s:%d cmd '%s'\n", __func__, __LINE__, cmd);
87 ps3_sys_manager_restart(); /* never returns */
90 static void ps3_power_off(void)
92 DBG("%s:%d\n", __func__, __LINE__);
95 ps3_sys_manager_power_off(); /* never returns */
98 static void ps3_halt(void)
100 DBG("%s:%d\n", __func__, __LINE__);
103 ps3_sys_manager_halt(); /* never returns */
106 static void ps3_panic(char *str)
108 DBG("%s:%d %s\n", __func__, __LINE__, str);
112 printk(" System does not reboot automatically.\n");
113 printk(" Please press POWER button.\n");
120 #if defined(CONFIG_FB_PS3) || defined(CONFIG_FB_PS3_MODULE) || \
121 defined(CONFIG_PS3_FLASH) || defined(CONFIG_PS3_FLASH_MODULE)
122 static void __init prealloc(struct ps3_prealloc *p)
127 p->address = __alloc_bootmem(p->size, p->align, __pa(MAX_DMA_ADDRESS));
129 printk(KERN_ERR "%s: Cannot allocate %s\n", __func__,
134 printk(KERN_INFO "%s: %lu bytes at %p\n", p->name, p->size,
139 #if defined(CONFIG_FB_PS3) || defined(CONFIG_FB_PS3_MODULE)
140 struct ps3_prealloc ps3fb_videomemory = {
141 .name = "ps3fb videomemory",
142 .size = CONFIG_FB_PS3_DEFAULT_SIZE_M*1024*1024,
143 .align = 1024*1024 /* the GPU requires 1 MiB alignment */
145 EXPORT_SYMBOL_GPL(ps3fb_videomemory);
146 #define prealloc_ps3fb_videomemory() prealloc(&ps3fb_videomemory)
148 static int __init early_parse_ps3fb(char *p)
153 ps3fb_videomemory.size = _ALIGN_UP(memparse(p, &p),
154 ps3fb_videomemory.align);
157 early_param("ps3fb", early_parse_ps3fb);
159 #define prealloc_ps3fb_videomemory() do { } while (0)
162 #if defined(CONFIG_PS3_FLASH) || defined(CONFIG_PS3_FLASH_MODULE)
163 struct ps3_prealloc ps3flash_bounce_buffer = {
164 .name = "ps3flash bounce buffer",
168 EXPORT_SYMBOL_GPL(ps3flash_bounce_buffer);
169 #define prealloc_ps3flash_bounce_buffer() prealloc(&ps3flash_bounce_buffer)
171 static int __init early_parse_ps3flash(char *p)
176 if (!strcmp(p, "off"))
177 ps3flash_bounce_buffer.size = 0;
181 early_param("ps3flash", early_parse_ps3flash);
183 #define prealloc_ps3flash_bounce_buffer() do { } while (0)
186 static int ps3_set_dabr(u64 dabr)
188 enum {DABR_USER = 1, DABR_KERNEL = 2,};
190 return lv1_set_dabr(dabr, DABR_KERNEL | DABR_USER) ? -1 : 0;
193 static void __init ps3_setup_arch(void)
196 DBG(" -> %s:%d\n", __func__, __LINE__);
198 lv1_get_version_info(&ps3_firmware_version.raw);
199 printk(KERN_INFO "PS3 firmware version %u.%u.%u\n",
200 ps3_firmware_version.major, ps3_firmware_version.minor,
201 ps3_firmware_version.rev);
203 ps3_spu_set_platform();
210 #ifdef CONFIG_DUMMY_CONSOLE
211 conswitchp = &dummy_con;
214 prealloc_ps3fb_videomemory();
215 prealloc_ps3flash_bounce_buffer();
217 ppc_md.power_save = ps3_power_save;
220 DBG(" <- %s:%d\n", __func__, __LINE__);
223 static void __init ps3_progress(char *s, unsigned short hex)
225 printk("*** %04x : %s\n", hex, s ? s : "");
228 static int __init ps3_probe(void)
230 unsigned long htab_size;
231 unsigned long dt_root;
233 DBG(" -> %s:%d\n", __func__, __LINE__);
235 dt_root = of_get_flat_dt_root();
236 if (!of_flat_dt_is_compatible(dt_root, "sony,ps3"))
239 powerpc_firmware_features |= FW_FEATURE_PS3_POSSIBLE;
241 ps3_os_area_save_params();
243 ps3_mm_vas_create(&htab_size);
244 ps3_hpte_init(htab_size);
246 DBG(" <- %s:%d\n", __func__, __LINE__);
250 #if defined(CONFIG_KEXEC)
251 static void ps3_kexec_cpu_down(int crash_shutdown, int secondary)
253 int cpu = smp_processor_id();
255 DBG(" -> %s:%d: (%d)\n", __func__, __LINE__, cpu);
257 ps3_smp_cleanup_cpu(cpu);
258 ps3_shutdown_IRQ(cpu);
260 DBG(" <- %s:%d\n", __func__, __LINE__);
264 define_machine(ps3) {
267 .setup_arch = ps3_setup_arch,
268 .init_IRQ = ps3_init_IRQ,
270 .get_boot_time = ps3_get_boot_time,
271 .set_rtc_time = ps3_set_rtc_time,
272 .get_rtc_time = ps3_get_rtc_time,
273 .set_dabr = ps3_set_dabr,
274 .calibrate_decr = ps3_calibrate_decr,
275 .progress = ps3_progress,
276 .restart = ps3_restart,
277 .power_off = ps3_power_off,
279 #if defined(CONFIG_KEXEC)
280 .kexec_cpu_down = ps3_kexec_cpu_down,
281 .machine_kexec = default_machine_kexec,
282 .machine_kexec_prepare = default_machine_kexec_prepare,
283 .machine_crash_shutdown = default_machine_crash_shutdown,