Commit 72750efd authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Kalle Valo

mt76x0: remove mt76x0_vendor_single_wr routine

Remove mt76x0_vendor_single_wr routine and use mt76u_single_wr
utility function for mcu firmware loading
Signed-off-by: default avatarLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent e9fa647a
...@@ -416,15 +416,12 @@ static int __mt76x0_dma_fw(struct mt76x0_dev *dev, ...@@ -416,15 +416,12 @@ static int __mt76x0_dma_fw(struct mt76x0_dev *dev,
memcpy(buf.buf + sizeof(reg), data, len); memcpy(buf.buf + sizeof(reg), data, len);
memset(buf.buf + sizeof(reg) + len, 0, 8); memset(buf.buf + sizeof(reg) + len, 0, 8);
ret = mt76x0_vendor_single_wr(dev, MT_VEND_WRITE_FCE, mt76u_single_wr(&dev->mt76, MT_VEND_WRITE_FCE, MT_FCE_DMA_ADDR,
MT_FCE_DMA_ADDR, dst_addr); dst_addr);
if (ret)
return ret;
len = roundup(len, 4); len = roundup(len, 4);
ret = mt76x0_vendor_single_wr(dev, MT_VEND_WRITE_FCE, mt76u_single_wr(&dev->mt76, MT_VEND_WRITE_FCE, MT_FCE_DMA_LEN,
MT_FCE_DMA_LEN, len << 16); len << 16);
if (ret)
return ret;
buf.len = MT_DMA_HDR_LEN + len + 4; buf.len = MT_DMA_HDR_LEN + len + 4;
ret = mt76x0_usb_submit_buf(dev, USB_DIR_OUT, MT_EP_OUT_INBAND_CMD, ret = mt76x0_usb_submit_buf(dev, USB_DIR_OUT, MT_EP_OUT_INBAND_CMD,
......
...@@ -131,25 +131,6 @@ int mt76x0_vendor_request(struct mt76x0_dev *dev, const u8 req, ...@@ -131,25 +131,6 @@ int mt76x0_vendor_request(struct mt76x0_dev *dev, const u8 req,
return ret; return ret;
} }
int mt76x0_vendor_single_wr(struct mt76x0_dev *dev, const u8 req,
const u16 offset, const u32 val)
{
struct mt76x0_dev *mdev = dev;
int ret;
mutex_lock(&mdev->usb_ctrl_mtx);
ret = mt76x0_vendor_request(dev, req, USB_DIR_OUT,
val & 0xffff, offset, NULL, 0);
if (!ret)
ret = mt76x0_vendor_request(dev, req, USB_DIR_OUT,
val >> 16, offset + 2, NULL, 0);
mutex_unlock(&mdev->usb_ctrl_mtx);
return ret;
}
void mt76x0_addr_wr(struct mt76x0_dev *dev, const u32 offset, const u8 *addr) void mt76x0_addr_wr(struct mt76x0_dev *dev, const u32 offset, const u8 *addr)
{ {
mt76_wr(dev, offset, get_unaligned_le32(addr)); mt76_wr(dev, offset, get_unaligned_le32(addr));
......
...@@ -54,7 +54,5 @@ void mt76x0_complete_urb(struct urb *urb); ...@@ -54,7 +54,5 @@ void mt76x0_complete_urb(struct urb *urb);
int mt76x0_vendor_request(struct mt76x0_dev *dev, const u8 req, int mt76x0_vendor_request(struct mt76x0_dev *dev, const u8 req,
const u8 direction, const u16 val, const u16 offset, const u8 direction, const u16 val, const u16 offset,
void *buf, const size_t buflen); void *buf, const size_t buflen);
int mt76x0_vendor_single_wr(struct mt76x0_dev *dev, const u8 req,
const u16 offset, const u32 val);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment