76bd547b9c
directory. Only copy the ar9300 HAL, we don't want to grab everything.
55 lines
1.9 KiB
C
55 lines
1.9 KiB
C
/*
|
|
* Copyright (c) 2013 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.
|
|
*/
|
|
/*
|
|
|
|
* Copyright (c) 2002-2010 Atheros Communications, Inc.
|
|
* All Rights Reserved.
|
|
*
|
|
* Copyright (c) 2011 Qualcomm Atheros, Inc.
|
|
* All Rights Reserved.
|
|
* Qualcomm Atheros Confidential and Proprietary.
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __AR9300PAPRD_H__
|
|
|
|
#define __AR9300PAPRD_H__
|
|
|
|
|
|
|
|
#include <ah.h>
|
|
|
|
#include "ar9300.h"
|
|
|
|
#include "ar9300phy.h"
|
|
|
|
#define AH_PAPRD_AM_PM_MASK 0x1ffffff
|
|
#define AH_PAPRD_IDEAL_AGC2_PWR_RANGE 0xe0
|
|
extern int ar9300_paprd_init_table(struct ath_hal *ah, HAL_CHANNEL *chan);
|
|
extern HAL_STATUS ar9300_paprd_setup_gain_table(struct ath_hal *ah, int chain_num);
|
|
extern HAL_STATUS ar9300_paprd_create_curve(struct ath_hal *ah, HAL_CHANNEL *chan, int chain_num);
|
|
extern int ar9300_paprd_is_done(struct ath_hal *ah);
|
|
extern void ar9300_enable_paprd(struct ath_hal *ah, HAL_BOOL enable_flag, HAL_CHANNEL * chan);
|
|
extern void ar9300_swizzle_paprd_entries(struct ath_hal *ah, unsigned int txchain);
|
|
extern void ar9300_populate_paprd_single_table(struct ath_hal *ah, HAL_CHANNEL *chan, int chain_num);
|
|
extern void ar9300_paprd_dec_tx_pwr(struct ath_hal *ah);
|
|
extern int ar9300_paprd_thermal_send(struct ath_hal *ah);
|
|
#endif
|
|
|