1 /* -----------------------------------------------------------------------------
2 * Copyright (c) 2011 Ozmo Inc
3 * Released under the GNU General Public License Version 2 (GPLv2).
4 * -----------------------------------------------------------------------------
6 #include <linux/init.h>
7 #include <linux/module.h>
8 #include <linux/netdevice.h>
10 #include "ozprotocol.h"
14 #define OZ_ELT_INFO_MAGIC_USED 0x35791057
15 #define OZ_ELT_INFO_MAGIC_FREE 0x78940102
18 * Context: softirq-serialized
20 int oz_elt_buf_init(struct oz_elt_buf
*buf
)
22 memset(buf
, 0, sizeof(struct oz_elt_buf
));
23 INIT_LIST_HEAD(&buf
->stream_list
);
24 INIT_LIST_HEAD(&buf
->order_list
);
25 INIT_LIST_HEAD(&buf
->isoc_list
);
26 buf
->max_free_elts
= 32;
27 spin_lock_init(&buf
->lock
);
32 * Context: softirq or process
34 void oz_elt_buf_term(struct oz_elt_buf
*buf
)
39 /* Free any elements in the order or isoc lists. */
40 for (i
= 0; i
< 2; i
++) {
41 struct list_head
*list
;
43 list
= &buf
->order_list
;
45 list
= &buf
->isoc_list
;
48 struct oz_elt_info
*ei
=
49 container_of(e
, struct oz_elt_info
, link_order
);
54 /* Free any elelment in the pool. */
55 while (buf
->elt_pool
) {
56 struct oz_elt_info
*ei
=
57 container_of(buf
->elt_pool
, struct oz_elt_info
, link
);
58 buf
->elt_pool
= buf
->elt_pool
->next
;
65 * Context: softirq or process
67 struct oz_elt_info
*oz_elt_info_alloc(struct oz_elt_buf
*buf
)
69 struct oz_elt_info
*ei
;
71 spin_lock_bh(&buf
->lock
);
72 if (buf
->free_elts
&& buf
->elt_pool
) {
73 ei
= container_of(buf
->elt_pool
, struct oz_elt_info
, link
);
74 buf
->elt_pool
= ei
->link
.next
;
76 spin_unlock_bh(&buf
->lock
);
77 if (ei
->magic
!= OZ_ELT_INFO_MAGIC_FREE
) {
78 oz_dbg(ON
, "%s: ei with bad magic: 0x%x\n",
82 spin_unlock_bh(&buf
->lock
);
83 ei
= kmalloc(sizeof(struct oz_elt_info
), GFP_ATOMIC
);
91 ei
->magic
= OZ_ELT_INFO_MAGIC_USED
;
92 INIT_LIST_HEAD(&ei
->link
);
93 INIT_LIST_HEAD(&ei
->link_order
);
99 * Precondition: oz_elt_buf.lock must be held.
100 * Context: softirq or process
102 void oz_elt_info_free(struct oz_elt_buf
*buf
, struct oz_elt_info
*ei
)
105 if (ei
->magic
== OZ_ELT_INFO_MAGIC_USED
) {
107 ei
->link
.next
= buf
->elt_pool
;
108 buf
->elt_pool
= &ei
->link
;
109 ei
->magic
= OZ_ELT_INFO_MAGIC_FREE
;
111 oz_dbg(ON
, "%s: bad magic ei: %p magic: 0x%x\n",
112 __func__
, ei
, ei
->magic
);
117 /*------------------------------------------------------------------------------
120 void oz_elt_info_free_chain(struct oz_elt_buf
*buf
, struct list_head
*list
)
125 spin_lock_bh(&buf
->lock
);
127 struct oz_elt_info
*ei
;
128 ei
= container_of(e
, struct oz_elt_info
, link
);
130 oz_elt_info_free(buf
, ei
);
132 spin_unlock_bh(&buf
->lock
);
135 int oz_elt_stream_create(struct oz_elt_buf
*buf
, u8 id
, int max_buf_count
)
137 struct oz_elt_stream
*st
;
139 oz_dbg(ON
, "%s: (0x%x)\n", __func__
, id
);
141 st
= kzalloc(sizeof(struct oz_elt_stream
), GFP_ATOMIC
| __GFP_ZERO
);
144 atomic_set(&st
->ref_count
, 1);
146 st
->max_buf_count
= max_buf_count
;
147 INIT_LIST_HEAD(&st
->elt_list
);
148 spin_lock_bh(&buf
->lock
);
149 list_add_tail(&st
->link
, &buf
->stream_list
);
150 spin_unlock_bh(&buf
->lock
);
154 int oz_elt_stream_delete(struct oz_elt_buf
*buf
, u8 id
)
157 struct oz_elt_stream
*st
= NULL
;
159 oz_dbg(ON
, "%s: (0x%x)\n", __func__
, id
);
160 spin_lock_bh(&buf
->lock
);
161 e
= buf
->stream_list
.next
;
162 while (e
!= &buf
->stream_list
) {
163 st
= container_of(e
, struct oz_elt_stream
, link
);
171 spin_unlock_bh(&buf
->lock
);
174 e
= st
->elt_list
.next
;
175 while (e
!= &st
->elt_list
) {
176 struct oz_elt_info
*ei
=
177 container_of(e
, struct oz_elt_info
, link
);
179 list_del_init(&ei
->link
);
180 list_del_init(&ei
->link_order
);
181 st
->buf_count
-= ei
->length
;
182 oz_dbg(STREAM
, "Stream down: %d %d %d\n",
183 st
->buf_count
, ei
->length
, atomic_read(&st
->ref_count
));
184 oz_elt_stream_put(st
);
185 oz_elt_info_free(buf
, ei
);
187 spin_unlock_bh(&buf
->lock
);
188 oz_elt_stream_put(st
);
192 void oz_elt_stream_get(struct oz_elt_stream
*st
)
194 atomic_inc(&st
->ref_count
);
197 void oz_elt_stream_put(struct oz_elt_stream
*st
)
199 if (atomic_dec_and_test(&st
->ref_count
)) {
200 oz_dbg(ON
, "Stream destroyed\n");
206 * Precondition: Element buffer lock must be held.
207 * If this function fails the caller is responsible for deallocating the elt
210 int oz_queue_elt_info(struct oz_elt_buf
*buf
, u8 isoc
, u8 id
,
211 struct oz_elt_info
*ei
)
213 struct oz_elt_stream
*st
= NULL
;
217 list_for_each(e
, &buf
->stream_list
) {
218 st
= container_of(e
, struct oz_elt_stream
, link
);
222 if (e
== &buf
->stream_list
) {
223 /* Stream specified but stream not known so fail.
224 * Caller deallocates element info. */
229 /* If this is an ISOC fixed element that needs a frame number
230 * then insert that now. Earlier we stored the unit count in
233 struct oz_isoc_fixed
*body
= (struct oz_isoc_fixed
*)
234 &ei
->data
[sizeof(struct oz_elt
)];
235 if ((body
->app_id
== OZ_APPID_USB
) && (body
->type
236 == OZ_USB_ENDPOINT_DATA
) &&
237 (body
->format
== OZ_DATA_F_ISOC_FIXED
)) {
238 u8 unit_count
= body
->frame_number
;
239 body
->frame_number
= st
->frame_number
;
240 st
->frame_number
+= unit_count
;
242 /* Claim stream and update accounts */
243 oz_elt_stream_get(st
);
245 st
->buf_count
+= ei
->length
;
246 /* Add to list in stream. */
247 list_add_tail(&ei
->link
, &st
->elt_list
);
248 oz_dbg(STREAM
, "Stream up: %d %d\n", st
->buf_count
, ei
->length
);
249 /* Check if we have too much buffered for this stream. If so
250 * start dropping elements until we are back in bounds.
252 while ((st
->buf_count
> st
->max_buf_count
) &&
253 !list_empty(&st
->elt_list
)) {
254 struct oz_elt_info
*ei2
=
255 list_first_entry(&st
->elt_list
,
256 struct oz_elt_info
, link
);
257 list_del_init(&ei2
->link
);
258 list_del_init(&ei2
->link_order
);
259 st
->buf_count
-= ei2
->length
;
260 oz_elt_info_free(buf
, ei2
);
261 oz_elt_stream_put(st
);
264 list_add_tail(&ei
->link_order
, isoc
?
265 &buf
->isoc_list
: &buf
->order_list
);
269 int oz_select_elts_for_tx(struct oz_elt_buf
*buf
, u8 isoc
, unsigned *len
,
270 unsigned max_len
, struct list_head
*list
)
274 struct list_head
*el
;
275 struct oz_elt_info
*ei
;
277 spin_lock_bh(&buf
->lock
);
279 el
= &buf
->isoc_list
;
281 el
= &buf
->order_list
;
284 struct oz_app_hdr
*app_hdr
;
285 ei
= container_of(e
, struct oz_elt_info
, link_order
);
287 if ((*len
+ ei
->length
) <= max_len
) {
288 app_hdr
= (struct oz_app_hdr
*)
289 &ei
->data
[sizeof(struct oz_elt
)];
290 app_hdr
->elt_seq_num
= buf
->tx_seq_num
[ei
->app_id
]++;
291 if (buf
->tx_seq_num
[ei
->app_id
] == 0)
292 buf
->tx_seq_num
[ei
->app_id
] = 1;
295 list_del(&ei
->link_order
);
297 ei
->stream
->buf_count
-= ei
->length
;
298 oz_dbg(STREAM
, "Stream down: %d %d\n",
299 ei
->stream
->buf_count
, ei
->length
);
300 oz_elt_stream_put(ei
->stream
);
303 INIT_LIST_HEAD(&ei
->link_order
);
304 list_add_tail(&ei
->link
, list
);
310 spin_unlock_bh(&buf
->lock
);
314 int oz_are_elts_available(struct oz_elt_buf
*buf
)
316 return buf
->order_list
.next
!= &buf
->order_list
;
319 void oz_trim_elt_pool(struct oz_elt_buf
*buf
)
321 struct list_head
*free
= NULL
;
324 spin_lock_bh(&buf
->lock
);
325 while (buf
->free_elts
> buf
->max_free_elts
) {
327 buf
->elt_pool
= e
->next
;
332 spin_unlock_bh(&buf
->lock
);
334 struct oz_elt_info
*ei
=
335 container_of(free
, struct oz_elt_info
, link
);