blob: 091aaed4842c538aee1032af711a6a33caab2c79 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ItLpQueue.c
3 * Copyright (C) 2001 Mike Corrigan IBM Corporation
4 *
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.
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/system.h>
16#include <asm/paca.h>
17#include <asm/iSeries/ItLpQueue.h>
18#include <asm/iSeries/HvLpEvent.h>
19#include <asm/iSeries/HvCallEvent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Michael Ellerman1b19bc72005-06-30 15:07:57 +100021static __inline__ int set_inUse(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
23 int t;
Michael Ellerman1b19bc72005-06-30 15:07:57 +100024 u32 * inUseP = &xItLpQueue.xInUseWord;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26 __asm__ __volatile__("\n\
271: lwarx %0,0,%2 \n\
28 cmpwi 0,%0,0 \n\
29 li %0,0 \n\
30 bne- 2f \n\
31 addi %0,%0,1 \n\
32 stwcx. %0,0,%2 \n\
33 bne- 1b \n\
342: eieio"
Michael Ellerman1b19bc72005-06-30 15:07:57 +100035 : "=&r" (t), "=m" (xItLpQueue.xInUseWord)
36 : "r" (inUseP), "m" (xItLpQueue.xInUseWord)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 : "cc");
38
39 return t;
40}
41
Michael Ellerman1b19bc72005-06-30 15:07:57 +100042static __inline__ void clear_inUse(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Michael Ellerman1b19bc72005-06-30 15:07:57 +100044 xItLpQueue.xInUseWord = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
47/* Array of LpEvent handler functions */
48extern LpEventHandler lpEventHandler[HvLpEvent_Type_NumTypes];
49unsigned long ItLpQueueInProcess = 0;
50
Michael Ellerman1b19bc72005-06-30 15:07:57 +100051struct HvLpEvent * ItLpQueue_getNextLpEvent(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 struct HvLpEvent * nextLpEvent =
Michael Ellerman1b19bc72005-06-30 15:07:57 +100054 (struct HvLpEvent *)xItLpQueue.xSlicCurEventPtr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 if ( nextLpEvent->xFlags.xValid ) {
56 /* rmb() needed only for weakly consistent machines (regatta) */
57 rmb();
58 /* Set pointer to next potential event */
Michael Ellerman1b19bc72005-06-30 15:07:57 +100059 xItLpQueue.xSlicCurEventPtr += ((nextLpEvent->xSizeMinus1 +
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 LpEventAlign ) /
61 LpEventAlign ) *
62 LpEventAlign;
63 /* Wrap to beginning if no room at end */
Michael Ellerman1b19bc72005-06-30 15:07:57 +100064 if (xItLpQueue.xSlicCurEventPtr > xItLpQueue.xSlicLastValidEventPtr)
65 xItLpQueue.xSlicCurEventPtr = xItLpQueue.xSlicEventStackPtr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 }
67 else
68 nextLpEvent = NULL;
69
70 return nextLpEvent;
71}
72
Michael Ellerman0c885c12005-06-30 15:07:33 +100073static unsigned long spread_lpevents = NR_CPUS;
Michael Ellermanbea248f2005-06-30 15:07:09 +100074
Michael Ellerman1b19bc72005-06-30 15:07:57 +100075int ItLpQueue_isLpIntPending(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Michael Ellermanbea248f2005-06-30 15:07:09 +100077 struct HvLpEvent *next_event;
78
79 if (smp_processor_id() >= spread_lpevents)
80 return 0;
81
Michael Ellerman1b19bc72005-06-30 15:07:57 +100082 next_event = (struct HvLpEvent *)xItLpQueue.xSlicCurEventPtr;
83 return next_event->xFlags.xValid | xItLpQueue.xPlicOverflowIntPending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86void ItLpQueue_clearValid( struct HvLpEvent * event )
87{
88 /* Clear the valid bit of the event
89 * Also clear bits within this event that might
90 * look like valid bits (on 64-byte boundaries)
91 */
92 unsigned extra = (( event->xSizeMinus1 + LpEventAlign ) /
93 LpEventAlign ) - 1;
94 switch ( extra ) {
95 case 3:
96 ((struct HvLpEvent*)((char*)event+3*LpEventAlign))->xFlags.xValid=0;
97 case 2:
98 ((struct HvLpEvent*)((char*)event+2*LpEventAlign))->xFlags.xValid=0;
99 case 1:
100 ((struct HvLpEvent*)((char*)event+1*LpEventAlign))->xFlags.xValid=0;
101 case 0:
102 ;
103 }
104 mb();
105 event->xFlags.xValid = 0;
106}
107
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000108unsigned ItLpQueue_process(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 unsigned numIntsProcessed = 0;
111 struct HvLpEvent * nextLpEvent;
112
113 /* If we have recursed, just return */
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000114 if ( !set_inUse() )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return 0;
116
117 if (ItLpQueueInProcess == 0)
118 ItLpQueueInProcess = 1;
119 else
120 BUG();
121
122 for (;;) {
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000123 nextLpEvent = ItLpQueue_getNextLpEvent();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if ( nextLpEvent ) {
125 /* Count events to return to caller
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000126 * and count processed events in xItLpQueue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128 ++numIntsProcessed;
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000129 xItLpQueue.xLpIntCount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* Call appropriate handler here, passing
131 * a pointer to the LpEvent. The handler
132 * must make a copy of the LpEvent if it
133 * needs it in a bottom half. (perhaps for
134 * an ACK)
135 *
136 * Handlers are responsible for ACK processing
137 *
138 * The Hypervisor guarantees that LpEvents will
139 * only be delivered with types that we have
140 * registered for, so no type check is necessary
141 * here!
142 */
143 if ( nextLpEvent->xType < HvLpEvent_Type_NumTypes )
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000144 xItLpQueue.xLpIntCountByType[nextLpEvent->xType]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if ( nextLpEvent->xType < HvLpEvent_Type_NumTypes &&
146 lpEventHandler[nextLpEvent->xType] )
147 lpEventHandler[nextLpEvent->xType](nextLpEvent, regs);
148 else
149 printk(KERN_INFO "Unexpected Lp Event type=%d\n", nextLpEvent->xType );
150
151 ItLpQueue_clearValid( nextLpEvent );
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000152 } else if ( xItLpQueue.xPlicOverflowIntPending )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /*
154 * No more valid events. If overflow events are
155 * pending process them
156 */
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000157 HvCallEvent_getOverflowLpEvents( xItLpQueue.xIndex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 else
159 break;
160 }
161
162 ItLpQueueInProcess = 0;
163 mb();
Michael Ellerman1b19bc72005-06-30 15:07:57 +1000164 clear_inUse();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 get_paca()->lpevent_count += numIntsProcessed;
167
168 return numIntsProcessed;
169}
Michael Ellerman0c885c12005-06-30 15:07:33 +1000170
171static int set_spread_lpevents(char *str)
172{
173 unsigned long val = simple_strtoul(str, NULL, 0);
174
175 /*
176 * The parameter is the number of processors to share in processing
177 * lp events.
178 */
179 if (( val > 0) && (val <= NR_CPUS)) {
180 spread_lpevents = val;
181 printk("lpevent processing spread over %ld processors\n", val);
182 } else {
183 printk("invalid spread_lpevents %ld\n", val);
184 }
185
186 return 1;
187}
188__setup("spread_lpevents=", set_spread_lpevents);
189
Michael Ellerman512d31d2005-06-30 15:08:27 +1000190void setup_hvlpevent_queue(void)
191{
192 void *eventStack;
193
194 /*
195 * Allocate a page for the Event Stack. The Hypervisor needs the
196 * absolute real address, so we subtract out the KERNELBASE and add
197 * in the absolute real address of the kernel load area.
198 */
199 eventStack = alloc_bootmem_pages(LpEventStackSize);
200 memset(eventStack, 0, LpEventStackSize);
201
202 /* Invoke the hypervisor to initialize the event stack */
203 HvCallEvent_setLpEventStack(0, eventStack, LpEventStackSize);
204
205 xItLpQueue.xSlicEventStackPtr = (char *)eventStack;
206 xItLpQueue.xSlicCurEventPtr = (char *)eventStack;
207 xItLpQueue.xSlicLastValidEventPtr = (char *)eventStack +
208 (LpEventStackSize - LpEventMaxSize);
209 xItLpQueue.xIndex = 0;
210}