/*- * Copyright (c) 2002-2006 Sam Leffler, Errno Consulting * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer, * without modification. * 2. Redistributions in binary form must reproduce at minimum a disclaimer * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any * redistribution must be conditioned upon including a substantially * similar Disclaimer requirement for further binary redistribution. * 3. Neither the names of the above-listed copyright holders nor the names * of any contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * Alternatively, this software may be distributed under the terms of the * GNU General Public License ("GPL") version 2 as published by the Free * Software Foundation. * * NO WARRANTY * 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 NONINFRINGEMENT, MERCHANTIBILITY * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. * * $Id: ah_os.h 1729 2006-09-22 17:56:55Z mentor $ */ #ifndef _ATH_AH_OS_H_ #define _ATH_AH_OS_H_ #include /* * Atheros Hardware Access Layer (HAL) OS Dependent Definitions. */ /* * When building the HAL proper we use no GPL-contaminated include * files and must define these types ourself. Beware of these being * mismatched against the contents of */ #ifndef _LINUX_TYPES_H /* NB: arm defaults to unsigned so be explicit */ typedef signed char int8_t; typedef short int16_t; typedef int int32_t; typedef long long int64_t; typedef unsigned char u_int8_t; typedef unsigned short u_int16_t; typedef unsigned int u_int32_t; typedef unsigned long long u_int64_t; typedef unsigned int size_t; typedef unsigned int u_int; typedef void* va_list; #endif /* * Linux/BSD gcc compatibility shims. */ #define __printflike(_a,_b) \ __attribute__ ((__format__ (__printf__, _a, _b))) #define __va_list va_list #define OS_INLINE __inline /* Delay n microseconds. */ extern void __ahdecl ath_hal_delay(int); #define OS_DELAY(_n) ath_hal_delay(_n) #define OS_MEMZERO(_a, _n) ath_hal_memzero((_a), (_n)) extern void __ahdecl ath_hal_memzero(void *, size_t); #define OS_MEMCPY(_d, _s, _n) ath_hal_memcpy(_d,_s,_n) extern void * __ahdecl ath_hal_memcpy(void *, const void *, size_t); #ifndef abs #define abs(_a) __builtin_abs(_a) #endif struct ath_hal; extern u_int32_t __ahdecl ath_hal_getuptime(struct ath_hal *); #define OS_GETUPTIME(_ah) ath_hal_getuptime(_ah) /* Byte order/swapping support. */ #define AH_LITTLE_ENDIAN 1234 #define AH_BIG_ENDIAN 4321 #ifndef AH_BYTE_ORDER /* * When the .inc file is not available (e.g. when building * in a kernel source tree); look for some other way to * setup the host byte order. */ #ifdef __LITTLE_ENDIAN #define AH_BYTE_ORDER AH_LITTLE_ENDIAN #endif #ifdef __BIG_ENDIAN #define AH_BYTE_ORDER AH_BIG_ENDIAN #endif #ifndef AH_BYTE_ORDER #error "Do not know host byte order" #endif #endif /* AH_BYTE_ORDER */ /* * Note that register accesses are done using target-specific * functions when debugging is enabled (AH_DEBUG) or we are * explicitly configured this way. * * The hardware registers are native little-endian byte order. * Big-endian hosts are handled by enabling hardware byte-swap * of register reads and writes at reset. But the PCI clock * domain registers are not byte swapped! Thus, on big-endian * platforms we have to byte-swap thoese registers specifically. * Most of this code is collapsed at compile time because the * register values are constants. * * Presumably when talking about hardware byte-swapping, the above * text is referring to the Atheros chipset, as the registers * referred to are in the PCI memory address space, and these are * never byte-swapped by PCI chipsets or bridges, but always * written directly (i.e. the format defined by the manufacturer). */ #if (AH_BYTE_ORDER == AH_BIG_ENDIAN) #define _OS_REG_WRITE(_ah, _reg, _val) do { \ (0x4000 <= (_reg) && (_reg) < 0x5000) ? \ writel((_val), (void __iomem *)((_ah)->ah_sh + (_reg))) : \ __raw_writel((_val), (void __iomem *)((_ah)->ah_sh + (_reg))); \ } while (0) #define _OS_REG_READ(_ah, _reg) \ ((0x4000 <= (_reg) && (_reg) < 0x5000) ? \ readl((void __iomem *)((_ah)->ah_sh + (_reg))) : \ __raw_readl((void __iomem *)((_ah)->ah_sh + (_reg)))) #else /* AH_LITTLE_ENDIAN */ #define _OS_REG_WRITE(_ah, _reg, _val) do { \ writel(_val, (void __iomem *)((_ah)->ah_sh + (_reg))); \ } while (0) #define _OS_REG_READ(_ah, _reg) \ readl((void __iomem *)((_ah)->ah_sh + (_reg))) #endif /* AH_BYTE_ORDER */ #if defined(AH_DEBUG) || defined(AH_REGOPS_FUNC) || defined(AH_DEBUG_ALQ) /* use functions to do register operations */ #define OS_REG_WRITE(_ah, _reg, _val) ath_hal_reg_write(_ah, _reg, _val) #define OS_REG_READ(_ah, _reg) ath_hal_reg_read(_ah, _reg) extern void __ahdecl ath_hal_reg_write(struct ath_hal *ah, u_int reg, u_int32_t val); extern u_int32_t __ahdecl ath_hal_reg_read(struct ath_hal *ah, u_int reg); #else /* inline register operations */ #define OS_REG_WRITE(_ah, _reg, _val) _OS_REG_WRITE(_ah, _reg, _val) #define OS_REG_READ(_ah, _reg) _OS_REG_READ(_ah, _reg) #endif /* AH_DEBUG || AH_REGFUNC || AH_DEBUG_ALQ */ #ifdef AH_DEBUG_ALQ extern void __ahdecl OS_MARK(struct ath_hal *, u_int id, u_int32_t value); #else #define OS_MARK(_ah, _id, _v) #endif /* * Linux-specific attach/detach methods needed for module reference counting. * * NB: These are intentionally not marked __ahdecl since they are * compiled with the default calling convention and are not called * from within the HAL. */ extern struct ath_hal *_ath_hal_attach(u_int16_t devid, HAL_SOFTC, HAL_BUS_TAG, HAL_BUS_HANDLE, HAL_STATUS*); extern void ath_hal_detach(struct ath_hal *); #endif /* _ATH_AH_OSDEP_H_ */