1 /*- 2 * SPDX-License-Identifier: ISC 3 * 4 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting 5 * Copyright (c) 2002-2008 Atheros Communications, Inc. 6 * 7 * Permission to use, copy, modify, and/or distribute this software for any 8 * purpose with or without fee is hereby granted, provided that the above 9 * copyright notice and this permission notice appear in all copies. 10 * 11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 18 */ 19 #ifndef _ATH_AR5312_H_ 20 #define _ATH_AR5312_H_ 21 22 #include "ah_soc.h" 23 #include "ar5212/ar5212.h" 24 25 #define AR5312_UNIT(_ah) \ 26 (((const struct ar531x_config *)((_ah)->ah_st))->unit) 27 #define AR5312_BOARDCONFIG(_ah) \ 28 (((const struct ar531x_config *)((_ah)->ah_st))->board) 29 #define AR5312_RADIOCONFIG(_ah) \ 30 (((const struct ar531x_config *)((_ah)->ah_st))->radio) 31 32 #define IS_5312_2_X(ah) \ 33 (AH_PRIVATE(ah)->ah_macVersion == AR_SREV_VERSION_VENICE && \ 34 (AH_PRIVATE(ah)->ah_macRev == 2 || AH_PRIVATE(ah)->ah_macRev == 7)) 35 #define IS_5315(ah) \ 36 (AH_PRIVATE(ah)->ah_devid == AR5212_AR2315_REV6 || \ 37 AH_PRIVATE(ah)->ah_devid == AR5212_AR2315_REV7 || \ 38 AH_PRIVATE(ah)->ah_devid == AR5212_AR2317_REV1 || \ 39 AH_PRIVATE(ah)->ah_devid == AR5212_AR2317_REV2) 40 41 extern HAL_BOOL ar5312IsInterruptPending(struct ath_hal *ah); 42 43 /* AR5312 */ 44 extern HAL_BOOL ar5312GpioCfgOutput(struct ath_hal *, uint32_t gpio, 45 HAL_GPIO_MUX_TYPE); 46 extern HAL_BOOL ar5312GpioCfgInput(struct ath_hal *, uint32_t gpio); 47 extern HAL_BOOL ar5312GpioSet(struct ath_hal *, uint32_t gpio, uint32_t val); 48 extern uint32_t ar5312GpioGet(struct ath_hal *ah, uint32_t gpio); 49 extern void ar5312GpioSetIntr(struct ath_hal *ah, u_int, uint32_t ilevel); 50 51 /* AR2315+ */ 52 extern HAL_BOOL ar5315GpioCfgOutput(struct ath_hal *, uint32_t gpio, 53 HAL_GPIO_MUX_TYPE); 54 extern HAL_BOOL ar5315GpioCfgInput(struct ath_hal *, uint32_t gpio); 55 extern HAL_BOOL ar5315GpioSet(struct ath_hal *, uint32_t gpio, uint32_t val); 56 extern uint32_t ar5315GpioGet(struct ath_hal *ah, uint32_t gpio); 57 extern void ar5315GpioSetIntr(struct ath_hal *ah, u_int, uint32_t ilevel); 58 59 extern void ar5312SetLedState(struct ath_hal *ah, HAL_LED_STATE state); 60 extern HAL_BOOL ar5312DetectCardPresent(struct ath_hal *ah); 61 extern void ar5312SetupClock(struct ath_hal *ah, HAL_OPMODE opmode); 62 extern void ar5312RestoreClock(struct ath_hal *ah, HAL_OPMODE opmode); 63 extern void ar5312DumpState(struct ath_hal *ah); 64 extern HAL_BOOL ar5312Reset(struct ath_hal *ah, HAL_OPMODE opmode, 65 struct ieee80211_channel *chan, 66 HAL_BOOL bChannelChange, 67 HAL_RESET_TYPE resetType, 68 HAL_STATUS *status); 69 extern HAL_BOOL ar5312ChipReset(struct ath_hal *ah, 70 struct ieee80211_channel *chan); 71 extern HAL_BOOL ar5312SetPowerMode(struct ath_hal *ah, HAL_POWER_MODE mode, 72 int setChip); 73 extern HAL_BOOL ar5312PhyDisable(struct ath_hal *ah); 74 extern HAL_BOOL ar5312Disable(struct ath_hal *ah); 75 extern HAL_BOOL ar5312MacReset(struct ath_hal *ah, unsigned int RCMask); 76 extern uint32_t ar5312GetPowerMode(struct ath_hal *ah); 77 extern HAL_BOOL ar5312GetPowerStatus(struct ath_hal *ah); 78 79 /* BSP functions */ 80 extern HAL_BOOL ar5312EepromRead(struct ath_hal *, u_int off, uint16_t *data); 81 extern HAL_BOOL ar5312EepromWrite(struct ath_hal *, u_int off, uint16_t data); 82 83 #endif /* _ATH_AR3212_H_ */ 84