123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /*
- * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * 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.
- */
- /*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
- /**
- * DOC: i_qdf_util.h
- * This file provides OS dependent API's.
- */
- #ifndef _I_QDF_UTIL_H
- #define _I_QDF_UTIL_H
- #include <linux/compiler.h>
- #include <linux/kernel.h>
- #include <linux/types.h>
- #include <errno.h>
- #include <linux/random.h>
- #include <qdf_types.h>
- #include <qdf_status.h>
- #include <asm/byteorder.h>
- #if LINUX_VERSION_CODE <= KERNEL_VERSION(3, 3, 8)
- #include <asm/system.h>
- #else
- #if defined(__LINUX_MIPS32_ARCH__) || defined(__LINUX_MIPS64_ARCH__)
- #include <asm/dec/system.h>
- #else
- #endif
- #endif
- #include <qdf_types.h>
- #include <asm/io.h>
- #include <asm/byteorder.h>
- #ifdef QCA_PARTNER_PLATFORM
- #include "ath_carr_pltfrm.h"
- #else
- #include <linux/byteorder/generic.h>
- #endif
- /*
- * Generic compiler-dependent macros if defined by the OS
- */
- #define __qdf_unlikely(_expr) unlikely(_expr)
- #define __qdf_likely(_expr) likely(_expr)
- /**
- * __qdf_status_to_os_return() - translates qdf_status types to linux return types
- * @status: status to translate
- *
- * Translates error types that linux may want to handle specially.
- *
- * return: 0 or the linux error code that most closely matches the QDF_STATUS.
- * defaults to -1 (EPERM)
- */
- static inline int __qdf_status_to_os_return(QDF_STATUS status)
- {
- switch (status) {
- case QDF_STATUS_SUCCESS:
- return 0;
- case QDF_STATUS_E_RESOURCES:
- return -EBUSY;
- case QDF_STATUS_E_NOMEM:
- return -ENOMEM;
- case QDF_STATUS_E_AGAIN:
- return -EAGAIN;
- case QDF_STATUS_E_INVAL:
- return -EINVAL;
- case QDF_STATUS_E_FAULT:
- return -EFAULT;
- case QDF_STATUS_E_ALREADY:
- return -EALREADY;
- case QDF_STATUS_E_BADMSG:
- return -EBADMSG;
- case QDF_STATUS_E_BUSY:
- return -EBUSY;
- case QDF_STATUS_E_CANCELED:
- return -ECANCELED;
- case QDF_STATUS_E_ABORTED:
- return -ECONNABORTED;
- case QDF_STATUS_E_PERM:
- return -EPERM;
- case QDF_STATUS_E_EXISTS:
- return -EEXIST;
- case QDF_STATUS_E_NOENT:
- return -ENOENT;
- case QDF_STATUS_E_E2BIG:
- return -E2BIG;
- case QDF_STATUS_E_NOSPC:
- return -ENOSPC;
- case QDF_STATUS_E_ADDRNOTAVAIL:
- return -EADDRNOTAVAIL;
- case QDF_STATUS_E_ENXIO:
- return -ENXIO;
- case QDF_STATUS_E_NETDOWN:
- return -ENETDOWN;
- case QDF_STATUS_E_IO:
- return -EIO;
- case QDF_STATUS_E_NETRESET:
- return -ENETRESET;
- default:
- return -EPERM;
- }
- }
- /**
- * __qdf_set_bit() - set bit in address
- * @nr: bit number to be set
- * @addr: address buffer pointer
- *
- * Return: none
- */
- static inline void __qdf_set_bit(unsigned int nr, unsigned long *addr)
- {
- __set_bit(nr, addr);
- }
- /**
- * __qdf_set_macaddr_broadcast() - set a QDF MacAddress to the 'broadcast'
- * @mac_addr: pointer to the qdf MacAddress to set to broadcast
- *
- * This function sets a QDF MacAddress to the 'broadcast' MacAddress. Broadcast
- * MacAddress contains all 0xFF bytes.
- *
- * Return: none
- */
- static inline void __qdf_set_macaddr_broadcast(struct qdf_mac_addr *mac_addr)
- {
- memset(mac_addr, 0xff, QDF_MAC_ADDR_SIZE);
- }
- /**
- * __qdf_zero_macaddr() - zero out a MacAddress
- * @mac_addr: pointer to the struct qdf_mac_addr to zero.
- *
- * This function zeros out a QDF MacAddress type.
- *
- * Return: none
- */
- static inline void __qdf_zero_macaddr(struct qdf_mac_addr *mac_addr)
- {
- memset(mac_addr, 0, QDF_MAC_ADDR_SIZE);
- }
- /**
- * __qdf_is_macaddr_equal() - compare two QDF MacAddress
- * @mac_addr1: Pointer to one qdf MacAddress to compare
- * @mac_addr2: Pointer to the other qdf MacAddress to compare
- *
- * This function returns a bool that tells if a two QDF MacAddress'
- * are equivalent.
- *
- * Return: true if the MacAddress's are equal
- * not true if the MacAddress's are not equal
- */
- static inline bool __qdf_is_macaddr_equal(struct qdf_mac_addr *mac_addr1,
- struct qdf_mac_addr *mac_addr2)
- {
- return 0 == memcmp(mac_addr1, mac_addr2, QDF_MAC_ADDR_SIZE);
- }
- /**
- * qdf_in_interrupt - returns true if in interrupt context
- */
- #define qdf_in_interrupt in_interrupt
- /**
- * @brief memory barriers.
- */
- #define __qdf_min(_a, _b) ((_a) < (_b) ? _a : _b)
- #define __qdf_max(_a, _b) ((_a) > (_b) ? _a : _b)
- /**
- * @brief Assert
- */
- #define __qdf_assert(expr) do { \
- if (unlikely(!(expr))) { \
- pr_err("Assertion failed! %s:%s %s:%d\n", \
- # expr, __func__, __FILE__, __LINE__); \
- dump_stack(); \
- QDF_BUG(0); \
- } \
- } while (0)
- /**
- * @brief Assert
- */
- #define __qdf_target_assert(expr) do { \
- if (unlikely(!(expr))) { \
- qdf_print("Assertion failed! %s:%s %s:%d\n", \
- #expr, __FUNCTION__, __FILE__, __LINE__); \
- dump_stack(); \
- panic("Take care of the TARGET ASSERT first\n"); \
- } \
- } while (0)
- #define __qdf_cpu_to_le64 cpu_to_le64
- #define __qdf_container_of(ptr, type, member) container_of(ptr, type, member)
- #define __qdf_ntohs ntohs
- #define __qdf_ntohl ntohl
- #define __qdf_htons htons
- #define __qdf_htonl htonl
- #define __qdf_cpu_to_le16 cpu_to_le16
- #define __qdf_cpu_to_le32 cpu_to_le32
- #define __qdf_cpu_to_le64 cpu_to_le64
- #define __qdf_le16_to_cpu le16_to_cpu
- #define __qdf_le32_to_cpu le32_to_cpu
- #define __qdf_be32_to_cpu be32_to_cpu
- #define __qdf_be64_to_cpu be64_to_cpu
- #define __qdf_le64_to_cpu le64_to_cpu
- #define __qdf_le16_to_cpu le16_to_cpu
- /**
- * @brief memory barriers.
- */
- #define __qdf_wmb() wmb()
- #define __qdf_rmb() rmb()
- #define __qdf_mb() mb()
- #define __qdf_roundup(x, y) roundup(x, y)
- #ifdef QCA_CONFIG_SMP
- /**
- * __qdf_get_cpu() - get cpu_index
- *
- * Return: cpu_index
- */
- static inline
- int __qdf_get_cpu(void)
- {
- int cpu_index = get_cpu();
- put_cpu();
- return cpu_index;
- }
- #else
- static inline
- int __qdf_get_cpu(void)
- {
- return 0;
- }
- #endif
- static inline int __qdf_device_init_wakeup(__qdf_device_t qdf_dev, bool enable)
- {
- return device_init_wakeup(qdf_dev->dev, enable);
- }
- #endif /*_I_QDF_UTIL_H*/
|