123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- /*
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted (subject to the limitations in the
- * disclaimer below) provided that the following conditions are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the
- * distribution.
- *
- * * Neither the name of Qualcomm Atheros nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
- * GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
- * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
- * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
- * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
- * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @defgroup adf_net_public network abstraction API
- */
- /**
- * @ingroup adf_net_public
- * @file adf_net.h
- * These APIs abstract the OS networking stack from a driver.
- */
- /**
- * @mainpage
- * @section Introduction
- * 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-
- * and platform-independent.
- * @section Modules
- * The driver framework consists of three main components:
- * @subsection sec1 Network Stack
- * This component abstracts the OS network stack. See @ref adf_net_public for details.
- * @subsection sec2 Network Buffer
- * 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
- #include <adf_os_types.h>
- #include <adf_nbuf.h>
- #include "adf_net_types.h"
- #include "adf_net_wcmd.h"
- #include <adf_net_sw.h>
- #include <adf_net_pvt.h>
- /*
- * check for a NULL handle
- * */
- #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
- adf_net_register_drv(adf_drv_info_t *drv)
- {
- return(__adf_net_register_drv(drv));
- }
- /**
- * @brief deregister the driver from the shim
- *
- * @param[in] name driver name passed in adf_drv_info_t
- *
- * @see adf_net_register_drv()
- */
- static inline void
- adf_net_unregister_drv(a_uint8_t *drv_name)
- {
- __adf_net_unregister_drv(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,
- adf_net_dev_info_t *info)
- {
- return (__adf_net_dev_create(hdl, op, info));
- }
- /**
- * @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)
- {
- return (__adf_net_vdev_create(dev_hdl, hdl, op, info));
- }
- /**
- * @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
- adf_net_is_running(adf_net_handle_t hdl)
- {
- return (__adf_net_is_running(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
- adf_net_is_up(adf_net_handle_t hdl)
- {
- return (__adf_net_is_up(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
- adf_net_carrier_ok(adf_net_handle_t hdl)
- {
- return(__adf_net_carrier_ok(hdl));
- }
- /**
- * @brief inform the networking stack that the link is down
- *
- * @param[in] hdl opaque device handle
- */
- static inline void
- adf_net_carrier_off(adf_net_handle_t hdl)
- {
- __adf_net_carrier_off(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
- adf_net_carrier_on(adf_net_handle_t hdl)
- {
- __adf_net_carrier_on(hdl);
- }
- /*
- * Queue mgmt.
- * driver will use these to keep the native networking stack abreast of its
- * resource (descriptor) situation.
- */
- /**
- * @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
- adf_net_start_queue(adf_net_handle_t hdl)
- {
- __adf_net_start_queue(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
- adf_net_stop_queue(adf_net_handle_t hdl)
- {
- __adf_net_stop_queue(hdl);
- }
- /**
- * @brief inform the native stack to resume sending packets
- * to transmit.Typically called when the driver has resources
- * 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
- adf_net_wake_queue(adf_net_handle_t hdl)
- {
- __adf_net_wake_queue(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
- adf_net_queue_stopped(adf_net_handle_t hdl)
- {
- return(__adf_net_queue_stopped(hdl));
- }
- /**
- * @brief get interface name
- *
- * @param[in] hdl opaque device handle
- *
- * @return name of interface
- */
- static inline const a_uint8_t *
- adf_net_ifname(adf_net_handle_t hdl)
- {
- return (__adf_net_ifname(hdl));
- }
- /**
- * @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)
- {
- return __adf_net_dev_to_os(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)
- {
- return __adf_net_hdl_to_os(hdl);
- }
- #endif
|