Skip to content

Commit

Permalink
mt76: connac: introduce wake counter for fw_pmctrl synchronization
Browse files Browse the repository at this point in the history
Introduce wake counter and related spinlock in order to synchronize
tx/rx path and fw_pmctrl request.

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
Lorenzo Bianconi authored and Felix Fietkau committed Apr 21, 2021
1 parent 7cd740f commit 7f2bc8b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions drivers/net/wireless/mediatek/mt76/mt76_connac.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ struct mt76_connac_pm {

struct work_struct wake_work;
struct completion wake_cmpl;

struct {
spinlock_t lock;
u32 count;
} wake;
struct mutex mutex;

struct delayed_work ps_work;
Expand Down Expand Up @@ -85,6 +90,32 @@ void mt76_connac_power_save_sched(struct mt76_phy *phy,
void mt76_connac_free_pending_tx_skbs(struct mt76_connac_pm *pm,
struct mt76_wcid *wcid);

static inline bool
mt76_connac_pm_ref(struct mt76_phy *phy, struct mt76_connac_pm *pm)
{
bool ret = false;

spin_lock_bh(&pm->wake.lock);
if (test_bit(MT76_STATE_PM, &phy->state))
goto out;

pm->wake.count++;
ret = true;
out:
spin_unlock_bh(&pm->wake.lock);

return ret;
}

static inline void
mt76_connac_pm_unref(struct mt76_connac_pm *pm)
{
spin_lock_bh(&pm->wake.lock);
pm->wake.count--;
pm->last_activity = jiffies;
spin_unlock_bh(&pm->wake.lock);
}

static inline void
mt76_connac_mutex_acquire(struct mt76_dev *dev, struct mt76_connac_pm *pm)
__acquires(&dev->mutex)
Expand Down

0 comments on commit 7f2bc8b

Please sign in to comment.