blob: a4f32cbf5297ca94ad5d7407b5b4337f91f3e573 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ItLpQueue.c
3 * Copyright (C) 2001 Mike Corrigan IBM Corporation
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#include <linux/stddef.h>
12#include <linux/kernel.h>
13#include <linux/sched.h>
Michael Ellerman512d31d2005-06-30 15:08:27 +100014#include <linux/bootmem.h>
Michael Ellerman7b013282005-06-30 15:08:44 +100015#include <linux/seq_file.h>
16#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/system.h>
18#include <asm/paca.h>
19#include <asm/iSeries/ItLpQueue.h>
20#include <asm/iSeries/HvLpEvent.h>
21#include <asm/iSeries/HvCallEvent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Michael Ellermanab354b62005-06-30 15:12:21 +100023/*
24 * The LpQueue is used to pass event data from the hypervisor to
25 * the partition. This is where I/O interrupt events are communicated.
26 *
27 * It is written to by the hypervisor so cannot end up in the BSS.
28 */
Michael Ellermana6187462005-06-30 15:15:32 +100029struct hvlpevent_queue hvlpevent_queue __attribute__((__section__(".data")));
Michael Ellermanab354b62005-06-30 15:12:21 +100030
Michael Ellermaned094152005-06-30 15:16:09 +100031DEFINE_PER_CPU(unsigned long[HvLpEvent_Type_NumTypes], hvlpevent_counts);
32
33static char *event_types[HvLpEvent_Type_NumTypes] = {
Michael Ellerman9b047022005-06-30 15:16:18 +100034 "Hypervisor",
35 "Machine Facilities",
36 "Session Manager",
37 "SPD I/O",
38 "Virtual Bus",
39 "PCI I/O",
40 "RIO I/O",
41 "Virtual Lan",
42 "Virtual I/O"
Michael Ellerman7b013282005-06-30 15:08:44 +100043};
44
Michael Ellerman1b19bc72005-06-30 15:07:57 +100045static __inline__ int set_inUse(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 int t;
Michael Ellermana6187462005-06-30 15:15:32 +100048 u32 * inUseP = &hvlpevent_queue.xInUseWord;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 __asm__ __volatile__("\n\
511: lwarx %0,0,%2 \n\
52 cmpwi 0,%0,0 \n\
53 li %0,0 \n\
54 bne- 2f \n\
55 addi %0,%0,1 \n\
56 stwcx. %0,0,%2 \n\
57 bne- 1b \n\
582: eieio"
Michael Ellermana6187462005-06-30 15:15:32 +100059 : "=&r" (t), "=m" (hvlpevent_queue.xInUseWord)
60 : "r" (inUseP), "m" (hvlpevent_queue.xInUseWord)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 : "cc");
62
63 return t;
64}
65
Michael Ellerman1b19bc72005-06-30 15:07:57 +100066static __inline__ void clear_inUse(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Michael Ellermana6187462005-06-30 15:15:32 +100068 hvlpevent_queue.xInUseWord = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71/* Array of LpEvent handler functions */
72extern LpEventHandler lpEventHandler[HvLpEvent_Type_NumTypes];
73unsigned long ItLpQueueInProcess = 0;
74
Michael Ellerman937b31b2005-06-30 15:15:42 +100075static struct HvLpEvent * get_next_hvlpevent(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Michael Ellermanffe1b7e2005-06-30 15:16:48 +100077 struct HvLpEvent * event;
78 event = (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
79
80 if (event->xFlags.xValid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* rmb() needed only for weakly consistent machines (regatta) */
82 rmb();
83 /* Set pointer to next potential event */
Michael Ellermanffe1b7e2005-06-30 15:16:48 +100084 hvlpevent_queue.xSlicCurEventPtr += ((event->xSizeMinus1 +
85 LpEventAlign) / LpEventAlign) * LpEventAlign;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Michael Ellermanffe1b7e2005-06-30 15:16:48 +100087 /* Wrap to beginning if no room at end */
88 if (hvlpevent_queue.xSlicCurEventPtr >
89 hvlpevent_queue.xSlicLastValidEventPtr) {
90 hvlpevent_queue.xSlicCurEventPtr =
91 hvlpevent_queue.xSlicEventStackPtr;
92 }
93 } else {
94 event = NULL;
95 }
96
97 return event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Michael Ellerman0c885c12005-06-30 15:07:33 +1000100static unsigned long spread_lpevents = NR_CPUS;
Michael Ellermanbea248f2005-06-30 15:07:09 +1000101
Michael Ellerman937b31b2005-06-30 15:15:42 +1000102int hvlpevent_is_pending(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Michael Ellermanbea248f2005-06-30 15:07:09 +1000104 struct HvLpEvent *next_event;
105
106 if (smp_processor_id() >= spread_lpevents)
107 return 0;
108
Michael Ellermana6187462005-06-30 15:15:32 +1000109 next_event = (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000110
111 return next_event->xFlags.xValid |
112 hvlpevent_queue.xPlicOverflowIntPending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000115static void hvlpevent_clear_valid(struct HvLpEvent * event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000117 /* Tell the Hypervisor that we're done with this event.
118 * Also clear bits within this event that might look like valid bits.
119 * ie. on 64-byte boundaries.
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000120 */
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000121 struct HvLpEvent *tmp;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000122 unsigned extra = ((event->xSizeMinus1 + LpEventAlign) /
123 LpEventAlign) - 1;
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000124
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000125 switch (extra) {
126 case 3:
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000127 tmp = (struct HvLpEvent*)((char*)event + 3 * LpEventAlign);
128 tmp->xFlags.xValid = 0;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000129 case 2:
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000130 tmp = (struct HvLpEvent*)((char*)event + 2 * LpEventAlign);
131 tmp->xFlags.xValid = 0;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000132 case 1:
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000133 tmp = (struct HvLpEvent*)((char*)event + 1 * LpEventAlign);
134 tmp->xFlags.xValid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 mb();
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 event->xFlags.xValid = 0;
140}
141
Michael Ellerman74889802005-06-30 15:15:53 +1000142void process_hvlpevents(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000144 struct HvLpEvent * event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* If we have recursed, just return */
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000147 if ( !set_inUse() )
Michael Ellerman74889802005-06-30 15:15:53 +1000148 return;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (ItLpQueueInProcess == 0)
151 ItLpQueueInProcess = 1;
152 else
153 BUG();
154
155 for (;;) {
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000156 event = get_next_hvlpevent();
157 if (event) {
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000158 /* Call appropriate handler here, passing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * a pointer to the LpEvent. The handler
160 * must make a copy of the LpEvent if it
161 * needs it in a bottom half. (perhaps for
162 * an ACK)
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000163 *
164 * Handlers are responsible for ACK processing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
166 * The Hypervisor guarantees that LpEvents will
167 * only be delivered with types that we have
168 * registered for, so no type check is necessary
169 * here!
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000170 */
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000171 if (event->xType < HvLpEvent_Type_NumTypes)
172 __get_cpu_var(hvlpevent_counts)[event->xType]++;
173 if (event->xType < HvLpEvent_Type_NumTypes &&
174 lpEventHandler[event->xType])
175 lpEventHandler[event->xType](event, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 else
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000177 printk(KERN_INFO "Unexpected Lp Event type=%d\n", event->xType );
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000178
Michael Ellermanffe1b7e2005-06-30 15:16:48 +1000179 hvlpevent_clear_valid(event);
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000180 } else if (hvlpevent_queue.xPlicOverflowIntPending)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /*
182 * No more valid events. If overflow events are
183 * pending process them
184 */
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000185 HvCallEvent_getOverflowLpEvents(hvlpevent_queue.xIndex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 else
187 break;
188 }
189
190 ItLpQueueInProcess = 0;
191 mb();
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000192 clear_inUse();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
Michael Ellerman0c885c12005-06-30 15:07:33 +1000194
195static int set_spread_lpevents(char *str)
196{
197 unsigned long val = simple_strtoul(str, NULL, 0);
198
199 /*
200 * The parameter is the number of processors to share in processing
201 * lp events.
202 */
203 if (( val > 0) && (val <= NR_CPUS)) {
204 spread_lpevents = val;
205 printk("lpevent processing spread over %ld processors\n", val);
206 } else {
207 printk("invalid spread_lpevents %ld\n", val);
208 }
209
210 return 1;
211}
212__setup("spread_lpevents=", set_spread_lpevents);
213
Michael Ellerman512d31d2005-06-30 15:08:27 +1000214void setup_hvlpevent_queue(void)
215{
216 void *eventStack;
217
218 /*
219 * Allocate a page for the Event Stack. The Hypervisor needs the
220 * absolute real address, so we subtract out the KERNELBASE and add
221 * in the absolute real address of the kernel load area.
222 */
223 eventStack = alloc_bootmem_pages(LpEventStackSize);
224 memset(eventStack, 0, LpEventStackSize);
225
226 /* Invoke the hypervisor to initialize the event stack */
227 HvCallEvent_setLpEventStack(0, eventStack, LpEventStackSize);
228
Michael Ellermana6187462005-06-30 15:15:32 +1000229 hvlpevent_queue.xSlicEventStackPtr = (char *)eventStack;
230 hvlpevent_queue.xSlicCurEventPtr = (char *)eventStack;
231 hvlpevent_queue.xSlicLastValidEventPtr = (char *)eventStack +
Michael Ellerman512d31d2005-06-30 15:08:27 +1000232 (LpEventStackSize - LpEventMaxSize);
Michael Ellermana6187462005-06-30 15:15:32 +1000233 hvlpevent_queue.xIndex = 0;
Michael Ellerman512d31d2005-06-30 15:08:27 +1000234}
Michael Ellerman7b013282005-06-30 15:08:44 +1000235
236static int proc_lpevents_show(struct seq_file *m, void *v)
237{
Michael Ellermaned094152005-06-30 15:16:09 +1000238 int cpu, i;
239 unsigned long sum;
240 static unsigned long cpu_totals[NR_CPUS];
241
242 /* FIXME: do we care that there's no locking here? */
243 sum = 0;
244 for_each_online_cpu(cpu) {
245 cpu_totals[cpu] = 0;
246 for (i = 0; i < HvLpEvent_Type_NumTypes; i++) {
247 cpu_totals[cpu] += per_cpu(hvlpevent_counts, cpu)[i];
248 }
249 sum += cpu_totals[cpu];
250 }
Michael Ellerman7b013282005-06-30 15:08:44 +1000251
252 seq_printf(m, "LpEventQueue 0\n");
Michael Ellermaned094152005-06-30 15:16:09 +1000253 seq_printf(m, " events processed:\t%lu\n", sum);
Michael Ellerman7b013282005-06-30 15:08:44 +1000254
Michael Ellermaned094152005-06-30 15:16:09 +1000255 for (i = 0; i < HvLpEvent_Type_NumTypes; ++i) {
256 sum = 0;
257 for_each_online_cpu(cpu) {
258 sum += per_cpu(hvlpevent_counts, cpu)[i];
259 }
260
Michael Ellerman9b047022005-06-30 15:16:18 +1000261 seq_printf(m, " %-20s %10lu\n", event_types[i], sum);
Michael Ellermaned094152005-06-30 15:16:09 +1000262 }
Michael Ellerman7b013282005-06-30 15:08:44 +1000263
264 seq_printf(m, "\n events processed by processor:\n");
265
Michael Ellermaned094152005-06-30 15:16:09 +1000266 for_each_online_cpu(cpu) {
267 seq_printf(m, " CPU%02d %10lu\n", cpu, cpu_totals[cpu]);
268 }
Michael Ellerman7b013282005-06-30 15:08:44 +1000269
270 return 0;
271}
272
273static int proc_lpevents_open(struct inode *inode, struct file *file)
274{
275 return single_open(file, proc_lpevents_show, NULL);
276}
277
278static struct file_operations proc_lpevents_operations = {
279 .open = proc_lpevents_open,
280 .read = seq_read,
281 .llseek = seq_lseek,
282 .release = single_release,
283};
284
285static int __init proc_lpevents_init(void)
286{
287 struct proc_dir_entry *e;
288
289 e = create_proc_entry("iSeries/lpevents", S_IFREG|S_IRUGO, NULL);
290 if (e)
291 e->proc_fops = &proc_lpevents_operations;
292
293 return 0;
294}
295__initcall(proc_lpevents_init);
296