ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / hv / RingBuffer.c
blob3a38103ecfbd7c74126650df841d6f5f535e4304
1 /*
3 * Copyright (c) 2009, Microsoft Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
24 #include <linux/kernel.h>
25 #include <linux/mm.h>
26 #include "osd.h"
27 #include "logging.h"
28 #include "RingBuffer.h"
31 /* #defines */
34 /* Amount of space to write to */
35 #define BYTES_AVAIL_TO_WRITE(r, w, z) ((w) >= (r))?((z) - ((w) - (r))):((r) - (w))
38 /*++
40 Name:
41 GetRingBufferAvailBytes()
43 Description:
44 Get number of bytes available to read and to write to
45 for the specified ring buffer
47 --*/
48 static inline void
49 GetRingBufferAvailBytes(RING_BUFFER_INFO *rbi, u32 *read, u32 *write)
51 u32 read_loc,write_loc;
53 /* Capture the read/write indices before they changed */
54 read_loc = rbi->RingBuffer->ReadIndex;
55 write_loc = rbi->RingBuffer->WriteIndex;
57 *write = BYTES_AVAIL_TO_WRITE(read_loc, write_loc, rbi->RingDataSize);
58 *read = rbi->RingDataSize - *write;
61 /*++
63 Name:
64 GetNextWriteLocation()
66 Description:
67 Get the next write location for the specified ring buffer
69 --*/
70 static inline u32
71 GetNextWriteLocation(RING_BUFFER_INFO* RingInfo)
73 u32 next = RingInfo->RingBuffer->WriteIndex;
75 ASSERT(next < RingInfo->RingDataSize);
77 return next;
80 /*++
82 Name:
83 SetNextWriteLocation()
85 Description:
86 Set the next write location for the specified ring buffer
88 --*/
89 static inline void
90 SetNextWriteLocation(RING_BUFFER_INFO* RingInfo, u32 NextWriteLocation)
92 RingInfo->RingBuffer->WriteIndex = NextWriteLocation;
95 /*++
97 Name:
98 GetNextReadLocation()
100 Description:
101 Get the next read location for the specified ring buffer
103 --*/
104 static inline u32
105 GetNextReadLocation(RING_BUFFER_INFO* RingInfo)
107 u32 next = RingInfo->RingBuffer->ReadIndex;
109 ASSERT(next < RingInfo->RingDataSize);
111 return next;
114 /*++
116 Name:
117 GetNextReadLocationWithOffset()
119 Description:
120 Get the next read location + offset for the specified ring buffer.
121 This allows the caller to skip
123 --*/
124 static inline u32
125 GetNextReadLocationWithOffset(RING_BUFFER_INFO* RingInfo, u32 Offset)
127 u32 next = RingInfo->RingBuffer->ReadIndex;
129 ASSERT(next < RingInfo->RingDataSize);
130 next += Offset;
131 next %= RingInfo->RingDataSize;
133 return next;
136 /*++
138 Name:
139 SetNextReadLocation()
141 Description:
142 Set the next read location for the specified ring buffer
144 --*/
145 static inline void
146 SetNextReadLocation(RING_BUFFER_INFO* RingInfo, u32 NextReadLocation)
148 RingInfo->RingBuffer->ReadIndex = NextReadLocation;
152 /*++
154 Name:
155 GetRingBuffer()
157 Description:
158 Get the start of the ring buffer
160 --*/
161 static inline void *
162 GetRingBuffer(RING_BUFFER_INFO* RingInfo)
164 return (void *)RingInfo->RingBuffer->Buffer;
168 /*++
170 Name:
171 GetRingBufferSize()
173 Description:
174 Get the size of the ring buffer
176 --*/
177 static inline u32
178 GetRingBufferSize(RING_BUFFER_INFO* RingInfo)
180 return RingInfo->RingDataSize;
183 /*++
185 Name:
186 GetRingBufferIndices()
188 Description:
189 Get the read and write indices as u64 of the specified ring buffer
191 --*/
192 static inline u64
193 GetRingBufferIndices(RING_BUFFER_INFO* RingInfo)
195 return (u64)RingInfo->RingBuffer->WriteIndex << 32;
199 /*++
201 Name:
202 DumpRingInfo()
204 Description:
205 Dump out to console the ring buffer info
207 --*/
208 void DumpRingInfo(RING_BUFFER_INFO *RingInfo, char *Prefix)
210 u32 bytesAvailToWrite;
211 u32 bytesAvailToRead;
213 GetRingBufferAvailBytes(RingInfo, &bytesAvailToRead, &bytesAvailToWrite);
215 DPRINT(VMBUS, DEBUG_RING_LVL, "%s <<ringinfo %p buffer %p avail write %u avail read %u read idx %u write idx %u>>",
216 Prefix,
217 RingInfo,
218 RingInfo->RingBuffer->Buffer,
219 bytesAvailToWrite,
220 bytesAvailToRead,
221 RingInfo->RingBuffer->ReadIndex,
222 RingInfo->RingBuffer->WriteIndex);
226 /* Internal routines */
228 static u32
229 CopyToRingBuffer(
230 RING_BUFFER_INFO *RingInfo,
231 u32 StartWriteOffset,
232 void * Src,
233 u32 SrcLen);
235 static u32
236 CopyFromRingBuffer(
237 RING_BUFFER_INFO *RingInfo,
238 void * Dest,
239 u32 DestLen,
240 u32 StartReadOffset);
244 /*++
246 Name:
247 RingBufferGetDebugInfo()
249 Description:
250 Get various debug metrics for the specified ring buffer
252 --*/
253 void RingBufferGetDebugInfo(RING_BUFFER_INFO *RingInfo,
254 RING_BUFFER_DEBUG_INFO *DebugInfo)
256 u32 bytesAvailToWrite;
257 u32 bytesAvailToRead;
259 if (RingInfo->RingBuffer)
261 GetRingBufferAvailBytes(RingInfo, &bytesAvailToRead, &bytesAvailToWrite);
263 DebugInfo->BytesAvailToRead = bytesAvailToRead;
264 DebugInfo->BytesAvailToWrite = bytesAvailToWrite;
265 DebugInfo->CurrentReadIndex = RingInfo->RingBuffer->ReadIndex;
266 DebugInfo->CurrentWriteIndex = RingInfo->RingBuffer->WriteIndex;
268 DebugInfo->CurrentInterruptMask = RingInfo->RingBuffer->InterruptMask;
273 /*++
275 Name:
276 GetRingBufferInterruptMask()
278 Description:
279 Get the interrupt mask for the specified ring buffer
281 --*/
282 u32 GetRingBufferInterruptMask(RING_BUFFER_INFO *rbi)
284 return rbi->RingBuffer->InterruptMask;
287 /*++
289 Name:
290 RingBufferInit()
292 Description:
293 Initialize the ring buffer
295 --*/
296 int RingBufferInit(RING_BUFFER_INFO *RingInfo, void *Buffer, u32 BufferLen)
298 ASSERT(sizeof(RING_BUFFER) == PAGE_SIZE);
300 memset(RingInfo, 0, sizeof(RING_BUFFER_INFO));
302 RingInfo->RingBuffer = (RING_BUFFER*)Buffer;
303 RingInfo->RingBuffer->ReadIndex = RingInfo->RingBuffer->WriteIndex = 0;
305 RingInfo->RingSize = BufferLen;
306 RingInfo->RingDataSize = BufferLen - sizeof(RING_BUFFER);
308 spin_lock_init(&RingInfo->ring_lock);
310 return 0;
313 /*++
315 Name:
316 RingBufferCleanup()
318 Description:
319 Cleanup the ring buffer
321 --*/
322 void RingBufferCleanup(RING_BUFFER_INFO* RingInfo)
326 /*++
328 Name:
329 RingBufferWrite()
331 Description:
332 Write to the ring buffer
334 --*/
335 int RingBufferWrite(RING_BUFFER_INFO *OutRingInfo,
336 struct scatterlist *sglist, u32 sgcount)
338 int i=0;
339 u32 byteAvailToWrite;
340 u32 byteAvailToRead;
341 u32 totalBytesToWrite=0;
343 struct scatterlist *sg;
344 volatile u32 nextWriteLocation;
345 u64 prevIndices=0;
346 unsigned long flags;
348 DPRINT_ENTER(VMBUS);
350 for_each_sg(sglist, sg, sgcount, i)
352 totalBytesToWrite += sg->length;
355 totalBytesToWrite += sizeof(u64);
357 spin_lock_irqsave(&OutRingInfo->ring_lock, flags);
359 GetRingBufferAvailBytes(OutRingInfo, &byteAvailToRead, &byteAvailToWrite);
361 DPRINT_DBG(VMBUS, "Writing %u bytes...", totalBytesToWrite);
363 /* DumpRingInfo(OutRingInfo, "BEFORE "); */
365 /* If there is only room for the packet, assume it is full. Otherwise, the next time around, we think the ring buffer */
366 /* is empty since the read index == write index */
367 if (byteAvailToWrite <= totalBytesToWrite)
369 DPRINT_DBG(VMBUS, "No more space left on outbound ring buffer (needed %u, avail %u)", totalBytesToWrite, byteAvailToWrite);
371 spin_unlock_irqrestore(&OutRingInfo->ring_lock, flags);
373 DPRINT_EXIT(VMBUS);
375 return -1;
378 /* Write to the ring buffer */
379 nextWriteLocation = GetNextWriteLocation(OutRingInfo);
381 for_each_sg(sglist, sg, sgcount, i)
383 nextWriteLocation = CopyToRingBuffer(OutRingInfo,
384 nextWriteLocation,
385 sg_virt(sg),
386 sg->length);
389 /* Set previous packet start */
390 prevIndices = GetRingBufferIndices(OutRingInfo);
392 nextWriteLocation = CopyToRingBuffer(OutRingInfo,
393 nextWriteLocation,
394 &prevIndices,
395 sizeof(u64));
397 /* Make sure we flush all writes before updating the writeIndex */
398 mb();
400 /* Now, update the write location */
401 SetNextWriteLocation(OutRingInfo, nextWriteLocation);
403 /* DumpRingInfo(OutRingInfo, "AFTER "); */
405 spin_unlock_irqrestore(&OutRingInfo->ring_lock, flags);
407 DPRINT_EXIT(VMBUS);
409 return 0;
413 /*++
415 Name:
416 RingBufferPeek()
418 Description:
419 Read without advancing the read index
421 --*/
422 int RingBufferPeek(RING_BUFFER_INFO *InRingInfo, void *Buffer, u32 BufferLen)
424 u32 bytesAvailToWrite;
425 u32 bytesAvailToRead;
426 u32 nextReadLocation=0;
427 unsigned long flags;
429 spin_lock_irqsave(&InRingInfo->ring_lock, flags);
431 GetRingBufferAvailBytes(InRingInfo, &bytesAvailToRead, &bytesAvailToWrite);
433 /* Make sure there is something to read */
434 if (bytesAvailToRead < BufferLen )
436 /* DPRINT_DBG(VMBUS, "got callback but not enough to read <avail to read %d read size %d>!!", bytesAvailToRead, BufferLen); */
438 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
440 return -1;
443 /* Convert to byte offset */
444 nextReadLocation = GetNextReadLocation(InRingInfo);
446 nextReadLocation = CopyFromRingBuffer(InRingInfo,
447 Buffer,
448 BufferLen,
449 nextReadLocation);
451 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
453 return 0;
457 /*++
459 Name:
460 RingBufferRead()
462 Description:
463 Read and advance the read index
465 --*/
466 int RingBufferRead(RING_BUFFER_INFO *InRingInfo, void *Buffer,
467 u32 BufferLen, u32 Offset)
469 u32 bytesAvailToWrite;
470 u32 bytesAvailToRead;
471 u32 nextReadLocation=0;
472 u64 prevIndices=0;
473 unsigned long flags;
475 ASSERT(BufferLen > 0);
477 spin_lock_irqsave(&InRingInfo->ring_lock, flags);
479 GetRingBufferAvailBytes(InRingInfo, &bytesAvailToRead, &bytesAvailToWrite);
481 DPRINT_DBG(VMBUS, "Reading %u bytes...", BufferLen);
483 /* DumpRingInfo(InRingInfo, "BEFORE "); */
485 /* Make sure there is something to read */
486 if (bytesAvailToRead < BufferLen )
488 DPRINT_DBG(VMBUS, "got callback but not enough to read <avail to read %d read size %d>!!", bytesAvailToRead, BufferLen);
490 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
492 return -1;
495 nextReadLocation = GetNextReadLocationWithOffset(InRingInfo, Offset);
497 nextReadLocation = CopyFromRingBuffer(InRingInfo,
498 Buffer,
499 BufferLen,
500 nextReadLocation);
502 nextReadLocation = CopyFromRingBuffer(InRingInfo,
503 &prevIndices,
504 sizeof(u64),
505 nextReadLocation);
507 /* Make sure all reads are done before we update the read index since */
508 /* the writer may start writing to the read area once the read index is updated */
509 mb();
511 /* Update the read index */
512 SetNextReadLocation(InRingInfo, nextReadLocation);
514 /* DumpRingInfo(InRingInfo, "AFTER "); */
516 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
518 return 0;
522 /*++
524 Name:
525 CopyToRingBuffer()
527 Description:
528 Helper routine to copy from source to ring buffer.
529 Assume there is enough room. Handles wrap-around in dest case only!!
531 --*/
532 static u32
533 CopyToRingBuffer(
534 RING_BUFFER_INFO *RingInfo,
535 u32 StartWriteOffset,
536 void * Src,
537 u32 SrcLen)
539 void * ringBuffer=GetRingBuffer(RingInfo);
540 u32 ringBufferSize=GetRingBufferSize(RingInfo);
541 u32 fragLen;
543 if (SrcLen > ringBufferSize - StartWriteOffset) /* wrap-around detected! */
545 DPRINT_DBG(VMBUS, "wrap-around detected!");
547 fragLen = ringBufferSize - StartWriteOffset;
548 memcpy(ringBuffer + StartWriteOffset, Src, fragLen);
549 memcpy(ringBuffer, Src + fragLen, SrcLen - fragLen);
551 else
553 memcpy(ringBuffer + StartWriteOffset, Src, SrcLen);
556 StartWriteOffset += SrcLen;
557 StartWriteOffset %= ringBufferSize;
559 return StartWriteOffset;
563 /*++
565 Name:
566 CopyFromRingBuffer()
568 Description:
569 Helper routine to copy to source from ring buffer.
570 Assume there is enough room. Handles wrap-around in src case only!!
572 --*/
573 static u32
574 CopyFromRingBuffer(
575 RING_BUFFER_INFO *RingInfo,
576 void * Dest,
577 u32 DestLen,
578 u32 StartReadOffset)
580 void * ringBuffer=GetRingBuffer(RingInfo);
581 u32 ringBufferSize=GetRingBufferSize(RingInfo);
583 u32 fragLen;
585 if (DestLen > ringBufferSize - StartReadOffset) /* wrap-around detected at the src */
587 DPRINT_DBG(VMBUS, "src wrap-around detected!");
589 fragLen = ringBufferSize - StartReadOffset;
591 memcpy(Dest, ringBuffer + StartReadOffset, fragLen);
592 memcpy(Dest + fragLen, ringBuffer, DestLen - fragLen);
594 else
596 memcpy(Dest, ringBuffer + StartReadOffset, DestLen);
599 StartReadOffset += DestLen;
600 StartReadOffset %= ringBufferSize;
602 return StartReadOffset;
606 /* eof */