cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mt76x0.h (1731B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
      4 * Copyright (C) 2015 Jakub Kicinski <kubakici@wp.pl>
      5 * Copyright (C) 2018 Stanislaw Gruszka <stf_xl@wp.pl>
      6 */
      7
      8#ifndef MT76X0U_H
      9#define MT76X0U_H
     10
     11#include <linux/bitfield.h>
     12#include <linux/kernel.h>
     13#include <linux/device.h>
     14#include <linux/mutex.h>
     15#include <linux/usb.h>
     16#include <linux/completion.h>
     17#include <net/mac80211.h>
     18#include <linux/debugfs.h>
     19
     20#include "../mt76x02.h"
     21#include "eeprom.h"
     22
     23#define MT7610E_FIRMWARE		"mediatek/mt7610e.bin"
     24#define MT7650E_FIRMWARE		"mediatek/mt7650e.bin"
     25
     26#define MT7610U_FIRMWARE		"mediatek/mt7610u.bin"
     27
     28#define MT_USB_AGGR_SIZE_LIMIT		21 /* * 1024B */
     29#define MT_USB_AGGR_TIMEOUT		0x80 /* * 33ns */
     30
     31static inline bool is_mt7610e(struct mt76x02_dev *dev)
     32{
     33	if (!mt76_is_mmio(&dev->mt76))
     34		return false;
     35
     36	return mt76_chip(&dev->mt76) == 0x7610;
     37}
     38
     39static inline bool is_mt7630(struct mt76x02_dev *dev)
     40{
     41	return mt76_chip(&dev->mt76) == 0x7630;
     42}
     43
     44/* Init */
     45int mt76x0_init_hardware(struct mt76x02_dev *dev);
     46int mt76x0_register_device(struct mt76x02_dev *dev);
     47void mt76x0_chip_onoff(struct mt76x02_dev *dev, bool enable, bool reset);
     48
     49void mt76x0_mac_stop(struct mt76x02_dev *dev);
     50
     51int mt76x0_config(struct ieee80211_hw *hw, u32 changed);
     52int mt76x0_set_sar_specs(struct ieee80211_hw *hw,
     53			 const struct cfg80211_sar_specs *sar);
     54
     55/* PHY */
     56void mt76x0_phy_init(struct mt76x02_dev *dev);
     57int mt76x0_phy_wait_bbp_ready(struct mt76x02_dev *dev);
     58void mt76x0_phy_set_channel(struct mt76x02_dev *dev,
     59			    struct cfg80211_chan_def *chandef);
     60void mt76x0_phy_set_txpower(struct mt76x02_dev *dev);
     61void mt76x0_phy_calibrate(struct mt76x02_dev *dev, bool power_on);
     62#endif