Index: chromeos/compat-wireless/drivers/staging/ath6kl/os/linux/netbuf.c |
diff --git a/chromeos/compat-wireless/drivers/staging/ath6kl/os/linux/netbuf.c b/chromeos/compat-wireless/drivers/staging/ath6kl/os/linux/netbuf.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..15e5d0475202ecb13cb48d50a220032a3e22a0a2 |
--- /dev/null |
+++ b/chromeos/compat-wireless/drivers/staging/ath6kl/os/linux/netbuf.c |
@@ -0,0 +1,234 @@ |
+//------------------------------------------------------------------------------ |
+// Copyright (c) 2004-2010 Atheros Communications Inc. |
+// All rights reserved. |
+// |
+// |
+// |
+// Permission to use, copy, modify, and/or distribute this software for any |
+// purpose with or without fee is hereby granted, provided that the above |
+// copyright notice and this permission notice appear in all copies. |
+// |
+// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
+// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
+// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
+// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
+// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
+// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
+// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
+// |
+// |
+// |
+// Author(s): ="Atheros" |
+//------------------------------------------------------------------------------ |
+#include <a_config.h> |
+#include "athdefs.h" |
+#include "a_types.h" |
+#include "a_osapi.h" |
+#include "htc_packet.h" |
+ |
+#define AR6000_DATA_OFFSET 64 |
+ |
+void a_netbuf_enqueue(A_NETBUF_QUEUE_T *q, void *pkt) |
+{ |
+ skb_queue_tail((struct sk_buff_head *) q, (struct sk_buff *) pkt); |
+} |
+ |
+void a_netbuf_prequeue(A_NETBUF_QUEUE_T *q, void *pkt) |
+{ |
+ skb_queue_head((struct sk_buff_head *) q, (struct sk_buff *) pkt); |
+} |
+ |
+void *a_netbuf_dequeue(A_NETBUF_QUEUE_T *q) |
+{ |
+ return((void *) skb_dequeue((struct sk_buff_head *) q)); |
+} |
+ |
+int a_netbuf_queue_size(A_NETBUF_QUEUE_T *q) |
+{ |
+ return(skb_queue_len((struct sk_buff_head *) q)); |
+} |
+ |
+int a_netbuf_queue_empty(A_NETBUF_QUEUE_T *q) |
+{ |
+ return(skb_queue_empty((struct sk_buff_head *) q)); |
+} |
+ |
+void a_netbuf_queue_init(A_NETBUF_QUEUE_T *q) |
+{ |
+ skb_queue_head_init((struct sk_buff_head *) q); |
+} |
+ |
+void * |
+a_netbuf_alloc(int size) |
+{ |
+ struct sk_buff *skb; |
+ size += 2 * (A_GET_CACHE_LINE_BYTES()); /* add some cacheline space at front and back of buffer */ |
+ skb = dev_alloc_skb(AR6000_DATA_OFFSET + sizeof(HTC_PACKET) + size); |
+ skb_reserve(skb, AR6000_DATA_OFFSET + sizeof(HTC_PACKET) + A_GET_CACHE_LINE_BYTES()); |
+ return ((void *)skb); |
+} |
+ |
+/* |
+ * Allocate an SKB w.o. any encapsulation requirement. |
+ */ |
+void * |
+a_netbuf_alloc_raw(int size) |
+{ |
+ struct sk_buff *skb; |
+ |
+ skb = dev_alloc_skb(size); |
+ |
+ return ((void *)skb); |
+} |
+ |
+void |
+a_netbuf_free(void *bufPtr) |
+{ |
+ struct sk_buff *skb = (struct sk_buff *)bufPtr; |
+ |
+ dev_kfree_skb(skb); |
+} |
+ |
+A_UINT32 |
+a_netbuf_to_len(void *bufPtr) |
+{ |
+ return (((struct sk_buff *)bufPtr)->len); |
+} |
+ |
+void * |
+a_netbuf_to_data(void *bufPtr) |
+{ |
+ return (((struct sk_buff *)bufPtr)->data); |
+} |
+ |
+/* |
+ * Add len # of bytes to the beginning of the network buffer |
+ * pointed to by bufPtr |
+ */ |
+A_STATUS |
+a_netbuf_push(void *bufPtr, A_INT32 len) |
+{ |
+ skb_push((struct sk_buff *)bufPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+/* |
+ * Add len # of bytes to the beginning of the network buffer |
+ * pointed to by bufPtr and also fill with data |
+ */ |
+A_STATUS |
+a_netbuf_push_data(void *bufPtr, char *srcPtr, A_INT32 len) |
+{ |
+ skb_push((struct sk_buff *) bufPtr, len); |
+ A_MEMCPY(((struct sk_buff *)bufPtr)->data, srcPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+/* |
+ * Add len # of bytes to the end of the network buffer |
+ * pointed to by bufPtr |
+ */ |
+A_STATUS |
+a_netbuf_put(void *bufPtr, A_INT32 len) |
+{ |
+ skb_put((struct sk_buff *)bufPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+/* |
+ * Add len # of bytes to the end of the network buffer |
+ * pointed to by bufPtr and also fill with data |
+ */ |
+A_STATUS |
+a_netbuf_put_data(void *bufPtr, char *srcPtr, A_INT32 len) |
+{ |
+ char *start = (char*)(((struct sk_buff *)bufPtr)->data + |
+ ((struct sk_buff *)bufPtr)->len); |
+ skb_put((struct sk_buff *)bufPtr, len); |
+ A_MEMCPY(start, srcPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+ |
+/* |
+ * Trim the network buffer pointed to by bufPtr to len # of bytes |
+ */ |
+A_STATUS |
+a_netbuf_setlen(void *bufPtr, A_INT32 len) |
+{ |
+ skb_trim((struct sk_buff *)bufPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+/* |
+ * Chop of len # of bytes from the end of the buffer. |
+ */ |
+A_STATUS |
+a_netbuf_trim(void *bufPtr, A_INT32 len) |
+{ |
+ skb_trim((struct sk_buff *)bufPtr, ((struct sk_buff *)bufPtr)->len - len); |
+ |
+ return A_OK; |
+} |
+ |
+/* |
+ * Chop of len # of bytes from the end of the buffer and return the data. |
+ */ |
+A_STATUS |
+a_netbuf_trim_data(void *bufPtr, char *dstPtr, A_INT32 len) |
+{ |
+ char *start = (char*)(((struct sk_buff *)bufPtr)->data + |
+ (((struct sk_buff *)bufPtr)->len - len)); |
+ |
+ A_MEMCPY(dstPtr, start, len); |
+ skb_trim((struct sk_buff *)bufPtr, ((struct sk_buff *)bufPtr)->len - len); |
+ |
+ return A_OK; |
+} |
+ |
+ |
+/* |
+ * Returns the number of bytes available to a a_netbuf_push() |
+ */ |
+A_INT32 |
+a_netbuf_headroom(void *bufPtr) |
+{ |
+ return (skb_headroom((struct sk_buff *)bufPtr)); |
+} |
+ |
+/* |
+ * Removes specified number of bytes from the beginning of the buffer |
+ */ |
+A_STATUS |
+a_netbuf_pull(void *bufPtr, A_INT32 len) |
+{ |
+ skb_pull((struct sk_buff *)bufPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+/* |
+ * Removes specified number of bytes from the beginning of the buffer |
+ * and return the data |
+ */ |
+A_STATUS |
+a_netbuf_pull_data(void *bufPtr, char *dstPtr, A_INT32 len) |
+{ |
+ A_MEMCPY(dstPtr, ((struct sk_buff *)bufPtr)->data, len); |
+ skb_pull((struct sk_buff *)bufPtr, len); |
+ |
+ return A_OK; |
+} |
+ |
+#ifdef EXPORT_HCI_BRIDGE_INTERFACE |
+EXPORT_SYMBOL(a_netbuf_to_data); |
+EXPORT_SYMBOL(a_netbuf_put); |
+EXPORT_SYMBOL(a_netbuf_pull); |
+EXPORT_SYMBOL(a_netbuf_alloc); |
+EXPORT_SYMBOL(a_netbuf_free); |
+#endif |