blob: d338ce25e2b038f115e8fd27de9c0209f3182768 [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
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.
8 *
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.
13 *
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.
17 *
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
21 *
22 */
23
24
Greg Kroah-Hartman09d50ff2009-07-13 17:09:34 -070025#include "include/logging.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070026#include "RingBuffer.h"
27
Hank Janssen3e7ee492009-07-13 16:02:34 -070028
Bill Pemberton454f18a2009-07-27 16:47:24 -040029/* #defines */
30
31
32/* Amount of space to write to */
Hank Janssen3e7ee492009-07-13 16:02:34 -070033#define BYTES_AVAIL_TO_WRITE(r, w, z) ((w) >= (r))?((z) - ((w) - (r))):((r) - (w))
34
35
36/*++
37
38Name:
39 GetRingBufferAvailBytes()
40
41Description:
42 Get number of bytes available to read and to write to
43 for the specified ring buffer
44
45--*/
46static inline void
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070047GetRingBufferAvailBytes(RING_BUFFER_INFO *rbi, u32 *read, u32 *write)
Hank Janssen3e7ee492009-07-13 16:02:34 -070048{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070049 u32 read_loc,write_loc;
Hank Janssen3e7ee492009-07-13 16:02:34 -070050
Bill Pemberton454f18a2009-07-27 16:47:24 -040051 /* Capture the read/write indices before they changed */
Hank Janssen3e7ee492009-07-13 16:02:34 -070052 read_loc = rbi->RingBuffer->ReadIndex;
53 write_loc = rbi->RingBuffer->WriteIndex;
54
55 *write = BYTES_AVAIL_TO_WRITE(read_loc, write_loc, rbi->RingDataSize);
56 *read = rbi->RingDataSize - *write;
57}
58
59/*++
60
61Name:
62 GetNextWriteLocation()
63
64Description:
65 Get the next write location for the specified ring buffer
66
67--*/
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070068static inline u32
Hank Janssen3e7ee492009-07-13 16:02:34 -070069GetNextWriteLocation(RING_BUFFER_INFO* RingInfo)
70{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070071 u32 next = RingInfo->RingBuffer->WriteIndex;
Hank Janssen3e7ee492009-07-13 16:02:34 -070072
73 ASSERT(next < RingInfo->RingDataSize);
74
75 return next;
76}
77
78/*++
79
80Name:
81 SetNextWriteLocation()
82
83Description:
84 Set the next write location for the specified ring buffer
85
86--*/
87static inline void
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070088SetNextWriteLocation(RING_BUFFER_INFO* RingInfo, u32 NextWriteLocation)
Hank Janssen3e7ee492009-07-13 16:02:34 -070089{
90 RingInfo->RingBuffer->WriteIndex = NextWriteLocation;
91}
92
93/*++
94
95Name:
96 GetNextReadLocation()
97
98Description:
99 Get the next read location for the specified ring buffer
100
101--*/
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700102static inline u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700103GetNextReadLocation(RING_BUFFER_INFO* RingInfo)
104{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700105 u32 next = RingInfo->RingBuffer->ReadIndex;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700106
107 ASSERT(next < RingInfo->RingDataSize);
108
109 return next;
110}
111
112/*++
113
114Name:
115 GetNextReadLocationWithOffset()
116
117Description:
118 Get the next read location + offset for the specified ring buffer.
119 This allows the caller to skip
120
121--*/
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700122static inline u32
123GetNextReadLocationWithOffset(RING_BUFFER_INFO* RingInfo, u32 Offset)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700124{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700125 u32 next = RingInfo->RingBuffer->ReadIndex;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700126
127 ASSERT(next < RingInfo->RingDataSize);
128 next += Offset;
129 next %= RingInfo->RingDataSize;
130
131 return next;
132}
133
134/*++
135
136Name:
137 SetNextReadLocation()
138
139Description:
140 Set the next read location for the specified ring buffer
141
142--*/
143static inline void
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700144SetNextReadLocation(RING_BUFFER_INFO* RingInfo, u32 NextReadLocation)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700145{
146 RingInfo->RingBuffer->ReadIndex = NextReadLocation;
147}
148
149
150/*++
151
152Name:
153 GetRingBuffer()
154
155Description:
156 Get the start of the ring buffer
157
158--*/
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700159static inline void *
Hank Janssen3e7ee492009-07-13 16:02:34 -0700160GetRingBuffer(RING_BUFFER_INFO* RingInfo)
161{
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700162 return (void *)RingInfo->RingBuffer->Buffer;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700163}
164
165
166/*++
167
168Name:
169 GetRingBufferSize()
170
171Description:
172 Get the size of the ring buffer
173
174--*/
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700175static inline u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700176GetRingBufferSize(RING_BUFFER_INFO* RingInfo)
177{
178 return RingInfo->RingDataSize;
179}
180
181/*++
182
183Name:
184 GetRingBufferIndices()
185
186Description:
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700187 Get the read and write indices as u64 of the specified ring buffer
Hank Janssen3e7ee492009-07-13 16:02:34 -0700188
189--*/
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700190static inline u64
Hank Janssen3e7ee492009-07-13 16:02:34 -0700191GetRingBufferIndices(RING_BUFFER_INFO* RingInfo)
192{
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700193 return ((u64)RingInfo->RingBuffer->WriteIndex << 32) || RingInfo->RingBuffer->ReadIndex;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700194}
195
196
197/*++
198
199Name:
200 DumpRingInfo()
201
202Description:
203 Dump out to console the ring buffer info
204
205--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700206static void
Hank Janssen3e7ee492009-07-13 16:02:34 -0700207DumpRingInfo(RING_BUFFER_INFO* RingInfo, char *Prefix)
208{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700209 u32 bytesAvailToWrite;
210 u32 bytesAvailToRead;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700211
212 GetRingBufferAvailBytes(RingInfo, &bytesAvailToRead, &bytesAvailToWrite);
213
214 DPRINT(VMBUS, DEBUG_RING_LVL, "%s <<ringinfo %p buffer %p avail write %u avail read %u read idx %u write idx %u>>",
215 Prefix,
216 RingInfo,
217 RingInfo->RingBuffer->Buffer,
218 bytesAvailToWrite,
219 bytesAvailToRead,
220 RingInfo->RingBuffer->ReadIndex,
221 RingInfo->RingBuffer->WriteIndex);
222}
223
Bill Pemberton454f18a2009-07-27 16:47:24 -0400224
225/* Internal routines */
226
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700227static u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700228CopyToRingBuffer(
229 RING_BUFFER_INFO *RingInfo,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700230 u32 StartWriteOffset,
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700231 void * Src,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700232 u32 SrcLen);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700233
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700234static u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700235CopyFromRingBuffer(
236 RING_BUFFER_INFO *RingInfo,
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700237 void * Dest,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700238 u32 DestLen,
239 u32 StartReadOffset);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700240
241
242
243/*++
244
245Name:
246 RingBufferGetDebugInfo()
247
248Description:
249 Get various debug metrics for the specified ring buffer
250
251--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700252static void
Hank Janssen3e7ee492009-07-13 16:02:34 -0700253RingBufferGetDebugInfo(
254 RING_BUFFER_INFO *RingInfo,
255 RING_BUFFER_DEBUG_INFO *DebugInfo
256 )
257{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700258 u32 bytesAvailToWrite;
259 u32 bytesAvailToRead;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700260
261 if (RingInfo->RingBuffer)
262 {
263 GetRingBufferAvailBytes(RingInfo, &bytesAvailToRead, &bytesAvailToWrite);
264
265 DebugInfo->BytesAvailToRead = bytesAvailToRead;
266 DebugInfo->BytesAvailToWrite = bytesAvailToWrite;
267 DebugInfo->CurrentReadIndex = RingInfo->RingBuffer->ReadIndex;
268 DebugInfo->CurrentWriteIndex = RingInfo->RingBuffer->WriteIndex;
269
270 DebugInfo->CurrentInterruptMask = RingInfo->RingBuffer->InterruptMask;
271 }
272}
273
274
275/*++
276
277Name:
278 GetRingBufferInterruptMask()
279
280Description:
281 Get the interrupt mask for the specified ring buffer
282
283--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700284static u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700285GetRingBufferInterruptMask(
286 RING_BUFFER_INFO *rbi
287 )
288{
289 return rbi->RingBuffer->InterruptMask;
290}
291
292/*++
293
294Name:
295 RingBufferInit()
296
297Description:
298 Initialize the ring buffer
299
300--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700301static int
Hank Janssen3e7ee492009-07-13 16:02:34 -0700302RingBufferInit(
303 RING_BUFFER_INFO *RingInfo,
Greg Kroah-Hartmane20f6832009-07-14 15:07:21 -0700304 void *Buffer,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700305 u32 BufferLen
Hank Janssen3e7ee492009-07-13 16:02:34 -0700306 )
307{
308 ASSERT(sizeof(RING_BUFFER) == PAGE_SIZE);
309
310 memset(RingInfo, 0, sizeof(RING_BUFFER_INFO));
311
312 RingInfo->RingBuffer = (RING_BUFFER*)Buffer;
313 RingInfo->RingBuffer->ReadIndex = RingInfo->RingBuffer->WriteIndex = 0;
314
315 RingInfo->RingSize = BufferLen;
316 RingInfo->RingDataSize = BufferLen - sizeof(RING_BUFFER);
317
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700318 spin_lock_init(&RingInfo->ring_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700319
320 return 0;
321}
322
323/*++
324
325Name:
326 RingBufferCleanup()
327
328Description:
329 Cleanup the ring buffer
330
331--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700332static void
Hank Janssen3e7ee492009-07-13 16:02:34 -0700333RingBufferCleanup(
334 RING_BUFFER_INFO* RingInfo
335 )
336{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700337}
338
339/*++
340
341Name:
342 RingBufferWrite()
343
344Description:
345 Write to the ring buffer
346
347--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700348static int
Hank Janssen3e7ee492009-07-13 16:02:34 -0700349RingBufferWrite(
350 RING_BUFFER_INFO* OutRingInfo,
351 SG_BUFFER_LIST SgBuffers[],
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700352 u32 SgBufferCount
Hank Janssen3e7ee492009-07-13 16:02:34 -0700353 )
354{
355 int i=0;
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700356 u32 byteAvailToWrite;
357 u32 byteAvailToRead;
358 u32 totalBytesToWrite=0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700359
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700360 volatile u32 nextWriteLocation;
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700361 u64 prevIndices=0;
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700362 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700363
364 DPRINT_ENTER(VMBUS);
365
366 for (i=0; i < SgBufferCount; i++)
367 {
368 totalBytesToWrite += SgBuffers[i].Length;
369 }
370
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700371 totalBytesToWrite += sizeof(u64);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700372
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700373 spin_lock_irqsave(&OutRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700374
375 GetRingBufferAvailBytes(OutRingInfo, &byteAvailToRead, &byteAvailToWrite);
376
377 DPRINT_DBG(VMBUS, "Writing %u bytes...", totalBytesToWrite);
378
Bill Pemberton454f18a2009-07-27 16:47:24 -0400379 /* DumpRingInfo(OutRingInfo, "BEFORE "); */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700380
Bill Pemberton454f18a2009-07-27 16:47:24 -0400381 /* If there is only room for the packet, assume it is full. Otherwise, the next time around, we think the ring buffer */
382 /* is empty since the read index == write index */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700383 if (byteAvailToWrite <= totalBytesToWrite)
384 {
385 DPRINT_DBG(VMBUS, "No more space left on outbound ring buffer (needed %u, avail %u)", totalBytesToWrite, byteAvailToWrite);
386
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700387 spin_unlock_irqrestore(&OutRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700388
389 DPRINT_EXIT(VMBUS);
390
391 return -1;
392 }
393
Bill Pemberton454f18a2009-07-27 16:47:24 -0400394 /* Write to the ring buffer */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700395 nextWriteLocation = GetNextWriteLocation(OutRingInfo);
396
397 for (i=0; i < SgBufferCount; i++)
398 {
399 nextWriteLocation = CopyToRingBuffer(OutRingInfo,
400 nextWriteLocation,
401 SgBuffers[i].Data,
402 SgBuffers[i].Length);
403 }
404
Bill Pemberton454f18a2009-07-27 16:47:24 -0400405 /* Set previous packet start */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700406 prevIndices = GetRingBufferIndices(OutRingInfo);
407
408 nextWriteLocation = CopyToRingBuffer(OutRingInfo,
409 nextWriteLocation,
410 &prevIndices,
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700411 sizeof(u64));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700412
Bill Pemberton454f18a2009-07-27 16:47:24 -0400413 /* Make sure we flush all writes before updating the writeIndex */
Greg Kroah-Hartman28b6ca92009-07-16 12:34:20 -0700414 mb();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700415
Bill Pemberton454f18a2009-07-27 16:47:24 -0400416 /* Now, update the write location */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700417 SetNextWriteLocation(OutRingInfo, nextWriteLocation);
418
Bill Pemberton454f18a2009-07-27 16:47:24 -0400419 /* DumpRingInfo(OutRingInfo, "AFTER "); */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700420
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700421 spin_unlock_irqrestore(&OutRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700422
423 DPRINT_EXIT(VMBUS);
424
425 return 0;
426}
427
428
429/*++
430
431Name:
432 RingBufferPeek()
433
434Description:
435 Read without advancing the read index
436
437--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700438static int
Hank Janssen3e7ee492009-07-13 16:02:34 -0700439RingBufferPeek(
440 RING_BUFFER_INFO* InRingInfo,
441 void* Buffer,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700442 u32 BufferLen
Hank Janssen3e7ee492009-07-13 16:02:34 -0700443 )
444{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700445 u32 bytesAvailToWrite;
446 u32 bytesAvailToRead;
447 u32 nextReadLocation=0;
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700448 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700449
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700450 spin_lock_irqsave(&InRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700451
452 GetRingBufferAvailBytes(InRingInfo, &bytesAvailToRead, &bytesAvailToWrite);
453
Bill Pemberton454f18a2009-07-27 16:47:24 -0400454 /* Make sure there is something to read */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700455 if (bytesAvailToRead < BufferLen )
456 {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400457 /* DPRINT_DBG(VMBUS, "got callback but not enough to read <avail to read %d read size %d>!!", bytesAvailToRead, BufferLen); */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700458
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700459 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700460
461 return -1;
462 }
463
Bill Pemberton454f18a2009-07-27 16:47:24 -0400464 /* Convert to byte offset */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700465 nextReadLocation = GetNextReadLocation(InRingInfo);
466
467 nextReadLocation = CopyFromRingBuffer(InRingInfo,
468 Buffer,
469 BufferLen,
470 nextReadLocation);
471
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700472 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700473
474 return 0;
475}
476
477
478/*++
479
480Name:
481 RingBufferRead()
482
483Description:
484 Read and advance the read index
485
486--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700487static int
Hank Janssen3e7ee492009-07-13 16:02:34 -0700488RingBufferRead(
489 RING_BUFFER_INFO* InRingInfo,
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700490 void * Buffer,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700491 u32 BufferLen,
492 u32 Offset
Hank Janssen3e7ee492009-07-13 16:02:34 -0700493 )
494{
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700495 u32 bytesAvailToWrite;
496 u32 bytesAvailToRead;
497 u32 nextReadLocation=0;
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700498 u64 prevIndices=0;
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700499 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700500
501 ASSERT(BufferLen > 0);
502
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700503 spin_lock_irqsave(&InRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700504
505 GetRingBufferAvailBytes(InRingInfo, &bytesAvailToRead, &bytesAvailToWrite);
506
507 DPRINT_DBG(VMBUS, "Reading %u bytes...", BufferLen);
508
Bill Pemberton454f18a2009-07-27 16:47:24 -0400509 /* DumpRingInfo(InRingInfo, "BEFORE "); */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700510
Bill Pemberton454f18a2009-07-27 16:47:24 -0400511 /* Make sure there is something to read */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700512 if (bytesAvailToRead < BufferLen )
513 {
514 DPRINT_DBG(VMBUS, "got callback but not enough to read <avail to read %d read size %d>!!", bytesAvailToRead, BufferLen);
515
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700516 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700517
518 return -1;
519 }
520
521 nextReadLocation = GetNextReadLocationWithOffset(InRingInfo, Offset);
522
523 nextReadLocation = CopyFromRingBuffer(InRingInfo,
524 Buffer,
525 BufferLen,
526 nextReadLocation);
527
528 nextReadLocation = CopyFromRingBuffer(InRingInfo,
529 &prevIndices,
Greg Kroah-Hartman59471432009-07-14 15:10:26 -0700530 sizeof(u64),
Hank Janssen3e7ee492009-07-13 16:02:34 -0700531 nextReadLocation);
532
Bill Pemberton454f18a2009-07-27 16:47:24 -0400533 /* Make sure all reads are done before we update the read index since */
534 /* the writer may start writing to the read area once the read index is updated */
Greg Kroah-Hartman28b6ca92009-07-16 12:34:20 -0700535 mb();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700536
Bill Pemberton454f18a2009-07-27 16:47:24 -0400537 /* Update the read index */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700538 SetNextReadLocation(InRingInfo, nextReadLocation);
539
Bill Pemberton454f18a2009-07-27 16:47:24 -0400540 /* DumpRingInfo(InRingInfo, "AFTER "); */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700541
Greg Kroah-Hartmana98f96e2009-07-15 14:55:14 -0700542 spin_unlock_irqrestore(&InRingInfo->ring_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700543
544 return 0;
545}
546
547
548/*++
549
550Name:
551 CopyToRingBuffer()
552
553Description:
554 Helper routine to copy from source to ring buffer.
555 Assume there is enough room. Handles wrap-around in dest case only!!
556
557--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700558static u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700559CopyToRingBuffer(
560 RING_BUFFER_INFO *RingInfo,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700561 u32 StartWriteOffset,
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700562 void * Src,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700563 u32 SrcLen)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700564{
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700565 void * ringBuffer=GetRingBuffer(RingInfo);
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700566 u32 ringBufferSize=GetRingBufferSize(RingInfo);
567 u32 fragLen;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700568
Bill Pemberton454f18a2009-07-27 16:47:24 -0400569 if (SrcLen > ringBufferSize - StartWriteOffset) /* wrap-around detected! */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700570 {
571 DPRINT_DBG(VMBUS, "wrap-around detected!");
572
573 fragLen = ringBufferSize - StartWriteOffset;
574 memcpy(ringBuffer + StartWriteOffset, Src, fragLen);
575 memcpy(ringBuffer, Src + fragLen, SrcLen - fragLen);
576 }
577 else
578 {
579 memcpy(ringBuffer + StartWriteOffset, Src, SrcLen);
580 }
581
582 StartWriteOffset += SrcLen;
583 StartWriteOffset %= ringBufferSize;
584
585 return StartWriteOffset;
586}
587
588
589/*++
590
591Name:
592 CopyFromRingBuffer()
593
594Description:
595 Helper routine to copy to source from ring buffer.
596 Assume there is enough room. Handles wrap-around in src case only!!
597
598--*/
Greg Kroah-Hartmanbd1de702009-07-29 09:04:51 -0700599static u32
Hank Janssen3e7ee492009-07-13 16:02:34 -0700600CopyFromRingBuffer(
601 RING_BUFFER_INFO *RingInfo,
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700602 void * Dest,
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700603 u32 DestLen,
604 u32 StartReadOffset)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700605{
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -0700606 void * ringBuffer=GetRingBuffer(RingInfo);
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700607 u32 ringBufferSize=GetRingBufferSize(RingInfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700608
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -0700609 u32 fragLen;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700610
Bill Pemberton454f18a2009-07-27 16:47:24 -0400611 if (DestLen > ringBufferSize - StartReadOffset) /* wrap-around detected at the src */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700612 {
613 DPRINT_DBG(VMBUS, "src wrap-around detected!");
614
615 fragLen = ringBufferSize - StartReadOffset;
616
617 memcpy(Dest, ringBuffer + StartReadOffset, fragLen);
618 memcpy(Dest + fragLen, ringBuffer, DestLen - fragLen);
619 }
620 else
621 {
622 memcpy(Dest, ringBuffer + StartReadOffset, DestLen);
623 }
624
625 StartReadOffset += DestLen;
626 StartReadOffset %= ringBufferSize;
627
628 return StartReadOffset;
629}
630
631
Bill Pemberton454f18a2009-07-27 16:47:24 -0400632/* eof */