ath9k_htc: Update to upstream's commit d19607454d656cb14d8c16dfbf161eebb542e8fe dated...
[linux-libre-firmware.git] / ath9k_htc / target_firmware / magpie_fw_dev / target / buf_pool / buf_pool_static.c
1 /*
2  * Copyright (c) 2013 Qualcomm Atheros, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted (subject to the limitations in the
7  * disclaimer below) provided that the following conditions are met:
8  *
9  *  * Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  *  * Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the
15  *    distribution.
16  *
17  *  * Neither the name of Qualcomm Atheros nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific prior written permission.
20  *
21  * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
22  * GRANTED BY THIS LICENSE.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
23  * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
24  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
32  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
33  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35 /*
36  * @File:
37  *
38  * @Abstract: Buf pool implementation: static version
39  *
40  * @Notes:
41  */
42
43 #include <osapi.h>
44 #include <Magpie_api.h>
45 #include <cmnos_api.h>
46 #include <buf_pool_api.h>
47 #include <vbuf_api.h>
48 #include <vdesc_api.h>
49 #include <adf_os_mem.h>
50
51 #include "buf_pool_static.h"
52
53 LOCAL htc_handle_t _buf_pool_static_init(adf_net_handle_t handle);
54 LOCAL void _buf_pool_static_create_pool(pool_handle_t handle, BUF_POOL_ID poolId, int nItems, int nSize);
55 LOCAL adf_nbuf_t  _buf_pool_static_alloc_buf(pool_handle_t handle, BUF_POOL_ID poolId, int reserve);
56 LOCAL adf_nbuf_t  _buf_pool_static_alloc_buf_align(pool_handle_t handle, BUF_POOL_ID poolId, int reserve, int align);
57 LOCAL void _buf_pool_static_free_buf(pool_handle_t handle, BUF_POOL_ID poolId, adf_nbuf_t buf);
58 LOCAL void _buf_pool_static_shutdown(pool_handle_t handle);
59
60 BUF_POOL_STATIC_CONTEXT g_poolCtx;
61
62 void buf_pool_module_install(struct buf_pool_api *pAPIs)
63 {
64     pAPIs->_init = _buf_pool_static_init;
65     pAPIs->_create_pool = _buf_pool_static_create_pool;
66     pAPIs->_alloc_buf = _buf_pool_static_alloc_buf;
67     pAPIs->_alloc_buf_align = _buf_pool_static_alloc_buf_align;
68     pAPIs->_free_buf = _buf_pool_static_free_buf;
69     pAPIs->_shutdown = _buf_pool_static_shutdown;
70 }
71
72 LOCAL pool_handle_t _buf_pool_static_init(adf_os_handle_t handle)
73 {
74 #if 1
75     int i;
76
77     for(i=0; i < POOL_ID_MAX; i++) {
78         g_poolCtx.bufQ[i] = NULL;
79     }
80
81     return &g_poolCtx;
82 #else
83     BUF_POOL_STATIC_CONTEXT *ctx;
84
85     //ctx = (BUF_POOL_static_CONTEXT *)A_ALLOCRAM(sizeof(BUF_POOL_static_CONTEXT));
86     ctx = (BUF_POOL_STATIC_CONTEXT *)adf_os_mem_alloc(sizeof(BUF_POOL_STATIC_CONTEXT));
87     ctx->NetHandle = handle;
88
89     return ctx;
90 #endif
91 }
92
93 LOCAL void _buf_pool_static_shutdown(pool_handle_t handle)
94 {
95     // SHALL NOT BE USED in FW
96 }
97
98 LOCAL void _buf_pool_static_create_pool(pool_handle_t handle, BUF_POOL_ID poolId, int nItems, int nSize)
99 {
100     int i;
101     VBUF *buf;
102     VDESC *desc;
103
104     //BUF_POOL_STATIC_CONTEXT *ctx = (BUF_POOL_STATIC_CONTEXT *)handle;
105
106     for ( i = 0; i < nItems; i++) {
107         buf = VBUF_alloc_vbuf();
108         desc = VDESC_alloc_vdesc();
109
110         desc->buf_addr = (A_UINT8 *)adf_os_mem_alloc(nSize);
111         desc->buf_size = nSize;
112         desc->data_offset = 0;
113         desc->data_size = 0;
114
115         buf->buf_length = 0;
116         buf->desc_list = desc;
117
118         if ( g_poolCtx.bufQ[poolId] == NULL ) {
119             g_poolCtx.bufQ[poolId] = buf;
120         } else {
121             buf->next_buf = g_poolCtx.bufQ[poolId];
122             g_poolCtx.bufQ[poolId] = buf;
123         }
124     }
125 }
126
127 LOCAL adf_nbuf_t  _buf_pool_static_alloc_buf(pool_handle_t handle, BUF_POOL_ID poolId, int reserve)
128 {
129     VBUF *buf;
130
131     buf = g_poolCtx.bufQ[poolId];
132     if ( buf != NULL ) {
133         g_poolCtx.bufQ[poolId] = buf->next_buf;
134
135         buf->next_buf = NULL;
136         buf->desc_list->data_offset = reserve;
137         buf->desc_list->data_size = 0;
138         buf->buf_length = 0;
139     }
140
141     return buf;
142 }
143
144 LOCAL adf_nbuf_t  _buf_pool_static_alloc_buf_align(pool_handle_t handle, BUF_POOL_ID poolId, int reserve, int align)
145 {
146     return _buf_pool_static_alloc_buf(handle, poolId, reserve);
147 }
148
149 LOCAL void _buf_pool_static_free_buf(pool_handle_t handle, BUF_POOL_ID poolId, adf_nbuf_t buf)
150 {
151     if ( g_poolCtx.bufQ[poolId] == NULL ) {
152         g_poolCtx.bufQ[poolId] = buf;
153     } else {
154         buf->next_buf = g_poolCtx.bufQ[poolId];
155         g_poolCtx.bufQ[poolId] = buf;
156     }
157 }