Commit b9b1ce79 authored by Roland Vossen's avatar Roland Vossen Committed by Greg Kroah-Hartman

staging: brcm80211: removed redundant SI_INFO() macro from softmac

Reported-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Signed-off-by: default avatarRoland Vossen <rvossen@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 33988fc3
...@@ -485,7 +485,8 @@ static void ai_hwfixup(struct si_info *sii) ...@@ -485,7 +485,8 @@ static void ai_hwfixup(struct si_info *sii)
/* parse the enumeration rom to identify all cores */ /* parse the enumeration rom to identify all cores */
static void ai_scan(struct si_pub *sih, struct chipcregs *cc) static void ai_scan(struct si_pub *sih, struct chipcregs *cc)
{ {
struct si_info *sii = SI_INFO(sih); struct si_info *sii = (struct si_info *)sih;
u32 erombase, *eromptr, *eromlim; u32 erombase, *eromptr, *eromlim;
void *regs = cc; void *regs = cc;
...@@ -678,7 +679,7 @@ static void ai_scan(struct si_pub *sih, struct chipcregs *cc) ...@@ -678,7 +679,7 @@ static void ai_scan(struct si_pub *sih, struct chipcregs *cc)
*/ */
void *ai_setcoreidx(struct si_pub *sih, uint coreidx) void *ai_setcoreidx(struct si_pub *sih, uint coreidx)
{ {
struct si_info *sii = SI_INFO(sih); struct si_info *sii = (struct si_info *)sih;
u32 addr = sii->coresba[coreidx]; u32 addr = sii->coresba[coreidx];
u32 wrap = sii->wrapba[coreidx]; u32 wrap = sii->wrapba[coreidx];
...@@ -706,7 +707,7 @@ u32 ai_addrspace(struct si_pub *sih, uint asidx) ...@@ -706,7 +707,7 @@ u32 ai_addrspace(struct si_pub *sih, uint asidx)
struct si_info *sii; struct si_info *sii;
uint cidx; uint cidx;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
cidx = sii->curidx; cidx = sii->curidx;
if (asidx == 0) if (asidx == 0)
...@@ -726,7 +727,7 @@ u32 ai_addrspacesize(struct si_pub *sih, uint asidx) ...@@ -726,7 +727,7 @@ u32 ai_addrspacesize(struct si_pub *sih, uint asidx)
struct si_info *sii; struct si_info *sii;
uint cidx; uint cidx;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
cidx = sii->curidx; cidx = sii->curidx;
if (asidx == 0) if (asidx == 0)
...@@ -745,7 +746,7 @@ uint ai_flag(struct si_pub *sih) ...@@ -745,7 +746,7 @@ uint ai_flag(struct si_pub *sih)
struct si_info *sii; struct si_info *sii;
struct aidmp *ai; struct aidmp *ai;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
return R_REG(&ai->oobselouta30) & 0x1f; return R_REG(&ai->oobselouta30) & 0x1f;
...@@ -760,7 +761,7 @@ uint ai_corevendor(struct si_pub *sih) ...@@ -760,7 +761,7 @@ uint ai_corevendor(struct si_pub *sih)
struct si_info *sii; struct si_info *sii;
u32 cia; u32 cia;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
cia = sii->cia[sii->curidx]; cia = sii->cia[sii->curidx];
return (cia & CIA_MFG_MASK) >> CIA_MFG_SHIFT; return (cia & CIA_MFG_MASK) >> CIA_MFG_SHIFT;
} }
...@@ -770,7 +771,7 @@ uint ai_corerev(struct si_pub *sih) ...@@ -770,7 +771,7 @@ uint ai_corerev(struct si_pub *sih)
struct si_info *sii; struct si_info *sii;
u32 cib; u32 cib;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
cib = sii->cib[sii->curidx]; cib = sii->cib[sii->curidx];
return (cib & CIB_REV_MASK) >> CIB_REV_SHIFT; return (cib & CIB_REV_MASK) >> CIB_REV_SHIFT;
} }
...@@ -780,7 +781,7 @@ bool ai_iscoreup(struct si_pub *sih) ...@@ -780,7 +781,7 @@ bool ai_iscoreup(struct si_pub *sih)
struct si_info *sii; struct si_info *sii;
struct aidmp *ai; struct aidmp *ai;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
return (((R_REG(&ai->ioctrl) & (SICF_FGC | SICF_CLOCK_EN)) == return (((R_REG(&ai->ioctrl) & (SICF_FGC | SICF_CLOCK_EN)) ==
...@@ -794,7 +795,7 @@ void ai_core_cflags_wo(struct si_pub *sih, u32 mask, u32 val) ...@@ -794,7 +795,7 @@ void ai_core_cflags_wo(struct si_pub *sih, u32 mask, u32 val)
struct aidmp *ai; struct aidmp *ai;
u32 w; u32 w;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
...@@ -810,7 +811,7 @@ u32 ai_core_cflags(struct si_pub *sih, u32 mask, u32 val) ...@@ -810,7 +811,7 @@ u32 ai_core_cflags(struct si_pub *sih, u32 mask, u32 val)
struct aidmp *ai; struct aidmp *ai;
u32 w; u32 w;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
if (mask || val) { if (mask || val) {
...@@ -849,7 +850,7 @@ u32 ai_core_sflags(struct si_pub *sih, u32 mask, u32 val) ...@@ -849,7 +850,7 @@ u32 ai_core_sflags(struct si_pub *sih, u32 mask, u32 val)
struct aidmp *ai; struct aidmp *ai;
u32 w; u32 w;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
if (mask || val) { if (mask || val) {
...@@ -1184,7 +1185,7 @@ void ai_detach(struct si_pub *sih) ...@@ -1184,7 +1185,7 @@ void ai_detach(struct si_pub *sih)
struct si_pub *si_local = NULL; struct si_pub *si_local = NULL;
memcpy(&si_local, &sih, sizeof(struct si_pub **)); memcpy(&si_local, &sih, sizeof(struct si_pub **));
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (sii == NULL) if (sii == NULL)
return; return;
...@@ -1205,7 +1206,7 @@ ai_register_intr_callback(struct si_pub *sih, void *intrsoff_fn, ...@@ -1205,7 +1206,7 @@ ai_register_intr_callback(struct si_pub *sih, void *intrsoff_fn,
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
sii->intr_arg = intr_arg; sii->intr_arg = intr_arg;
sii->intrsoff_fn = (u32 (*)(void *)) intrsoff_fn; sii->intrsoff_fn = (u32 (*)(void *)) intrsoff_fn;
sii->intrsrestore_fn = (void (*) (void *, u32)) intrsrestore_fn; sii->intrsrestore_fn = (void (*) (void *, u32)) intrsrestore_fn;
...@@ -1220,7 +1221,7 @@ void ai_deregister_intr_callback(struct si_pub *sih) ...@@ -1220,7 +1221,7 @@ void ai_deregister_intr_callback(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
sii->intrsoff_fn = NULL; sii->intrsoff_fn = NULL;
} }
...@@ -1228,7 +1229,7 @@ uint ai_coreid(struct si_pub *sih) ...@@ -1228,7 +1229,7 @@ uint ai_coreid(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
return sii->coreid[sii->curidx]; return sii->coreid[sii->curidx];
} }
...@@ -1236,7 +1237,7 @@ uint ai_coreidx(struct si_pub *sih) ...@@ -1236,7 +1237,7 @@ uint ai_coreidx(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
return sii->curidx; return sii->curidx;
} }
...@@ -1252,7 +1253,7 @@ uint ai_findcoreidx(struct si_pub *sih, uint coreid, uint coreunit) ...@@ -1252,7 +1253,7 @@ uint ai_findcoreidx(struct si_pub *sih, uint coreid, uint coreunit)
uint found; uint found;
uint i; uint i;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
found = 0; found = 0;
...@@ -1290,7 +1291,7 @@ void *ai_switch_core(struct si_pub *sih, uint coreid, uint *origidx, ...@@ -1290,7 +1291,7 @@ void *ai_switch_core(struct si_pub *sih, uint coreid, uint *origidx,
void *cc; void *cc;
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (SI_FAST(sii)) { if (SI_FAST(sii)) {
/* Overloading the origidx variable to remember the coreid, /* Overloading the origidx variable to remember the coreid,
...@@ -1314,7 +1315,7 @@ void ai_restore_core(struct si_pub *sih, uint coreid, uint intr_val) ...@@ -1314,7 +1315,7 @@ void ai_restore_core(struct si_pub *sih, uint coreid, uint intr_val)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (SI_FAST(sii) if (SI_FAST(sii)
&& ((coreid == CC_CORE_ID) || (coreid == sih->buscoretype))) && ((coreid == CC_CORE_ID) || (coreid == sih->buscoretype)))
return; return;
...@@ -1325,7 +1326,7 @@ void ai_restore_core(struct si_pub *sih, uint coreid, uint intr_val) ...@@ -1325,7 +1326,7 @@ void ai_restore_core(struct si_pub *sih, uint coreid, uint intr_val)
void ai_write_wrapperreg(struct si_pub *sih, u32 offset, u32 val) void ai_write_wrapperreg(struct si_pub *sih, u32 offset, u32 val)
{ {
struct si_info *sii = SI_INFO(sih); struct si_info *sii = (struct si_info *)sih;
u32 *w = (u32 *) sii->curwrap; u32 *w = (u32 *) sii->curwrap;
W_REG(w + (offset / 4), val); W_REG(w + (offset / 4), val);
return; return;
...@@ -1351,7 +1352,7 @@ uint ai_corereg(struct si_pub *sih, uint coreidx, uint regoff, uint mask, ...@@ -1351,7 +1352,7 @@ uint ai_corereg(struct si_pub *sih, uint coreidx, uint regoff, uint mask,
bool fast = false; bool fast = false;
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (coreidx >= SI_MAXCORES) if (coreidx >= SI_MAXCORES)
return 0; return 0;
...@@ -1418,7 +1419,7 @@ void ai_core_disable(struct si_pub *sih, u32 bits) ...@@ -1418,7 +1419,7 @@ void ai_core_disable(struct si_pub *sih, u32 bits)
u32 dummy; u32 dummy;
struct aidmp *ai; struct aidmp *ai;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
...@@ -1445,7 +1446,7 @@ void ai_core_reset(struct si_pub *sih, u32 bits, u32 resetbits) ...@@ -1445,7 +1446,7 @@ void ai_core_reset(struct si_pub *sih, u32 bits, u32 resetbits)
struct aidmp *ai; struct aidmp *ai;
u32 dummy; u32 dummy;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
ai = sii->curwrap; ai = sii->curwrap;
/* /*
...@@ -1564,7 +1565,7 @@ void ai_clkctl_init(struct si_pub *sih) ...@@ -1564,7 +1565,7 @@ void ai_clkctl_init(struct si_pub *sih)
if (!CCCTL_ENAB(sih)) if (!CCCTL_ENAB(sih))
return; return;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
fast = SI_FAST(sii); fast = SI_FAST(sii);
if (!fast) { if (!fast) {
origidx = sii->curidx; origidx = sii->curidx;
...@@ -1602,7 +1603,7 @@ u16 ai_clkctl_fast_pwrup_delay(struct si_pub *sih) ...@@ -1602,7 +1603,7 @@ u16 ai_clkctl_fast_pwrup_delay(struct si_pub *sih)
uint intr_val = 0; uint intr_val = 0;
bool fast; bool fast;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (PMUCTL_ENAB(sih)) { if (PMUCTL_ENAB(sih)) {
INTR_OFF(sii, intr_val); INTR_OFF(sii, intr_val);
fpdelay = si_pmu_fast_pwrup_delay(sih); fpdelay = si_pmu_fast_pwrup_delay(sih);
...@@ -1645,7 +1646,7 @@ int ai_clkctl_xtal(struct si_pub *sih, uint what, bool on) ...@@ -1645,7 +1646,7 @@ int ai_clkctl_xtal(struct si_pub *sih, uint what, bool on)
struct si_info *sii; struct si_info *sii;
u32 in, out, outen; u32 in, out, outen;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
/* pcie core doesn't have any mapping to control the xtal pu */ /* pcie core doesn't have any mapping to control the xtal pu */
if (PCIE(sii)) if (PCIE(sii))
...@@ -1800,7 +1801,7 @@ bool ai_clkctl_cc(struct si_pub *sih, uint mode) ...@@ -1800,7 +1801,7 @@ bool ai_clkctl_cc(struct si_pub *sih, uint mode)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
/* chipcommon cores prior to rev6 don't support dynamic clock control */ /* chipcommon cores prior to rev6 don't support dynamic clock control */
if (sih->ccrev < 6) if (sih->ccrev < 6)
...@@ -1821,8 +1822,9 @@ int ai_devpath(struct si_pub *sih, char *path, int size) ...@@ -1821,8 +1822,9 @@ int ai_devpath(struct si_pub *sih, char *path, int size)
return -1; return -1;
slen = snprintf(path, (size_t) size, "pci/%u/%u/", slen = snprintf(path, (size_t) size, "pci/%u/%u/",
(((SI_INFO(sih))->pbus))->bus->number, ((struct si_info *)sih)->pbus->bus->number,
PCI_SLOT(((struct pci_dev *)((SI_INFO(sih))->pbus))->devfn)); PCI_SLOT(((struct pci_dev *)
(((struct si_info *)(sih))->pbus))->devfn));
if (slen < 0 || slen >= size) { if (slen < 0 || slen >= size) {
path[0] = '\0'; path[0] = '\0';
...@@ -1886,7 +1888,7 @@ bool ai_pci_war16165(struct si_pub *sih) ...@@ -1886,7 +1888,7 @@ bool ai_pci_war16165(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
return PCI(sii) && (sih->buscorerev <= 10); return PCI(sii) && (sih->buscorerev <= 10);
} }
...@@ -1895,7 +1897,7 @@ void ai_pci_up(struct si_pub *sih) ...@@ -1895,7 +1897,7 @@ void ai_pci_up(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (PCI_FORCEHT(sii)) if (PCI_FORCEHT(sii))
_ai_clkctl_cc(sii, CLK_FAST); _ai_clkctl_cc(sii, CLK_FAST);
...@@ -1910,7 +1912,7 @@ void ai_pci_sleep(struct si_pub *sih) ...@@ -1910,7 +1912,7 @@ void ai_pci_sleep(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
pcicore_sleep(sii->pch); pcicore_sleep(sii->pch);
} }
...@@ -1920,7 +1922,7 @@ void ai_pci_down(struct si_pub *sih) ...@@ -1920,7 +1922,7 @@ void ai_pci_down(struct si_pub *sih)
{ {
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
/* release FORCEHT since chip is going to "down" state */ /* release FORCEHT since chip is going to "down" state */
if (PCI_FORCEHT(sii)) if (PCI_FORCEHT(sii))
...@@ -1940,7 +1942,7 @@ void ai_pci_setup(struct si_pub *sih, uint coremask) ...@@ -1940,7 +1942,7 @@ void ai_pci_setup(struct si_pub *sih, uint coremask)
u32 siflag = 0, w; u32 siflag = 0, w;
uint idx = 0; uint idx = 0;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
if (PCI(sii)) { if (PCI(sii)) {
/* get current core index */ /* get current core index */
...@@ -1983,7 +1985,7 @@ int ai_pci_fixcfg(struct si_pub *sih) ...@@ -1983,7 +1985,7 @@ int ai_pci_fixcfg(struct si_pub *sih)
{ {
uint origidx; uint origidx;
void *regs = NULL; void *regs = NULL;
struct si_info *sii = SI_INFO(sih); struct si_info *sii = (struct si_info *)sih;
/* Fixup PI in SROM shadow area to enable the correct PCI core access */ /* Fixup PI in SROM shadow area to enable the correct PCI core access */
/* save the current index */ /* save the current index */
...@@ -2019,7 +2021,7 @@ void ai_chipcontrl_epa4331(struct si_pub *sih, bool on) ...@@ -2019,7 +2021,7 @@ void ai_chipcontrl_epa4331(struct si_pub *sih, bool on)
uint origidx; uint origidx;
u32 val; u32 val;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
origidx = ai_coreidx(sih); origidx = ai_coreidx(sih);
cc = (struct chipcregs *) ai_setcore(sih, CC_CORE_ID, 0); cc = (struct chipcregs *) ai_setcore(sih, CC_CORE_ID, 0);
...@@ -2051,7 +2053,7 @@ void ai_epa_4313war(struct si_pub *sih) ...@@ -2051,7 +2053,7 @@ void ai_epa_4313war(struct si_pub *sih)
struct chipcregs *cc; struct chipcregs *cc;
uint origidx; uint origidx;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
origidx = ai_coreidx(sih); origidx = ai_coreidx(sih);
cc = ai_setcore(sih, CC_CORE_ID, 0); cc = ai_setcore(sih, CC_CORE_ID, 0);
...@@ -2069,7 +2071,7 @@ bool ai_deviceremoved(struct si_pub *sih) ...@@ -2069,7 +2071,7 @@ bool ai_deviceremoved(struct si_pub *sih)
u32 w; u32 w;
struct si_info *sii; struct si_info *sii;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
pci_read_config_dword(sii->pbus, PCI_VENDOR_ID, &w); pci_read_config_dword(sii->pbus, PCI_VENDOR_ID, &w);
if ((w & 0xFFFF) != PCI_VENDOR_ID_BROADCOM) if ((w & 0xFFFF) != PCI_VENDOR_ID_BROADCOM)
...@@ -2089,7 +2091,7 @@ bool ai_is_sprom_available(struct si_pub *sih) ...@@ -2089,7 +2091,7 @@ bool ai_is_sprom_available(struct si_pub *sih)
if ((sih->cccaps & CC_CAP_SROM) == 0) if ((sih->cccaps & CC_CAP_SROM) == 0)
return false; return false;
sii = SI_INFO(sih); sii = (struct si_info *)sih;
origidx = sii->curidx; origidx = sii->curidx;
cc = ai_setcoreidx(sih, SI_CC_IDX); cc = ai_setcoreidx(sih, SI_CC_IDX);
sromctrl = R_REG(&cc->sromcontrol); sromctrl = R_REG(&cc->sromcontrol);
......
...@@ -243,9 +243,6 @@ ...@@ -243,9 +243,6 @@
#define BCM47162_CHIP_ID 47162 /* 47162 chipcommon chipid */ #define BCM47162_CHIP_ID 47162 /* 47162 chipcommon chipid */
#define BCM4748_CHIP_ID 0x4748 /* 4716 chipcommon chipid (OTP, RBBU) */ #define BCM4748_CHIP_ID 0x4748 /* 4716 chipcommon chipid (OTP, RBBU) */
#define SI_INFO(sih) ((struct si_info *)sih)
#define GOODCOREADDR(x, b) \ #define GOODCOREADDR(x, b) \
(((x) >= (b)) && ((x) < ((b) + SI_MAXCORES * SI_CORE_SIZE)) && \ (((x) >= (b)) && ((x) < ((b) + SI_MAXCORES * SI_CORE_SIZE)) && \
IS_ALIGNED((x), SI_CORE_SIZE)) IS_ALIGNED((x), SI_CORE_SIZE))
......
...@@ -784,7 +784,7 @@ void pcicore_down(struct pcicore_info *pi, int state) ...@@ -784,7 +784,7 @@ void pcicore_down(struct pcicore_info *pi, int state)
/* precondition: current core is sii->buscoretype */ /* precondition: current core is sii->buscoretype */
static void pcicore_fixcfg(struct pcicore_info *pi, u16 *reg16) static void pcicore_fixcfg(struct pcicore_info *pi, u16 *reg16)
{ {
struct si_info *sii = SI_INFO(pi->sih); struct si_info *sii = (struct si_info *)(pi->sih);
u16 val16; u16 val16;
uint pciidx; uint pciidx;
...@@ -814,7 +814,7 @@ void pcicore_pci_setup(struct pcicore_info *pi, struct sbpciregs *pciregs) ...@@ -814,7 +814,7 @@ void pcicore_pci_setup(struct pcicore_info *pi, struct sbpciregs *pciregs)
OR_REG(&pciregs->sbtopci2, SBTOPCI_PREF | SBTOPCI_BURST); OR_REG(&pciregs->sbtopci2, SBTOPCI_PREF | SBTOPCI_BURST);
if (SI_INFO(pi->sih)->pub.buscorerev >= 11) { if (((struct si_info *)(pi->sih))->pub.buscorerev >= 11) {
OR_REG(&pciregs->sbtopci2, SBTOPCI_RC_READMULTI); OR_REG(&pciregs->sbtopci2, SBTOPCI_RC_READMULTI);
w = R_REG(&pciregs->clkrun); w = R_REG(&pciregs->clkrun);
W_REG(&pciregs->clkrun, w | PCI_CLKRUN_DSBL); W_REG(&pciregs->clkrun, w | PCI_CLKRUN_DSBL);
......
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