]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/blob - arch/powerpc/platforms/ps3/setup.c
ASoC: ep93xx-ac97: Fix platform_get_irq's error checking
[mirror_ubuntu-disco-kernel.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/export.h>
27 #include <linux/bootmem.h>
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 #include <asm/ps3gpu.h>
37
38 #include "platform.h"
39
40 #if defined(DEBUG)
41 #define DBG udbg_printf
42 #else
43 #define DBG pr_debug
44 #endif
45
46 /* mutex synchronizing GPU accesses and video mode changes */
47 DEFINE_MUTEX(ps3_gpu_mutex);
48 EXPORT_SYMBOL_GPL(ps3_gpu_mutex);
49
50 static union ps3_firmware_version ps3_firmware_version;
51
52 void ps3_get_firmware_version(union ps3_firmware_version *v)
53 {
54 *v = ps3_firmware_version;
55 }
56 EXPORT_SYMBOL_GPL(ps3_get_firmware_version);
57
58 int ps3_compare_firmware_version(u16 major, u16 minor, u16 rev)
59 {
60 union ps3_firmware_version x;
61
62 x.pad = 0;
63 x.major = major;
64 x.minor = minor;
65 x.rev = rev;
66
67 return (ps3_firmware_version.raw > x.raw) -
68 (ps3_firmware_version.raw < x.raw);
69 }
70 EXPORT_SYMBOL_GPL(ps3_compare_firmware_version);
71
72 static void ps3_power_save(void)
73 {
74 /*
75 * lv1_pause() puts the PPE thread into inactive state until an
76 * irq on an unmasked plug exists. MSR[EE] has no effect.
77 * flags: 0 = wake on DEC interrupt, 1 = ignore DEC interrupt.
78 */
79
80 lv1_pause(0);
81 }
82
83 static void __noreturn ps3_restart(char *cmd)
84 {
85 DBG("%s:%d cmd '%s'\n", __func__, __LINE__, cmd);
86
87 smp_send_stop();
88 ps3_sys_manager_restart(); /* never returns */
89 }
90
91 static void ps3_power_off(void)
92 {
93 DBG("%s:%d\n", __func__, __LINE__);
94
95 smp_send_stop();
96 ps3_sys_manager_power_off(); /* never returns */
97 }
98
99 static void __noreturn ps3_halt(void)
100 {
101 DBG("%s:%d\n", __func__, __LINE__);
102
103 smp_send_stop();
104 ps3_sys_manager_halt(); /* never returns */
105 }
106
107 #if defined(CONFIG_FB_PS3) || defined(CONFIG_FB_PS3_MODULE) || \
108 defined(CONFIG_PS3_FLASH) || defined(CONFIG_PS3_FLASH_MODULE)
109 static void __init prealloc(struct ps3_prealloc *p)
110 {
111 if (!p->size)
112 return;
113
114 p->address = memblock_virt_alloc(p->size, p->align);
115
116 printk(KERN_INFO "%s: %lu bytes at %p\n", p->name, p->size,
117 p->address);
118 }
119 #endif
120
121 #if defined(CONFIG_FB_PS3) || defined(CONFIG_FB_PS3_MODULE)
122 struct ps3_prealloc ps3fb_videomemory = {
123 .name = "ps3fb videomemory",
124 .size = CONFIG_FB_PS3_DEFAULT_SIZE_M*1024*1024,
125 .align = 1024*1024 /* the GPU requires 1 MiB alignment */
126 };
127 EXPORT_SYMBOL_GPL(ps3fb_videomemory);
128 #define prealloc_ps3fb_videomemory() prealloc(&ps3fb_videomemory)
129
130 static int __init early_parse_ps3fb(char *p)
131 {
132 if (!p)
133 return 1;
134
135 ps3fb_videomemory.size = _ALIGN_UP(memparse(p, &p),
136 ps3fb_videomemory.align);
137 return 0;
138 }
139 early_param("ps3fb", early_parse_ps3fb);
140 #else
141 #define prealloc_ps3fb_videomemory() do { } while (0)
142 #endif
143
144 #if defined(CONFIG_PS3_FLASH) || defined(CONFIG_PS3_FLASH_MODULE)
145 struct ps3_prealloc ps3flash_bounce_buffer = {
146 .name = "ps3flash bounce buffer",
147 .size = 256*1024,
148 .align = 256*1024
149 };
150 EXPORT_SYMBOL_GPL(ps3flash_bounce_buffer);
151 #define prealloc_ps3flash_bounce_buffer() prealloc(&ps3flash_bounce_buffer)
152
153 static int __init early_parse_ps3flash(char *p)
154 {
155 if (!p)
156 return 1;
157
158 if (!strcmp(p, "off"))
159 ps3flash_bounce_buffer.size = 0;
160
161 return 0;
162 }
163 early_param("ps3flash", early_parse_ps3flash);
164 #else
165 #define prealloc_ps3flash_bounce_buffer() do { } while (0)
166 #endif
167
168 static int ps3_set_dabr(unsigned long dabr, unsigned long dabrx)
169 {
170 /* Have to set at least one bit in the DABRX */
171 if (dabrx == 0 && dabr == 0)
172 dabrx = DABRX_USER;
173 /* hypervisor only allows us to set BTI, Kernel and user */
174 dabrx &= DABRX_BTI | DABRX_KERNEL | DABRX_USER;
175
176 return lv1_set_dabr(dabr, dabrx) ? -1 : 0;
177 }
178
179 static void __init ps3_setup_arch(void)
180 {
181 u64 tmp;
182
183 DBG(" -> %s:%d\n", __func__, __LINE__);
184
185 lv1_get_version_info(&ps3_firmware_version.raw, &tmp);
186
187 printk(KERN_INFO "PS3 firmware version %u.%u.%u\n",
188 ps3_firmware_version.major, ps3_firmware_version.minor,
189 ps3_firmware_version.rev);
190
191 ps3_spu_set_platform();
192
193 #ifdef CONFIG_SMP
194 smp_init_ps3();
195 #endif
196
197 #ifdef CONFIG_DUMMY_CONSOLE
198 conswitchp = &dummy_con;
199 #endif
200
201 prealloc_ps3fb_videomemory();
202 prealloc_ps3flash_bounce_buffer();
203
204 ppc_md.power_save = ps3_power_save;
205 ps3_os_area_init();
206
207 DBG(" <- %s:%d\n", __func__, __LINE__);
208 }
209
210 static void __init ps3_progress(char *s, unsigned short hex)
211 {
212 printk("*** %04x : %s\n", hex, s ? s : "");
213 }
214
215 void __init ps3_early_mm_init(void)
216 {
217 unsigned long htab_size;
218
219 ps3_mm_init();
220 ps3_mm_vas_create(&htab_size);
221 ps3_hpte_init(htab_size);
222 }
223
224 static int __init ps3_probe(void)
225 {
226 DBG(" -> %s:%d\n", __func__, __LINE__);
227
228 if (!of_machine_is_compatible("sony,ps3"))
229 return 0;
230
231 ps3_os_area_save_params();
232
233 pm_power_off = ps3_power_off;
234
235 DBG(" <- %s:%d\n", __func__, __LINE__);
236 return 1;
237 }
238
239 #if defined(CONFIG_KEXEC_CORE)
240 static void ps3_kexec_cpu_down(int crash_shutdown, int secondary)
241 {
242 int cpu = smp_processor_id();
243
244 DBG(" -> %s:%d: (%d)\n", __func__, __LINE__, cpu);
245
246 ps3_smp_cleanup_cpu(cpu);
247 ps3_shutdown_IRQ(cpu);
248
249 DBG(" <- %s:%d\n", __func__, __LINE__);
250 }
251 #endif
252
253 define_machine(ps3) {
254 .name = "PS3",
255 .probe = ps3_probe,
256 .setup_arch = ps3_setup_arch,
257 .init_IRQ = ps3_init_IRQ,
258 .get_boot_time = ps3_get_boot_time,
259 .set_dabr = ps3_set_dabr,
260 .calibrate_decr = ps3_calibrate_decr,
261 .progress = ps3_progress,
262 .restart = ps3_restart,
263 .halt = ps3_halt,
264 #if defined(CONFIG_KEXEC_CORE)
265 .kexec_cpu_down = ps3_kexec_cpu_down,
266 #endif
267 };