Staging: hv: rename RndisFilter.c and .h to rndis_filter.c and .h
[linux-2.6.git] / drivers / staging / hv / ring_buffer.c
blobae2a10e24d92eabf21f9eb84049cd4ed48088719
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 "ring_buffer.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)
196 || RingInfo->RingBuffer->ReadIndex;
200 /*++
202 Name:
203 DumpRingInfo()
205 Description:
206 Dump out to console the ring buffer info
208 --*/
209 void DumpRingInfo(RING_BUFFER_INFO *RingInfo, char *Prefix)
211 u32 bytesAvailToWrite;
212 u32 bytesAvailToRead;
214 GetRingBufferAvailBytes(RingInfo,
215 &bytesAvailToRead,
216 &bytesAvailToWrite);
218 DPRINT(VMBUS,
219 DEBUG_RING_LVL,
220 "%s <<ringinfo %p buffer %p avail write %u "
221 "avail read %u read idx %u write idx %u>>",
222 Prefix,
223 RingInfo,
224 RingInfo->RingBuffer->Buffer,
225 bytesAvailToWrite,
226 bytesAvailToRead,
227 RingInfo->RingBuffer->ReadIndex,
228 RingInfo->RingBuffer->WriteIndex);
232 /* Internal routines */
234 static u32
235 CopyToRingBuffer(
236 RING_BUFFER_INFO *RingInfo,
237 u32 StartWriteOffset,
238 void *Src,
239 u32 SrcLen);
241 static u32
242 CopyFromRingBuffer(
243 RING_BUFFER_INFO *RingInfo,
244 void *Dest,
245 u32 DestLen,
246 u32 StartReadOffset);
250 /*++
252 Name:
253 RingBufferGetDebugInfo()
255 Description:
256 Get various debug metrics for the specified ring buffer
258 --*/
259 void RingBufferGetDebugInfo(RING_BUFFER_INFO *RingInfo,
260 RING_BUFFER_DEBUG_INFO *DebugInfo)
262 u32 bytesAvailToWrite;
263 u32 bytesAvailToRead;
265 if (RingInfo->RingBuffer) {
266 GetRingBufferAvailBytes(RingInfo,
267 &bytesAvailToRead,
268 &bytesAvailToWrite);
270 DebugInfo->BytesAvailToRead = bytesAvailToRead;
271 DebugInfo->BytesAvailToWrite = bytesAvailToWrite;
272 DebugInfo->CurrentReadIndex = RingInfo->RingBuffer->ReadIndex;
273 DebugInfo->CurrentWriteIndex = RingInfo->RingBuffer->WriteIndex;
274 DebugInfo->CurrentInterruptMask = RingInfo->RingBuffer->InterruptMask;
279 /*++
281 Name:
282 GetRingBufferInterruptMask()
284 Description:
285 Get the interrupt mask for the specified ring buffer
287 --*/
288 u32 GetRingBufferInterruptMask(RING_BUFFER_INFO *rbi)
290 return rbi->RingBuffer->InterruptMask;
293 /*++
295 Name:
296 RingBufferInit()
298 Description:
299 Initialize the ring buffer
301 --*/
302 int RingBufferInit(RING_BUFFER_INFO *RingInfo, void *Buffer, u32 BufferLen)
304 if (sizeof(RING_BUFFER) != PAGE_SIZE)
305 return -EINVAL;
307 memset(RingInfo, 0, sizeof(RING_BUFFER_INFO));
309 RingInfo->RingBuffer = (RING_BUFFER *)Buffer;
310 RingInfo->RingBuffer->ReadIndex = RingInfo->RingBuffer->WriteIndex = 0;
312 RingInfo->RingSize = BufferLen;
313 RingInfo->RingDataSize = BufferLen - sizeof(RING_BUFFER);
315 spin_lock_init(&RingInfo->ring_lock);
317 return 0;
320 /*++
322 Name:
323 RingBufferCleanup()
325 Description:
326 Cleanup the ring buffer
328 --*/
329 void RingBufferCleanup(RING_BUFFER_INFO *RingInfo)
333 /*++
335 Name:
336 RingBufferWrite()
338 Description:
339 Write to the ring buffer
341 --*/
342 int RingBufferWrite(RING_BUFFER_INFO *OutRingInfo,
343 struct scatterlist *sglist, u32 sgcount)
345 int i = 0;
346 u32 byteAvailToWrite;
347 u32 byteAvailToRead;
348 u32 totalBytesToWrite = 0;
350 struct scatterlist *sg;
351 volatile u32 nextWriteLocation;
352 u64 prevIndices = 0;
353 unsigned long flags;
355 DPRINT_ENTER(VMBUS);
357 for_each_sg(sglist, sg, sgcount, i)
359 totalBytesToWrite += sg->length;
362 totalBytesToWrite += sizeof(u64);
364 spin_lock_irqsave(&OutRingInfo->ring_lock, flags);
366 GetRingBufferAvailBytes(OutRingInfo,
367 &byteAvailToRead,
368 &byteAvailToWrite);
370 DPRINT_DBG(VMBUS, "Writing %u bytes...", totalBytesToWrite);
372 /* DumpRingInfo(OutRingInfo, "BEFORE "); */
374 /* If there is only room for the packet, assume it is full. */
375 /* Otherwise, the next time around, we think the ring buffer */
376 /* is empty since the read index == write index */
377 if (byteAvailToWrite <= totalBytesToWrite) {
378 DPRINT_DBG(VMBUS,
379 "No more space left on outbound ring buffer "
380 "(needed %u, avail %u)",
381 totalBytesToWrite,
382 byteAvailToWrite);
384 spin_unlock_irqrestore(&OutRingInfo->ring_lock, flags);
386 DPRINT_EXIT(VMBUS);
388 return -1;
391 /* Write to the ring buffer */
392 nextWriteLocation = GetNextWriteLocation(OutRingInfo);
394 for_each_sg(sglist, sg, sgcount, i)
396 nextWriteLocation = CopyToRingBuffer(OutRingInfo,
397 nextWriteLocation,
398 sg_virt(sg),
399 sg->length);
402 /* Set previous packet start */
403 prevIndices = GetRingBufferIndices(OutRingInfo);
405 nextWriteLocation = CopyToRingBuffer(OutRingInfo,
406 nextWriteLocation,
407 &prevIndices,
408 sizeof(u64));
410 /* Make sure we flush all writes before updating the writeIndex */
411 mb();
413 /* Now, update the write location */
414 SetNextWriteLocation(OutRingInfo, nextWriteLocation);
416 /* DumpRingInfo(OutRingInfo, "AFTER "); */
418 spin_unlock_irqrestore(&OutRingInfo->ring_lock, flags);
420 DPRINT_EXIT(VMBUS);
422 return 0;
426 /*++
428 Name:
429 RingBufferPeek()
431 Description:
432 Read without advancing the read index
434 --*/
435 int RingBufferPeek(RING_BUFFER_INFO *InRingInfo, void *Buffer, u32 BufferLen)
437 u32 bytesAvailToWrite;
438 u32 bytesAvailToRead;
439 u32 nextReadLocation = 0;
440 unsigned long flags;
442 spin_lock_irqsave(&InRingInfo->ring_lock, flags);
444 GetRingBufferAvailBytes(InRingInfo,
445 &bytesAvailToRead,
446 &bytesAvailToWrite);
448 /* Make sure there is something to read */
449 if (bytesAvailToRead < BufferLen) {
450 /* DPRINT_DBG(VMBUS,
451 "got callback but not enough to read "
452 "<avail to read %d read size %d>!!",
453 bytesAvailToRead,
454 BufferLen); */
456 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
458 return -1;
461 /* Convert to byte offset */
462 nextReadLocation = GetNextReadLocation(InRingInfo);
464 nextReadLocation = CopyFromRingBuffer(InRingInfo,
465 Buffer,
466 BufferLen,
467 nextReadLocation);
469 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
471 return 0;
475 /*++
477 Name:
478 RingBufferRead()
480 Description:
481 Read and advance the read index
483 --*/
484 int RingBufferRead(RING_BUFFER_INFO *InRingInfo, void *Buffer,
485 u32 BufferLen, u32 Offset)
487 u32 bytesAvailToWrite;
488 u32 bytesAvailToRead;
489 u32 nextReadLocation = 0;
490 u64 prevIndices = 0;
491 unsigned long flags;
493 if (BufferLen <= 0)
494 return -EINVAL;
496 spin_lock_irqsave(&InRingInfo->ring_lock, flags);
498 GetRingBufferAvailBytes(InRingInfo,
499 &bytesAvailToRead,
500 &bytesAvailToWrite);
502 DPRINT_DBG(VMBUS, "Reading %u bytes...", BufferLen);
504 /* DumpRingInfo(InRingInfo, "BEFORE "); */
506 /* Make sure there is something to read */
507 if (bytesAvailToRead < BufferLen) {
508 DPRINT_DBG(VMBUS,
509 "got callback but not enough to read "
510 "<avail to read %d read size %d>!!",
511 bytesAvailToRead,
512 BufferLen);
514 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
516 return -1;
519 nextReadLocation = GetNextReadLocationWithOffset(InRingInfo, Offset);
521 nextReadLocation = CopyFromRingBuffer(InRingInfo,
522 Buffer,
523 BufferLen,
524 nextReadLocation);
526 nextReadLocation = CopyFromRingBuffer(InRingInfo,
527 &prevIndices,
528 sizeof(u64),
529 nextReadLocation);
531 /* Make sure all reads are done before we update the read index since */
532 /* the writer may start writing to the read area once the read index */
533 /*is updated */
534 mb();
536 /* Update the read index */
537 SetNextReadLocation(InRingInfo, nextReadLocation);
539 /* DumpRingInfo(InRingInfo, "AFTER "); */
541 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
543 return 0;
547 /*++
549 Name:
550 CopyToRingBuffer()
552 Description:
553 Helper routine to copy from source to ring buffer.
554 Assume there is enough room. Handles wrap-around in dest case only!!
556 --*/
557 static u32
558 CopyToRingBuffer(
559 RING_BUFFER_INFO *RingInfo,
560 u32 StartWriteOffset,
561 void *Src,
562 u32 SrcLen)
564 void *ringBuffer = GetRingBuffer(RingInfo);
565 u32 ringBufferSize = GetRingBufferSize(RingInfo);
566 u32 fragLen;
568 /* wrap-around detected! */
569 if (SrcLen > ringBufferSize - StartWriteOffset) {
570 DPRINT_DBG(VMBUS, "wrap-around detected!");
572 fragLen = ringBufferSize - StartWriteOffset;
573 memcpy(ringBuffer + StartWriteOffset, Src, fragLen);
574 memcpy(ringBuffer, Src + fragLen, SrcLen - fragLen);
575 } else
576 memcpy(ringBuffer + StartWriteOffset, Src, SrcLen);
578 StartWriteOffset += SrcLen;
579 StartWriteOffset %= ringBufferSize;
581 return StartWriteOffset;
585 /*++
587 Name:
588 CopyFromRingBuffer()
590 Description:
591 Helper routine to copy to source from ring buffer.
592 Assume there is enough room. Handles wrap-around in src case only!!
594 --*/
595 static u32
596 CopyFromRingBuffer(
597 RING_BUFFER_INFO *RingInfo,
598 void *Dest,
599 u32 DestLen,
600 u32 StartReadOffset)
602 void *ringBuffer = GetRingBuffer(RingInfo);
603 u32 ringBufferSize = GetRingBufferSize(RingInfo);
605 u32 fragLen;
607 /* wrap-around detected at the src */
608 if (DestLen > ringBufferSize - StartReadOffset) {
609 DPRINT_DBG(VMBUS, "src wrap-around detected!");
611 fragLen = ringBufferSize - StartReadOffset;
613 memcpy(Dest, ringBuffer + StartReadOffset, fragLen);
614 memcpy(Dest + fragLen, ringBuffer, DestLen - fragLen);
615 } else
617 memcpy(Dest, ringBuffer + StartReadOffset, DestLen);
620 StartReadOffset += DestLen;
621 StartReadOffset %= ringBufferSize;
623 return StartReadOffset;
627 /* eof */