3 * Copyright (C) 2001 Mike Corrigan IBM Corporation
5 * 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.
11 #include <linux/stddef.h>
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
14 #include <linux/bootmem.h>
15 #include <linux/seq_file.h>
16 #include <linux/proc_fs.h>
17 #include <asm/system.h>
19 #include <asm/iSeries/ItLpQueue.h>
20 #include <asm/iSeries/HvLpEvent.h>
21 #include <asm/iSeries/HvCallEvent.h>
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.
27 * It is written to by the hypervisor so cannot end up in the BSS.
29 struct hvlpevent_queue hvlpevent_queue __attribute__((__section__(".data")));
31 DEFINE_PER_CPU(unsigned long[HvLpEvent_Type_NumTypes], hvlpevent_counts);
33 static char *event_types[HvLpEvent_Type_NumTypes] = {
45 static __inline__ int set_inUse(void)
48 u32 * inUseP = &hvlpevent_queue.xInUseWord;
50 __asm__ __volatile__("\n\
59 : "=&r" (t), "=m" (hvlpevent_queue.xInUseWord)
60 : "r" (inUseP), "m" (hvlpevent_queue.xInUseWord)
66 static __inline__ void clear_inUse(void)
68 hvlpevent_queue.xInUseWord = 0;
71 /* Array of LpEvent handler functions */
72 extern LpEventHandler lpEventHandler[HvLpEvent_Type_NumTypes];
73 unsigned long ItLpQueueInProcess = 0;
75 static struct HvLpEvent * get_next_hvlpevent(void)
77 struct HvLpEvent * event;
78 event = (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
80 if (event->xFlags.xValid) {
81 /* rmb() needed only for weakly consistent machines (regatta) */
83 /* Set pointer to next potential event */
84 hvlpevent_queue.xSlicCurEventPtr += ((event->xSizeMinus1 +
85 LpEventAlign) / LpEventAlign) * LpEventAlign;
87 /* 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;
100 static unsigned long spread_lpevents = NR_CPUS;
102 int hvlpevent_is_pending(void)
104 struct HvLpEvent *next_event;
106 if (smp_processor_id() >= spread_lpevents)
109 next_event = (struct HvLpEvent *)hvlpevent_queue.xSlicCurEventPtr;
111 return next_event->xFlags.xValid |
112 hvlpevent_queue.xPlicOverflowIntPending;
115 static void hvlpevent_clear_valid(struct HvLpEvent * event)
117 /* 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.
121 struct HvLpEvent *tmp;
122 unsigned extra = ((event->xSizeMinus1 + LpEventAlign) /
127 tmp = (struct HvLpEvent*)((char*)event + 3 * LpEventAlign);
128 tmp->xFlags.xValid = 0;
130 tmp = (struct HvLpEvent*)((char*)event + 2 * LpEventAlign);
131 tmp->xFlags.xValid = 0;
133 tmp = (struct HvLpEvent*)((char*)event + 1 * LpEventAlign);
134 tmp->xFlags.xValid = 0;
139 event->xFlags.xValid = 0;
142 void process_hvlpevents(struct pt_regs *regs)
144 struct HvLpEvent * event;
146 /* If we have recursed, just return */
150 if (ItLpQueueInProcess == 0)
151 ItLpQueueInProcess = 1;
156 event = get_next_hvlpevent();
158 /* Call appropriate handler here, passing
159 * 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
164 * Handlers are responsible for ACK processing
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
171 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);
177 printk(KERN_INFO "Unexpected Lp Event type=%d\n", event->xType );
179 hvlpevent_clear_valid(event);
180 } else if (hvlpevent_queue.xPlicOverflowIntPending)
182 * No more valid events. If overflow events are
183 * pending process them
185 HvCallEvent_getOverflowLpEvents(hvlpevent_queue.xIndex);
190 ItLpQueueInProcess = 0;
195 static int set_spread_lpevents(char *str)
197 unsigned long val = simple_strtoul(str, NULL, 0);
200 * The parameter is the number of processors to share in processing
203 if (( val > 0) && (val <= NR_CPUS)) {
204 spread_lpevents = val;
205 printk("lpevent processing spread over %ld processors\n", val);
207 printk("invalid spread_lpevents %ld\n", val);
212 __setup("spread_lpevents=", set_spread_lpevents);
214 void setup_hvlpevent_queue(void)
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.
223 eventStack = alloc_bootmem_pages(LpEventStackSize);
224 memset(eventStack, 0, LpEventStackSize);
226 /* Invoke the hypervisor to initialize the event stack */
227 HvCallEvent_setLpEventStack(0, eventStack, LpEventStackSize);
229 hvlpevent_queue.xSlicEventStackPtr = (char *)eventStack;
230 hvlpevent_queue.xSlicCurEventPtr = (char *)eventStack;
231 hvlpevent_queue.xSlicLastValidEventPtr = (char *)eventStack +
232 (LpEventStackSize - LpEventMaxSize);
233 hvlpevent_queue.xIndex = 0;
236 static int proc_lpevents_show(struct seq_file *m, void *v)
240 static unsigned long cpu_totals[NR_CPUS];
242 /* FIXME: do we care that there's no locking here? */
244 for_each_online_cpu(cpu) {
246 for (i = 0; i < HvLpEvent_Type_NumTypes; i++) {
247 cpu_totals[cpu] += per_cpu(hvlpevent_counts, cpu)[i];
249 sum += cpu_totals[cpu];
252 seq_printf(m, "LpEventQueue 0\n");
253 seq_printf(m, " events processed:\t%lu\n", sum);
255 for (i = 0; i < HvLpEvent_Type_NumTypes; ++i) {
257 for_each_online_cpu(cpu) {
258 sum += per_cpu(hvlpevent_counts, cpu)[i];
261 seq_printf(m, " %-20s %10lu\n", event_types[i], sum);
264 seq_printf(m, "\n events processed by processor:\n");
266 for_each_online_cpu(cpu) {
267 seq_printf(m, " CPU%02d %10lu\n", cpu, cpu_totals[cpu]);
273 static int proc_lpevents_open(struct inode *inode, struct file *file)
275 return single_open(file, proc_lpevents_show, NULL);
278 static struct file_operations proc_lpevents_operations = {
279 .open = proc_lpevents_open,
282 .release = single_release,
285 static int __init proc_lpevents_init(void)
287 struct proc_dir_entry *e;
289 e = create_proc_entry("iSeries/lpevents", S_IFREG|S_IRUGO, NULL);
291 e->proc_fops = &proc_lpevents_operations;
295 __initcall(proc_lpevents_init);