cregit-Linux how code gets into the kernel

Release 4.18 drivers/staging/vt6656/power.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
 * All rights reserved.
 *
 * File: power.c
 *
 * Purpose: Handles 802.11 power management functions
 *
 * Author: Lyndon Chen
 *
 * Date: July 17, 2002
 *
 * Functions:
 *      vnt_enable_power_saving - Enable Power Saving Mode
 *      PSvDiasblePowerSaving - Disable Power Saving Mode
 *      vnt_next_tbtt_wakeup - Decide if we need to wake up at next Beacon
 *
 * Revision History:
 *
 */

#include "mac.h"
#include "device.h"
#include "power.h"
#include "wcmd.h"
#include "rxtx.h"
#include "card.h"
#include "usbpipe.h"

/*
 *
 * Routine Description:
 * Enable hw power saving functions
 *
 * Return Value:
 *    None.
 *
 */


void vnt_enable_power_saving(struct vnt_private *priv, u16 listen_interval) { u16 aid = priv->current_aid | BIT(14) | BIT(15); /* set period of power up before TBTT */ vnt_mac_write_word(priv, MAC_REG_PWBT, C_PWBT); if (priv->op_mode != NL80211_IFTYPE_ADHOC) /* set AID */ vnt_mac_write_word(priv, MAC_REG_AIDATIM, aid); /* Warren:06-18-2004,the sequence must follow * PSEN->AUTOSLEEP->GO2DOZE */ /* enable power saving hw function */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_PSEN); /* Set AutoSleep */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCFG, PSCFG_AUTOSLEEP); /* Warren:MUST turn on this once before turn on AUTOSLEEP ,or the * AUTOSLEEP doesn't work */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_GO2DOZE); if (listen_interval >= 2) { /* clear always listen beacon */ vnt_mac_reg_bits_off(priv, MAC_REG_PSCTL, PSCTL_ALBCN); /* first time set listen next beacon */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_LNBCN); } else { /* always listen beacon */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_ALBCN); } dev_dbg(&priv->usb->dev, "PS:Power Saving Mode Enable...\n"); }

Contributors

PersonTokensPropCommitsCommitProp
Forest Bond8257.75%15.88%
Malcolm Priestley4632.39%952.94%
Philip Worrall64.23%211.76%
Simon Sandström21.41%15.88%
Andres More21.41%211.76%
Aybuke Ozdemir21.41%15.88%
Alejandro Emanuel Paredes21.41%15.88%
Total142100.00%17100.00%

/* * * Routine Description: * Disable hw power saving functions * * Return Value: * None. * */
void vnt_disable_power_saving(struct vnt_private *priv) { /* disable power saving hw function */ vnt_control_out(priv, MESSAGE_TYPE_DISABLE_PS, 0, 0, 0, NULL); /* clear AutoSleep */ vnt_mac_reg_bits_off(priv, MAC_REG_PSCFG, PSCFG_AUTOSLEEP); /* set always listen beacon */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_ALBCN); }

Contributors

PersonTokensPropCommitsCommitProp
Forest Bond3167.39%110.00%
Malcolm Priestley1021.74%660.00%
Philip Worrall36.52%110.00%
Andres More24.35%220.00%
Total46100.00%10100.00%

/* * * Routine Description: * Check if Next TBTT must wake up * * Return Value: * None. * */
int vnt_next_tbtt_wakeup(struct vnt_private *priv) { struct ieee80211_hw *hw = priv->hw; struct ieee80211_conf *conf = &hw->conf; int wake_up = false; if (conf->listen_interval > 1) { /* Turn on wake up to listen next beacon */ vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_LNBCN); wake_up = true; } return wake_up; }

Contributors

PersonTokensPropCommitsCommitProp
Malcolm Priestley3049.18%654.55%
Forest Bond2744.26%19.09%
Andres More34.92%327.27%
Philip Worrall11.64%19.09%
Total61100.00%11100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Forest Bond16058.18%13.45%
Malcolm Priestley8731.64%1758.62%
Philip Worrall134.73%26.90%
Andres More72.55%413.79%
Simon Sandström20.73%13.45%
Greg Kroah-Hartman20.73%26.90%
Alejandro Emanuel Paredes20.73%13.45%
Aybuke Ozdemir20.73%13.45%
Total275100.00%29100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.