ath9k_htc: Update to upstream's commit d19607454d656cb14d8c16dfbf161eebb542e8fe dated...
[linux-libre-firmware.git] / ath9k_htc / target_firmware / magpie_fw_dev / target / inc / adf_net.h
index 1cf82dff8a7942b4da3ed3e671a733eb4fc105e4..7b753bc1993bd50be7ff7b0d90de08be366e3f16 100755 (executable)
@@ -43,9 +43,9 @@
  */
 
 /**
- * @mainpage 
+ * @mainpage
  * @section Introduction
- * The Atheros Driver Framework provides a mechanism to run the Atheros 
+ * The Atheros Driver Framework provides a mechanism to run the Atheros
  * WLAN driver on a variety of Operating Systems and Platforms. It achieves
  * this by abstracting all OS-specific and platform-specific functionality
  * the driver requires. This ensures the core logic in the driver is OS-
@@ -58,7 +58,7 @@
  * This component abstracts the OS network buffer. See @ref adf_nbuf_public for details.
  * @subsection sec3 OS services
  * This component abstracts any OS services. See @ref adf_os_public for details.
- */ 
+ */
 
 #ifndef _ADF_NET_H
 #define _ADF_NET_H
 /*
  * check for a NULL handle
  * */
-#define ADF_NET_NULL        __ADF_NET_NULL 
+#define ADF_NET_NULL        __ADF_NET_NULL
 
 /**
  * @brief this register the driver to the shim, but won't get
  *        any handle until create device is called.
- * 
+ *
  * @param[in] drv driver info structure
- * 
+ *
  * @return status of operation
  */
-static inline a_status_t 
+static inline a_status_t
 adf_net_register_drv(adf_drv_info_t *drv)
 {
     return(__adf_net_register_drv(drv));
@@ -92,7 +92,7 @@ adf_net_register_drv(adf_drv_info_t *drv)
 
 /**
  * @brief deregister the driver from the shim
- * 
+ *
  * @param[in] name driver name passed in adf_drv_info_t
  *
  * @see adf_net_register_drv()
@@ -106,122 +106,48 @@ adf_net_unregister_drv(a_uint8_t *drv_name)
 
 /**
  * @brief register a real device with the kernel
- * 
+ *
  * @param[in] hdl driver handle for this device
  * @param[in] op per-device switch structure
  * @param[in] info basic device information
- * 
+ *
  * @return opaque device handle
  */
-static inline adf_net_handle_t 
-adf_net_dev_create(adf_drv_handle_t   hdl, 
-                   adf_dev_sw_t      *op, 
+static inline adf_net_handle_t
+adf_net_dev_create(adf_drv_handle_t   hdl,
+                   adf_dev_sw_t      *op,
                    adf_net_dev_info_t *info)
 {
     return (__adf_net_dev_create(hdl, op, info));
 }
 
-
-/**
- * @brief unregister a real device with the kernel
- * 
- * @param[in] hdl opaque device handle returned by adf_net_dev_create()
- * @see adf_net_dev_create()
- */
-static inline void
-adf_net_dev_delete(adf_net_handle_t hdl)
-{
-    __adf_net_dev_delete(hdl);
-}
-
-
 /**
  * @brief register a virtual device with the kernel.
  * A virtual device is always backed by a real device.
- * 
+ *
  * @param[in] dev_hdl opaque device handle for the real device
  * @param[in] hdl driver handle for this virtual device
  * @param[in] op per-virtual-device switch structure
  * @param[in] info basic virtual device information
- * 
+ *
  * @return opaque device handle
  *
  * @see adf_net_dev_create()
  */
-static inline adf_net_handle_t 
-adf_net_vdev_create(adf_net_handle_t   dev_hdl, 
-                    adf_drv_handle_t   hdl, 
-                    adf_vdev_sw_t     *op, 
-                    adf_net_dev_info_t *info) 
+static inline adf_net_handle_t
+adf_net_vdev_create(adf_net_handle_t   dev_hdl,
+                    adf_drv_handle_t   hdl,
+                    adf_vdev_sw_t     *op,
+                    adf_net_dev_info_t *info)
 {
     return (__adf_net_vdev_create(dev_hdl, hdl, op, info));
 }
 
-
 /**
- * @brief unregister the virtual device with the kernel.
- * 
- * @param[in] hdl opaque device handle returned by adf_net_vdev_create()
+ * @brief Checks if the interface is running or not
  *
- * @see adf_net_vdev_create()
- */
-static inline void
-adf_net_vdev_delete(adf_net_handle_t hdl)
-{
-    __adf_net_vdev_delete(hdl);
-}
-
-
-/**
- * @brief open the real device
- * 
  * @param[in] hdl opaque device handle
- * 
- * @return status of the operation
  *
- * @see adf_net_dev_create()
- */
-static inline a_status_t
-adf_net_dev_open(adf_net_handle_t hdl)
-{
-        return (__adf_net_dev_open(hdl));
-}
-
-
-/**
- * @brief close the real device
- * 
- * @param[in] hdl opaque device handle
- * 
- * @see adf_net_dev_open()
- */
-static inline void
-adf_net_dev_close(adf_net_handle_t hdl)
-{
-    __adf_net_dev_close(hdl);
-}
-
-
-/**
- * @brief transmit a network buffer using a device
- * 
- * @param[in] hdl opaque device handle
- * @param[in] pkt network buffer to transmit
- * 
- * @return status of the operation
- */
-static inline a_status_t 
-adf_net_dev_tx(adf_net_handle_t hdl, adf_nbuf_t pkt)
-{
-       return (__adf_net_dev_tx(hdl,pkt));
-}
-
-
-/**
- * @brief Checks if the interface is running or not
- * 
- * @param[in] hdl opaque device handle
- * 
  * @return true if running, false if not
  */
 static inline a_bool_t
@@ -232,9 +158,9 @@ adf_net_is_running(adf_net_handle_t hdl)
 
 /**
  * @brief Checks if the interface is up or not
- * 
+ *
  * @param[in] hdl opaque device handle
- * 
+ *
  * @return true if up, false if not
  */
 static inline a_bool_t
@@ -246,12 +172,12 @@ adf_net_is_up(adf_net_handle_t hdl)
 
 /**
  * @brief check whether the carrier is available or not
- * 
+ *
  * @param[in] hdl opaque device handle
- * 
+ *
  * @return a_bool_t true if available, false if not
  */
-static inline a_bool_t 
+static inline a_bool_t
 adf_net_carrier_ok(adf_net_handle_t hdl)
 {
     return(__adf_net_carrier_ok(hdl));
@@ -260,10 +186,10 @@ adf_net_carrier_ok(adf_net_handle_t hdl)
 
 /**
  * @brief inform the networking stack that the link is down
- * 
+ *
  * @param[in] hdl opaque device handle
  */
-static inline void 
+static inline void
 adf_net_carrier_off(adf_net_handle_t hdl)
 {
     __adf_net_carrier_off(hdl);
@@ -272,12 +198,12 @@ adf_net_carrier_off(adf_net_handle_t hdl)
 
 /**
  * @brief inform the networking stack that the link is up
- * 
+ *
  * @param[in] hdl opaque device handle
- * 
+ *
  * @see adf_net_carrier_off()
  */
-static inline void 
+static inline void
 adf_net_carrier_on(adf_net_handle_t hdl)
 {
     __adf_net_carrier_on(hdl);
@@ -291,12 +217,12 @@ adf_net_carrier_on(adf_net_handle_t hdl)
  */
 
 /**
- * @brief inform the networking stack that the device is ready to receive 
+ * @brief inform the networking stack that the device is ready to receive
  * transmit packets. Typically called during init.
- * 
+ *
  * @param[in] hdl opaque device handle
  */
-static inline void 
+static inline void
 adf_net_start_queue(adf_net_handle_t hdl)
 {
     __adf_net_start_queue(hdl);
@@ -305,10 +231,10 @@ adf_net_start_queue(adf_net_handle_t hdl)
 /**
  * @brief inform the networking stack to stop sending transmit packets.
  * Typically called if the driver runs out of resources for the device.
- * 
+ *
  * @param[in] hdl opaque device handle
  */
-static inline void    
+static inline void
 adf_net_stop_queue(adf_net_handle_t hdl)
 {
     __adf_net_stop_queue(hdl);
@@ -318,13 +244,13 @@ adf_net_stop_queue(adf_net_handle_t hdl)
 /**
  * @brief inform the native stack to resume sending packets
  * to transmit.Typically called when the driver has resources
- * available again for the device. 
+ * available again for the device.
  *
  * @note adf_net_wake_queue() is the counterpart of adf_net_stop_queue()
  *
  * @param[in] hdl opaque device handle
  */
-static inline void 
+static inline void
 adf_net_wake_queue(adf_net_handle_t hdl)
 {
     __adf_net_wake_queue(hdl);
@@ -333,61 +259,22 @@ adf_net_wake_queue(adf_net_handle_t hdl)
 
 /**
  * @brief Check the state of the queue
- * 
+ *
  * @param[in] hdl opaque device handle
- * 
+ *
  * @return true if stopped, false if not
  */
-static inline a_bool_t 
+static inline a_bool_t
 adf_net_queue_stopped(adf_net_handle_t hdl)
 {
     return(__adf_net_queue_stopped(hdl));
 }
 
-
-/**
- * @brief This indicates a packet to the networking stack
- * (minus the FCS). The driver should just strip
- * the FCS and give the packet as a whole. This is
- * necessary because different native stacks have
- * different expectation of how they want to recv the
- * packet. This fucntion will strip off whatever is
- * required for the OS interface. The routine will also
- * figure out whether its being called in irq context and
- * call the appropriate OS API.
- * 
- * @param[in] hdl opaque device handle
- * @param[in] pkt network buffer to indicate
- * @param[in] len length of buffer
- */
-static inline void 
-adf_net_indicate_packet(adf_net_handle_t hdl, adf_nbuf_t pkt, a_uint32_t len)
-{
-    __adf_net_indicate_packet(hdl, pkt, len);
-}
-
-/**
- * @brief use this when indicating a vlan tagged packet on RX
- * 
- * @param[in] hdl opaque device handle
- * @param[in] pkt network buffer to indicate
- * @param[in] len length of buffer
- * @param[in] vid vlan id
- * 
- * @return status of operation
- */
-static inline a_status_t 
-adf_net_indicate_vlanpkt(adf_net_handle_t hdl, adf_nbuf_t pkt, 
-                         a_uint32_t len, adf_net_vid_t *vid)
-{
-    return (__adf_net_indicate_vlanpkt(hdl, pkt, len, vid));
-}
-
 /**
  * @brief get interface name
- * 
+ *
  * @param[in] hdl opaque device handle
- * 
+ *
  * @return name of interface
  */
 static inline const a_uint8_t *
@@ -396,67 +283,13 @@ adf_net_ifname(adf_net_handle_t  hdl)
     return (__adf_net_ifname(hdl));
 }
 
-/**
- * @brief send management packets to apps (listener).
- * This is used for wireless applications.
- * 
- * @param[in] hdl opaque device handle
- * @param[in] pkt network buffer to send
- * @param[in] len length of buffer
- */
-static inline void
-adf_net_fw_mgmt_to_app(adf_net_handle_t hdl, adf_nbuf_t pkt, a_uint32_t len)
-{
-    __adf_net_fw_mgmt_to_app(hdl, pkt, len);
-}
-/**
- * @brief send wireless events to listening applications
- * 
- * @param[in] hdl opaque device handle
- * @param[in] what event to send
- * @param[in] data information about event
- * @param[in] data_len length of accompanying information
- */
-static inline void
-adf_net_send_wireless_event(adf_net_handle_t hdl, 
-                            adf_net_wireless_event_t what, 
-                            void *data, adf_os_size_t data_len)
-{
-    __adf_net_send_wireless_event(hdl, what, data, data_len); 
-}
-
-/**
- * @brief schedule the poll controller.
- * 
- * @param[in] hdl opaque device handle
- */
-static inline void 
-adf_net_poll_schedule(adf_net_handle_t hdl)
-{
-    __adf_net_poll_schedule(hdl);
-}
-
-
-/**
- * @brief per cpu deffered callback (e.g. for RSS)
- * 
- * @param[in] hdl opaque device handle
- * @param[in] cpu_msk
- * @param[in] arg
- */
-static inline void 
-adf_net_poll_schedule_cpu(adf_net_handle_t hdl, a_uint32_t cpu_msk, void *arg)
-{
-    __adf_net_poll_schedule_cpu(hdl, cpu_msk, arg);
-}
-
 /**
  * @brief Get OS Handle from OS device object.
  *
  * @param[in] osdev OS device object
- * 
+ *
  * @return OS handle
- */ 
+ */
 static inline adf_os_handle_t
 adf_net_dev_to_os(adf_os_device_t osdev)
 {
@@ -467,9 +300,9 @@ adf_net_dev_to_os(adf_os_device_t osdev)
  * @brief Get OS Handle from OS net handle.
  *
  * @param[in] osdev OS net handle
- * 
+ *
  * @return OS handle
- */ 
+ */
 static inline adf_os_handle_t
 adf_net_hdl_to_os(adf_net_handle_t hdl)
 {