brcmfmac: rename chip download functions
[deliverable/linux.git] / drivers / net / wireless / brcm80211 / brcmfmac / chip.c
CommitLineData
a83369b6 1/*
cb7cf7be 2 * Copyright (c) 2014 Broadcom Corporation
a83369b6
FL
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
cb7cf7be
AS
16#include <linux/kernel.h>
17#include <linux/delay.h>
18#include <linux/list.h>
61213be4 19#include <linux/ssb/ssb_regs.h>
99ba15cd 20#include <linux/bcma/bcma.h>
cb7cf7be 21#include <linux/bcma/bcma_regs.h>
61213be4 22
cb7cf7be
AS
23#include <defs.h>
24#include <soc.h>
a83369b6 25#include <brcm_hw_ids.h>
a83369b6 26#include <brcmu_utils.h>
cb7cf7be 27#include <chipcommon.h>
a8e8ed34 28#include "debug.h"
20c9c9bc 29#include "chip.h"
a83369b6 30
cb7cf7be
AS
31/* SOC Interconnect types (aka chip types) */
32#define SOCI_SB 0
33#define SOCI_AI 1
34
4aa2c47c
AS
35/* PL-368 DMP definitions */
36#define DMP_DESC_TYPE_MSK 0x0000000F
37#define DMP_DESC_EMPTY 0x00000000
38#define DMP_DESC_VALID 0x00000001
39#define DMP_DESC_COMPONENT 0x00000001
40#define DMP_DESC_MASTER_PORT 0x00000003
41#define DMP_DESC_ADDRESS 0x00000005
42#define DMP_DESC_ADDRSIZE_GT32 0x00000008
43#define DMP_DESC_EOT 0x0000000F
44
45#define DMP_COMP_DESIGNER 0xFFF00000
46#define DMP_COMP_DESIGNER_S 20
47#define DMP_COMP_PARTNUM 0x000FFF00
48#define DMP_COMP_PARTNUM_S 8
49#define DMP_COMP_CLASS 0x000000F0
50#define DMP_COMP_CLASS_S 4
51#define DMP_COMP_REVISION 0xFF000000
52#define DMP_COMP_REVISION_S 24
53#define DMP_COMP_NUM_SWRAP 0x00F80000
54#define DMP_COMP_NUM_SWRAP_S 19
55#define DMP_COMP_NUM_MWRAP 0x0007C000
56#define DMP_COMP_NUM_MWRAP_S 14
57#define DMP_COMP_NUM_SPORT 0x00003E00
58#define DMP_COMP_NUM_SPORT_S 9
59#define DMP_COMP_NUM_MPORT 0x000001F0
60#define DMP_COMP_NUM_MPORT_S 4
61
62#define DMP_MASTER_PORT_UID 0x0000FF00
63#define DMP_MASTER_PORT_UID_S 8
64#define DMP_MASTER_PORT_NUM 0x000000F0
65#define DMP_MASTER_PORT_NUM_S 4
66
67#define DMP_SLAVE_ADDR_BASE 0xFFFFF000
68#define DMP_SLAVE_ADDR_BASE_S 12
69#define DMP_SLAVE_PORT_NUM 0x00000F00
70#define DMP_SLAVE_PORT_NUM_S 8
71#define DMP_SLAVE_TYPE 0x000000C0
72#define DMP_SLAVE_TYPE_S 6
73#define DMP_SLAVE_TYPE_SLAVE 0
74#define DMP_SLAVE_TYPE_BRIDGE 1
75#define DMP_SLAVE_TYPE_SWRAP 2
76#define DMP_SLAVE_TYPE_MWRAP 3
77#define DMP_SLAVE_SIZE_TYPE 0x00000030
78#define DMP_SLAVE_SIZE_TYPE_S 4
79#define DMP_SLAVE_SIZE_4K 0
80#define DMP_SLAVE_SIZE_8K 1
81#define DMP_SLAVE_SIZE_16K 2
82#define DMP_SLAVE_SIZE_DESC 3
83
cb7cf7be
AS
84/* EROM CompIdentB */
85#define CIB_REV_MASK 0xff000000
86#define CIB_REV_SHIFT 24
87
88/* ARM CR4 core specific control flag bits */
89#define ARMCR4_BCMA_IOCTL_CPUHALT 0x0020
90
91/* D11 core specific control flag bits */
92#define D11_BCMA_IOCTL_PHYCLOCKEN 0x0004
93#define D11_BCMA_IOCTL_PHYRESET 0x0008
94
a83369b6
FL
95/* chip core base & ramsize */
96/* bcm4329 */
97/* SDIO device core, ID 0x829 */
98#define BCM4329_CORE_BUS_BASE 0x18011000
99/* internal memory core, ID 0x80e */
100#define BCM4329_CORE_SOCRAM_BASE 0x18003000
101/* ARM Cortex M3 core, ID 0x82a */
102#define BCM4329_CORE_ARM_BASE 0x18002000
103#define BCM4329_RAMSIZE 0x48000
369508c5 104/* bcm43143 */
369508c5
HM
105#define BCM43143_RAMSIZE 0x70000
106
cb7cf7be
AS
107#define CORE_SB(base, field) \
108 (base + SBCONFIGOFF + offsetof(struct sbconfig, field))
a83369b6 109#define SBCOREREV(sbidh) \
61213be4
FL
110 ((((sbidh) & SSB_IDHIGH_RCHI) >> SSB_IDHIGH_RCHI_SHIFT) | \
111 ((sbidh) & SSB_IDHIGH_RCLO))
a83369b6 112
cb7cf7be
AS
113struct sbconfig {
114 u32 PAD[2];
115 u32 sbipsflag; /* initiator port ocp slave flag */
116 u32 PAD[3];
117 u32 sbtpsflag; /* target port ocp slave flag */
118 u32 PAD[11];
119 u32 sbtmerrloga; /* (sonics >= 2.3) */
120 u32 PAD;
121 u32 sbtmerrlog; /* (sonics >= 2.3) */
122 u32 PAD[3];
123 u32 sbadmatch3; /* address match3 */
124 u32 PAD;
125 u32 sbadmatch2; /* address match2 */
126 u32 PAD;
127 u32 sbadmatch1; /* address match1 */
128 u32 PAD[7];
129 u32 sbimstate; /* initiator agent state */
130 u32 sbintvec; /* interrupt mask */
131 u32 sbtmstatelow; /* target state */
132 u32 sbtmstatehigh; /* target state */
133 u32 sbbwa0; /* bandwidth allocation table0 */
134 u32 PAD;
135 u32 sbimconfiglow; /* initiator configuration */
136 u32 sbimconfighigh; /* initiator configuration */
137 u32 sbadmatch0; /* address match0 */
138 u32 PAD;
139 u32 sbtmconfiglow; /* target configuration */
140 u32 sbtmconfighigh; /* target configuration */
141 u32 sbbconfig; /* broadcast configuration */
142 u32 PAD;
143 u32 sbbstate; /* broadcast state */
144 u32 PAD[3];
145 u32 sbactcnfg; /* activate configuration */
146 u32 PAD[3];
147 u32 sbflagst; /* current sbflags */
148 u32 PAD[3];
149 u32 sbidlow; /* identification */
150 u32 sbidhigh; /* identification */
151};
152
153struct brcmf_core_priv {
154 struct brcmf_core pub;
155 u32 wrapbase;
156 struct list_head list;
157 struct brcmf_chip_priv *chip;
158};
523894f2 159
cb7cf7be
AS
160struct brcmf_chip_priv {
161 struct brcmf_chip pub;
162 const struct brcmf_buscore_ops *ops;
163 void *ctx;
164 /* assured first core is chipcommon, second core is buscore */
165 struct list_head cores;
166 u16 num_cores;
167
168 bool (*iscoreup)(struct brcmf_core_priv *core);
169 void (*coredisable)(struct brcmf_core_priv *core, u32 prereset,
170 u32 reset);
171 void (*resetcore)(struct brcmf_core_priv *core, u32 prereset, u32 reset,
172 u32 postreset);
173};
174
175static void brcmf_chip_sb_corerev(struct brcmf_chip_priv *ci,
176 struct brcmf_core *core)
454d2a88
FL
177{
178 u32 regdata;
523894f2 179
cb7cf7be
AS
180 regdata = ci->ops->read32(ci->ctx, CORE_SB(core->base, sbidhigh));
181 core->rev = SBCOREREV(regdata);
454d2a88
FL
182}
183
cb7cf7be 184static bool brcmf_chip_sb_iscoreup(struct brcmf_core_priv *core)
d8f64a42 185{
cb7cf7be 186 struct brcmf_chip_priv *ci;
d8f64a42 187 u32 regdata;
cb7cf7be 188 u32 address;
d8f64a42 189
cb7cf7be
AS
190 ci = core->chip;
191 address = CORE_SB(core->pub.base, sbtmstatelow);
192 regdata = ci->ops->read32(ci->ctx, address);
61213be4
FL
193 regdata &= (SSB_TMSLOW_RESET | SSB_TMSLOW_REJECT |
194 SSB_IMSTATE_REJECT | SSB_TMSLOW_CLOCK);
20c9c9bc 195 return SSB_TMSLOW_CLOCK == regdata;
d8f64a42
FL
196}
197
cb7cf7be 198static bool brcmf_chip_ai_iscoreup(struct brcmf_core_priv *core)
6ca687d9 199{
cb7cf7be 200 struct brcmf_chip_priv *ci;
6ca687d9 201 u32 regdata;
6ca687d9
FL
202 bool ret;
203
cb7cf7be
AS
204 ci = core->chip;
205 regdata = ci->ops->read32(ci->ctx, core->wrapbase + BCMA_IOCTL);
6ca687d9
FL
206 ret = (regdata & (BCMA_IOCTL_FGC | BCMA_IOCTL_CLK)) == BCMA_IOCTL_CLK;
207
cb7cf7be 208 regdata = ci->ops->read32(ci->ctx, core->wrapbase + BCMA_RESET_CTL);
6ca687d9
FL
209 ret = ret && ((regdata & BCMA_RESET_CTL_RESET) == 0);
210
211 return ret;
212}
213
cb7cf7be
AS
214static void brcmf_chip_sb_coredisable(struct brcmf_core_priv *core,
215 u32 prereset, u32 reset)
2d4a9af1 216{
cb7cf7be
AS
217 struct brcmf_chip_priv *ci;
218 u32 val, base;
086a2e0a 219
cb7cf7be
AS
220 ci = core->chip;
221 base = core->pub.base;
222 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
223 if (val & SSB_TMSLOW_RESET)
2d4a9af1
FL
224 return;
225
cb7cf7be
AS
226 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
227 if ((val & SSB_TMSLOW_CLOCK) != 0) {
2d4a9af1
FL
228 /*
229 * set target reject and spin until busy is clear
230 * (preserve core-specific bits)
231 */
cb7cf7be
AS
232 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
233 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatelow),
234 val | SSB_TMSLOW_REJECT);
2d4a9af1 235
cb7cf7be 236 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
2d4a9af1 237 udelay(1);
cb7cf7be
AS
238 SPINWAIT((ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatehigh))
239 & SSB_TMSHIGH_BUSY), 100000);
240
241 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatehigh));
242 if (val & SSB_TMSHIGH_BUSY)
5e8149f5 243 brcmf_err("core state still busy\n");
2d4a9af1 244
cb7cf7be
AS
245 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbidlow));
246 if (val & SSB_IDLOW_INITIATOR) {
247 val = ci->ops->read32(ci->ctx,
248 CORE_SB(base, sbimstate));
249 val |= SSB_IMSTATE_REJECT;
250 ci->ops->write32(ci->ctx,
251 CORE_SB(base, sbimstate), val);
252 val = ci->ops->read32(ci->ctx,
253 CORE_SB(base, sbimstate));
2d4a9af1 254 udelay(1);
cb7cf7be
AS
255 SPINWAIT((ci->ops->read32(ci->ctx,
256 CORE_SB(base, sbimstate)) &
a39be27b 257 SSB_IMSTATE_BUSY), 100000);
2d4a9af1
FL
258 }
259
260 /* set reset and reject while enabling the clocks */
cb7cf7be
AS
261 val = SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
262 SSB_TMSLOW_REJECT | SSB_TMSLOW_RESET;
263 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatelow), val);
264 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
2d4a9af1
FL
265 udelay(10);
266
267 /* clear the initiator reject bit */
cb7cf7be
AS
268 val = ci->ops->read32(ci->ctx, CORE_SB(base, sbidlow));
269 if (val & SSB_IDLOW_INITIATOR) {
270 val = ci->ops->read32(ci->ctx,
271 CORE_SB(base, sbimstate));
272 val &= ~SSB_IMSTATE_REJECT;
273 ci->ops->write32(ci->ctx,
274 CORE_SB(base, sbimstate), val);
2d4a9af1
FL
275 }
276 }
277
278 /* leave reset and reject asserted */
cb7cf7be
AS
279 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatelow),
280 (SSB_TMSLOW_REJECT | SSB_TMSLOW_RESET));
2d4a9af1
FL
281 udelay(1);
282}
283
cb7cf7be
AS
284static void brcmf_chip_ai_coredisable(struct brcmf_core_priv *core,
285 u32 prereset, u32 reset)
086a2e0a 286{
cb7cf7be 287 struct brcmf_chip_priv *ci;
086a2e0a 288 u32 regdata;
086a2e0a 289
cb7cf7be 290 ci = core->chip;
53036261 291
ffa216bb 292 /* if core is already in reset, skip reset */
cb7cf7be 293 regdata = ci->ops->read32(ci->ctx, core->wrapbase + BCMA_RESET_CTL);
086a2e0a 294 if ((regdata & BCMA_RESET_CTL_RESET) != 0)
ffa216bb 295 goto in_reset_configure;
086a2e0a 296
53036261 297 /* configure reset */
cb7cf7be
AS
298 ci->ops->write32(ci->ctx, core->wrapbase + BCMA_IOCTL,
299 prereset | BCMA_IOCTL_FGC | BCMA_IOCTL_CLK);
300 ci->ops->read32(ci->ctx, core->wrapbase + BCMA_IOCTL);
086a2e0a 301
53036261 302 /* put in reset */
cb7cf7be
AS
303 ci->ops->write32(ci->ctx, core->wrapbase + BCMA_RESET_CTL,
304 BCMA_RESET_CTL_RESET);
1640f28f
FL
305 usleep_range(10, 20);
306
53036261 307 /* wait till reset is 1 */
cb7cf7be 308 SPINWAIT(ci->ops->read32(ci->ctx, core->wrapbase + BCMA_RESET_CTL) !=
53036261
HM
309 BCMA_RESET_CTL_RESET, 300);
310
ffa216bb 311in_reset_configure:
cb7cf7be
AS
312 /* in-reset configure */
313 ci->ops->write32(ci->ctx, core->wrapbase + BCMA_IOCTL,
314 reset | BCMA_IOCTL_FGC | BCMA_IOCTL_CLK);
315 ci->ops->read32(ci->ctx, core->wrapbase + BCMA_IOCTL);
086a2e0a
FL
316}
317
cb7cf7be
AS
318static void brcmf_chip_sb_resetcore(struct brcmf_core_priv *core, u32 prereset,
319 u32 reset, u32 postreset)
2bc78e10 320{
cb7cf7be 321 struct brcmf_chip_priv *ci;
2bc78e10 322 u32 regdata;
cb7cf7be 323 u32 base;
2bc78e10 324
cb7cf7be
AS
325 ci = core->chip;
326 base = core->pub.base;
2bc78e10
FL
327 /*
328 * Must do the disable sequence first to work for
329 * arbitrary current core state.
330 */
cb7cf7be 331 brcmf_chip_sb_coredisable(core, 0, 0);
2bc78e10
FL
332
333 /*
334 * Now do the initialization sequence.
335 * set reset while enabling the clock and
336 * forcing them on throughout the core
337 */
cb7cf7be
AS
338 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatelow),
339 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
340 SSB_TMSLOW_RESET);
341 regdata = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
2bc78e10
FL
342 udelay(1);
343
d77e70ff 344 /* clear any serror */
cb7cf7be 345 regdata = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatehigh));
61213be4 346 if (regdata & SSB_TMSHIGH_SERR)
cb7cf7be
AS
347 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatehigh), 0);
348
349 regdata = ci->ops->read32(ci->ctx, CORE_SB(base, sbimstate));
350 if (regdata & (SSB_IMSTATE_IBE | SSB_IMSTATE_TO)) {
351 regdata &= ~(SSB_IMSTATE_IBE | SSB_IMSTATE_TO);
352 ci->ops->write32(ci->ctx, CORE_SB(base, sbimstate), regdata);
353 }
2bc78e10
FL
354
355 /* clear reset and allow it to propagate throughout the core */
cb7cf7be
AS
356 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatelow),
357 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK);
358 regdata = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
2bc78e10
FL
359 udelay(1);
360
361 /* leave clock enabled */
cb7cf7be
AS
362 ci->ops->write32(ci->ctx, CORE_SB(base, sbtmstatelow),
363 SSB_TMSLOW_CLOCK);
364 regdata = ci->ops->read32(ci->ctx, CORE_SB(base, sbtmstatelow));
d77e70ff
FL
365 udelay(1);
366}
367
cb7cf7be
AS
368static void brcmf_chip_ai_resetcore(struct brcmf_core_priv *core, u32 prereset,
369 u32 reset, u32 postreset)
d77e70ff 370{
cb7cf7be
AS
371 struct brcmf_chip_priv *ci;
372 int count;
d77e70ff 373
cb7cf7be 374 ci = core->chip;
53036261 375
d77e70ff 376 /* must disable first to work for arbitrary current core state */
cb7cf7be 377 brcmf_chip_ai_coredisable(core, prereset, reset);
d77e70ff 378
cb7cf7be
AS
379 count = 0;
380 while (ci->ops->read32(ci->ctx, core->wrapbase + BCMA_RESET_CTL) &
53036261 381 BCMA_RESET_CTL_RESET) {
cb7cf7be
AS
382 ci->ops->write32(ci->ctx, core->wrapbase + BCMA_RESET_CTL, 0);
383 count++;
384 if (count > 50)
385 break;
53036261
HM
386 usleep_range(40, 60);
387 }
d77e70ff 388
cb7cf7be
AS
389 ci->ops->write32(ci->ctx, core->wrapbase + BCMA_IOCTL,
390 postreset | BCMA_IOCTL_CLK);
391 ci->ops->read32(ci->ctx, core->wrapbase + BCMA_IOCTL);
392}
393
394static char *brcmf_chip_name(uint chipid, char *buf, uint len)
395{
396 const char *fmt;
397
398 fmt = ((chipid > 0xa000) || (chipid < 0x4000)) ? "%d" : "%x";
399 snprintf(buf, len, fmt, chipid);
400 return buf;
401}
402
403static struct brcmf_core *brcmf_chip_add_core(struct brcmf_chip_priv *ci,
404 u16 coreid, u32 base,
405 u32 wrapbase)
406{
407 struct brcmf_core_priv *core;
408
409 core = kzalloc(sizeof(*core), GFP_KERNEL);
410 if (!core)
411 return ERR_PTR(-ENOMEM);
412
413 core->pub.id = coreid;
414 core->pub.base = base;
415 core->chip = ci;
416 core->wrapbase = wrapbase;
417
418 list_add_tail(&core->list, &ci->cores);
419 return &core->pub;
2bc78e10
FL
420}
421
1640f28f 422/* safety check for chipinfo */
cb7cf7be 423static int brcmf_chip_cores_check(struct brcmf_chip_priv *ci)
1640f28f 424{
cb7cf7be
AS
425 struct brcmf_core_priv *core;
426 bool need_socram = false;
427 bool has_socram = false;
5ded1c25 428 bool cpu_found = false;
cb7cf7be
AS
429 int idx = 1;
430
431 list_for_each_entry(core, &ci->cores, list) {
4aa2c47c
AS
432 brcmf_dbg(INFO, " [%-2d] core 0x%x:%-2d base 0x%08x wrap 0x%08x\n",
433 idx++, core->pub.id, core->pub.rev, core->pub.base,
434 core->wrapbase);
cb7cf7be
AS
435
436 switch (core->pub.id) {
437 case BCMA_CORE_ARM_CM3:
5ded1c25 438 cpu_found = true;
cb7cf7be
AS
439 need_socram = true;
440 break;
441 case BCMA_CORE_INTERNAL_MEM:
442 has_socram = true;
443 break;
444 case BCMA_CORE_ARM_CR4:
5ded1c25 445 cpu_found = true;
cb7cf7be
AS
446 if (ci->pub.rambase == 0) {
447 brcmf_err("RAM base not provided with ARM CR4 core\n");
448 return -ENOMEM;
449 }
450 break;
451 default:
452 break;
1640f28f
FL
453 }
454 }
455
5ded1c25
AS
456 if (!cpu_found) {
457 brcmf_err("CPU core not detected\n");
458 return -ENXIO;
459 }
cb7cf7be
AS
460 /* check RAM core presence for ARM CM3 core */
461 if (need_socram && !has_socram) {
462 brcmf_err("RAM core not provided with ARM CM3 core\n");
463 return -ENODEV;
1640f28f 464 }
5ded1c25
AS
465 if (!ci->pub.ramsize) {
466 brcmf_err("RAM size is undetermined\n");
467 return -ENOMEM;
468 }
1640f28f
FL
469 return 0;
470}
1640f28f 471
cb7cf7be 472static void brcmf_chip_get_raminfo(struct brcmf_chip_priv *ci)
a83369b6 473{
cb7cf7be 474 switch (ci->pub.chip) {
5779ae6a 475 case BRCM_CC_4329_CHIP_ID:
cb7cf7be
AS
476 ci->pub.ramsize = BCM4329_RAMSIZE;
477 break;
5779ae6a 478 case BRCM_CC_43143_CHIP_ID:
cb7cf7be
AS
479 ci->pub.ramsize = BCM43143_RAMSIZE;
480 break;
5779ae6a 481 case BRCM_CC_43241_CHIP_ID:
cb7cf7be
AS
482 ci->pub.ramsize = 0x90000;
483 break;
5779ae6a 484 case BRCM_CC_4330_CHIP_ID:
cb7cf7be
AS
485 ci->pub.ramsize = 0x48000;
486 break;
5779ae6a 487 case BRCM_CC_4334_CHIP_ID:
8b3a38da 488 case BRCM_CC_43340_CHIP_ID:
cb7cf7be
AS
489 ci->pub.ramsize = 0x80000;
490 break;
5779ae6a 491 case BRCM_CC_4335_CHIP_ID:
cb7cf7be
AS
492 ci->pub.ramsize = 0xc0000;
493 ci->pub.rambase = 0x180000;
494 break;
5779ae6a 495 case BRCM_CC_43362_CHIP_ID:
cb7cf7be
AS
496 ci->pub.ramsize = 0x3c000;
497 break;
9c510265
SAD
498 case BRCM_CC_4345_CHIP_ID:
499 ci->pub.ramsize = 0xc8000;
500 ci->pub.rambase = 0x198000;
501 break;
5779ae6a
HM
502 case BRCM_CC_4339_CHIP_ID:
503 case BRCM_CC_4354_CHIP_ID:
9e37f045
HM
504 case BRCM_CC_4356_CHIP_ID:
505 case BRCM_CC_43567_CHIP_ID:
506 case BRCM_CC_43569_CHIP_ID:
507 case BRCM_CC_43570_CHIP_ID:
cb7cf7be
AS
508 ci->pub.ramsize = 0xc0000;
509 ci->pub.rambase = 0x180000;
510 break;
9e37f045
HM
511 case BRCM_CC_43602_CHIP_ID:
512 ci->pub.ramsize = 0xf0000;
513 ci->pub.rambase = 0x180000;
514 break;
cb7cf7be
AS
515 default:
516 brcmf_err("unknown chip: %s\n", ci->pub.name);
517 break;
518 }
519}
520
4aa2c47c
AS
521static u32 brcmf_chip_dmp_get_desc(struct brcmf_chip_priv *ci, u32 *eromaddr,
522 u8 *type)
523{
524 u32 val;
525
526 /* read next descriptor */
527 val = ci->ops->read32(ci->ctx, *eromaddr);
528 *eromaddr += 4;
529
530 if (!type)
531 return val;
532
533 /* determine descriptor type */
534 *type = (val & DMP_DESC_TYPE_MSK);
535 if ((*type & ~DMP_DESC_ADDRSIZE_GT32) == DMP_DESC_ADDRESS)
536 *type = DMP_DESC_ADDRESS;
537
538 return val;
539}
540
541static int brcmf_chip_dmp_get_regaddr(struct brcmf_chip_priv *ci, u32 *eromaddr,
542 u32 *regbase, u32 *wrapbase)
543{
544 u8 desc;
545 u32 val;
546 u8 mpnum = 0;
547 u8 stype, sztype, wraptype;
548
549 *regbase = 0;
550 *wrapbase = 0;
551
552 val = brcmf_chip_dmp_get_desc(ci, eromaddr, &desc);
553 if (desc == DMP_DESC_MASTER_PORT) {
554 mpnum = (val & DMP_MASTER_PORT_NUM) >> DMP_MASTER_PORT_NUM_S;
555 wraptype = DMP_SLAVE_TYPE_MWRAP;
556 } else if (desc == DMP_DESC_ADDRESS) {
557 /* revert erom address */
558 *eromaddr -= 4;
559 wraptype = DMP_SLAVE_TYPE_SWRAP;
560 } else {
561 *eromaddr -= 4;
562 return -EILSEQ;
563 }
564
565 do {
566 /* locate address descriptor */
567 do {
568 val = brcmf_chip_dmp_get_desc(ci, eromaddr, &desc);
569 /* unexpected table end */
570 if (desc == DMP_DESC_EOT) {
571 *eromaddr -= 4;
572 return -EFAULT;
573 }
574 } while (desc != DMP_DESC_ADDRESS);
575
576 /* skip upper 32-bit address descriptor */
577 if (val & DMP_DESC_ADDRSIZE_GT32)
578 brcmf_chip_dmp_get_desc(ci, eromaddr, NULL);
579
580 sztype = (val & DMP_SLAVE_SIZE_TYPE) >> DMP_SLAVE_SIZE_TYPE_S;
581
582 /* next size descriptor can be skipped */
583 if (sztype == DMP_SLAVE_SIZE_DESC) {
584 val = brcmf_chip_dmp_get_desc(ci, eromaddr, NULL);
585 /* skip upper size descriptor if present */
586 if (val & DMP_DESC_ADDRSIZE_GT32)
587 brcmf_chip_dmp_get_desc(ci, eromaddr, NULL);
588 }
589
590 /* only look for 4K register regions */
591 if (sztype != DMP_SLAVE_SIZE_4K)
592 continue;
593
594 stype = (val & DMP_SLAVE_TYPE) >> DMP_SLAVE_TYPE_S;
595
596 /* only regular slave and wrapper */
597 if (*regbase == 0 && stype == DMP_SLAVE_TYPE_SLAVE)
598 *regbase = val & DMP_SLAVE_ADDR_BASE;
599 if (*wrapbase == 0 && stype == wraptype)
600 *wrapbase = val & DMP_SLAVE_ADDR_BASE;
601 } while (*regbase == 0 || *wrapbase == 0);
602
603 return 0;
604}
605
606static
607int brcmf_chip_dmp_erom_scan(struct brcmf_chip_priv *ci)
608{
609 struct brcmf_core *core;
610 u32 eromaddr;
611 u8 desc_type = 0;
612 u32 val;
613 u16 id;
614 u8 nmp, nsp, nmw, nsw, rev;
615 u32 base, wrap;
616 int err;
617
618 eromaddr = ci->ops->read32(ci->ctx, CORE_CC_REG(SI_ENUM_BASE, eromptr));
619
620 while (desc_type != DMP_DESC_EOT) {
621 val = brcmf_chip_dmp_get_desc(ci, &eromaddr, &desc_type);
622 if (!(val & DMP_DESC_VALID))
623 continue;
624
625 if (desc_type == DMP_DESC_EMPTY)
626 continue;
627
628 /* need a component descriptor */
629 if (desc_type != DMP_DESC_COMPONENT)
630 continue;
631
632 id = (val & DMP_COMP_PARTNUM) >> DMP_COMP_PARTNUM_S;
633
634 /* next descriptor must be component as well */
635 val = brcmf_chip_dmp_get_desc(ci, &eromaddr, &desc_type);
636 if (WARN_ON((val & DMP_DESC_TYPE_MSK) != DMP_DESC_COMPONENT))
637 return -EFAULT;
638
639 /* only look at cores with master port(s) */
640 nmp = (val & DMP_COMP_NUM_MPORT) >> DMP_COMP_NUM_MPORT_S;
641 nsp = (val & DMP_COMP_NUM_SPORT) >> DMP_COMP_NUM_SPORT_S;
642 nmw = (val & DMP_COMP_NUM_MWRAP) >> DMP_COMP_NUM_MWRAP_S;
643 nsw = (val & DMP_COMP_NUM_SWRAP) >> DMP_COMP_NUM_SWRAP_S;
644 rev = (val & DMP_COMP_REVISION) >> DMP_COMP_REVISION_S;
645
646 /* need core with ports */
647 if (nmw + nsw == 0)
648 continue;
649
650 /* try to obtain register address info */
651 err = brcmf_chip_dmp_get_regaddr(ci, &eromaddr, &base, &wrap);
652 if (err)
653 continue;
654
655 /* finally a core to be added */
656 core = brcmf_chip_add_core(ci, id, base, wrap);
657 if (IS_ERR(core))
658 return PTR_ERR(core);
659
660 core->rev = rev;
661 }
662
663 return 0;
664}
665
cb7cf7be
AS
666static int brcmf_chip_recognition(struct brcmf_chip_priv *ci)
667{
668 struct brcmf_core *core;
a83369b6 669 u32 regdata;
c805eeb7 670 u32 socitype;
a83369b6 671
069eddd9 672 /* Get CC core rev
c805eeb7 673 * Chipid is assume to be at offset 0 from SI_ENUM_BASE
a83369b6
FL
674 * For different chiptypes or old sdio hosts w/o chipcommon,
675 * other ways of recognition should be added here.
676 */
cb7cf7be
AS
677 regdata = ci->ops->read32(ci->ctx, CORE_CC_REG(SI_ENUM_BASE, chipid));
678 ci->pub.chip = regdata & CID_ID_MASK;
679 ci->pub.chiprev = (regdata & CID_REV_MASK) >> CID_REV_SHIFT;
c805eeb7 680 socitype = (regdata & CID_TYPE_MASK) >> CID_TYPE_SHIFT;
a83369b6 681
cb7cf7be
AS
682 brcmf_chip_name(ci->pub.chip, ci->pub.name, sizeof(ci->pub.name));
683 brcmf_dbg(INFO, "found %s chip: BCM%s, rev=%d\n",
684 socitype == SOCI_SB ? "SB" : "AXI", ci->pub.name,
685 ci->pub.chiprev);
a83369b6 686
c805eeb7 687 if (socitype == SOCI_SB) {
5779ae6a 688 if (ci->pub.chip != BRCM_CC_4329_CHIP_ID) {
c805eeb7
AS
689 brcmf_err("SB chip is not supported\n");
690 return -ENODEV;
691 }
cb7cf7be
AS
692 ci->iscoreup = brcmf_chip_sb_iscoreup;
693 ci->coredisable = brcmf_chip_sb_coredisable;
694 ci->resetcore = brcmf_chip_sb_resetcore;
695
696 core = brcmf_chip_add_core(ci, BCMA_CORE_CHIPCOMMON,
697 SI_ENUM_BASE, 0);
698 brcmf_chip_sb_corerev(ci, core);
699 core = brcmf_chip_add_core(ci, BCMA_CORE_SDIO_DEV,
700 BCM4329_CORE_BUS_BASE, 0);
701 brcmf_chip_sb_corerev(ci, core);
702 core = brcmf_chip_add_core(ci, BCMA_CORE_INTERNAL_MEM,
703 BCM4329_CORE_SOCRAM_BASE, 0);
704 brcmf_chip_sb_corerev(ci, core);
705 core = brcmf_chip_add_core(ci, BCMA_CORE_ARM_CM3,
706 BCM4329_CORE_ARM_BASE, 0);
707 brcmf_chip_sb_corerev(ci, core);
4aa2c47c
AS
708
709 core = brcmf_chip_add_core(ci, BCMA_CORE_80211, 0x18001000, 0);
710 brcmf_chip_sb_corerev(ci, core);
c805eeb7 711 } else if (socitype == SOCI_AI) {
cb7cf7be
AS
712 ci->iscoreup = brcmf_chip_ai_iscoreup;
713 ci->coredisable = brcmf_chip_ai_coredisable;
714 ci->resetcore = brcmf_chip_ai_resetcore;
c805eeb7 715
4aa2c47c 716 brcmf_chip_dmp_erom_scan(ci);
c805eeb7
AS
717 } else {
718 brcmf_err("chip backplane type %u is not supported\n",
719 socitype);
6ca687d9
FL
720 return -ENODEV;
721 }
722
cb7cf7be
AS
723 brcmf_chip_get_raminfo(ci);
724
725 return brcmf_chip_cores_check(ci);
a83369b6
FL
726}
727
cb7cf7be 728static void brcmf_chip_disable_arm(struct brcmf_chip_priv *chip, u16 id)
5b45e54e 729{
cb7cf7be
AS
730 struct brcmf_core *core;
731 struct brcmf_core_priv *cr4;
732 u32 val;
79ae3957 733
cb7cf7be
AS
734
735 core = brcmf_chip_get_core(&chip->pub, id);
736 if (!core)
737 return;
738
739 switch (id) {
740 case BCMA_CORE_ARM_CM3:
741 brcmf_chip_coredisable(core, 0, 0);
742 break;
743 case BCMA_CORE_ARM_CR4:
744 cr4 = container_of(core, struct brcmf_core_priv, pub);
745
746 /* clear all IOCTL bits except HALT bit */
747 val = chip->ops->read32(chip->ctx, cr4->wrapbase + BCMA_IOCTL);
748 val &= ARMCR4_BCMA_IOCTL_CPUHALT;
749 brcmf_chip_resetcore(core, val, ARMCR4_BCMA_IOCTL_CPUHALT,
750 ARMCR4_BCMA_IOCTL_CPUHALT);
751 break;
752 default:
753 brcmf_err("unknown id: %u\n", id);
754 break;
755 }
756}
757
758static int brcmf_chip_setup(struct brcmf_chip_priv *chip)
759{
760 struct brcmf_chip *pub;
761 struct brcmf_core_priv *cc;
cb7cf7be
AS
762 u32 base;
763 u32 val;
764 int ret = 0;
765
766 pub = &chip->pub;
767 cc = list_first_entry(&chip->cores, struct brcmf_core_priv, list);
768 base = cc->pub.base;
5b45e54e
FL
769
770 /* get chipcommon capabilites */
cb7cf7be
AS
771 pub->cc_caps = chip->ops->read32(chip->ctx,
772 CORE_CC_REG(base, capabilities));
5b45e54e
FL
773
774 /* get pmu caps & rev */
cb7cf7be
AS
775 if (pub->cc_caps & CC_CAP_PMU) {
776 val = chip->ops->read32(chip->ctx,
777 CORE_CC_REG(base, pmucapabilities));
778 pub->pmurev = val & PCAP_REV_MASK;
779 pub->pmucaps = val;
5b45e54e
FL
780 }
781
4aa2c47c
AS
782 brcmf_dbg(INFO, "ccrev=%d, pmurev=%d, pmucaps=0x%x\n",
783 cc->pub.rev, pub->pmurev, pub->pmucaps);
cb7cf7be
AS
784
785 /* execute bus core specific setup */
786 if (chip->ops->setup)
787 ret = chip->ops->setup(chip->ctx, pub);
966414da
FL
788
789 /*
790 * Make sure any on-chip ARM is off (in case strapping is wrong),
791 * or downloaded code was already running.
792 */
cb7cf7be
AS
793 brcmf_chip_disable_arm(chip, BCMA_CORE_ARM_CM3);
794 brcmf_chip_disable_arm(chip, BCMA_CORE_ARM_CR4);
795 return ret;
5b45e54e
FL
796}
797
cb7cf7be
AS
798struct brcmf_chip *brcmf_chip_attach(void *ctx,
799 const struct brcmf_buscore_ops *ops)
a83369b6 800{
cb7cf7be
AS
801 struct brcmf_chip_priv *chip;
802 int err = 0;
803
804 if (WARN_ON(!ops->read32))
805 err = -EINVAL;
806 if (WARN_ON(!ops->write32))
807 err = -EINVAL;
808 if (WARN_ON(!ops->prepare))
809 err = -EINVAL;
d380ebc9 810 if (WARN_ON(!ops->activate))
cb7cf7be
AS
811 err = -EINVAL;
812 if (err < 0)
813 return ERR_PTR(-EINVAL);
814
815 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
816 if (!chip)
817 return ERR_PTR(-ENOMEM);
818
819 INIT_LIST_HEAD(&chip->cores);
820 chip->num_cores = 0;
821 chip->ops = ops;
822 chip->ctx = ctx;
823
824 err = ops->prepare(ctx);
825 if (err < 0)
826 goto fail;
827
828 err = brcmf_chip_recognition(chip);
829 if (err < 0)
830 goto fail;
831
832 err = brcmf_chip_setup(chip);
833 if (err < 0)
834 goto fail;
835
836 return &chip->pub;
837
838fail:
839 brcmf_chip_detach(&chip->pub);
840 return ERR_PTR(err);
841}
a97e4fc5 842
cb7cf7be
AS
843void brcmf_chip_detach(struct brcmf_chip *pub)
844{
845 struct brcmf_chip_priv *chip;
846 struct brcmf_core_priv *core;
847 struct brcmf_core_priv *tmp;
848
849 chip = container_of(pub, struct brcmf_chip_priv, pub);
850 list_for_each_entry_safe(core, tmp, &chip->cores, list) {
851 list_del(&core->list);
852 kfree(core);
853 }
854 kfree(chip);
855}
a97e4fc5 856
cb7cf7be
AS
857struct brcmf_core *brcmf_chip_get_core(struct brcmf_chip *pub, u16 coreid)
858{
859 struct brcmf_chip_priv *chip;
860 struct brcmf_core_priv *core;
a83369b6 861
cb7cf7be
AS
862 chip = container_of(pub, struct brcmf_chip_priv, pub);
863 list_for_each_entry(core, &chip->cores, list)
864 if (core->pub.id == coreid)
865 return &core->pub;
e63ac6b8 866
cb7cf7be
AS
867 return NULL;
868}
a83369b6 869
cb7cf7be
AS
870struct brcmf_core *brcmf_chip_get_chipcommon(struct brcmf_chip *pub)
871{
872 struct brcmf_chip_priv *chip;
873 struct brcmf_core_priv *cc;
874
875 chip = container_of(pub, struct brcmf_chip_priv, pub);
876 cc = list_first_entry(&chip->cores, struct brcmf_core_priv, list);
877 if (WARN_ON(!cc || cc->pub.id != BCMA_CORE_CHIPCOMMON))
878 return brcmf_chip_get_core(pub, BCMA_CORE_CHIPCOMMON);
879 return &cc->pub;
880}
5b45e54e 881
cb7cf7be
AS
882bool brcmf_chip_iscoreup(struct brcmf_core *pub)
883{
884 struct brcmf_core_priv *core;
960908dc 885
cb7cf7be
AS
886 core = container_of(pub, struct brcmf_core_priv, pub);
887 return core->chip->iscoreup(core);
888}
a97e4fc5 889
cb7cf7be
AS
890void brcmf_chip_coredisable(struct brcmf_core *pub, u32 prereset, u32 reset)
891{
892 struct brcmf_core_priv *core;
893
894 core = container_of(pub, struct brcmf_core_priv, pub);
895 core->chip->coredisable(core, prereset, reset);
a83369b6 896}
a8a6c045 897
cb7cf7be
AS
898void brcmf_chip_resetcore(struct brcmf_core *pub, u32 prereset, u32 reset,
899 u32 postreset)
a8a6c045 900{
cb7cf7be 901 struct brcmf_core_priv *core;
a8a6c045 902
cb7cf7be
AS
903 core = container_of(pub, struct brcmf_core_priv, pub);
904 core->chip->resetcore(core, prereset, reset, postreset);
a8a6c045 905}
e12afb6c 906
069eddd9 907static void
d380ebc9 908brcmf_chip_cm3_set_passive(struct brcmf_chip_priv *chip)
069eddd9 909{
cb7cf7be
AS
910 struct brcmf_core *core;
911
912 brcmf_chip_disable_arm(chip, BCMA_CORE_ARM_CM3);
913 core = brcmf_chip_get_core(&chip->pub, BCMA_CORE_80211);
914 brcmf_chip_resetcore(core, D11_BCMA_IOCTL_PHYRESET |
915 D11_BCMA_IOCTL_PHYCLOCKEN,
916 D11_BCMA_IOCTL_PHYCLOCKEN,
917 D11_BCMA_IOCTL_PHYCLOCKEN);
918 core = brcmf_chip_get_core(&chip->pub, BCMA_CORE_INTERNAL_MEM);
919 brcmf_chip_resetcore(core, 0, 0, 0);
069eddd9
FL
920}
921
d380ebc9 922static bool brcmf_chip_cm3_set_active(struct brcmf_chip_priv *chip)
069eddd9 923{
cb7cf7be 924 struct brcmf_core *core;
069eddd9 925
cb7cf7be
AS
926 core = brcmf_chip_get_core(&chip->pub, BCMA_CORE_INTERNAL_MEM);
927 if (!brcmf_chip_iscoreup(core)) {
069eddd9
FL
928 brcmf_err("SOCRAM core is down after reset?\n");
929 return false;
930 }
931
d380ebc9 932 chip->ops->activate(chip->ctx, &chip->pub, 0);
069eddd9 933
cb7cf7be
AS
934 core = brcmf_chip_get_core(&chip->pub, BCMA_CORE_ARM_CM3);
935 brcmf_chip_resetcore(core, 0, 0, 0);
1640f28f
FL
936
937 return true;
938}
939
940static inline void
d380ebc9 941brcmf_chip_cr4_set_passive(struct brcmf_chip_priv *chip)
1640f28f 942{
cb7cf7be 943 struct brcmf_core *core;
53036261 944
cb7cf7be 945 brcmf_chip_disable_arm(chip, BCMA_CORE_ARM_CR4);
53036261 946
cb7cf7be
AS
947 core = brcmf_chip_get_core(&chip->pub, BCMA_CORE_80211);
948 brcmf_chip_resetcore(core, D11_BCMA_IOCTL_PHYRESET |
949 D11_BCMA_IOCTL_PHYCLOCKEN,
950 D11_BCMA_IOCTL_PHYCLOCKEN,
951 D11_BCMA_IOCTL_PHYCLOCKEN);
1640f28f
FL
952}
953
d380ebc9 954static bool brcmf_chip_cr4_set_active(struct brcmf_chip_priv *chip, u32 rstvec)
1640f28f 955{
cb7cf7be 956 struct brcmf_core *core;
1640f28f 957
d380ebc9 958 chip->ops->activate(chip->ctx, &chip->pub, rstvec);
1640f28f
FL
959
960 /* restore ARM */
cb7cf7be
AS
961 core = brcmf_chip_get_core(&chip->pub, BCMA_CORE_ARM_CR4);
962 brcmf_chip_resetcore(core, ARMCR4_BCMA_IOCTL_CPUHALT, 0, 0);
069eddd9
FL
963
964 return true;
965}
966
d380ebc9 967void brcmf_chip_set_passive(struct brcmf_chip *pub)
069eddd9 968{
cb7cf7be
AS
969 struct brcmf_chip_priv *chip;
970 struct brcmf_core *arm;
971
972 brcmf_dbg(TRACE, "Enter\n");
1640f28f 973
cb7cf7be 974 chip = container_of(pub, struct brcmf_chip_priv, pub);
2da5cb29 975 arm = brcmf_chip_get_core(pub, BCMA_CORE_ARM_CR4);
cb7cf7be 976 if (arm) {
d380ebc9 977 brcmf_chip_cr4_set_passive(chip);
1640f28f
FL
978 return;
979 }
980
d380ebc9 981 brcmf_chip_cm3_set_passive(chip);
cb7cf7be
AS
982}
983
d380ebc9 984bool brcmf_chip_set_active(struct brcmf_chip *pub, u32 rstvec)
cb7cf7be
AS
985{
986 struct brcmf_chip_priv *chip;
987 struct brcmf_core *arm;
988
989 brcmf_dbg(TRACE, "Enter\n");
990
991 chip = container_of(pub, struct brcmf_chip_priv, pub);
2da5cb29 992 arm = brcmf_chip_get_core(pub, BCMA_CORE_ARM_CR4);
cb7cf7be 993 if (arm)
d380ebc9 994 return brcmf_chip_cr4_set_active(chip, rstvec);
cb7cf7be 995
d380ebc9 996 return brcmf_chip_cm3_set_active(chip);
069eddd9
FL
997}
998
cb7cf7be 999bool brcmf_chip_sr_capable(struct brcmf_chip *pub)
069eddd9 1000{
cb7cf7be
AS
1001 u32 base, addr, reg, pmu_cc3_mask = ~0;
1002 struct brcmf_chip_priv *chip;
1640f28f 1003
cb7cf7be
AS
1004 brcmf_dbg(TRACE, "Enter\n");
1005
1006 /* old chips with PMU version less than 17 don't support save restore */
1007 if (pub->pmurev < 17)
1008 return false;
1640f28f 1009
cb7cf7be
AS
1010 base = brcmf_chip_get_chipcommon(pub)->base;
1011 chip = container_of(pub, struct brcmf_chip_priv, pub);
1012
1013 switch (pub->chip) {
5779ae6a 1014 case BRCM_CC_4354_CHIP_ID:
a797ca1e
FL
1015 /* explicitly check SR engine enable bit */
1016 pmu_cc3_mask = BIT(2);
1017 /* fall-through */
5779ae6a
HM
1018 case BRCM_CC_43241_CHIP_ID:
1019 case BRCM_CC_4335_CHIP_ID:
1020 case BRCM_CC_4339_CHIP_ID:
cb7cf7be
AS
1021 /* read PMU chipcontrol register 3 */
1022 addr = CORE_CC_REG(base, chipcontrol_addr);
1023 chip->ops->write32(chip->ctx, addr, 3);
1024 addr = CORE_CC_REG(base, chipcontrol_data);
1025 reg = chip->ops->read32(chip->ctx, addr);
1026 return (reg & pmu_cc3_mask) != 0;
1027 default:
1028 addr = CORE_CC_REG(base, pmucapabilities_ext);
1029 reg = chip->ops->read32(chip->ctx, addr);
1030 if ((reg & PCAPEXT_SR_SUPPORTED_MASK) == 0)
1031 return false;
1032
1033 addr = CORE_CC_REG(base, retention_ctl);
1034 reg = chip->ops->read32(chip->ctx, addr);
1035 return (reg & (PMU_RCTL_MACPHY_DISABLE_MASK |
1036 PMU_RCTL_LOGIC_DISABLE_MASK)) == 0;
1037 }
069eddd9 1038}
This page took 0.286899 seconds and 5 git commands to generate.