1*6e778a7eSPedro F. Giffuni /*- 2*6e778a7eSPedro F. Giffuni * SPDX-License-Identifier: ISC 3*6e778a7eSPedro F. Giffuni * 414779705SSam Leffler * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting 514779705SSam Leffler * Copyright (c) 2002-2006 Atheros Communications, Inc. 614779705SSam Leffler * 714779705SSam Leffler * Permission to use, copy, modify, and/or distribute this software for any 814779705SSam Leffler * purpose with or without fee is hereby granted, provided that the above 914779705SSam Leffler * copyright notice and this permission notice appear in all copies. 1014779705SSam Leffler * 1114779705SSam Leffler * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 1214779705SSam Leffler * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 1314779705SSam Leffler * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 1414779705SSam Leffler * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 1514779705SSam Leffler * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 1614779705SSam Leffler * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 1714779705SSam Leffler * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 1814779705SSam Leffler */ 1914779705SSam Leffler #ifndef _DEV_ATH_AR5211PHY_H 2014779705SSam Leffler #define _DEV_ATH_AR5211PHY_H 2114779705SSam Leffler 2214779705SSam Leffler /* 2314779705SSam Leffler * Definitions for the PHY on the Atheros AR5211/5311 chipset. 2414779705SSam Leffler */ 2514779705SSam Leffler 2614779705SSam Leffler /* PHY registers */ 2714779705SSam Leffler #define AR_PHY_BASE 0x9800 /* PHY registers base address */ 2814779705SSam Leffler #define AR_PHY(_n) (AR_PHY_BASE + ((_n)<<2)) 2914779705SSam Leffler 3014779705SSam Leffler #define AR_PHY_TURBO 0x9804 /* PHY frame control register */ 3114779705SSam Leffler #define AR_PHY_FC_TURBO_MODE 0x00000001 /* Set turbo mode bits */ 3214779705SSam Leffler #define AR_PHY_FC_TURBO_SHORT 0x00000002 /* Set short symbols to turbo mode setting */ 3314779705SSam Leffler 3414779705SSam Leffler #define AR_PHY_CHIP_ID 0x9818 /* PHY chip revision ID */ 3514779705SSam Leffler 3614779705SSam Leffler #define AR_PHY_ACTIVE 0x981C /* PHY activation register */ 3714779705SSam Leffler #define AR_PHY_ACTIVE_EN 0x00000001 /* Activate PHY chips */ 3814779705SSam Leffler #define AR_PHY_ACTIVE_DIS 0x00000000 /* Deactivate PHY chips */ 3914779705SSam Leffler 4014779705SSam Leffler #define AR_PHY_AGC_CONTROL 0x9860 /* PHY chip calibration and noise floor setting */ 4114779705SSam Leffler #define AR_PHY_AGC_CONTROL_CAL 0x00000001 /* Perform PHY chip internal calibration */ 4214779705SSam Leffler #define AR_PHY_AGC_CONTROL_NF 0x00000002 /* Perform PHY chip noise-floor calculation */ 4314779705SSam Leffler 4414779705SSam Leffler #define AR_PHY_PLL_CTL 0x987c /* PLL control register */ 4514779705SSam Leffler #define AR_PHY_PLL_CTL_44 0x19 /* 44 MHz for 11b channels and FPGA */ 4614779705SSam Leffler #define AR_PHY_PLL_CTL_40 0x18 /* 40 MHz */ 4714779705SSam Leffler #define AR_PHY_PLL_CTL_20 0x13 /* 20 MHz half rate 11a for emulation */ 4814779705SSam Leffler 4914779705SSam Leffler #define AR_PHY_RX_DELAY 0x9914 /* PHY analog_power_on_time, in 100ns increments */ 5014779705SSam Leffler #define AR_PHY_RX_DELAY_M 0x00003FFF /* Mask for delay from active assertion (wake up) */ 5114779705SSam Leffler /* to enable_receiver */ 5214779705SSam Leffler 5314779705SSam Leffler #define AR_PHY_TIMING_CTRL4 0x9920 /* PHY */ 5414779705SSam Leffler #define AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF_M 0x0000001F /* Mask for kcos_theta-1 for q correction */ 5514779705SSam Leffler #define AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF_M 0x000007E0 /* Mask for sin_theta for i correction */ 5614779705SSam Leffler #define AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF_S 5 /* Shift for sin_theta for i correction */ 5714779705SSam Leffler #define AR_PHY_TIMING_CTRL4_IQCORR_ENABLE 0x00000800 /* enable IQ correction */ 5814779705SSam Leffler #define AR_PHY_TIMING_CTRL4_IQCAL_LOG_COUNT_MAX_M 0x0000F000 /* Mask for max number of samples (logarithmic) */ 5914779705SSam Leffler #define AR_PHY_TIMING_CTRL4_IQCAL_LOG_COUNT_MAX_S 12 /* Shift for max number of samples */ 6014779705SSam Leffler #define AR_PHY_TIMING_CTRL4_DO_IQCAL 0x00010000 /* perform IQ calibration */ 6114779705SSam Leffler 6214779705SSam Leffler #define AR_PHY_PAPD_PROBE 0x9930 6314779705SSam Leffler #define AR_PHY_PAPD_PROBE_POWERTX 0x00007E00 6414779705SSam Leffler #define AR_PHY_PAPD_PROBE_POWERTX_S 9 6514779705SSam Leffler #define AR_PHY_PAPD_PROBE_NEXT_TX 0x00008000 /* command to take next reading */ 6614779705SSam Leffler #define AR_PHY_PAPD_PROBE_GAINF 0xFE000000 6714779705SSam Leffler #define AR_PHY_PAPD_PROBE_GAINF_S 25 6814779705SSam Leffler 6914779705SSam Leffler #define AR_PHY_POWER_TX_RATE1 0x9934 7014779705SSam Leffler #define AR_PHY_POWER_TX_RATE2 0x9938 7114779705SSam Leffler #define AR_PHY_POWER_TX_RATE_MAX 0x993c 7214779705SSam Leffler 7314779705SSam Leffler #define AR_PHY_FRAME_CTL 0x9944 7414779705SSam Leffler #define AR_PHY_FRAME_CTL_TX_CLIP 0x00000038 7514779705SSam Leffler #define AR_PHY_FRAME_CTL_TX_CLIP_S 3 7614779705SSam Leffler #define AR_PHY_FRAME_CTL_ERR_SERV 0x20000000 7714779705SSam Leffler #define AR_PHY_FRAME_CTL_ERR_SERV_S 29 7814779705SSam Leffler 7914779705SSam Leffler #define AR_PHY_RADAR_0 0x9954 /* PHY radar detection settings */ 8014779705SSam Leffler #define AR_PHY_RADAR_0_ENA 0x00000001 /* Enable radar detection */ 8114779705SSam Leffler 8214779705SSam Leffler #define AR_PHY_IQCAL_RES_PWR_MEAS_I 0x9c10 /*PHY IQ calibration results - power measurement for I */ 8314779705SSam Leffler #define AR_PHY_IQCAL_RES_PWR_MEAS_Q 0x9c14 /*PHY IQ calibration results - power measurement for Q */ 8414779705SSam Leffler #define AR_PHY_IQCAL_RES_IQ_CORR_MEAS 0x9c18 /*PHY IQ calibration results - IQ correlation measurement */ 8514779705SSam Leffler #define AR_PHY_CURRENT_RSSI 0x9c1c /* rssi of current frame being received */ 8614779705SSam Leffler 8714779705SSam Leffler #define AR5211_PHY_MODE 0xA200 /* Mode register */ 8814779705SSam Leffler #define AR5211_PHY_MODE_OFDM 0x0 /* bit 0 = 0 for OFDM */ 8914779705SSam Leffler #define AR5211_PHY_MODE_CCK 0x1 /* bit 0 = 1 for CCK */ 9014779705SSam Leffler #define AR5211_PHY_MODE_RF5GHZ 0x0 /* bit 1 = 0 for 5 GHz */ 9114779705SSam Leffler #define AR5211_PHY_MODE_RF2GHZ 0x2 /* bit 1 = 1 for 2.4 GHz */ 9214779705SSam Leffler 9314779705SSam Leffler #endif /* _DEV_ATH_AR5211PHY_H */ 94