blob: 95b128ba9087101a71602a7dab85dc118c5b63e3 [file] [log] [blame]
Geoff Levand2832a812006-11-23 00:46:56 +01001/*
2 * PS3 interrupt 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/module.h>
23#include <linux/irq.h>
24
25#include <asm/machdep.h>
26#include <asm/udbg.h>
27#include <asm/ps3.h>
28#include <asm/lv1call.h>
29
30#include "platform.h"
31
32#if defined(DEBUG)
33#define DBG(fmt...) udbg_printf(fmt)
34#else
35#define DBG(fmt...) do{if(0)printk(fmt);}while(0)
36#endif
37
38/**
Geoff Levand861be322007-01-26 19:08:08 -080039 * struct ps3_bmp - a per cpu irq status and mask bitmap structure
40 * @status: 256 bit status bitmap indexed by plug
41 * @unused_1:
42 * @mask: 256 bit mask bitmap indexed by plug
43 * @unused_2:
44 * @lock:
45 * @ipi_debug_brk_mask:
46 *
47 * The HV mantains per SMT thread mappings of HV outlet to HV plug on
48 * behalf of the guest. These mappings are implemented as 256 bit guest
49 * supplied bitmaps indexed by plug number. The addresses of the bitmaps
50 * are registered with the HV through lv1_configure_irq_state_bitmap().
Geoff Levand57715762007-01-26 19:08:16 -080051 * The HV requires that the 512 bits of status + mask not cross a page
52 * boundary. PS3_BMP_MINALIGN is used to define this minimal 64 byte
53 * alignment.
Geoff Levand861be322007-01-26 19:08:08 -080054 *
55 * The HV supports 256 plugs per thread, assigned as {0..255}, for a total
56 * of 512 plugs supported on a processor. To simplify the logic this
57 * implementation equates HV plug value to Linux virq value, constrains each
58 * interrupt to have a system wide unique plug number, and limits the range
59 * of the plug values to map into the first dword of the bitmaps. This
60 * gives a usable range of plug values of {NUM_ISA_INTERRUPTS..63}. Note
61 * that there is no constraint on how many in this set an individual thread
62 * can acquire.
63 */
64
Geoff Levand57715762007-01-26 19:08:16 -080065#define PS3_BMP_MINALIGN 64
66
Geoff Levand861be322007-01-26 19:08:08 -080067struct ps3_bmp {
68 struct {
69 u64 status;
70 u64 unused_1[3];
71 u64 mask;
72 u64 unused_2[3];
73 };
74 u64 ipi_debug_brk_mask;
75 spinlock_t lock;
76};
77
78/**
79 * struct ps3_private - a per cpu data structure
80 * @bmp: ps3_bmp structure
81 * @node: HV logical_ppe_id
82 * @cpu: HV thread_id
83 */
84
85struct ps3_private {
Geoff Levand57715762007-01-26 19:08:16 -080086 struct ps3_bmp bmp __attribute__ ((aligned (PS3_BMP_MINALIGN)));
Geoff Levand861be322007-01-26 19:08:08 -080087 u64 node;
88 unsigned int cpu;
89};
90
91static DEFINE_PER_CPU(struct ps3_private, ps3_private);
92
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -080093int ps3_alloc_irq(enum ps3_cpu_binding cpu, unsigned long outlet,
Geoff Levand861be322007-01-26 19:08:08 -080094 unsigned int *virq)
95{
96 int result;
97 struct ps3_private *pd;
98
99 /* This defines the default interrupt distribution policy. */
100
101 if (cpu == PS3_BINDING_CPU_ANY)
102 cpu = 0;
103
104 pd = &per_cpu(ps3_private, cpu);
105
106 *virq = irq_create_mapping(NULL, outlet);
107
108 if (*virq == NO_IRQ) {
109 pr_debug("%s:%d: irq_create_mapping failed: outlet %lu\n",
110 __func__, __LINE__, outlet);
111 result = -ENOMEM;
112 goto fail_create;
113 }
114
115 /* Binds outlet to cpu + virq. */
116
117 result = lv1_connect_irq_plug_ext(pd->node, pd->cpu, *virq, outlet, 0);
118
119 if (result) {
120 pr_info("%s:%d: lv1_connect_irq_plug_ext failed: %s\n",
121 __func__, __LINE__, ps3_result(result));
122 result = -EPERM;
123 goto fail_connect;
124 }
125
126 pr_debug("%s:%d: outlet %lu => cpu %u, virq %u\n", __func__, __LINE__,
127 outlet, cpu, *virq);
128
129 result = set_irq_chip_data(*virq, pd);
130
131 if (result) {
132 pr_debug("%s:%d: set_irq_chip_data failed\n",
133 __func__, __LINE__);
134 goto fail_set;
135 }
136
137 return result;
138
139fail_set:
140 lv1_disconnect_irq_plug_ext(pd->node, pd->cpu, *virq);
141fail_connect:
142 irq_dispose_mapping(*virq);
143fail_create:
144 return result;
145}
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800146EXPORT_SYMBOL_GPL(ps3_alloc_irq);
Geoff Levand861be322007-01-26 19:08:08 -0800147
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800148int ps3_free_irq(unsigned int virq)
Geoff Levand861be322007-01-26 19:08:08 -0800149{
150 int result;
151 const struct ps3_private *pd = get_irq_chip_data(virq);
152
153 pr_debug("%s:%d: node %lu, cpu %d, virq %u\n", __func__, __LINE__,
154 pd->node, pd->cpu, virq);
155
156 result = lv1_disconnect_irq_plug_ext(pd->node, pd->cpu, virq);
157
158 if (result)
159 pr_info("%s:%d: lv1_disconnect_irq_plug_ext failed: %s\n",
160 __func__, __LINE__, ps3_result(result));
161
162 set_irq_chip_data(virq, NULL);
163 irq_dispose_mapping(virq);
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800164 return result;
Geoff Levand861be322007-01-26 19:08:08 -0800165}
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800166EXPORT_SYMBOL_GPL(ps3_free_irq);
Geoff Levand861be322007-01-26 19:08:08 -0800167
168/**
Geoff Levand2832a812006-11-23 00:46:56 +0100169 * ps3_alloc_io_irq - Assign a virq to a system bus device.
Geoff Levand861be322007-01-26 19:08:08 -0800170 * @cpu: enum ps3_cpu_binding indicating the cpu the interrupt should be
171 * serviced on.
172 * @interrupt_id: The device interrupt id read from the system repository.
Geoff Levand2832a812006-11-23 00:46:56 +0100173 * @virq: The assigned Linux virq.
174 *
175 * An io irq represents a non-virtualized device interrupt. interrupt_id
176 * coresponds to the interrupt number of the interrupt controller.
177 */
178
Geoff Levand861be322007-01-26 19:08:08 -0800179int ps3_alloc_io_irq(enum ps3_cpu_binding cpu, unsigned int interrupt_id,
180 unsigned int *virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100181{
182 int result;
183 unsigned long outlet;
184
185 result = lv1_construct_io_irq_outlet(interrupt_id, &outlet);
186
187 if (result) {
188 pr_debug("%s:%d: lv1_construct_io_irq_outlet failed: %s\n",
189 __func__, __LINE__, ps3_result(result));
190 return result;
191 }
192
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800193 result = ps3_alloc_irq(cpu, outlet, virq);
Geoff Levand861be322007-01-26 19:08:08 -0800194 BUG_ON(result);
Geoff Levand2832a812006-11-23 00:46:56 +0100195
Geoff Levand861be322007-01-26 19:08:08 -0800196 return result;
Geoff Levand2832a812006-11-23 00:46:56 +0100197}
198
199int ps3_free_io_irq(unsigned int virq)
200{
201 int result;
202
203 result = lv1_destruct_io_irq_outlet(virq_to_hw(virq));
204
Geert Uytterhoevended84bc2006-12-21 13:57:16 +0100205 if (result)
Geoff Levand2832a812006-11-23 00:46:56 +0100206 pr_debug("%s:%d: lv1_destruct_io_irq_outlet failed: %s\n",
207 __func__, __LINE__, ps3_result(result));
208
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800209 ps3_free_irq(virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100210
211 return result;
212}
213
214/**
215 * ps3_alloc_event_irq - Allocate a virq for use with a system event.
Geoff Levand861be322007-01-26 19:08:08 -0800216 * @cpu: enum ps3_cpu_binding indicating the cpu the interrupt should be
217 * serviced on.
Geoff Levand2832a812006-11-23 00:46:56 +0100218 * @virq: The assigned Linux virq.
219 *
220 * The virq can be used with lv1_connect_interrupt_event_receive_port() to
221 * arrange to receive events, or with ps3_send_event_locally() to signal
222 * events.
223 */
224
Geoff Levand861be322007-01-26 19:08:08 -0800225int ps3_alloc_event_irq(enum ps3_cpu_binding cpu, unsigned int *virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100226{
227 int result;
228 unsigned long outlet;
229
230 result = lv1_construct_event_receive_port(&outlet);
231
232 if (result) {
233 pr_debug("%s:%d: lv1_construct_event_receive_port failed: %s\n",
234 __func__, __LINE__, ps3_result(result));
235 *virq = NO_IRQ;
236 return result;
237 }
238
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800239 result = ps3_alloc_irq(cpu, outlet, virq);
Geoff Levand861be322007-01-26 19:08:08 -0800240 BUG_ON(result);
Geoff Levand2832a812006-11-23 00:46:56 +0100241
Geoff Levand861be322007-01-26 19:08:08 -0800242 return result;
Geoff Levand2832a812006-11-23 00:46:56 +0100243}
244
245int ps3_free_event_irq(unsigned int virq)
246{
247 int result;
248
249 pr_debug(" -> %s:%d\n", __func__, __LINE__);
250
251 result = lv1_destruct_event_receive_port(virq_to_hw(virq));
252
253 if (result)
254 pr_debug("%s:%d: lv1_destruct_event_receive_port failed: %s\n",
255 __func__, __LINE__, ps3_result(result));
256
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800257 ps3_free_irq(virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100258
259 pr_debug(" <- %s:%d\n", __func__, __LINE__);
260 return result;
261}
262
263int ps3_send_event_locally(unsigned int virq)
264{
265 return lv1_send_event_locally(virq_to_hw(virq));
266}
267
268/**
269 * ps3_connect_event_irq - Assign a virq to a system bus device.
Geoff Levand861be322007-01-26 19:08:08 -0800270 * @cpu: enum ps3_cpu_binding indicating the cpu the interrupt should be
271 * serviced on.
Geoff Levand2832a812006-11-23 00:46:56 +0100272 * @did: The HV device identifier read from the system repository.
273 * @interrupt_id: The device interrupt id read from the system repository.
274 * @virq: The assigned Linux virq.
275 *
276 * An event irq represents a virtual device interrupt. The interrupt_id
277 * coresponds to the software interrupt number.
278 */
279
Geoff Levand861be322007-01-26 19:08:08 -0800280int ps3_connect_event_irq(enum ps3_cpu_binding cpu,
281 const struct ps3_device_id *did, unsigned int interrupt_id,
282 unsigned int *virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100283{
284 int result;
285
Geoff Levand861be322007-01-26 19:08:08 -0800286 result = ps3_alloc_event_irq(cpu, virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100287
288 if (result)
289 return result;
290
291 result = lv1_connect_interrupt_event_receive_port(did->bus_id,
292 did->dev_id, virq_to_hw(*virq), interrupt_id);
293
294 if (result) {
295 pr_debug("%s:%d: lv1_connect_interrupt_event_receive_port"
296 " failed: %s\n", __func__, __LINE__,
297 ps3_result(result));
298 ps3_free_event_irq(*virq);
299 *virq = NO_IRQ;
300 return result;
301 }
302
303 pr_debug("%s:%d: interrupt_id %u, virq %u\n", __func__, __LINE__,
304 interrupt_id, *virq);
305
306 return 0;
307}
308
309int ps3_disconnect_event_irq(const struct ps3_device_id *did,
310 unsigned int interrupt_id, unsigned int virq)
311{
312 int result;
313
314 pr_debug(" -> %s:%d: interrupt_id %u, virq %u\n", __func__, __LINE__,
315 interrupt_id, virq);
316
317 result = lv1_disconnect_interrupt_event_receive_port(did->bus_id,
318 did->dev_id, virq_to_hw(virq), interrupt_id);
319
320 if (result)
321 pr_debug("%s:%d: lv1_disconnect_interrupt_event_receive_port"
322 " failed: %s\n", __func__, __LINE__,
323 ps3_result(result));
324
325 ps3_free_event_irq(virq);
326
327 pr_debug(" <- %s:%d\n", __func__, __LINE__);
328 return result;
329}
330
331/**
332 * ps3_alloc_vuart_irq - Configure the system virtual uart virq.
Geoff Levand861be322007-01-26 19:08:08 -0800333 * @cpu: enum ps3_cpu_binding indicating the cpu the interrupt should be
334 * serviced on.
Geoff Levand2832a812006-11-23 00:46:56 +0100335 * @virt_addr_bmp: The caller supplied virtual uart interrupt bitmap.
336 * @virq: The assigned Linux virq.
337 *
338 * The system supports only a single virtual uart, so multiple calls without
339 * freeing the interrupt will return a wrong state error.
340 */
341
Geoff Levand861be322007-01-26 19:08:08 -0800342int ps3_alloc_vuart_irq(enum ps3_cpu_binding cpu, void* virt_addr_bmp,
343 unsigned int *virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100344{
345 int result;
346 unsigned long outlet;
Geoff Levand861be322007-01-26 19:08:08 -0800347 u64 lpar_addr;
Geoff Levand2832a812006-11-23 00:46:56 +0100348
Geoff Levand861be322007-01-26 19:08:08 -0800349 BUG_ON(!is_kernel_addr((u64)virt_addr_bmp));
Geoff Levand2832a812006-11-23 00:46:56 +0100350
351 lpar_addr = ps3_mm_phys_to_lpar(__pa(virt_addr_bmp));
352
353 result = lv1_configure_virtual_uart_irq(lpar_addr, &outlet);
354
355 if (result) {
356 pr_debug("%s:%d: lv1_configure_virtual_uart_irq failed: %s\n",
357 __func__, __LINE__, ps3_result(result));
358 return result;
359 }
360
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800361 result = ps3_alloc_irq(cpu, outlet, virq);
Geoff Levand861be322007-01-26 19:08:08 -0800362 BUG_ON(result);
Geoff Levand2832a812006-11-23 00:46:56 +0100363
Geoff Levand861be322007-01-26 19:08:08 -0800364 return result;
Geoff Levand2832a812006-11-23 00:46:56 +0100365}
366
367int ps3_free_vuart_irq(unsigned int virq)
368{
369 int result;
370
371 result = lv1_deconfigure_virtual_uart_irq();
372
373 if (result) {
374 pr_debug("%s:%d: lv1_configure_virtual_uart_irq failed: %s\n",
375 __func__, __LINE__, ps3_result(result));
376 return result;
377 }
378
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800379 ps3_free_irq(virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100380
381 return result;
382}
383
384/**
385 * ps3_alloc_spe_irq - Configure an spe virq.
Geoff Levand861be322007-01-26 19:08:08 -0800386 * @cpu: enum ps3_cpu_binding indicating the cpu the interrupt should be
387 * serviced on.
Geoff Levand2832a812006-11-23 00:46:56 +0100388 * @spe_id: The spe_id returned from lv1_construct_logical_spe().
389 * @class: The spe interrupt class {0,1,2}.
390 * @virq: The assigned Linux virq.
391 *
392 */
393
Geoff Levand861be322007-01-26 19:08:08 -0800394int ps3_alloc_spe_irq(enum ps3_cpu_binding cpu, unsigned long spe_id,
395 unsigned int class, unsigned int *virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100396{
397 int result;
398 unsigned long outlet;
399
400 BUG_ON(class > 2);
401
402 result = lv1_get_spe_irq_outlet(spe_id, class, &outlet);
403
404 if (result) {
405 pr_debug("%s:%d: lv1_get_spe_irq_outlet failed: %s\n",
406 __func__, __LINE__, ps3_result(result));
407 return result;
408 }
409
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800410 result = ps3_alloc_irq(cpu, outlet, virq);
Geoff Levand861be322007-01-26 19:08:08 -0800411 BUG_ON(result);
Geoff Levand2832a812006-11-23 00:46:56 +0100412
Geoff Levand861be322007-01-26 19:08:08 -0800413 return result;
Geoff Levand2832a812006-11-23 00:46:56 +0100414}
415
416int ps3_free_spe_irq(unsigned int virq)
417{
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800418 ps3_free_irq(virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100419 return 0;
420}
421
Geert Uytterhoevenb1eeb382007-01-26 19:08:12 -0800422
Geoff Levand2832a812006-11-23 00:46:56 +0100423#define PS3_INVALID_OUTLET ((irq_hw_number_t)-1)
424#define PS3_PLUG_MAX 63
425
Geoff Levand2832a812006-11-23 00:46:56 +0100426#if defined(DEBUG)
Geoff Levand861be322007-01-26 19:08:08 -0800427static void _dump_64_bmp(const char *header, const u64 *p, unsigned cpu,
Geoff Levand2832a812006-11-23 00:46:56 +0100428 const char* func, int line)
429{
430 pr_debug("%s:%d: %s %u {%04lx_%04lx_%04lx_%04lx}\n",
431 func, line, header, cpu,
432 *p >> 48, (*p >> 32) & 0xffff, (*p >> 16) & 0xffff,
433 *p & 0xffff);
434}
435
436static void __attribute__ ((unused)) _dump_256_bmp(const char *header,
Geoff Levand861be322007-01-26 19:08:08 -0800437 const u64 *p, unsigned cpu, const char* func, int line)
Geoff Levand2832a812006-11-23 00:46:56 +0100438{
439 pr_debug("%s:%d: %s %u {%016lx:%016lx:%016lx:%016lx}\n",
440 func, line, header, cpu, p[0], p[1], p[2], p[3]);
441}
442
443#define dump_bmp(_x) _dump_bmp(_x, __func__, __LINE__)
Geoff Levand9633ac82007-01-26 19:07:59 -0800444static void _dump_bmp(struct ps3_private* pd, const char* func, int line)
Geoff Levand2832a812006-11-23 00:46:56 +0100445{
446 unsigned long flags;
447
448 spin_lock_irqsave(&pd->bmp.lock, flags);
449 _dump_64_bmp("stat", &pd->bmp.status, pd->cpu, func, line);
450 _dump_64_bmp("mask", &pd->bmp.mask, pd->cpu, func, line);
451 spin_unlock_irqrestore(&pd->bmp.lock, flags);
452}
453
454#define dump_mask(_x) _dump_mask(_x, __func__, __LINE__)
Geoff Levand9633ac82007-01-26 19:07:59 -0800455static void __attribute__ ((unused)) _dump_mask(struct ps3_private* pd,
Geoff Levand2832a812006-11-23 00:46:56 +0100456 const char* func, int line)
457{
458 unsigned long flags;
459
460 spin_lock_irqsave(&pd->bmp.lock, flags);
461 _dump_64_bmp("mask", &pd->bmp.mask, pd->cpu, func, line);
462 spin_unlock_irqrestore(&pd->bmp.lock, flags);
463}
464#else
Geoff Levand9633ac82007-01-26 19:07:59 -0800465static void dump_bmp(struct ps3_private* pd) {};
Geoff Levand2832a812006-11-23 00:46:56 +0100466#endif /* defined(DEBUG) */
467
Geoff Levand9633ac82007-01-26 19:07:59 -0800468static void ps3_chip_mask(unsigned int virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100469{
Geoff Levand9633ac82007-01-26 19:07:59 -0800470 struct ps3_private *pd = get_irq_chip_data(virq);
Geoff Levand861be322007-01-26 19:08:08 -0800471 u64 bit = 0x8000000000000000UL >> virq;
472 u64 *p = &pd->bmp.mask;
473 u64 old;
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800474 unsigned long flags;
Geoff Levand2832a812006-11-23 00:46:56 +0100475
476 pr_debug("%s:%d: cpu %u, virq %d\n", __func__, __LINE__, pd->cpu, virq);
477
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800478 local_irq_save(flags);
479 asm volatile(
480 "1: ldarx %0,0,%3\n"
481 "andc %0,%0,%2\n"
482 "stdcx. %0,0,%3\n"
483 "bne- 1b"
484 : "=&r" (old), "+m" (*p)
485 : "r" (bit), "r" (p)
486 : "cc" );
Geoff Levand2832a812006-11-23 00:46:56 +0100487
Geoff Levand2832a812006-11-23 00:46:56 +0100488 lv1_did_update_interrupt_mask(pd->node, pd->cpu);
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800489 local_irq_restore(flags);
Geoff Levand2832a812006-11-23 00:46:56 +0100490}
491
Geoff Levand9633ac82007-01-26 19:07:59 -0800492static void ps3_chip_unmask(unsigned int virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100493{
Geoff Levand9633ac82007-01-26 19:07:59 -0800494 struct ps3_private *pd = get_irq_chip_data(virq);
Geoff Levand861be322007-01-26 19:08:08 -0800495 u64 bit = 0x8000000000000000UL >> virq;
496 u64 *p = &pd->bmp.mask;
497 u64 old;
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800498 unsigned long flags;
Geoff Levand2832a812006-11-23 00:46:56 +0100499
500 pr_debug("%s:%d: cpu %u, virq %d\n", __func__, __LINE__, pd->cpu, virq);
501
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800502 local_irq_save(flags);
503 asm volatile(
504 "1: ldarx %0,0,%3\n"
505 "or %0,%0,%2\n"
506 "stdcx. %0,0,%3\n"
507 "bne- 1b"
508 : "=&r" (old), "+m" (*p)
509 : "r" (bit), "r" (p)
510 : "cc" );
Geoff Levand2832a812006-11-23 00:46:56 +0100511
Geoff Levand2832a812006-11-23 00:46:56 +0100512 lv1_did_update_interrupt_mask(pd->node, pd->cpu);
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800513 local_irq_restore(flags);
Geoff Levand2832a812006-11-23 00:46:56 +0100514}
515
Geoff Levand9633ac82007-01-26 19:07:59 -0800516static void ps3_chip_eoi(unsigned int virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100517{
Geoff Levand407e24a2007-01-26 19:08:02 -0800518 const struct ps3_private *pd = get_irq_chip_data(virq);
519 lv1_end_of_interrupt_ext(pd->node, pd->cpu, virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100520}
521
522static struct irq_chip irq_chip = {
523 .typename = "ps3",
Geoff Levand9633ac82007-01-26 19:07:59 -0800524 .mask = ps3_chip_mask,
525 .unmask = ps3_chip_unmask,
526 .eoi = ps3_chip_eoi,
Geoff Levand2832a812006-11-23 00:46:56 +0100527};
528
Geoff Levand9633ac82007-01-26 19:07:59 -0800529static void ps3_host_unmap(struct irq_host *h, unsigned int virq)
Geoff Levand2832a812006-11-23 00:46:56 +0100530{
Geoff Levand861be322007-01-26 19:08:08 -0800531 set_irq_chip_data(virq, NULL);
Geoff Levand2832a812006-11-23 00:46:56 +0100532}
533
Geoff Levand9633ac82007-01-26 19:07:59 -0800534static int ps3_host_map(struct irq_host *h, unsigned int virq,
Geoff Levand2832a812006-11-23 00:46:56 +0100535 irq_hw_number_t hwirq)
536{
Geoff Levand861be322007-01-26 19:08:08 -0800537 pr_debug("%s:%d: hwirq %lu, virq %u\n", __func__, __LINE__, hwirq,
538 virq);
Geoff Levand2832a812006-11-23 00:46:56 +0100539
540 set_irq_chip_and_handler(virq, &irq_chip, handle_fasteoi_irq);
541
Geoff Levand861be322007-01-26 19:08:08 -0800542 return 0;
Geoff Levand2832a812006-11-23 00:46:56 +0100543}
544
Geoff Levand9633ac82007-01-26 19:07:59 -0800545static struct irq_host_ops ps3_host_ops = {
546 .map = ps3_host_map,
547 .unmap = ps3_host_unmap,
Geoff Levand2832a812006-11-23 00:46:56 +0100548};
549
550void __init ps3_register_ipi_debug_brk(unsigned int cpu, unsigned int virq)
551{
Geoff Levand9633ac82007-01-26 19:07:59 -0800552 struct ps3_private *pd = &per_cpu(ps3_private, cpu);
Geoff Levand2832a812006-11-23 00:46:56 +0100553
554 pd->bmp.ipi_debug_brk_mask = 0x8000000000000000UL >> virq;
555
556 pr_debug("%s:%d: cpu %u, virq %u, mask %lxh\n", __func__, __LINE__,
557 cpu, virq, pd->bmp.ipi_debug_brk_mask);
558}
559
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800560unsigned int ps3_get_irq(void)
Geoff Levand2832a812006-11-23 00:46:56 +0100561{
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800562 struct ps3_private *pd = &__get_cpu_var(ps3_private);
Geoff Levand861be322007-01-26 19:08:08 -0800563 u64 x = (pd->bmp.status & pd->bmp.mask);
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800564 unsigned int plug;
Geoff Levand2832a812006-11-23 00:46:56 +0100565
566 /* check for ipi break first to stop this cpu ASAP */
567
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800568 if (x & pd->bmp.ipi_debug_brk_mask)
569 x &= pd->bmp.ipi_debug_brk_mask;
Geoff Levand2832a812006-11-23 00:46:56 +0100570
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800571 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x));
572 plug &= 0x3f;
Geoff Levand2832a812006-11-23 00:46:56 +0100573
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800574 if (unlikely(plug) == NO_IRQ) {
Geoff Levand2832a812006-11-23 00:46:56 +0100575 pr_debug("%s:%d: no plug found: cpu %u\n", __func__, __LINE__,
576 pd->cpu);
Geoff Levand9633ac82007-01-26 19:07:59 -0800577 dump_bmp(&per_cpu(ps3_private, 0));
578 dump_bmp(&per_cpu(ps3_private, 1));
Geoff Levand2832a812006-11-23 00:46:56 +0100579 return NO_IRQ;
580 }
581
582#if defined(DEBUG)
Benjamin Herrenschmidt9cf9e192007-01-26 19:08:05 -0800583 if (unlikely(plug < NUM_ISA_INTERRUPTS || plug > PS3_PLUG_MAX)) {
Geoff Levand9633ac82007-01-26 19:07:59 -0800584 dump_bmp(&per_cpu(ps3_private, 0));
585 dump_bmp(&per_cpu(ps3_private, 1));
Geoff Levand2832a812006-11-23 00:46:56 +0100586 BUG();
587 }
588#endif
589 return plug;
590}
591
592void __init ps3_init_IRQ(void)
593{
594 int result;
Geoff Levand2832a812006-11-23 00:46:56 +0100595 unsigned cpu;
596 struct irq_host *host;
597
Geoff Levand9633ac82007-01-26 19:07:59 -0800598 host = irq_alloc_host(IRQ_HOST_MAP_NOMAP, 0, &ps3_host_ops,
Geoff Levand2832a812006-11-23 00:46:56 +0100599 PS3_INVALID_OUTLET);
600 irq_set_default_host(host);
601 irq_set_virq_count(PS3_PLUG_MAX + 1);
602
603 for_each_possible_cpu(cpu) {
Geoff Levand9633ac82007-01-26 19:07:59 -0800604 struct ps3_private *pd = &per_cpu(ps3_private, cpu);
Geoff Levand2832a812006-11-23 00:46:56 +0100605
Geoff Levand407e24a2007-01-26 19:08:02 -0800606 lv1_get_logical_ppe_id(&pd->node);
607 pd->cpu = get_hard_smp_processor_id(cpu);
Geoff Levand2832a812006-11-23 00:46:56 +0100608 spin_lock_init(&pd->bmp.lock);
609
Geoff Levand407e24a2007-01-26 19:08:02 -0800610 pr_debug("%s:%d: node %lu, cpu %d, bmp %lxh\n", __func__,
611 __LINE__, pd->node, pd->cpu,
612 ps3_mm_phys_to_lpar(__pa(&pd->bmp)));
613
614 result = lv1_configure_irq_state_bitmap(pd->node, pd->cpu,
615 ps3_mm_phys_to_lpar(__pa(&pd->bmp)));
Geoff Levand2832a812006-11-23 00:46:56 +0100616
617 if (result)
618 pr_debug("%s:%d: lv1_configure_irq_state_bitmap failed:"
619 " %s\n", __func__, __LINE__,
620 ps3_result(result));
621 }
622
623 ppc_md.get_irq = ps3_get_irq;
624}