xref: /openbmc/linux/drivers/net/wireless/mediatek/mt76/mt76x02_mcu.c (revision 8be98d2f2a0a262f8bf8a0bc1fdf522b3c7aab17)
10e3d6777SRyder Lee // SPDX-License-Identifier: ISC
236fd09ddSLorenzo Bianconi /*
336fd09ddSLorenzo Bianconi  * Copyright (C) 2016 Felix Fietkau <nbd@nbd.name>
436fd09ddSLorenzo Bianconi  * Copyright (C) 2018 Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
536fd09ddSLorenzo Bianconi  */
636fd09ddSLorenzo Bianconi 
736fd09ddSLorenzo Bianconi #include <linux/kernel.h>
836fd09ddSLorenzo Bianconi #include <linux/firmware.h>
936fd09ddSLorenzo Bianconi #include <linux/delay.h>
1036fd09ddSLorenzo Bianconi 
1136fd09ddSLorenzo Bianconi #include "mt76x02_mcu.h"
1236fd09ddSLorenzo Bianconi 
mt76x02_mcu_parse_response(struct mt76_dev * mdev,int cmd,struct sk_buff * skb,int seq)13f320d812SFelix Fietkau int mt76x02_mcu_parse_response(struct mt76_dev *mdev, int cmd,
14f320d812SFelix Fietkau 			       struct sk_buff *skb, int seq)
15f320d812SFelix Fietkau {
1696a607b6SFelix Fietkau 	struct mt76x02_dev *dev = container_of(mdev, struct mt76x02_dev, mt76);
1796a607b6SFelix Fietkau 	u32 *rxfce;
18f320d812SFelix Fietkau 
1996a607b6SFelix Fietkau 	if (!skb) {
20*53d35b1aSLorenzo Bianconi 		dev_err(mdev->dev, "MCU message %02x (seq %d) timed out\n",
21*53d35b1aSLorenzo Bianconi 			abs(cmd), seq);
2296a607b6SFelix Fietkau 		dev->mcu_timeout = 1;
2396a607b6SFelix Fietkau 		return -ETIMEDOUT;
2496a607b6SFelix Fietkau 	}
2596a607b6SFelix Fietkau 
2696a607b6SFelix Fietkau 	rxfce = (u32 *)skb->cb;
27f320d812SFelix Fietkau 	if (seq != FIELD_GET(MT_RX_FCE_INFO_CMD_SEQ, *rxfce))
28f320d812SFelix Fietkau 		return -EAGAIN;
29f320d812SFelix Fietkau 
30f320d812SFelix Fietkau 	return 0;
31f320d812SFelix Fietkau }
32f320d812SFelix Fietkau EXPORT_SYMBOL_GPL(mt76x02_mcu_parse_response);
33f320d812SFelix Fietkau 
mt76x02_mcu_msg_send(struct mt76_dev * mdev,int cmd,const void * data,int len,bool wait_resp)34a74d6336SStanislaw Gruszka int mt76x02_mcu_msg_send(struct mt76_dev *mdev, int cmd, const void *data,
35a74d6336SStanislaw Gruszka 			 int len, bool wait_resp)
3636fd09ddSLorenzo Bianconi {
37499cd0aaSLorenzo Bianconi 	struct mt76x02_dev *dev = container_of(mdev, struct mt76x02_dev, mt76);
3836fd09ddSLorenzo Bianconi 	unsigned long expires = jiffies + HZ;
39a74d6336SStanislaw Gruszka 	struct sk_buff *skb;
405ed31128SLorenzo Bianconi 	u32 tx_info;
4136fd09ddSLorenzo Bianconi 	int ret;
4236fd09ddSLorenzo Bianconi 	u8 seq;
4336fd09ddSLorenzo Bianconi 
44802b836aSLorenzo Bianconi 	if (dev->mcu_timeout)
45fd6c2dfaSFelix Fietkau 		return -EIO;
46fd6c2dfaSFelix Fietkau 
47bb31a80eSLorenzo Bianconi 	skb = mt76_mcu_msg_alloc(mdev, data, len);
4836fd09ddSLorenzo Bianconi 	if (!skb)
49a74d6336SStanislaw Gruszka 		return -ENOMEM;
5036fd09ddSLorenzo Bianconi 
5109872957SLorenzo Bianconi 	mutex_lock(&mdev->mcu.mutex);
5236fd09ddSLorenzo Bianconi 
5309872957SLorenzo Bianconi 	seq = ++mdev->mcu.msg_seq & 0xf;
5436fd09ddSLorenzo Bianconi 	if (!seq)
5509872957SLorenzo Bianconi 		seq = ++mdev->mcu.msg_seq & 0xf;
5636fd09ddSLorenzo Bianconi 
575ed31128SLorenzo Bianconi 	tx_info = MT_MCU_MSG_TYPE_CMD |
585ed31128SLorenzo Bianconi 		  FIELD_PREP(MT_MCU_MSG_CMD_TYPE, cmd) |
595ed31128SLorenzo Bianconi 		  FIELD_PREP(MT_MCU_MSG_CMD_SEQ, seq) |
605ed31128SLorenzo Bianconi 		  FIELD_PREP(MT_MCU_MSG_PORT, CPU_TX_PORT) |
615ed31128SLorenzo Bianconi 		  FIELD_PREP(MT_MCU_MSG_LEN, skb->len);
625ed31128SLorenzo Bianconi 
63e637763bSLorenzo Bianconi 	ret = mt76_tx_queue_skb_raw(dev, mdev->q_mcu[MT_MCUQ_WM], skb, tx_info);
6436fd09ddSLorenzo Bianconi 	if (ret)
6536fd09ddSLorenzo Bianconi 		goto out;
6636fd09ddSLorenzo Bianconi 
6736fd09ddSLorenzo Bianconi 	while (wait_resp) {
68680abb25SLorenzo Bianconi 		skb = mt76_mcu_get_response(&dev->mt76, expires);
69f320d812SFelix Fietkau 		ret = mt76x02_mcu_parse_response(mdev, cmd, skb, seq);
7036fd09ddSLorenzo Bianconi 		dev_kfree_skb(skb);
71f320d812SFelix Fietkau 		if (ret != -EAGAIN)
7236fd09ddSLorenzo Bianconi 			break;
7336fd09ddSLorenzo Bianconi 	}
7436fd09ddSLorenzo Bianconi 
7536fd09ddSLorenzo Bianconi out:
7609872957SLorenzo Bianconi 	mutex_unlock(&mdev->mcu.mutex);
7736fd09ddSLorenzo Bianconi 
7836fd09ddSLorenzo Bianconi 	return ret;
7936fd09ddSLorenzo Bianconi }
8036fd09ddSLorenzo Bianconi EXPORT_SYMBOL_GPL(mt76x02_mcu_msg_send);
8136fd09ddSLorenzo Bianconi 
mt76x02_mcu_function_select(struct mt76x02_dev * dev,enum mcu_function func,u32 val)823d2d61b5SStanislaw Gruszka int mt76x02_mcu_function_select(struct mt76x02_dev *dev, enum mcu_function func,
833d2d61b5SStanislaw Gruszka 				u32 val)
8436fd09ddSLorenzo Bianconi {
8536fd09ddSLorenzo Bianconi 	struct {
8636fd09ddSLorenzo Bianconi 		__le32 id;
8736fd09ddSLorenzo Bianconi 		__le32 value;
8836fd09ddSLorenzo Bianconi 	} __packed __aligned(4) msg = {
8936fd09ddSLorenzo Bianconi 		.id = cpu_to_le32(func),
9036fd09ddSLorenzo Bianconi 		.value = cpu_to_le32(val),
9136fd09ddSLorenzo Bianconi 	};
923d2d61b5SStanislaw Gruszka 	bool wait = false;
9336fd09ddSLorenzo Bianconi 
943d2d61b5SStanislaw Gruszka 	if (func != Q_SELECT)
953d2d61b5SStanislaw Gruszka 		wait = true;
963d2d61b5SStanislaw Gruszka 
97cb5cdd4cSFelix Fietkau 	return mt76_mcu_send_msg(&dev->mt76, CMD_FUN_SET_OP, &msg,
98cb5cdd4cSFelix Fietkau 				 sizeof(msg), wait);
9936fd09ddSLorenzo Bianconi }
10036fd09ddSLorenzo Bianconi EXPORT_SYMBOL_GPL(mt76x02_mcu_function_select);
10136fd09ddSLorenzo Bianconi 
mt76x02_mcu_set_radio_state(struct mt76x02_dev * dev,bool on)102c6950536SStanislaw Gruszka int mt76x02_mcu_set_radio_state(struct mt76x02_dev *dev, bool on)
10336fd09ddSLorenzo Bianconi {
10436fd09ddSLorenzo Bianconi 	struct {
10536fd09ddSLorenzo Bianconi 		__le32 mode;
10636fd09ddSLorenzo Bianconi 		__le32 level;
10736fd09ddSLorenzo Bianconi 	} __packed __aligned(4) msg = {
10836fd09ddSLorenzo Bianconi 		.mode = cpu_to_le32(on ? RADIO_ON : RADIO_OFF),
10936fd09ddSLorenzo Bianconi 		.level = cpu_to_le32(0),
11036fd09ddSLorenzo Bianconi 	};
11136fd09ddSLorenzo Bianconi 
112cb5cdd4cSFelix Fietkau 	return mt76_mcu_send_msg(&dev->mt76, CMD_POWER_SAVING_OP, &msg,
113cb5cdd4cSFelix Fietkau 				 sizeof(msg), false);
11436fd09ddSLorenzo Bianconi }
11536fd09ddSLorenzo Bianconi EXPORT_SYMBOL_GPL(mt76x02_mcu_set_radio_state);
11636fd09ddSLorenzo Bianconi 
mt76x02_mcu_calibrate(struct mt76x02_dev * dev,int type,u32 param)1174ece1e0aSStanislaw Gruszka int mt76x02_mcu_calibrate(struct mt76x02_dev *dev, int type, u32 param)
118edaa580bSLorenzo Bianconi {
119edaa580bSLorenzo Bianconi 	struct {
120edaa580bSLorenzo Bianconi 		__le32 id;
121edaa580bSLorenzo Bianconi 		__le32 value;
122edaa580bSLorenzo Bianconi 	} __packed __aligned(4) msg = {
123edaa580bSLorenzo Bianconi 		.id = cpu_to_le32(type),
124edaa580bSLorenzo Bianconi 		.value = cpu_to_le32(param),
125edaa580bSLorenzo Bianconi 	};
12661c51a74SLorenzo Bianconi 	bool is_mt76x2e = mt76_is_mmio(&dev->mt76) && is_mt76x2(dev);
127edaa580bSLorenzo Bianconi 	int ret;
128edaa580bSLorenzo Bianconi 
1294ece1e0aSStanislaw Gruszka 	if (is_mt76x2e)
130499cd0aaSLorenzo Bianconi 		mt76_rmw(dev, MT_MCU_COM_REG0, BIT(31), 0);
131edaa580bSLorenzo Bianconi 
132cb5cdd4cSFelix Fietkau 	ret = mt76_mcu_send_msg(&dev->mt76, CMD_CALIBRATION_OP, &msg,
133cb5cdd4cSFelix Fietkau 				sizeof(msg), true);
134edaa580bSLorenzo Bianconi 	if (ret)
135edaa580bSLorenzo Bianconi 		return ret;
136edaa580bSLorenzo Bianconi 
1374ece1e0aSStanislaw Gruszka 	if (is_mt76x2e &&
138499cd0aaSLorenzo Bianconi 	    WARN_ON(!mt76_poll_msec(dev, MT_MCU_COM_REG0,
139edaa580bSLorenzo Bianconi 				    BIT(31), BIT(31), 100)))
140edaa580bSLorenzo Bianconi 		return -ETIMEDOUT;
141edaa580bSLorenzo Bianconi 
142edaa580bSLorenzo Bianconi 	return 0;
143edaa580bSLorenzo Bianconi }
144edaa580bSLorenzo Bianconi EXPORT_SYMBOL_GPL(mt76x02_mcu_calibrate);
145edaa580bSLorenzo Bianconi 
mt76x02_mcu_cleanup(struct mt76x02_dev * dev)146499cd0aaSLorenzo Bianconi int mt76x02_mcu_cleanup(struct mt76x02_dev *dev)
14736fd09ddSLorenzo Bianconi {
14836fd09ddSLorenzo Bianconi 	struct sk_buff *skb;
14936fd09ddSLorenzo Bianconi 
150499cd0aaSLorenzo Bianconi 	mt76_wr(dev, MT_MCU_INT_LEVEL, 1);
15136fd09ddSLorenzo Bianconi 	usleep_range(20000, 30000);
15236fd09ddSLorenzo Bianconi 
15309872957SLorenzo Bianconi 	while ((skb = skb_dequeue(&dev->mt76.mcu.res_q)) != NULL)
15436fd09ddSLorenzo Bianconi 		dev_kfree_skb(skb);
15536fd09ddSLorenzo Bianconi 
15636fd09ddSLorenzo Bianconi 	return 0;
15736fd09ddSLorenzo Bianconi }
15836fd09ddSLorenzo Bianconi EXPORT_SYMBOL_GPL(mt76x02_mcu_cleanup);
15922509324SDavide Caratti 
mt76x02_set_ethtool_fwver(struct mt76x02_dev * dev,const struct mt76x02_fw_header * h)160499cd0aaSLorenzo Bianconi void mt76x02_set_ethtool_fwver(struct mt76x02_dev *dev,
16122509324SDavide Caratti 			       const struct mt76x02_fw_header *h)
16222509324SDavide Caratti {
16322509324SDavide Caratti 	u16 bld = le16_to_cpu(h->build_ver);
16422509324SDavide Caratti 	u16 ver = le16_to_cpu(h->fw_ver);
16522509324SDavide Caratti 
166499cd0aaSLorenzo Bianconi 	snprintf(dev->mt76.hw->wiphy->fw_version,
167499cd0aaSLorenzo Bianconi 		 sizeof(dev->mt76.hw->wiphy->fw_version),
16822509324SDavide Caratti 		 "%d.%d.%02d-b%x",
16922509324SDavide Caratti 		 (ver >> 12) & 0xf, (ver >> 8) & 0xf, ver & 0xf, bld);
17022509324SDavide Caratti }
17122509324SDavide Caratti EXPORT_SYMBOL_GPL(mt76x02_set_ethtool_fwver);
172