Path: blob/main/sys/contrib/dev/mediatek/mt76/mt76x2/mt76x2.h
48526 views
/* SPDX-License-Identifier: ISC */1/*2* Copyright (C) 2016 Felix Fietkau <[email protected]>3*/45#ifndef __MT76x2_H6#define __MT76x2_H78#include <linux/device.h>9#include <linux/dma-mapping.h>10#include <linux/spinlock.h>11#include <linux/skbuff.h>12#include <linux/netdevice.h>13#include <linux/irq.h>14#include <linux/interrupt.h>15#include <linux/mutex.h>16#include <linux/bitops.h>1718#define MT7662_FIRMWARE "mt7662.bin"19#define MT7662_ROM_PATCH "mt7662_rom_patch.bin"20#define MT7662_EEPROM_SIZE 5122122#include "../mt76x02.h"23#include "mac.h"2425static inline bool is_mt7612(struct mt76x02_dev *dev)26{27return mt76_chip(&dev->mt76) == 0x7612;28}2930static inline bool mt76x2_channel_silent(struct mt76x02_dev *dev)31{32struct ieee80211_channel *chan = dev->mphy.chandef.chan;3334return ((chan->flags & IEEE80211_CHAN_RADAR) &&35chan->dfs_state != NL80211_DFS_AVAILABLE);36}3738extern const struct ieee80211_ops mt76x2_ops;3940int mt76x2_register_device(struct mt76x02_dev *dev);41int mt76x2_resume_device(struct mt76x02_dev *dev);4243int mt76x2_set_sar_specs(struct ieee80211_hw *hw,44const struct cfg80211_sar_specs *sar);45void mt76x2_phy_power_on(struct mt76x02_dev *dev);46void mt76x2_stop_hardware(struct mt76x02_dev *dev);47int mt76x2_eeprom_init(struct mt76x02_dev *dev);48int mt76x2_apply_calibration_data(struct mt76x02_dev *dev, int channel);49int mt76x2e_set_channel(struct mt76_phy *phy);50int mt76x2u_set_channel(struct mt76_phy *phy);5152void mt76x2_phy_set_antenna(struct mt76x02_dev *dev);53int mt76x2_phy_start(struct mt76x02_dev *dev);54int mt76x2_phy_set_channel(struct mt76x02_dev *dev,55struct cfg80211_chan_def *chandef);56void mt76x2_phy_calibrate(struct work_struct *work);57void mt76x2_phy_set_txpower(struct mt76x02_dev *dev);5859int mt76x2_mcu_init(struct mt76x02_dev *dev);60int mt76x2_mcu_set_channel(struct mt76x02_dev *dev, u8 channel, u8 bw,61u8 bw_index, bool scan);62int mt76x2_mcu_load_cr(struct mt76x02_dev *dev, u8 type, u8 temp_level,63u8 channel);6465void mt76x2_cleanup(struct mt76x02_dev *dev);6667int mt76x2_mac_reset(struct mt76x02_dev *dev, bool hard);68void mt76x2_reset_wlan(struct mt76x02_dev *dev, bool enable);69void mt76x2_init_txpower(struct mt76x02_dev *dev,70struct ieee80211_supported_band *sband);71void mt76_write_mac_initvals(struct mt76x02_dev *dev);7273void mt76x2_phy_tssi_compensate(struct mt76x02_dev *dev);74void mt76x2_phy_set_txpower_regs(struct mt76x02_dev *dev,75enum nl80211_band band);76void mt76x2_configure_tx_delay(struct mt76x02_dev *dev,77enum nl80211_band band, u8 bw);78void mt76x2_apply_gain_adj(struct mt76x02_dev *dev);79void mt76x2_phy_update_channel_gain(struct mt76x02_dev *dev);8081#endif828384