Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7dd73588 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76: move mt76x02_mac_work routine in mt76x02-lib module



Move mt76x02_mac_work routine in mt76x02_mac.c in order to be reused by
mt76x0 driver to read device statistics

Signed-off-by: default avatarLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 62503186
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -28,8 +28,6 @@
#include "../mt76x02.h"
#include "../mt76x02.h"
#include "eeprom.h"
#include "eeprom.h"


#define MT_CALIBRATE_INTERVAL		(4 * HZ)

#define MT_USB_AGGR_SIZE_LIMIT		21 /* * 1024B */
#define MT_USB_AGGR_SIZE_LIMIT		21 /* * 1024B */
#define MT_USB_AGGR_TIMEOUT		0x80 /* * 33ns */
#define MT_USB_AGGR_TIMEOUT		0x80 /* * 33ns */


+2 −0
Original line number Original line Diff line number Diff line
@@ -26,6 +26,8 @@
#include "mt76x02_dfs.h"
#include "mt76x02_dfs.h"
#include "mt76x02_dma.h"
#include "mt76x02_dma.h"


#define MT_CALIBRATE_INTERVAL	HZ

struct mt76x02_mac_stats {
struct mt76x02_mac_stats {
	u64 rx_stat[6];
	u64 rx_stat[6];
	u64 tx_stat[6];
	u64 tx_stat[6];
+19 −0
Original line number Original line Diff line number Diff line
@@ -753,3 +753,22 @@ void mt76x02_update_channel(struct mt76_dev *mdev)
	spin_unlock_bh(&dev->mt76.cc_lock);
	spin_unlock_bh(&dev->mt76.cc_lock);
}
}
EXPORT_SYMBOL_GPL(mt76x02_update_channel);
EXPORT_SYMBOL_GPL(mt76x02_update_channel);

void mt76x02_mac_work(struct work_struct *work)
{
	struct mt76x02_dev *dev = container_of(work, struct mt76x02_dev,
					       mac_work.work);
	int i, idx;

	mt76x02_update_channel(&dev->mt76);
	for (i = 0, idx = 0; i < 16; i++) {
		u32 val = mt76_rr(dev, MT_TX_AGG_CNT(i));

		dev->aggr_stats[idx++] += val & 0xffff;
		dev->aggr_stats[idx++] += val >> 16;
	}

	ieee80211_queue_delayed_work(mt76_hw(dev), &dev->mac_work,
				     MT_CALIBRATE_INTERVAL);
}
EXPORT_SYMBOL_GPL(mt76x02_mac_work);
+1 −0
Original line number Original line Diff line number Diff line
@@ -227,4 +227,5 @@ void mt76x02_mac_poll_tx_status(struct mt76x02_dev *dev, bool irq);
void mt76x02_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue *q,
void mt76x02_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue *q,
			     struct mt76_queue_entry *e, bool flush);
			     struct mt76_queue_entry *e, bool flush);
void mt76x02_update_channel(struct mt76_dev *mdev);
void mt76x02_update_channel(struct mt76_dev *mdev);
void mt76x02_mac_work(struct work_struct *work);
#endif
#endif
+0 −2
Original line number Original line Diff line number Diff line
@@ -32,6 +32,4 @@ int mt76x2_mac_set_beacon(struct mt76x02_dev *dev, u8 vif_idx,
			  struct sk_buff *skb);
			  struct sk_buff *skb);
void mt76x2_mac_set_beacon_enable(struct mt76x02_dev *dev, u8 vif_idx, bool val);
void mt76x2_mac_set_beacon_enable(struct mt76x02_dev *dev, u8 vif_idx, bool val);


void mt76x2_mac_work(struct work_struct *work);

#endif
#endif
Loading