123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- * 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.
- */
- /**
- * @ingroup adf_os_public
- * @file adf_os_module.h
- * This file abstracts "kernel module" semantics.
- */
- #ifndef _ADF_OS_MODULE_H
- #define _ADF_OS_MODULE_H
- #include <adf_os_module_pvt.h>
- typedef a_status_t (*module_init_func_t)(void);
- /**
- * @brief Specify the module's entry point.
- */
- #define adf_os_virt_module_init(_mod_init_func) __adf_os_virt_module_init(_mod_init_func)
- /**
- * @brief Specify the module's exit point.
- */
- #define adf_os_virt_module_exit(_mod_exit_func) __adf_os_virt_module_exit(_mod_exit_func)
- /**
- * @brief Specify the module's dependency on another module.
- */
- #define adf_os_module_dep(_name,_dep) __adf_os_module_dep(_name,_dep)
- /**
- * @brief Export a symbol from a module.
- */
- #define adf_os_export_symbol(_sym) __adf_os_export_symbol(_sym)
- /**
- * @brief Module parameter of type integer.
- */
- #define ADF_OS_PARAM_TYPE_INT32 __ADF_OS_PARAM_TYPE_INT32
- /**
- * @brief Module parameter of type string.
- */
- #define ADF_OS_PARAM_TYPE_STRING __ADF_OS_PARAM_TYPE_STRING
- /**
- * @brief Declare a module parameter.
- *
- * @param[in] name name of the parameter
- * @param[in] type type of the parameter
- *
- * @note These provide the config data defined by the userland
- * for this device. It can be queried at any time, given the name string
- * Only two types are supported
- * ADF_OS_PARAM_TYPE_STRING
- * ADF_OS_PARAM_TYPE_INT32
- * For example, say, the parameters name "my_int" and "my_name" are of
- * variables of type int and string respectively. Then you would declare them
- * as follows:
- * @code
- * adf_os_declare_param(my_int, ADF_OS_PARAM_TYPE_INT32);
- * adf_os_declare_param(my_name, ADF_OS_PARAM_TYPE_STRING);
- * @endcode
- * To read the userland provided config value, you would do something like
- *
- * @code
- * adf_os_read_param(my_name, &softc->sc_my_name);
- * @endcode
- *
- * or
- * @code
- * st = adf_os_read_param(my_int, &softc->sc_my_int);
- * @endcode
- * st could be :
- *
- * A_STATUS_OK
- * A_STATUS_ENOMEM
- * A_STATUS_ENOENT
- *
- */
- #define adf_os_declare_param(_name, _type) __adf_os_declare_param(_name, _type)
- /**
- * @brief Read a parameter's value
- *
- * @param[in] osdev os handle
- * @param[in] name name of parameter
- * @param[in] type type of parameter
- * @param[out] val value read
- *
- * @note pval is a point to the variable. Therefore,
- * for strings it is a_uint8_t **
- * for integers it is a_int_t *
- */
- #define adf_os_read_param(_osdev, _name, _type, _pval) \
- __adf_os_read_param(_osdev, _name, _type, _pval)
- #endif /*_ADF_OS_MODULE_H*/
|