mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 04:21:03 -04:00
mt76: mt7915: fix polling firmware-own status
Check the register status bit instead of the trigger bit Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
@@ -2697,7 +2697,7 @@ static int mt7915_driver_own(struct mt7915_dev *dev)
|
||||
{
|
||||
mt76_wr(dev, MT_TOP_LPCR_HOST_BAND0, MT_TOP_LPCR_HOST_DRV_OWN);
|
||||
if (!mt76_poll_msec(dev, MT_TOP_LPCR_HOST_BAND0,
|
||||
MT_TOP_LPCR_HOST_FW_OWN, 0, 500)) {
|
||||
MT_TOP_LPCR_HOST_FW_OWN_STAT, 0, 500)) {
|
||||
dev_err(dev->mt76.dev, "Timeout for driver own\n");
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
@@ -567,6 +567,7 @@
|
||||
#define MT_TOP_LPCR_HOST_BAND0 MT_TOP(0x10)
|
||||
#define MT_TOP_LPCR_HOST_FW_OWN BIT(0)
|
||||
#define MT_TOP_LPCR_HOST_DRV_OWN BIT(1)
|
||||
#define MT_TOP_LPCR_HOST_FW_OWN_STAT BIT(2)
|
||||
|
||||
#define MT_TOP_MISC MT_TOP(0xf0)
|
||||
#define MT_TOP_MISC_FW_STATE GENMASK(2, 0)
|
||||
|
||||
Reference in New Issue
Block a user