blob: 1b7b17284f5da453895a032d16d20bab810c5d96 [file] [log] [blame]
Arend van Spriel5b435de2011-10-05 13:19:03 +02001/*
2 * Copyright (c) 2010 Broadcom Corporation
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 *
16 * File contents: support functions for PCI/PCIe
17 */
18
Joe Perches8505a7e2011-11-13 11:41:04 -080019#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Arend van Spriel5b435de2011-10-05 13:19:03 +020021#include <linux/delay.h>
22#include <linux/pci.h>
23
24#include <defs.h>
25#include <chipcommon.h>
26#include <brcmu_utils.h>
27#include <brcm_hw_ids.h>
28#include <soc.h>
29#include "types.h"
30#include "pub.h"
31#include "pmu.h"
Arend van Spriel5b435de2011-10-05 13:19:03 +020032#include "nicpci.h"
33#include "aiutils.h"
34
35/* slow_clk_ctl */
36 /* slow clock source mask */
37#define SCC_SS_MASK 0x00000007
38 /* source of slow clock is LPO */
39#define SCC_SS_LPO 0x00000000
40 /* source of slow clock is crystal */
41#define SCC_SS_XTAL 0x00000001
42 /* source of slow clock is PCI */
43#define SCC_SS_PCI 0x00000002
44 /* LPOFreqSel, 1: 160Khz, 0: 32KHz */
45#define SCC_LF 0x00000200
46 /* LPOPowerDown, 1: LPO is disabled, 0: LPO is enabled */
47#define SCC_LP 0x00000400
48 /* ForceSlowClk, 1: sb/cores running on slow clock, 0: power logic control */
49#define SCC_FS 0x00000800
50 /* IgnorePllOffReq, 1/0:
51 * power logic ignores/honors PLL clock disable requests from core
52 */
53#define SCC_IP 0x00001000
54 /* XtalControlEn, 1/0:
55 * power logic does/doesn't disable crystal when appropriate
56 */
57#define SCC_XC 0x00002000
58 /* XtalPU (RO), 1/0: crystal running/disabled */
59#define SCC_XP 0x00004000
60 /* ClockDivider (SlowClk = 1/(4+divisor)) */
61#define SCC_CD_MASK 0xffff0000
62#define SCC_CD_SHIFT 16
63
64/* system_clk_ctl */
65 /* ILPen: Enable Idle Low Power */
66#define SYCC_IE 0x00000001
67 /* ALPen: Enable Active Low Power */
68#define SYCC_AE 0x00000002
69 /* ForcePLLOn */
70#define SYCC_FP 0x00000004
71 /* Force ALP (or HT if ALPen is not set */
72#define SYCC_AR 0x00000008
73 /* Force HT */
74#define SYCC_HR 0x00000010
75 /* ClkDiv (ILP = 1/(4 * (divisor + 1)) */
76#define SYCC_CD_MASK 0xffff0000
77#define SYCC_CD_SHIFT 16
78
79#define CST4329_SPROM_OTP_SEL_MASK 0x00000003
80 /* OTP is powered up, use def. CIS, no SPROM */
81#define CST4329_DEFCIS_SEL 0
82 /* OTP is powered up, SPROM is present */
83#define CST4329_SPROM_SEL 1
84 /* OTP is powered up, no SPROM */
85#define CST4329_OTP_SEL 2
86 /* OTP is powered down, SPROM is present */
87#define CST4329_OTP_PWRDN 3
88
89#define CST4329_SPI_SDIO_MODE_MASK 0x00000004
90#define CST4329_SPI_SDIO_MODE_SHIFT 2
91
92/* 43224 chip-specific ChipControl register bits */
93#define CCTRL43224_GPIO_TOGGLE 0x8000
94 /* 12 mA drive strength */
95#define CCTRL_43224A0_12MA_LED_DRIVE 0x00F000F0
96 /* 12 mA drive strength for later 43224s */
97#define CCTRL_43224B0_12MA_LED_DRIVE 0xF0
98
99/* 43236 Chip specific ChipStatus register bits */
100#define CST43236_SFLASH_MASK 0x00000040
101#define CST43236_OTP_MASK 0x00000080
102#define CST43236_HSIC_MASK 0x00000100 /* USB/HSIC */
103#define CST43236_BP_CLK 0x00000200 /* 120/96Mbps */
104#define CST43236_BOOT_MASK 0x00001800
105#define CST43236_BOOT_SHIFT 11
106#define CST43236_BOOT_FROM_SRAM 0 /* boot from SRAM, ARM in reset */
107#define CST43236_BOOT_FROM_ROM 1 /* boot from ROM */
108#define CST43236_BOOT_FROM_FLASH 2 /* boot from FLASH */
109#define CST43236_BOOT_FROM_INVALID 3
110
111/* 4331 chip-specific ChipControl register bits */
112 /* 0 disable */
113#define CCTRL4331_BT_COEXIST (1<<0)
114 /* 0 SECI is disabled (JTAG functional) */
115#define CCTRL4331_SECI (1<<1)
116 /* 0 disable */
117#define CCTRL4331_EXT_LNA (1<<2)
118 /* sprom/gpio13-15 mux */
119#define CCTRL4331_SPROM_GPIO13_15 (1<<3)
120 /* 0 ext pa disable, 1 ext pa enabled */
121#define CCTRL4331_EXTPA_EN (1<<4)
122 /* set drive out GPIO_CLK on sprom_cs pin */
123#define CCTRL4331_GPIOCLK_ON_SPROMCS (1<<5)
124 /* use sprom_cs pin as PCIE mdio interface */
125#define CCTRL4331_PCIE_MDIO_ON_SPROMCS (1<<6)
126 /* aband extpa will be at gpio2/5 and sprom_dout */
127#define CCTRL4331_EXTPA_ON_GPIO2_5 (1<<7)
128 /* override core control on pipe_AuxClkEnable */
129#define CCTRL4331_OVR_PIPEAUXCLKEN (1<<8)
130 /* override core control on pipe_AuxPowerDown */
131#define CCTRL4331_OVR_PIPEAUXPWRDOWN (1<<9)
132 /* pcie_auxclkenable */
133#define CCTRL4331_PCIE_AUXCLKEN (1<<10)
134 /* pcie_pipe_pllpowerdown */
135#define CCTRL4331_PCIE_PIPE_PLLDOWN (1<<11)
136 /* enable bt_shd0 at gpio4 */
137#define CCTRL4331_BT_SHD0_ON_GPIO4 (1<<16)
138 /* enable bt_shd1 at gpio5 */
139#define CCTRL4331_BT_SHD1_ON_GPIO5 (1<<17)
140
141/* 4331 Chip specific ChipStatus register bits */
142 /* crystal frequency 20/40Mhz */
143#define CST4331_XTAL_FREQ 0x00000001
144#define CST4331_SPROM_PRESENT 0x00000002
145#define CST4331_OTP_PRESENT 0x00000004
146#define CST4331_LDO_RF 0x00000008
147#define CST4331_LDO_PAR 0x00000010
148
149/* 4319 chip-specific ChipStatus register bits */
150#define CST4319_SPI_CPULESSUSB 0x00000001
151#define CST4319_SPI_CLK_POL 0x00000002
152#define CST4319_SPI_CLK_PH 0x00000008
153 /* gpio [7:6], SDIO CIS selection */
154#define CST4319_SPROM_OTP_SEL_MASK 0x000000c0
155#define CST4319_SPROM_OTP_SEL_SHIFT 6
156 /* use default CIS, OTP is powered up */
157#define CST4319_DEFCIS_SEL 0x00000000
158 /* use SPROM, OTP is powered up */
159#define CST4319_SPROM_SEL 0x00000040
160 /* use OTP, OTP is powered up */
161#define CST4319_OTP_SEL 0x00000080
162 /* use SPROM, OTP is powered down */
163#define CST4319_OTP_PWRDN 0x000000c0
164 /* gpio [8], sdio/usb mode */
165#define CST4319_SDIO_USB_MODE 0x00000100
166#define CST4319_REMAP_SEL_MASK 0x00000600
167#define CST4319_ILPDIV_EN 0x00000800
168#define CST4319_XTAL_PD_POL 0x00001000
169#define CST4319_LPO_SEL 0x00002000
170#define CST4319_RES_INIT_MODE 0x0000c000
171 /* PALDO is configured with external PNP */
172#define CST4319_PALDO_EXTPNP 0x00010000
173#define CST4319_CBUCK_MODE_MASK 0x00060000
174#define CST4319_CBUCK_MODE_BURST 0x00020000
175#define CST4319_CBUCK_MODE_LPBURST 0x00060000
176#define CST4319_RCAL_VALID 0x01000000
177#define CST4319_RCAL_VALUE_MASK 0x3e000000
178#define CST4319_RCAL_VALUE_SHIFT 25
179
180/* 4336 chip-specific ChipStatus register bits */
181#define CST4336_SPI_MODE_MASK 0x00000001
182#define CST4336_SPROM_PRESENT 0x00000002
183#define CST4336_OTP_PRESENT 0x00000004
184#define CST4336_ARMREMAP_0 0x00000008
185#define CST4336_ILPDIV_EN_MASK 0x00000010
186#define CST4336_ILPDIV_EN_SHIFT 4
187#define CST4336_XTAL_PD_POL_MASK 0x00000020
188#define CST4336_XTAL_PD_POL_SHIFT 5
189#define CST4336_LPO_SEL_MASK 0x00000040
190#define CST4336_LPO_SEL_SHIFT 6
191#define CST4336_RES_INIT_MODE_MASK 0x00000180
192#define CST4336_RES_INIT_MODE_SHIFT 7
193#define CST4336_CBUCK_MODE_MASK 0x00000600
194#define CST4336_CBUCK_MODE_SHIFT 9
195
196/* 4313 chip-specific ChipStatus register bits */
197#define CST4313_SPROM_PRESENT 1
198#define CST4313_OTP_PRESENT 2
199#define CST4313_SPROM_OTP_SEL_MASK 0x00000002
200#define CST4313_SPROM_OTP_SEL_SHIFT 0
201
202/* 4313 Chip specific ChipControl register bits */
203 /* 12 mA drive strengh for later 4313 */
204#define CCTRL_4313_12MA_LED_DRIVE 0x00000007
205
206/* Manufacturer Ids */
207#define MFGID_ARM 0x43b
208#define MFGID_BRCM 0x4bf
209#define MFGID_MIPS 0x4a7
210
211/* Enumeration ROM registers */
212#define ER_EROMENTRY 0x000
213#define ER_REMAPCONTROL 0xe00
214#define ER_REMAPSELECT 0xe04
215#define ER_MASTERSELECT 0xe10
216#define ER_ITCR 0xf00
217#define ER_ITIP 0xf04
218
219/* Erom entries */
220#define ER_TAG 0xe
221#define ER_TAG1 0x6
222#define ER_VALID 1
223#define ER_CI 0
224#define ER_MP 2
225#define ER_ADD 4
226#define ER_END 0xe
227#define ER_BAD 0xffffffff
228
229/* EROM CompIdentA */
230#define CIA_MFG_MASK 0xfff00000
231#define CIA_MFG_SHIFT 20
232#define CIA_CID_MASK 0x000fff00
233#define CIA_CID_SHIFT 8
234#define CIA_CCL_MASK 0x000000f0
235#define CIA_CCL_SHIFT 4
236
237/* EROM CompIdentB */
238#define CIB_REV_MASK 0xff000000
239#define CIB_REV_SHIFT 24
240#define CIB_NSW_MASK 0x00f80000
241#define CIB_NSW_SHIFT 19
242#define CIB_NMW_MASK 0x0007c000
243#define CIB_NMW_SHIFT 14
244#define CIB_NSP_MASK 0x00003e00
245#define CIB_NSP_SHIFT 9
246#define CIB_NMP_MASK 0x000001f0
247#define CIB_NMP_SHIFT 4
248
249/* EROM AddrDesc */
250#define AD_ADDR_MASK 0xfffff000
251#define AD_SP_MASK 0x00000f00
252#define AD_SP_SHIFT 8
253#define AD_ST_MASK 0x000000c0
254#define AD_ST_SHIFT 6
255#define AD_ST_SLAVE 0x00000000
256#define AD_ST_BRIDGE 0x00000040
257#define AD_ST_SWRAP 0x00000080
258#define AD_ST_MWRAP 0x000000c0
259#define AD_SZ_MASK 0x00000030
260#define AD_SZ_SHIFT 4
261#define AD_SZ_4K 0x00000000
262#define AD_SZ_8K 0x00000010
263#define AD_SZ_16K 0x00000020
264#define AD_SZ_SZD 0x00000030
265#define AD_AG32 0x00000008
266#define AD_ADDR_ALIGN 0x00000fff
267#define AD_SZ_BASE 0x00001000 /* 4KB */
268
269/* EROM SizeDesc */
270#define SD_SZ_MASK 0xfffff000
271#define SD_SG32 0x00000008
272#define SD_SZ_ALIGN 0x00000fff
273
274/* PCI config space bit 4 for 4306c0 slow clock source */
275#define PCI_CFG_GPIO_SCS 0x10
276/* PCI config space GPIO 14 for Xtal power-up */
277#define PCI_CFG_GPIO_XTAL 0x40
278/* PCI config space GPIO 15 for PLL power-down */
279#define PCI_CFG_GPIO_PLL 0x80
280
281/* power control defines */
282#define PLL_DELAY 150 /* us pll on delay */
283#define FREF_DELAY 200 /* us fref change delay */
284#define XTAL_ON_DELAY 1000 /* us crystal power-on delay */
285
286/* resetctrl */
287#define AIRC_RESET 1
288
289#define NOREV -1 /* Invalid rev */
290
291/* GPIO Based LED powersave defines */
292#define DEFAULT_GPIO_ONTIME 10 /* Default: 10% on */
293#define DEFAULT_GPIO_OFFTIME 90 /* Default: 10% on */
294
295/* When Srom support present, fields in sromcontrol */
296#define SRC_START 0x80000000
297#define SRC_BUSY 0x80000000
298#define SRC_OPCODE 0x60000000
299#define SRC_OP_READ 0x00000000
300#define SRC_OP_WRITE 0x20000000
301#define SRC_OP_WRDIS 0x40000000
302#define SRC_OP_WREN 0x60000000
303#define SRC_OTPSEL 0x00000010
304#define SRC_LOCK 0x00000008
305#define SRC_SIZE_MASK 0x00000006
306#define SRC_SIZE_1K 0x00000000
307#define SRC_SIZE_4K 0x00000002
308#define SRC_SIZE_16K 0x00000004
309#define SRC_SIZE_SHIFT 1
310#define SRC_PRESENT 0x00000001
311
312/* External PA enable mask */
313#define GPIO_CTRL_EPA_EN_MASK 0x40
314
315#define DEFAULT_GPIOTIMERVAL \
316 ((DEFAULT_GPIO_ONTIME << GPIO_ONTIME_SHIFT) | DEFAULT_GPIO_OFFTIME)
317
318#define BADIDX (SI_MAXCORES + 1)
319
Arend van Spriel5b435de2011-10-05 13:19:03 +0200320#define IS_SIM(chippkg) \
321 ((chippkg == HDLSIM_PKG_ID) || (chippkg == HWSIM_PKG_ID))
322
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800323#define PCIE(sih) (ai_get_buscoretype(sih) == PCIE_CORE_ID)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200324
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800325#define PCI_FORCEHT(sih) (PCIE(sih) && (ai_get_chip_id(sih) == BCM4716_CHIP_ID))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200326
Joe Perches8ae74652012-01-15 00:38:38 -0800327#ifdef DEBUG
Joe Perches8505a7e2011-11-13 11:41:04 -0800328#define SI_MSG(fmt, ...) pr_debug(fmt, ##__VA_ARGS__)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200329#else
Joe Perches8505a7e2011-11-13 11:41:04 -0800330#define SI_MSG(fmt, ...) no_printk(fmt, ##__VA_ARGS__)
Joe Perches8ae74652012-01-15 00:38:38 -0800331#endif /* DEBUG */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200332
333#define GOODCOREADDR(x, b) \
334 (((x) >= (b)) && ((x) < ((b) + SI_MAXCORES * SI_CORE_SIZE)) && \
335 IS_ALIGNED((x), SI_CORE_SIZE))
336
Arend van Spriel5b435de2011-10-05 13:19:03 +0200337struct aidmp {
338 u32 oobselina30; /* 0x000 */
339 u32 oobselina74; /* 0x004 */
340 u32 PAD[6];
341 u32 oobselinb30; /* 0x020 */
342 u32 oobselinb74; /* 0x024 */
343 u32 PAD[6];
344 u32 oobselinc30; /* 0x040 */
345 u32 oobselinc74; /* 0x044 */
346 u32 PAD[6];
347 u32 oobselind30; /* 0x060 */
348 u32 oobselind74; /* 0x064 */
349 u32 PAD[38];
350 u32 oobselouta30; /* 0x100 */
351 u32 oobselouta74; /* 0x104 */
352 u32 PAD[6];
353 u32 oobseloutb30; /* 0x120 */
354 u32 oobseloutb74; /* 0x124 */
355 u32 PAD[6];
356 u32 oobseloutc30; /* 0x140 */
357 u32 oobseloutc74; /* 0x144 */
358 u32 PAD[6];
359 u32 oobseloutd30; /* 0x160 */
360 u32 oobseloutd74; /* 0x164 */
361 u32 PAD[38];
362 u32 oobsynca; /* 0x200 */
363 u32 oobseloutaen; /* 0x204 */
364 u32 PAD[6];
365 u32 oobsyncb; /* 0x220 */
366 u32 oobseloutben; /* 0x224 */
367 u32 PAD[6];
368 u32 oobsyncc; /* 0x240 */
369 u32 oobseloutcen; /* 0x244 */
370 u32 PAD[6];
371 u32 oobsyncd; /* 0x260 */
372 u32 oobseloutden; /* 0x264 */
373 u32 PAD[38];
374 u32 oobaextwidth; /* 0x300 */
375 u32 oobainwidth; /* 0x304 */
376 u32 oobaoutwidth; /* 0x308 */
377 u32 PAD[5];
378 u32 oobbextwidth; /* 0x320 */
379 u32 oobbinwidth; /* 0x324 */
380 u32 oobboutwidth; /* 0x328 */
381 u32 PAD[5];
382 u32 oobcextwidth; /* 0x340 */
383 u32 oobcinwidth; /* 0x344 */
384 u32 oobcoutwidth; /* 0x348 */
385 u32 PAD[5];
386 u32 oobdextwidth; /* 0x360 */
387 u32 oobdinwidth; /* 0x364 */
388 u32 oobdoutwidth; /* 0x368 */
389 u32 PAD[37];
390 u32 ioctrlset; /* 0x400 */
391 u32 ioctrlclear; /* 0x404 */
392 u32 ioctrl; /* 0x408 */
393 u32 PAD[61];
394 u32 iostatus; /* 0x500 */
395 u32 PAD[127];
396 u32 ioctrlwidth; /* 0x700 */
397 u32 iostatuswidth; /* 0x704 */
398 u32 PAD[62];
399 u32 resetctrl; /* 0x800 */
400 u32 resetstatus; /* 0x804 */
401 u32 resetreadid; /* 0x808 */
402 u32 resetwriteid; /* 0x80c */
403 u32 PAD[60];
404 u32 errlogctrl; /* 0x900 */
405 u32 errlogdone; /* 0x904 */
406 u32 errlogstatus; /* 0x908 */
407 u32 errlogaddrlo; /* 0x90c */
408 u32 errlogaddrhi; /* 0x910 */
409 u32 errlogid; /* 0x914 */
410 u32 errloguser; /* 0x918 */
411 u32 errlogflags; /* 0x91c */
412 u32 PAD[56];
413 u32 intstatus; /* 0xa00 */
414 u32 PAD[127];
415 u32 config; /* 0xe00 */
416 u32 PAD[63];
417 u32 itcr; /* 0xf00 */
418 u32 PAD[3];
419 u32 itipooba; /* 0xf10 */
420 u32 itipoobb; /* 0xf14 */
421 u32 itipoobc; /* 0xf18 */
422 u32 itipoobd; /* 0xf1c */
423 u32 PAD[4];
424 u32 itipoobaout; /* 0xf30 */
425 u32 itipoobbout; /* 0xf34 */
426 u32 itipoobcout; /* 0xf38 */
427 u32 itipoobdout; /* 0xf3c */
428 u32 PAD[4];
429 u32 itopooba; /* 0xf50 */
430 u32 itopoobb; /* 0xf54 */
431 u32 itopoobc; /* 0xf58 */
432 u32 itopoobd; /* 0xf5c */
433 u32 PAD[4];
434 u32 itopoobain; /* 0xf70 */
435 u32 itopoobbin; /* 0xf74 */
436 u32 itopoobcin; /* 0xf78 */
437 u32 itopoobdin; /* 0xf7c */
438 u32 PAD[4];
439 u32 itopreset; /* 0xf90 */
440 u32 PAD[15];
441 u32 peripherialid4; /* 0xfd0 */
442 u32 peripherialid5; /* 0xfd4 */
443 u32 peripherialid6; /* 0xfd8 */
444 u32 peripherialid7; /* 0xfdc */
445 u32 peripherialid0; /* 0xfe0 */
446 u32 peripherialid1; /* 0xfe4 */
447 u32 peripherialid2; /* 0xfe8 */
448 u32 peripherialid3; /* 0xfec */
449 u32 componentid0; /* 0xff0 */
450 u32 componentid1; /* 0xff4 */
451 u32 componentid2; /* 0xff8 */
452 u32 componentid3; /* 0xffc */
453};
454
Arend van Spriel5b435de2011-10-05 13:19:03 +0200455static bool
Arend van Sprielc8086742011-12-12 15:15:03 -0800456ai_buscore_setup(struct si_info *sii, struct bcma_device *cc)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200457{
Arend van Spriel99559f12011-12-12 15:15:10 -0800458 /* no cores found, bail out */
459 if (cc->bus->nr_cores == 0)
460 return false;
461
Arend van Spriel5b435de2011-10-05 13:19:03 +0200462 /* get chipcommon rev */
Arend van Sprielc8086742011-12-12 15:15:03 -0800463 sii->pub.ccrev = cc->id.rev;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200464
465 /* get chipcommon chipstatus */
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200466 sii->chipst = bcma_read32(cc, CHIPCREGOFFS(chipstatus));
Arend van Spriel5b435de2011-10-05 13:19:03 +0200467
468 /* get chipcommon capabilites */
Arend van Sprielc8086742011-12-12 15:15:03 -0800469 sii->pub.cccaps = bcma_read32(cc, CHIPCREGOFFS(capabilities));
Arend van Spriel5b435de2011-10-05 13:19:03 +0200470
471 /* get pmu rev and caps */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800472 if (ai_get_cccaps(&sii->pub) & CC_CAP_PMU) {
Arend van Sprielc8086742011-12-12 15:15:03 -0800473 sii->pub.pmucaps = bcma_read32(cc,
474 CHIPCREGOFFS(pmucapabilities));
Arend van Spriel5b435de2011-10-05 13:19:03 +0200475 sii->pub.pmurev = sii->pub.pmucaps & PCAP_REV_MASK;
476 }
477
Arend van Spriele9226022011-12-12 15:15:11 -0800478 /* figure out buscore */
Hauke Mehrtens5d661a72012-04-29 02:50:29 +0200479 sii->buscore = ai_findcore(&sii->pub, PCIE_CORE_ID, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200480
481 /* fixup necessary chip/core configurations */
Arend van Sprielad5db132011-12-08 15:06:55 -0800482 if (!sii->pch) {
Arend van Sprielb0327ff2011-12-08 15:06:59 -0800483 sii->pch = pcicore_init(&sii->pub, sii->icbus->drv_pci.core);
Arend van Sprielad5db132011-12-08 15:06:55 -0800484 if (sii->pch == NULL)
485 return false;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200486 }
Arend van Spriele9226022011-12-12 15:15:11 -0800487 if (ai_pci_fixcfg(&sii->pub))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200488 return false;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200489
Arend van Spriel5b435de2011-10-05 13:19:03 +0200490 return true;
491}
492
Arend van Spriel5b435de2011-10-05 13:19:03 +0200493static struct si_info *ai_doattach(struct si_info *sii,
Arend van Spriel28a53442011-12-08 15:06:49 -0800494 struct bcma_bus *pbus)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200495{
496 struct si_pub *sih = &sii->pub;
497 u32 w, savewin;
Arend van Sprielc8086742011-12-12 15:15:03 -0800498 struct bcma_device *cc;
Hauke Mehrtens898d3c32012-04-29 02:50:25 +0200499 struct ssb_sprom *sprom = &pbus->sprom;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200500
Arend van Spriel5b435de2011-10-05 13:19:03 +0200501 savewin = 0;
502
Arend van Spriel28a53442011-12-08 15:06:49 -0800503 sii->icbus = pbus;
Arend van Spriel28a53442011-12-08 15:06:49 -0800504 sii->pcibus = pbus->host_pci;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200505
Arend van Spriel16d28122011-12-08 15:06:51 -0800506 /* switch to Chipcommon core */
Arend van Sprielc8086742011-12-12 15:15:03 -0800507 cc = pbus->drv_cc.core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200508
Hauke Mehrtens1928ad72012-04-29 02:50:27 +0200509 sih->chip = pbus->chipinfo.id;
510 sih->chiprev = pbus->chipinfo.rev;
511 sih->chippkg = pbus->chipinfo.pkg;
512 sih->boardvendor = pbus->boardinfo.vendor;
513 sih->boardtype = pbus->boardinfo.type;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200514
Arend van Sprielc8086742011-12-12 15:15:03 -0800515 if (!ai_buscore_setup(sii, cc))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200516 goto exit;
517
Arend van Spriel5b435de2011-10-05 13:19:03 +0200518 /* === NVRAM, clock is ready === */
Arend van Sprielc8086742011-12-12 15:15:03 -0800519 bcma_write32(cc, CHIPCREGOFFS(gpiopullup), 0);
520 bcma_write32(cc, CHIPCREGOFFS(gpiopulldown), 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200521
522 /* PMU specific initializations */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800523 if (ai_get_cccaps(sih) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200524 si_pmu_init(sih);
Arend van Spriel291ed3d2011-12-12 15:15:05 -0800525 (void)si_pmu_measure_alpclk(sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200526 si_pmu_res_init(sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200527 }
528
529 /* setup the GPIO based LED powersave register */
Hauke Mehrtens898d3c32012-04-29 02:50:25 +0200530 w = (sprom->leddc_on_time << BCMA_CC_GPIOTIMER_ONTIME_SHIFT) |
531 (sprom->leddc_off_time << BCMA_CC_GPIOTIMER_OFFTIME_SHIFT);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200532 if (w == 0)
533 w = DEFAULT_GPIOTIMERVAL;
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800534 ai_cc_reg(sih, offsetof(struct chipcregs, gpiotimerval),
535 ~0, w);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200536
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800537 if (PCIE(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200538 pcicore_attach(sii->pch, SI_DOATTACH);
539
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800540 if (ai_get_chip_id(sih) == BCM43224_CHIP_ID) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200541 /*
542 * enable 12 mA drive strenth for 43224 and
543 * set chipControl register bit 15
544 */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800545 if (ai_get_chiprev(sih) == 0) {
Joe Perches8505a7e2011-11-13 11:41:04 -0800546 SI_MSG("Applying 43224A0 WARs\n");
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800547 ai_cc_reg(sih, offsetof(struct chipcregs, chipcontrol),
548 CCTRL43224_GPIO_TOGGLE,
549 CCTRL43224_GPIO_TOGGLE);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200550 si_pmu_chipcontrol(sih, 0, CCTRL_43224A0_12MA_LED_DRIVE,
551 CCTRL_43224A0_12MA_LED_DRIVE);
552 }
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800553 if (ai_get_chiprev(sih) >= 1) {
Joe Perches8505a7e2011-11-13 11:41:04 -0800554 SI_MSG("Applying 43224B0+ WARs\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200555 si_pmu_chipcontrol(sih, 0, CCTRL_43224B0_12MA_LED_DRIVE,
556 CCTRL_43224B0_12MA_LED_DRIVE);
557 }
558 }
559
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800560 if (ai_get_chip_id(sih) == BCM4313_CHIP_ID) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200561 /*
562 * enable 12 mA drive strenth for 4313 and
563 * set chipControl register bit 1
564 */
Joe Perches8505a7e2011-11-13 11:41:04 -0800565 SI_MSG("Applying 4313 WARs\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200566 si_pmu_chipcontrol(sih, 0, CCTRL_4313_12MA_LED_DRIVE,
567 CCTRL_4313_12MA_LED_DRIVE);
568 }
569
570 return sii;
571
572 exit:
573 if (sii->pch)
574 pcicore_deinit(sii->pch);
575 sii->pch = NULL;
576
577 return NULL;
578}
579
580/*
Arend van Spriel28a53442011-12-08 15:06:49 -0800581 * Allocate a si handle and do the attach.
Arend van Spriel5b435de2011-10-05 13:19:03 +0200582 */
583struct si_pub *
Arend van Spriel28a53442011-12-08 15:06:49 -0800584ai_attach(struct bcma_bus *pbus)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200585{
586 struct si_info *sii;
587
588 /* alloc struct si_info */
Larry Finger00d2ec02011-12-14 20:23:03 -0600589 sii = kzalloc(sizeof(struct si_info), GFP_ATOMIC);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200590 if (sii == NULL)
591 return NULL;
592
Arend van Spriel28a53442011-12-08 15:06:49 -0800593 if (ai_doattach(sii, pbus) == NULL) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200594 kfree(sii);
595 return NULL;
596 }
597
598 return (struct si_pub *) sii;
599}
600
601/* may be called with core in reset */
602void ai_detach(struct si_pub *sih)
603{
604 struct si_info *sii;
605
606 struct si_pub *si_local = NULL;
607 memcpy(&si_local, &sih, sizeof(struct si_pub **));
608
609 sii = (struct si_info *)sih;
610
611 if (sii == NULL)
612 return;
613
614 if (sii->pch)
615 pcicore_deinit(sii->pch);
616 sii->pch = NULL;
617
Arend van Spriel5b435de2011-10-05 13:19:03 +0200618 kfree(sii);
619}
620
Arend van Spriel5b435de2011-10-05 13:19:03 +0200621/* return index of coreid or BADIDX if not found */
Arend van Sprield3126c52011-12-12 15:14:59 -0800622struct bcma_device *ai_findcore(struct si_pub *sih, u16 coreid, u16 coreunit)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200623{
Arend van Spriel16d28122011-12-08 15:06:51 -0800624 struct bcma_device *core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200625 struct si_info *sii;
626 uint found;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200627
628 sii = (struct si_info *)sih;
629
630 found = 0;
631
Arend van Spriel16d28122011-12-08 15:06:51 -0800632 list_for_each_entry(core, &sii->icbus->cores, list)
633 if (core->id.id == coreid) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200634 if (found == coreunit)
Arend van Sprield3126c52011-12-12 15:14:59 -0800635 return core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200636 found++;
637 }
638
Arend van Sprield3126c52011-12-12 15:14:59 -0800639 return NULL;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200640}
641
642/*
Arend van Spriel3b758a62011-12-12 15:15:09 -0800643 * read/modify chipcommon core register.
Arend van Spriel5b435de2011-10-05 13:19:03 +0200644 */
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800645uint ai_cc_reg(struct si_pub *sih, uint regoff, u32 mask, u32 val)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200646{
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800647 struct bcma_device *cc;
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800648 u32 w;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200649 struct si_info *sii;
650
651 sii = (struct si_info *)sih;
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800652 cc = sii->icbus->drv_cc.core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200653
Arend van Spriel5b435de2011-10-05 13:19:03 +0200654 /* mask and set */
655 if (mask || val) {
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800656 bcma_maskset32(cc, regoff, ~mask, val);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200657 }
658
659 /* readback */
Arend van Spriel7d8e18e2011-12-08 15:06:56 -0800660 w = bcma_read32(cc, regoff);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200661
Arend van Spriel5b435de2011-10-05 13:19:03 +0200662 return w;
663}
664
Arend van Spriel5b435de2011-10-05 13:19:03 +0200665/* return the slow clock source - LPO, XTAL, or PCI */
Arend van Sprielc8086742011-12-12 15:15:03 -0800666static uint ai_slowclk_src(struct si_pub *sih, struct bcma_device *cc)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200667{
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200668 return SCC_SS_XTAL;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200669}
670
671/*
672* return the ILP (slowclock) min or max frequency
673* precondition: we've established the chip has dynamic clk control
674*/
Arend van Sprielc8086742011-12-12 15:15:03 -0800675static uint ai_slowclk_freq(struct si_pub *sih, bool max_freq,
676 struct bcma_device *cc)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200677{
Arend van Spriel5b435de2011-10-05 13:19:03 +0200678 uint div;
679
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200680 /* Chipc rev 10 is InstaClock */
681 div = bcma_read32(cc, CHIPCREGOFFS(system_clk_ctl));
682 div = 4 * ((div >> SYCC_CD_SHIFT) + 1);
683 return max_freq ? XTALMAXFREQ : (XTALMINFREQ / div);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200684}
685
686static void
Arend van Sprielc8086742011-12-12 15:15:03 -0800687ai_clkctl_setdelay(struct si_pub *sih, struct bcma_device *cc)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200688{
689 uint slowmaxfreq, pll_delay, slowclk;
690 uint pll_on_delay, fref_sel_delay;
691
692 pll_delay = PLL_DELAY;
693
694 /*
695 * If the slow clock is not sourced by the xtal then
696 * add the xtal_on_delay since the xtal will also be
697 * powered down by dynamic clk control logic.
698 */
699
Arend van Sprielc8086742011-12-12 15:15:03 -0800700 slowclk = ai_slowclk_src(sih, cc);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200701 if (slowclk != SCC_SS_XTAL)
702 pll_delay += XTAL_ON_DELAY;
703
704 /* Starting with 4318 it is ILP that is used for the delays */
705 slowmaxfreq =
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200706 ai_slowclk_freq(sih, false, cc);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200707
708 pll_on_delay = ((slowmaxfreq * pll_delay) + 999999) / 1000000;
709 fref_sel_delay = ((slowmaxfreq * FREF_DELAY) + 999999) / 1000000;
710
Arend van Sprielc8086742011-12-12 15:15:03 -0800711 bcma_write32(cc, CHIPCREGOFFS(pll_on_delay), pll_on_delay);
712 bcma_write32(cc, CHIPCREGOFFS(fref_sel_delay), fref_sel_delay);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200713}
714
715/* initialize power control delay registers */
716void ai_clkctl_init(struct si_pub *sih)
717{
Arend van Sprielc8086742011-12-12 15:15:03 -0800718 struct bcma_device *cc;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200719
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800720 if (!(ai_get_cccaps(sih) & CC_CAP_PWR_CTL))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200721 return;
722
Arend van Sprielc8086742011-12-12 15:15:03 -0800723 cc = ai_findcore(sih, BCMA_CORE_CHIPCOMMON, 0);
Arend van Sprielad5db132011-12-08 15:06:55 -0800724 if (cc == NULL)
725 return;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200726
727 /* set all Instaclk chip ILP to 1 MHz */
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200728 bcma_maskset32(cc, CHIPCREGOFFS(system_clk_ctl), SYCC_CD_MASK,
729 (ILP_DIV_1MHZ << SYCC_CD_SHIFT));
Arend van Spriel5b435de2011-10-05 13:19:03 +0200730
Arend van Sprielc8086742011-12-12 15:15:03 -0800731 ai_clkctl_setdelay(sih, cc);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200732}
733
734/*
735 * return the value suitable for writing to the
736 * dot11 core FAST_PWRUP_DELAY register
737 */
738u16 ai_clkctl_fast_pwrup_delay(struct si_pub *sih)
739{
740 struct si_info *sii;
Arend van Sprielc8086742011-12-12 15:15:03 -0800741 struct bcma_device *cc;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200742 uint slowminfreq;
743 u16 fpdelay;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200744
745 sii = (struct si_info *)sih;
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800746 if (ai_get_cccaps(sih) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200747 fpdelay = si_pmu_fast_pwrup_delay(sih);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200748 return fpdelay;
749 }
750
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800751 if (!(ai_get_cccaps(sih) & CC_CAP_PWR_CTL))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200752 return 0;
753
Arend van Spriel5b435de2011-10-05 13:19:03 +0200754 fpdelay = 0;
Arend van Sprielc8086742011-12-12 15:15:03 -0800755 cc = ai_findcore(sih, CC_CORE_ID, 0);
Arend van Spriela232c8a2011-12-12 15:15:06 -0800756 if (cc) {
757 slowminfreq = ai_slowclk_freq(sih, false, cc);
758 fpdelay = (((bcma_read32(cc, CHIPCREGOFFS(pll_on_delay)) + 2)
759 * 1000000) + (slowminfreq - 1)) / slowminfreq;
760 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200761 return fpdelay;
762}
763
Arend van Spriel5b435de2011-10-05 13:19:03 +0200764/* clk control mechanism through chipcommon, no policy checking */
765static bool _ai_clkctl_cc(struct si_info *sii, uint mode)
766{
Arend van Sprielc8086742011-12-12 15:15:03 -0800767 struct bcma_device *cc;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200768 u32 scc;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200769
Arend van Sprielc8086742011-12-12 15:15:03 -0800770 cc = ai_findcore(&sii->pub, BCMA_CORE_CHIPCOMMON, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200771
Arend van Spriel5b435de2011-10-05 13:19:03 +0200772 switch (mode) {
773 case CLK_FAST: /* FORCEHT, fast (pll) clock */
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200774 bcma_set32(cc, CHIPCREGOFFS(clk_ctl_st), CCS_FORCEHT);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200775
776 /* wait for the PLL */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800777 if (ai_get_cccaps(&sii->pub) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200778 u32 htavail = CCS_HTAVAIL;
Arend van Sprielc8086742011-12-12 15:15:03 -0800779 SPINWAIT(((bcma_read32(cc, CHIPCREGOFFS(clk_ctl_st)) &
780 htavail) == 0), PMU_MAX_TRANSITION_DLY);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200781 } else {
782 udelay(PLL_DELAY);
783 }
784 break;
785
786 case CLK_DYNAMIC: /* enable dynamic clock control */
Hauke Mehrtensd43c1c52012-04-29 02:50:28 +0200787 bcma_mask32(cc, CHIPCREGOFFS(clk_ctl_st), ~CCS_FORCEHT);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200788 break;
789
790 default:
791 break;
792 }
793
Arend van Spriel5b435de2011-10-05 13:19:03 +0200794 return mode == CLK_FAST;
795}
796
797/*
798 * clock control policy function throught chipcommon
799 *
800 * set dynamic clk control mode (forceslow, forcefast, dynamic)
801 * returns true if we are forcing fast clock
802 * this is a wrapper over the next internal function
803 * to allow flexible policy settings for outside caller
804 */
805bool ai_clkctl_cc(struct si_pub *sih, uint mode)
806{
807 struct si_info *sii;
808
809 sii = (struct si_info *)sih;
810
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800811 if (PCI_FORCEHT(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200812 return mode == CLK_FAST;
813
814 return _ai_clkctl_cc(sii, mode);
815}
816
Arend van Spriel5b435de2011-10-05 13:19:03 +0200817void ai_pci_up(struct si_pub *sih)
818{
819 struct si_info *sii;
820
821 sii = (struct si_info *)sih;
822
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800823 if (PCI_FORCEHT(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200824 _ai_clkctl_cc(sii, CLK_FAST);
825
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800826 if (PCIE(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200827 pcicore_up(sii->pch, SI_PCIUP);
828
829}
830
Arend van Spriel5b435de2011-10-05 13:19:03 +0200831/* Unconfigure and/or apply various WARs when going down */
832void ai_pci_down(struct si_pub *sih)
833{
834 struct si_info *sii;
835
836 sii = (struct si_info *)sih;
837
838 /* release FORCEHT since chip is going to "down" state */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800839 if (PCI_FORCEHT(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200840 _ai_clkctl_cc(sii, CLK_DYNAMIC);
841
842 pcicore_down(sii->pch, SI_PCIDOWN);
843}
844
845/*
Arend van Spriel5b435de2011-10-05 13:19:03 +0200846 * Fixup SROMless PCI device's configuration.
847 * The current core may be changed upon return.
848 */
849int ai_pci_fixcfg(struct si_pub *sih)
850{
Arend van Spriel5b435de2011-10-05 13:19:03 +0200851 struct si_info *sii = (struct si_info *)sih;
852
853 /* Fixup PI in SROM shadow area to enable the correct PCI core access */
Arend van Spriel5b435de2011-10-05 13:19:03 +0200854 /* check 'pi' is correct and fix it if not */
Arend van Sprielb0327ff2011-12-08 15:06:59 -0800855 pcicore_fixcfg(sii->pch);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200856 return 0;
857}
858
Arend van Spriel5b435de2011-10-05 13:19:03 +0200859/* Enable BT-COEX & Ex-PA for 4313 */
860void ai_epa_4313war(struct si_pub *sih)
861{
Arend van Sprielc8086742011-12-12 15:15:03 -0800862 struct bcma_device *cc;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200863
Arend van Sprielc8086742011-12-12 15:15:03 -0800864 cc = ai_findcore(sih, CC_CORE_ID, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200865
866 /* EPA Fix */
Arend van Sprielc8086742011-12-12 15:15:03 -0800867 bcma_set32(cc, CHIPCREGOFFS(gpiocontrol), GPIO_CTRL_EPA_EN_MASK);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200868}
869
870/* check if the device is removed */
871bool ai_deviceremoved(struct si_pub *sih)
872{
873 u32 w;
874 struct si_info *sii;
875
876 sii = (struct si_info *)sih;
877
Arend van Sprielcbc80db2011-12-08 15:06:48 -0800878 pci_read_config_dword(sii->pcibus, PCI_VENDOR_ID, &w);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200879 if ((w & 0xFFFF) != PCI_VENDOR_ID_BROADCOM)
880 return true;
881
882 return false;
883}
884
Arend van Spriele9226022011-12-12 15:15:11 -0800885uint ai_get_buscoretype(struct si_pub *sih)
886{
887 struct si_info *sii = (struct si_info *)sih;
888 return sii->buscore->id.id;
889}
890
891uint ai_get_buscorerev(struct si_pub *sih)
892{
893 struct si_info *sii = (struct si_info *)sih;
894 return sii->buscore->id.rev;
895}