Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 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> |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 27 | #include <linux/bootmem.h> |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 28 | |
| 29 | #include <asm/machdep.h> |
| 30 | #include <asm/firmware.h> |
| 31 | #include <asm/time.h> |
| 32 | #include <asm/iommu.h> |
| 33 | #include <asm/udbg.h> |
| 34 | #include <asm/prom.h> |
| 35 | #include <asm/lv1call.h> |
| 36 | |
| 37 | #include "platform.h" |
| 38 | |
| 39 | #if defined(DEBUG) |
Geert Uytterhoeven | 83bb643 | 2007-06-16 07:19:23 +1000 | [diff] [blame] | 40 | #define DBG udbg_printf |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 41 | #else |
Geert Uytterhoeven | 83bb643 | 2007-06-16 07:19:23 +1000 | [diff] [blame] | 42 | #define DBG pr_debug |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 43 | #endif |
| 44 | |
Geoff Levand | fde5efd | 2007-02-07 12:20:01 -0800 | [diff] [blame] | 45 | #if !defined(CONFIG_SMP) |
| 46 | static void smp_send_stop(void) {} |
| 47 | #endif |
| 48 | |
Masakazu Mokuno | 1322810 | 2007-06-16 07:18:48 +1000 | [diff] [blame] | 49 | static union ps3_firmware_version ps3_firmware_version; |
| 50 | |
| 51 | void ps3_get_firmware_version(union ps3_firmware_version *v) |
Geoff Levand | 66b4495 | 2007-01-26 19:08:21 -0800 | [diff] [blame] | 52 | { |
Masakazu Mokuno | 1322810 | 2007-06-16 07:18:48 +1000 | [diff] [blame] | 53 | *v = ps3_firmware_version; |
Geoff Levand | 66b4495 | 2007-01-26 19:08:21 -0800 | [diff] [blame] | 54 | } |
| 55 | EXPORT_SYMBOL_GPL(ps3_get_firmware_version); |
| 56 | |
Masakazu Mokuno | 1322810 | 2007-06-16 07:18:48 +1000 | [diff] [blame] | 57 | int ps3_compare_firmware_version(u16 major, u16 minor, u16 rev) |
| 58 | { |
| 59 | union ps3_firmware_version x; |
| 60 | |
| 61 | x.pad = 0; |
| 62 | x.major = major; |
| 63 | x.minor = minor; |
| 64 | x.rev = rev; |
| 65 | |
| 66 | return (ps3_firmware_version.raw - x.raw); |
| 67 | } |
| 68 | EXPORT_SYMBOL_GPL(ps3_compare_firmware_version); |
| 69 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 70 | static void ps3_power_save(void) |
| 71 | { |
| 72 | /* |
| 73 | * lv1_pause() puts the PPE thread into inactive state until an |
| 74 | * irq on an unmasked plug exists. MSR[EE] has no effect. |
| 75 | * flags: 0 = wake on DEC interrupt, 1 = ignore DEC interrupt. |
| 76 | */ |
| 77 | |
| 78 | lv1_pause(0); |
| 79 | } |
| 80 | |
Geoff Levand | fde5efd | 2007-02-07 12:20:01 -0800 | [diff] [blame] | 81 | static void ps3_restart(char *cmd) |
| 82 | { |
| 83 | DBG("%s:%d cmd '%s'\n", __func__, __LINE__, cmd); |
| 84 | |
| 85 | smp_send_stop(); |
| 86 | ps3_sys_manager_restart(); /* never returns */ |
| 87 | } |
| 88 | |
| 89 | static void ps3_power_off(void) |
| 90 | { |
| 91 | DBG("%s:%d\n", __func__, __LINE__); |
| 92 | |
| 93 | smp_send_stop(); |
| 94 | ps3_sys_manager_power_off(); /* never returns */ |
| 95 | } |
| 96 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 97 | static void ps3_panic(char *str) |
| 98 | { |
| 99 | DBG("%s:%d %s\n", __func__, __LINE__, str); |
| 100 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 101 | smp_send_stop(); |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 102 | printk("\n"); |
| 103 | printk(" System does not reboot automatically.\n"); |
| 104 | printk(" Please press POWER button.\n"); |
| 105 | printk("\n"); |
| 106 | |
Geoff Levand | fde5efd | 2007-02-07 12:20:01 -0800 | [diff] [blame] | 107 | while(1); |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 108 | } |
| 109 | |
Geert Uytterhoeven | 9e6b99b | 2007-06-16 08:05:38 +1000 | [diff] [blame^] | 110 | #if defined(CONFIG_FB_PS3) || defined(CONFIG_FB_PS3_MODULE) |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 111 | static void prealloc(struct ps3_prealloc *p) |
| 112 | { |
| 113 | if (!p->size) |
| 114 | return; |
| 115 | |
| 116 | p->address = __alloc_bootmem(p->size, p->align, __pa(MAX_DMA_ADDRESS)); |
| 117 | if (!p->address) { |
| 118 | printk(KERN_ERR "%s: Cannot allocate %s\n", __FUNCTION__, |
| 119 | p->name); |
| 120 | return; |
| 121 | } |
| 122 | |
| 123 | printk(KERN_INFO "%s: %lu bytes at %p\n", p->name, p->size, |
| 124 | p->address); |
| 125 | } |
| 126 | |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 127 | struct ps3_prealloc ps3fb_videomemory = { |
Geert Uytterhoeven | 9e6b99b | 2007-06-16 08:05:38 +1000 | [diff] [blame^] | 128 | .name = "ps3fb videomemory", |
| 129 | .size = CONFIG_FB_PS3_DEFAULT_SIZE_M*1024*1024, |
| 130 | .align = 1024*1024 /* the GPU requires 1 MiB alignment */ |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 131 | }; |
Geert Uytterhoeven | 9e6b99b | 2007-06-16 08:05:38 +1000 | [diff] [blame^] | 132 | EXPORT_SYMBOL_GPL(ps3fb_videomemory); |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 133 | #define prealloc_ps3fb_videomemory() prealloc(&ps3fb_videomemory) |
| 134 | |
| 135 | static int __init early_parse_ps3fb(char *p) |
| 136 | { |
| 137 | if (!p) |
| 138 | return 1; |
| 139 | |
| 140 | ps3fb_videomemory.size = _ALIGN_UP(memparse(p, &p), |
| 141 | ps3fb_videomemory.align); |
| 142 | return 0; |
| 143 | } |
| 144 | early_param("ps3fb", early_parse_ps3fb); |
| 145 | #else |
| 146 | #define prealloc_ps3fb_videomemory() do { } while (0) |
| 147 | #endif |
| 148 | |
Geoff Levand | f0a1d02 | 2007-05-01 07:00:50 +1000 | [diff] [blame] | 149 | static int ps3_set_dabr(u64 dabr) |
| 150 | { |
| 151 | enum {DABR_USER = 1, DABR_KERNEL = 2,}; |
| 152 | |
| 153 | return lv1_set_dabr(dabr, DABR_KERNEL | DABR_USER) ? -1 : 0; |
| 154 | } |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 155 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 156 | static void __init ps3_setup_arch(void) |
| 157 | { |
Geoff Levand | 66b4495 | 2007-01-26 19:08:21 -0800 | [diff] [blame] | 158 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 159 | DBG(" -> %s:%d\n", __func__, __LINE__); |
| 160 | |
Masakazu Mokuno | 1322810 | 2007-06-16 07:18:48 +1000 | [diff] [blame] | 161 | lv1_get_version_info(&ps3_firmware_version.raw); |
| 162 | printk(KERN_INFO "PS3 firmware version %u.%u.%u\n", |
| 163 | ps3_firmware_version.major, ps3_firmware_version.minor, |
| 164 | ps3_firmware_version.rev); |
Geoff Levand | 66b4495 | 2007-01-26 19:08:21 -0800 | [diff] [blame] | 165 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 166 | ps3_spu_set_platform(); |
| 167 | ps3_map_htab(); |
| 168 | |
| 169 | #ifdef CONFIG_SMP |
| 170 | smp_init_ps3(); |
| 171 | #endif |
| 172 | |
| 173 | #ifdef CONFIG_DUMMY_CONSOLE |
| 174 | conswitchp = &dummy_con; |
| 175 | #endif |
| 176 | |
Geert Uytterhoeven | fbdb3e5b | 2007-02-12 00:55:22 -0800 | [diff] [blame] | 177 | prealloc_ps3fb_videomemory(); |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 178 | ppc_md.power_save = ps3_power_save; |
| 179 | |
| 180 | DBG(" <- %s:%d\n", __func__, __LINE__); |
| 181 | } |
| 182 | |
| 183 | static void __init ps3_progress(char *s, unsigned short hex) |
| 184 | { |
| 185 | printk("*** %04x : %s\n", hex, s ? s : ""); |
| 186 | } |
| 187 | |
| 188 | static int __init ps3_probe(void) |
| 189 | { |
| 190 | unsigned long htab_size; |
| 191 | unsigned long dt_root; |
| 192 | |
| 193 | DBG(" -> %s:%d\n", __func__, __LINE__); |
| 194 | |
| 195 | dt_root = of_get_flat_dt_root(); |
| 196 | if (!of_flat_dt_is_compatible(dt_root, "PS3")) |
| 197 | return 0; |
| 198 | |
Arnd Bergmann | e22ba7e | 2006-11-27 19:18:57 +0100 | [diff] [blame] | 199 | powerpc_firmware_features |= FW_FEATURE_PS3_POSSIBLE; |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 200 | |
| 201 | ps3_os_area_init(); |
| 202 | ps3_mm_init(); |
| 203 | ps3_mm_vas_create(&htab_size); |
| 204 | ps3_hpte_init(htab_size); |
| 205 | |
| 206 | DBG(" <- %s:%d\n", __func__, __LINE__); |
| 207 | return 1; |
| 208 | } |
| 209 | |
| 210 | #if defined(CONFIG_KEXEC) |
| 211 | static void ps3_kexec_cpu_down(int crash_shutdown, int secondary) |
| 212 | { |
Geoff Levand | 9263e85 | 2007-06-16 07:19:32 +1000 | [diff] [blame] | 213 | int cpu = smp_processor_id(); |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 214 | |
Geoff Levand | 9263e85 | 2007-06-16 07:19:32 +1000 | [diff] [blame] | 215 | DBG(" -> %s:%d: (%d)\n", __func__, __LINE__, cpu); |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 216 | |
Geoff Levand | 9263e85 | 2007-06-16 07:19:32 +1000 | [diff] [blame] | 217 | ps3_smp_cleanup_cpu(cpu); |
| 218 | ps3_shutdown_IRQ(cpu); |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 219 | |
| 220 | DBG(" <- %s:%d\n", __func__, __LINE__); |
| 221 | } |
| 222 | #endif |
| 223 | |
| 224 | define_machine(ps3) { |
| 225 | .name = "PS3", |
| 226 | .probe = ps3_probe, |
| 227 | .setup_arch = ps3_setup_arch, |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 228 | .init_IRQ = ps3_init_IRQ, |
| 229 | .panic = ps3_panic, |
| 230 | .get_boot_time = ps3_get_boot_time, |
| 231 | .set_rtc_time = ps3_set_rtc_time, |
| 232 | .get_rtc_time = ps3_get_rtc_time, |
Geoff Levand | f0a1d02 | 2007-05-01 07:00:50 +1000 | [diff] [blame] | 233 | .set_dabr = ps3_set_dabr, |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 234 | .calibrate_decr = ps3_calibrate_decr, |
| 235 | .progress = ps3_progress, |
Geoff Levand | fde5efd | 2007-02-07 12:20:01 -0800 | [diff] [blame] | 236 | .restart = ps3_restart, |
| 237 | .power_off = ps3_power_off, |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 238 | #if defined(CONFIG_KEXEC) |
| 239 | .kexec_cpu_down = ps3_kexec_cpu_down, |
Geoff Levand | 9263e85 | 2007-06-16 07:19:32 +1000 | [diff] [blame] | 240 | .machine_kexec = default_machine_kexec, |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 241 | .machine_kexec_prepare = default_machine_kexec_prepare, |
| 242 | .machine_crash_shutdown = default_machine_crash_shutdown, |
| 243 | #endif |
| 244 | }; |