blob: 61a9dbdd295a16fb9079cd19061a83866a2f3c4d [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 Ellerman38fcdcfe2005-06-30 15:16:28 +100077 struct HvLpEvent * nextLpEvent =
Michael Ellermana6187462005-06-30 15:15:32 +100078 (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +100079 if (nextLpEvent->xFlags.xValid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 /* rmb() needed only for weakly consistent machines (regatta) */
81 rmb();
82 /* Set pointer to next potential event */
Michael Ellermana6187462005-06-30 15:15:32 +100083 hvlpevent_queue.xSlicCurEventPtr += ((nextLpEvent->xSizeMinus1 +
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +100084 LpEventAlign) /
85 LpEventAlign) *
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 LpEventAlign;
87 /* Wrap to beginning if no room at end */
Michael Ellermana6187462005-06-30 15:15:32 +100088 if (hvlpevent_queue.xSlicCurEventPtr > hvlpevent_queue.xSlicLastValidEventPtr)
89 hvlpevent_queue.xSlicCurEventPtr = hvlpevent_queue.xSlicEventStackPtr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +100091 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 nextLpEvent = NULL;
93
94 return nextLpEvent;
95}
96
Michael Ellerman0c885c12005-06-30 15:07:33 +100097static unsigned long spread_lpevents = NR_CPUS;
Michael Ellermanbea248f2005-06-30 15:07:09 +100098
Michael Ellerman937b31b2005-06-30 15:15:42 +100099int hvlpevent_is_pending(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Michael Ellermanbea248f2005-06-30 15:07:09 +1000101 struct HvLpEvent *next_event;
102
103 if (smp_processor_id() >= spread_lpevents)
104 return 0;
105
Michael Ellermana6187462005-06-30 15:15:32 +1000106 next_event = (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
107 return next_event->xFlags.xValid | hvlpevent_queue.xPlicOverflowIntPending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000110static void hvlpevent_clear_valid(struct HvLpEvent * event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 /* Clear the valid bit of the event
113 * Also clear bits within this event that might
114 * look like valid bits (on 64-byte boundaries)
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000115 */
116 unsigned extra = ((event->xSizeMinus1 + LpEventAlign) /
117 LpEventAlign) - 1;
118 switch (extra) {
119 case 3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 ((struct HvLpEvent*)((char*)event+3*LpEventAlign))->xFlags.xValid=0;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000121 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 ((struct HvLpEvent*)((char*)event+2*LpEventAlign))->xFlags.xValid=0;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000123 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 ((struct HvLpEvent*)((char*)event+1*LpEventAlign))->xFlags.xValid=0;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000125 case 0:
126 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128 mb();
129 event->xFlags.xValid = 0;
130}
131
Michael Ellerman74889802005-06-30 15:15:53 +1000132void process_hvlpevents(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 struct HvLpEvent * nextLpEvent;
135
136 /* If we have recursed, just return */
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000137 if ( !set_inUse() )
Michael Ellerman74889802005-06-30 15:15:53 +1000138 return;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (ItLpQueueInProcess == 0)
141 ItLpQueueInProcess = 1;
142 else
143 BUG();
144
145 for (;;) {
Michael Ellerman937b31b2005-06-30 15:15:42 +1000146 nextLpEvent = get_next_hvlpevent();
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000147 if (nextLpEvent) {
148 /* Call appropriate handler here, passing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * a pointer to the LpEvent. The handler
150 * must make a copy of the LpEvent if it
151 * needs it in a bottom half. (perhaps for
152 * an ACK)
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000153 *
154 * Handlers are responsible for ACK processing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 *
156 * The Hypervisor guarantees that LpEvents will
157 * only be delivered with types that we have
158 * registered for, so no type check is necessary
159 * here!
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000160 */
161 if (nextLpEvent->xType < HvLpEvent_Type_NumTypes)
Michael Ellermaned094152005-06-30 15:16:09 +1000162 __get_cpu_var(hvlpevent_counts)[nextLpEvent->xType]++;
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000163 if (nextLpEvent->xType < HvLpEvent_Type_NumTypes &&
164 lpEventHandler[nextLpEvent->xType])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 lpEventHandler[nextLpEvent->xType](nextLpEvent, regs);
166 else
167 printk(KERN_INFO "Unexpected Lp Event type=%d\n", nextLpEvent->xType );
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000168
169 hvlpevent_clear_valid(nextLpEvent);
170 } else if (hvlpevent_queue.xPlicOverflowIntPending)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /*
172 * No more valid events. If overflow events are
173 * pending process them
174 */
Michael Ellerman38fcdcfe2005-06-30 15:16:28 +1000175 HvCallEvent_getOverflowLpEvents(hvlpevent_queue.xIndex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 else
177 break;
178 }
179
180 ItLpQueueInProcess = 0;
181 mb();
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000182 clear_inUse();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
Michael Ellerman0c885c12005-06-30 15:07:33 +1000184
185static int set_spread_lpevents(char *str)
186{
187 unsigned long val = simple_strtoul(str, NULL, 0);
188
189 /*
190 * The parameter is the number of processors to share in processing
191 * lp events.
192 */
193 if (( val > 0) && (val <= NR_CPUS)) {
194 spread_lpevents = val;
195 printk("lpevent processing spread over %ld processors\n", val);
196 } else {
197 printk("invalid spread_lpevents %ld\n", val);
198 }
199
200 return 1;
201}
202__setup("spread_lpevents=", set_spread_lpevents);
203
Michael Ellerman512d31d2005-06-30 15:08:27 +1000204void setup_hvlpevent_queue(void)
205{
206 void *eventStack;
207
208 /*
209 * Allocate a page for the Event Stack. The Hypervisor needs the
210 * absolute real address, so we subtract out the KERNELBASE and add
211 * in the absolute real address of the kernel load area.
212 */
213 eventStack = alloc_bootmem_pages(LpEventStackSize);
214 memset(eventStack, 0, LpEventStackSize);
215
216 /* Invoke the hypervisor to initialize the event stack */
217 HvCallEvent_setLpEventStack(0, eventStack, LpEventStackSize);
218
Michael Ellermana6187462005-06-30 15:15:32 +1000219 hvlpevent_queue.xSlicEventStackPtr = (char *)eventStack;
220 hvlpevent_queue.xSlicCurEventPtr = (char *)eventStack;
221 hvlpevent_queue.xSlicLastValidEventPtr = (char *)eventStack +
Michael Ellerman512d31d2005-06-30 15:08:27 +1000222 (LpEventStackSize - LpEventMaxSize);
Michael Ellermana6187462005-06-30 15:15:32 +1000223 hvlpevent_queue.xIndex = 0;
Michael Ellerman512d31d2005-06-30 15:08:27 +1000224}
Michael Ellerman7b013282005-06-30 15:08:44 +1000225
226static int proc_lpevents_show(struct seq_file *m, void *v)
227{
Michael Ellermaned094152005-06-30 15:16:09 +1000228 int cpu, i;
229 unsigned long sum;
230 static unsigned long cpu_totals[NR_CPUS];
231
232 /* FIXME: do we care that there's no locking here? */
233 sum = 0;
234 for_each_online_cpu(cpu) {
235 cpu_totals[cpu] = 0;
236 for (i = 0; i < HvLpEvent_Type_NumTypes; i++) {
237 cpu_totals[cpu] += per_cpu(hvlpevent_counts, cpu)[i];
238 }
239 sum += cpu_totals[cpu];
240 }
Michael Ellerman7b013282005-06-30 15:08:44 +1000241
242 seq_printf(m, "LpEventQueue 0\n");
Michael Ellermaned094152005-06-30 15:16:09 +1000243 seq_printf(m, " events processed:\t%lu\n", sum);
Michael Ellerman7b013282005-06-30 15:08:44 +1000244
Michael Ellermaned094152005-06-30 15:16:09 +1000245 for (i = 0; i < HvLpEvent_Type_NumTypes; ++i) {
246 sum = 0;
247 for_each_online_cpu(cpu) {
248 sum += per_cpu(hvlpevent_counts, cpu)[i];
249 }
250
Michael Ellerman9b047022005-06-30 15:16:18 +1000251 seq_printf(m, " %-20s %10lu\n", event_types[i], sum);
Michael Ellermaned094152005-06-30 15:16:09 +1000252 }
Michael Ellerman7b013282005-06-30 15:08:44 +1000253
254 seq_printf(m, "\n events processed by processor:\n");
255
Michael Ellermaned094152005-06-30 15:16:09 +1000256 for_each_online_cpu(cpu) {
257 seq_printf(m, " CPU%02d %10lu\n", cpu, cpu_totals[cpu]);
258 }
Michael Ellerman7b013282005-06-30 15:08:44 +1000259
260 return 0;
261}
262
263static int proc_lpevents_open(struct inode *inode, struct file *file)
264{
265 return single_open(file, proc_lpevents_show, NULL);
266}
267
268static struct file_operations proc_lpevents_operations = {
269 .open = proc_lpevents_open,
270 .read = seq_read,
271 .llseek = seq_lseek,
272 .release = single_release,
273};
274
275static int __init proc_lpevents_init(void)
276{
277 struct proc_dir_entry *e;
278
279 e = create_proc_entry("iSeries/lpevents", S_IFREG|S_IRUGO, NULL);
280 if (e)
281 e->proc_fops = &proc_lpevents_operations;
282
283 return 0;
284}
285__initcall(proc_lpevents_init);
286