blob: 8da6bb9782bb7a56ad8c3e778b9d1bb0fe7faf28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Stefani Seibold45465482009-12-21 14:37:26 -08002 * A generic kernel FIFO implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Stefani Seibold45465482009-12-21 14:37:26 -08004 * Copyright (C) 2009 Stefani Seibold <stefani@seibold.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2004 Stelian Pop <stelian@popies.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 */
22
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/slab.h>
26#include <linux/err.h>
27#include <linux/kfifo.h>
vignesh babuf84d5a72007-07-15 23:41:34 -070028#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Stefani Seibold45465482009-12-21 14:37:26 -080030static void _kfifo_init(struct kfifo *fifo, unsigned char *buffer,
31 unsigned int size, spinlock_t *lock)
32{
33 fifo->buffer = buffer;
34 fifo->size = size;
35 fifo->lock = lock;
36
37 kfifo_reset(fifo);
38}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/**
Stefani Seibold45465482009-12-21 14:37:26 -080041 * kfifo_init - initialize a FIFO using a preallocated buffer
42 * @fifo: the fifo to assign the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * @buffer: the preallocated buffer to be used.
44 * @size: the size of the internal buffer, this have to be a power of 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * @lock: the lock to be used to protect the fifo buffer
46 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
Stefani Seibold45465482009-12-21 14:37:26 -080048void kfifo_init(struct kfifo *fifo, unsigned char *buffer, unsigned int size,
49 spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 /* size must be a power of 2 */
vignesh babuf84d5a72007-07-15 23:41:34 -070052 BUG_ON(!is_power_of_2(size));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Stefani Seibold45465482009-12-21 14:37:26 -080054 _kfifo_init(fifo, buffer, size, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56EXPORT_SYMBOL(kfifo_init);
57
58/**
Stefani Seibold45465482009-12-21 14:37:26 -080059 * kfifo_alloc - allocates a new FIFO internal buffer
60 * @fifo: the fifo to assign then new buffer
61 * @size: the size of the buffer to be allocated, this have to be a power of 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * @gfp_mask: get_free_pages mask, passed to kmalloc()
63 * @lock: the lock to be used to protect the fifo buffer
64 *
Stefani Seibold45465482009-12-21 14:37:26 -080065 * This function dynamically allocates a new fifo internal buffer
66 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * The size will be rounded-up to a power of 2.
Stefani Seibold45465482009-12-21 14:37:26 -080068 * The buffer will be release with kfifo_free().
69 * Return 0 if no error, otherwise the an error code
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
Stefani Seibold45465482009-12-21 14:37:26 -080071int kfifo_alloc(struct kfifo *fifo, unsigned int size, gfp_t gfp_mask,
72 spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 unsigned char *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 /*
77 * round up to the next power of 2, since our 'let the indices
Robert P. J. Dayb33112d2009-06-16 15:33:34 -070078 * wrap' technique works only in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
Robert P. J. Dayb33112d2009-06-16 15:33:34 -070080 if (!is_power_of_2(size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 BUG_ON(size > 0x80000000);
82 size = roundup_pow_of_two(size);
83 }
84
85 buffer = kmalloc(size, gfp_mask);
Stefani Seibold45465482009-12-21 14:37:26 -080086 if (!buffer) {
87 _kfifo_init(fifo, 0, 0, NULL);
88 return -ENOMEM;
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Stefani Seibold45465482009-12-21 14:37:26 -080091 _kfifo_init(fifo, buffer, size, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Stefani Seibold45465482009-12-21 14:37:26 -080093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95EXPORT_SYMBOL(kfifo_alloc);
96
97/**
Stefani Seibold45465482009-12-21 14:37:26 -080098 * kfifo_free - frees the FIFO internal buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * @fifo: the fifo to be freed.
100 */
101void kfifo_free(struct kfifo *fifo)
102{
103 kfree(fifo->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105EXPORT_SYMBOL(kfifo_free);
106
107/**
108 * __kfifo_put - puts some data into the FIFO, no locking version
109 * @fifo: the fifo to be used.
110 * @buffer: the data to be added.
111 * @len: the length of the data to be added.
112 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800113 * This function copies at most @len bytes from the @buffer into
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * the FIFO depending on the free space, and returns the number of
115 * bytes copied.
116 *
117 * Note that with only one concurrent reader and one concurrent
118 * writer, you don't need extra locking to use these functions.
119 */
120unsigned int __kfifo_put(struct kfifo *fifo,
Alan Coxf8a7c1a2009-09-19 13:13:17 -0700121 const unsigned char *buffer, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 unsigned int l;
124
125 len = min(len, fifo->size - fifo->in + fifo->out);
126
Paul E. McKenneya45bce42006-09-29 02:00:11 -0700127 /*
128 * Ensure that we sample the fifo->out index -before- we
129 * start putting bytes into the kfifo.
130 */
131
132 smp_mb();
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /* first put the data starting from fifo->in to buffer end */
135 l = min(len, fifo->size - (fifo->in & (fifo->size - 1)));
136 memcpy(fifo->buffer + (fifo->in & (fifo->size - 1)), buffer, l);
137
138 /* then put the rest (if any) at the beginning of the buffer */
139 memcpy(fifo->buffer, buffer + l, len - l);
140
Paul E. McKenneya45bce42006-09-29 02:00:11 -0700141 /*
142 * Ensure that we add the bytes to the kfifo -before-
143 * we update the fifo->in index.
144 */
145
146 smp_wmb();
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 fifo->in += len;
149
150 return len;
151}
152EXPORT_SYMBOL(__kfifo_put);
153
154/**
155 * __kfifo_get - gets some data from the FIFO, no locking version
156 * @fifo: the fifo to be used.
157 * @buffer: where the data must be copied.
158 * @len: the size of the destination buffer.
159 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800160 * This function copies at most @len bytes from the FIFO into the
161 * @buffer and returns the number of copied bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
163 * Note that with only one concurrent reader and one concurrent
164 * writer, you don't need extra locking to use these functions.
165 */
166unsigned int __kfifo_get(struct kfifo *fifo,
167 unsigned char *buffer, unsigned int len)
168{
169 unsigned int l;
170
171 len = min(len, fifo->in - fifo->out);
172
Paul E. McKenneya45bce42006-09-29 02:00:11 -0700173 /*
174 * Ensure that we sample the fifo->in index -before- we
175 * start removing bytes from the kfifo.
176 */
177
178 smp_rmb();
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* first get the data from fifo->out until the end of the buffer */
181 l = min(len, fifo->size - (fifo->out & (fifo->size - 1)));
182 memcpy(buffer, fifo->buffer + (fifo->out & (fifo->size - 1)), l);
183
184 /* then get the rest (if any) from the beginning of the buffer */
185 memcpy(buffer + l, fifo->buffer, len - l);
186
Paul E. McKenneya45bce42006-09-29 02:00:11 -0700187 /*
188 * Ensure that we remove the bytes from the kfifo -before-
189 * we update the fifo->out index.
190 */
191
192 smp_mb();
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 fifo->out += len;
195
196 return len;
197}
198EXPORT_SYMBOL(__kfifo_get);