blob: 7aa47b3252c2ab0dcf3a3d2fa77a2695f416d7b8 [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"
32#include "srom.h"
33#include "nicpci.h"
34#include "aiutils.h"
35
36/* slow_clk_ctl */
37 /* slow clock source mask */
38#define SCC_SS_MASK 0x00000007
39 /* source of slow clock is LPO */
40#define SCC_SS_LPO 0x00000000
41 /* source of slow clock is crystal */
42#define SCC_SS_XTAL 0x00000001
43 /* source of slow clock is PCI */
44#define SCC_SS_PCI 0x00000002
45 /* LPOFreqSel, 1: 160Khz, 0: 32KHz */
46#define SCC_LF 0x00000200
47 /* LPOPowerDown, 1: LPO is disabled, 0: LPO is enabled */
48#define SCC_LP 0x00000400
49 /* ForceSlowClk, 1: sb/cores running on slow clock, 0: power logic control */
50#define SCC_FS 0x00000800
51 /* IgnorePllOffReq, 1/0:
52 * power logic ignores/honors PLL clock disable requests from core
53 */
54#define SCC_IP 0x00001000
55 /* XtalControlEn, 1/0:
56 * power logic does/doesn't disable crystal when appropriate
57 */
58#define SCC_XC 0x00002000
59 /* XtalPU (RO), 1/0: crystal running/disabled */
60#define SCC_XP 0x00004000
61 /* ClockDivider (SlowClk = 1/(4+divisor)) */
62#define SCC_CD_MASK 0xffff0000
63#define SCC_CD_SHIFT 16
64
65/* system_clk_ctl */
66 /* ILPen: Enable Idle Low Power */
67#define SYCC_IE 0x00000001
68 /* ALPen: Enable Active Low Power */
69#define SYCC_AE 0x00000002
70 /* ForcePLLOn */
71#define SYCC_FP 0x00000004
72 /* Force ALP (or HT if ALPen is not set */
73#define SYCC_AR 0x00000008
74 /* Force HT */
75#define SYCC_HR 0x00000010
76 /* ClkDiv (ILP = 1/(4 * (divisor + 1)) */
77#define SYCC_CD_MASK 0xffff0000
78#define SYCC_CD_SHIFT 16
79
80#define CST4329_SPROM_OTP_SEL_MASK 0x00000003
81 /* OTP is powered up, use def. CIS, no SPROM */
82#define CST4329_DEFCIS_SEL 0
83 /* OTP is powered up, SPROM is present */
84#define CST4329_SPROM_SEL 1
85 /* OTP is powered up, no SPROM */
86#define CST4329_OTP_SEL 2
87 /* OTP is powered down, SPROM is present */
88#define CST4329_OTP_PWRDN 3
89
90#define CST4329_SPI_SDIO_MODE_MASK 0x00000004
91#define CST4329_SPI_SDIO_MODE_SHIFT 2
92
93/* 43224 chip-specific ChipControl register bits */
94#define CCTRL43224_GPIO_TOGGLE 0x8000
95 /* 12 mA drive strength */
96#define CCTRL_43224A0_12MA_LED_DRIVE 0x00F000F0
97 /* 12 mA drive strength for later 43224s */
98#define CCTRL_43224B0_12MA_LED_DRIVE 0xF0
99
100/* 43236 Chip specific ChipStatus register bits */
101#define CST43236_SFLASH_MASK 0x00000040
102#define CST43236_OTP_MASK 0x00000080
103#define CST43236_HSIC_MASK 0x00000100 /* USB/HSIC */
104#define CST43236_BP_CLK 0x00000200 /* 120/96Mbps */
105#define CST43236_BOOT_MASK 0x00001800
106#define CST43236_BOOT_SHIFT 11
107#define CST43236_BOOT_FROM_SRAM 0 /* boot from SRAM, ARM in reset */
108#define CST43236_BOOT_FROM_ROM 1 /* boot from ROM */
109#define CST43236_BOOT_FROM_FLASH 2 /* boot from FLASH */
110#define CST43236_BOOT_FROM_INVALID 3
111
112/* 4331 chip-specific ChipControl register bits */
113 /* 0 disable */
114#define CCTRL4331_BT_COEXIST (1<<0)
115 /* 0 SECI is disabled (JTAG functional) */
116#define CCTRL4331_SECI (1<<1)
117 /* 0 disable */
118#define CCTRL4331_EXT_LNA (1<<2)
119 /* sprom/gpio13-15 mux */
120#define CCTRL4331_SPROM_GPIO13_15 (1<<3)
121 /* 0 ext pa disable, 1 ext pa enabled */
122#define CCTRL4331_EXTPA_EN (1<<4)
123 /* set drive out GPIO_CLK on sprom_cs pin */
124#define CCTRL4331_GPIOCLK_ON_SPROMCS (1<<5)
125 /* use sprom_cs pin as PCIE mdio interface */
126#define CCTRL4331_PCIE_MDIO_ON_SPROMCS (1<<6)
127 /* aband extpa will be at gpio2/5 and sprom_dout */
128#define CCTRL4331_EXTPA_ON_GPIO2_5 (1<<7)
129 /* override core control on pipe_AuxClkEnable */
130#define CCTRL4331_OVR_PIPEAUXCLKEN (1<<8)
131 /* override core control on pipe_AuxPowerDown */
132#define CCTRL4331_OVR_PIPEAUXPWRDOWN (1<<9)
133 /* pcie_auxclkenable */
134#define CCTRL4331_PCIE_AUXCLKEN (1<<10)
135 /* pcie_pipe_pllpowerdown */
136#define CCTRL4331_PCIE_PIPE_PLLDOWN (1<<11)
137 /* enable bt_shd0 at gpio4 */
138#define CCTRL4331_BT_SHD0_ON_GPIO4 (1<<16)
139 /* enable bt_shd1 at gpio5 */
140#define CCTRL4331_BT_SHD1_ON_GPIO5 (1<<17)
141
142/* 4331 Chip specific ChipStatus register bits */
143 /* crystal frequency 20/40Mhz */
144#define CST4331_XTAL_FREQ 0x00000001
145#define CST4331_SPROM_PRESENT 0x00000002
146#define CST4331_OTP_PRESENT 0x00000004
147#define CST4331_LDO_RF 0x00000008
148#define CST4331_LDO_PAR 0x00000010
149
150/* 4319 chip-specific ChipStatus register bits */
151#define CST4319_SPI_CPULESSUSB 0x00000001
152#define CST4319_SPI_CLK_POL 0x00000002
153#define CST4319_SPI_CLK_PH 0x00000008
154 /* gpio [7:6], SDIO CIS selection */
155#define CST4319_SPROM_OTP_SEL_MASK 0x000000c0
156#define CST4319_SPROM_OTP_SEL_SHIFT 6
157 /* use default CIS, OTP is powered up */
158#define CST4319_DEFCIS_SEL 0x00000000
159 /* use SPROM, OTP is powered up */
160#define CST4319_SPROM_SEL 0x00000040
161 /* use OTP, OTP is powered up */
162#define CST4319_OTP_SEL 0x00000080
163 /* use SPROM, OTP is powered down */
164#define CST4319_OTP_PWRDN 0x000000c0
165 /* gpio [8], sdio/usb mode */
166#define CST4319_SDIO_USB_MODE 0x00000100
167#define CST4319_REMAP_SEL_MASK 0x00000600
168#define CST4319_ILPDIV_EN 0x00000800
169#define CST4319_XTAL_PD_POL 0x00001000
170#define CST4319_LPO_SEL 0x00002000
171#define CST4319_RES_INIT_MODE 0x0000c000
172 /* PALDO is configured with external PNP */
173#define CST4319_PALDO_EXTPNP 0x00010000
174#define CST4319_CBUCK_MODE_MASK 0x00060000
175#define CST4319_CBUCK_MODE_BURST 0x00020000
176#define CST4319_CBUCK_MODE_LPBURST 0x00060000
177#define CST4319_RCAL_VALID 0x01000000
178#define CST4319_RCAL_VALUE_MASK 0x3e000000
179#define CST4319_RCAL_VALUE_SHIFT 25
180
181/* 4336 chip-specific ChipStatus register bits */
182#define CST4336_SPI_MODE_MASK 0x00000001
183#define CST4336_SPROM_PRESENT 0x00000002
184#define CST4336_OTP_PRESENT 0x00000004
185#define CST4336_ARMREMAP_0 0x00000008
186#define CST4336_ILPDIV_EN_MASK 0x00000010
187#define CST4336_ILPDIV_EN_SHIFT 4
188#define CST4336_XTAL_PD_POL_MASK 0x00000020
189#define CST4336_XTAL_PD_POL_SHIFT 5
190#define CST4336_LPO_SEL_MASK 0x00000040
191#define CST4336_LPO_SEL_SHIFT 6
192#define CST4336_RES_INIT_MODE_MASK 0x00000180
193#define CST4336_RES_INIT_MODE_SHIFT 7
194#define CST4336_CBUCK_MODE_MASK 0x00000600
195#define CST4336_CBUCK_MODE_SHIFT 9
196
197/* 4313 chip-specific ChipStatus register bits */
198#define CST4313_SPROM_PRESENT 1
199#define CST4313_OTP_PRESENT 2
200#define CST4313_SPROM_OTP_SEL_MASK 0x00000002
201#define CST4313_SPROM_OTP_SEL_SHIFT 0
202
203/* 4313 Chip specific ChipControl register bits */
204 /* 12 mA drive strengh for later 4313 */
205#define CCTRL_4313_12MA_LED_DRIVE 0x00000007
206
207/* Manufacturer Ids */
208#define MFGID_ARM 0x43b
209#define MFGID_BRCM 0x4bf
210#define MFGID_MIPS 0x4a7
211
212/* Enumeration ROM registers */
213#define ER_EROMENTRY 0x000
214#define ER_REMAPCONTROL 0xe00
215#define ER_REMAPSELECT 0xe04
216#define ER_MASTERSELECT 0xe10
217#define ER_ITCR 0xf00
218#define ER_ITIP 0xf04
219
220/* Erom entries */
221#define ER_TAG 0xe
222#define ER_TAG1 0x6
223#define ER_VALID 1
224#define ER_CI 0
225#define ER_MP 2
226#define ER_ADD 4
227#define ER_END 0xe
228#define ER_BAD 0xffffffff
229
230/* EROM CompIdentA */
231#define CIA_MFG_MASK 0xfff00000
232#define CIA_MFG_SHIFT 20
233#define CIA_CID_MASK 0x000fff00
234#define CIA_CID_SHIFT 8
235#define CIA_CCL_MASK 0x000000f0
236#define CIA_CCL_SHIFT 4
237
238/* EROM CompIdentB */
239#define CIB_REV_MASK 0xff000000
240#define CIB_REV_SHIFT 24
241#define CIB_NSW_MASK 0x00f80000
242#define CIB_NSW_SHIFT 19
243#define CIB_NMW_MASK 0x0007c000
244#define CIB_NMW_SHIFT 14
245#define CIB_NSP_MASK 0x00003e00
246#define CIB_NSP_SHIFT 9
247#define CIB_NMP_MASK 0x000001f0
248#define CIB_NMP_SHIFT 4
249
250/* EROM AddrDesc */
251#define AD_ADDR_MASK 0xfffff000
252#define AD_SP_MASK 0x00000f00
253#define AD_SP_SHIFT 8
254#define AD_ST_MASK 0x000000c0
255#define AD_ST_SHIFT 6
256#define AD_ST_SLAVE 0x00000000
257#define AD_ST_BRIDGE 0x00000040
258#define AD_ST_SWRAP 0x00000080
259#define AD_ST_MWRAP 0x000000c0
260#define AD_SZ_MASK 0x00000030
261#define AD_SZ_SHIFT 4
262#define AD_SZ_4K 0x00000000
263#define AD_SZ_8K 0x00000010
264#define AD_SZ_16K 0x00000020
265#define AD_SZ_SZD 0x00000030
266#define AD_AG32 0x00000008
267#define AD_ADDR_ALIGN 0x00000fff
268#define AD_SZ_BASE 0x00001000 /* 4KB */
269
270/* EROM SizeDesc */
271#define SD_SZ_MASK 0xfffff000
272#define SD_SG32 0x00000008
273#define SD_SZ_ALIGN 0x00000fff
274
275/* PCI config space bit 4 for 4306c0 slow clock source */
276#define PCI_CFG_GPIO_SCS 0x10
277/* PCI config space GPIO 14 for Xtal power-up */
278#define PCI_CFG_GPIO_XTAL 0x40
279/* PCI config space GPIO 15 for PLL power-down */
280#define PCI_CFG_GPIO_PLL 0x80
281
282/* power control defines */
283#define PLL_DELAY 150 /* us pll on delay */
284#define FREF_DELAY 200 /* us fref change delay */
285#define XTAL_ON_DELAY 1000 /* us crystal power-on delay */
286
287/* resetctrl */
288#define AIRC_RESET 1
289
290#define NOREV -1 /* Invalid rev */
291
292/* GPIO Based LED powersave defines */
293#define DEFAULT_GPIO_ONTIME 10 /* Default: 10% on */
294#define DEFAULT_GPIO_OFFTIME 90 /* Default: 10% on */
295
296/* When Srom support present, fields in sromcontrol */
297#define SRC_START 0x80000000
298#define SRC_BUSY 0x80000000
299#define SRC_OPCODE 0x60000000
300#define SRC_OP_READ 0x00000000
301#define SRC_OP_WRITE 0x20000000
302#define SRC_OP_WRDIS 0x40000000
303#define SRC_OP_WREN 0x60000000
304#define SRC_OTPSEL 0x00000010
305#define SRC_LOCK 0x00000008
306#define SRC_SIZE_MASK 0x00000006
307#define SRC_SIZE_1K 0x00000000
308#define SRC_SIZE_4K 0x00000002
309#define SRC_SIZE_16K 0x00000004
310#define SRC_SIZE_SHIFT 1
311#define SRC_PRESENT 0x00000001
312
313/* External PA enable mask */
314#define GPIO_CTRL_EPA_EN_MASK 0x40
315
316#define DEFAULT_GPIOTIMERVAL \
317 ((DEFAULT_GPIO_ONTIME << GPIO_ONTIME_SHIFT) | DEFAULT_GPIO_OFFTIME)
318
319#define BADIDX (SI_MAXCORES + 1)
320
Arend van Spriel5b435de2011-10-05 13:19:03 +0200321#define IS_SIM(chippkg) \
322 ((chippkg == HDLSIM_PKG_ID) || (chippkg == HWSIM_PKG_ID))
323
324/*
325 * Macros to disable/restore function core(D11, ENET, ILINE20, etc) interrupts
326 * before after core switching to avoid invalid register accesss inside ISR.
327 */
328#define INTR_OFF(si, intr_val) \
329 if ((si)->intrsoff_fn && \
330 (si)->coreid[(si)->curidx] == (si)->dev_coreid) \
331 intr_val = (*(si)->intrsoff_fn)((si)->intr_arg)
332
333#define INTR_RESTORE(si, intr_val) \
334 if ((si)->intrsrestore_fn && \
335 (si)->coreid[(si)->curidx] == (si)->dev_coreid) \
336 (*(si)->intrsrestore_fn)((si)->intr_arg, intr_val)
337
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800338#define PCI(sih) (ai_get_buscoretype(sih) == PCI_CORE_ID)
339#define PCIE(sih) (ai_get_buscoretype(sih) == PCIE_CORE_ID)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200340
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800341#define PCI_FORCEHT(sih) (PCIE(sih) && (ai_get_chip_id(sih) == BCM4716_CHIP_ID))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200342
343#ifdef BCMDBG
Joe Perches8505a7e2011-11-13 11:41:04 -0800344#define SI_MSG(fmt, ...) pr_debug(fmt, ##__VA_ARGS__)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200345#else
Joe Perches8505a7e2011-11-13 11:41:04 -0800346#define SI_MSG(fmt, ...) no_printk(fmt, ##__VA_ARGS__)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200347#endif /* BCMDBG */
348
349#define GOODCOREADDR(x, b) \
350 (((x) >= (b)) && ((x) < ((b) + SI_MAXCORES * SI_CORE_SIZE)) && \
351 IS_ALIGNED((x), SI_CORE_SIZE))
352
Arend van Spriel5b435de2011-10-05 13:19:03 +0200353struct aidmp {
354 u32 oobselina30; /* 0x000 */
355 u32 oobselina74; /* 0x004 */
356 u32 PAD[6];
357 u32 oobselinb30; /* 0x020 */
358 u32 oobselinb74; /* 0x024 */
359 u32 PAD[6];
360 u32 oobselinc30; /* 0x040 */
361 u32 oobselinc74; /* 0x044 */
362 u32 PAD[6];
363 u32 oobselind30; /* 0x060 */
364 u32 oobselind74; /* 0x064 */
365 u32 PAD[38];
366 u32 oobselouta30; /* 0x100 */
367 u32 oobselouta74; /* 0x104 */
368 u32 PAD[6];
369 u32 oobseloutb30; /* 0x120 */
370 u32 oobseloutb74; /* 0x124 */
371 u32 PAD[6];
372 u32 oobseloutc30; /* 0x140 */
373 u32 oobseloutc74; /* 0x144 */
374 u32 PAD[6];
375 u32 oobseloutd30; /* 0x160 */
376 u32 oobseloutd74; /* 0x164 */
377 u32 PAD[38];
378 u32 oobsynca; /* 0x200 */
379 u32 oobseloutaen; /* 0x204 */
380 u32 PAD[6];
381 u32 oobsyncb; /* 0x220 */
382 u32 oobseloutben; /* 0x224 */
383 u32 PAD[6];
384 u32 oobsyncc; /* 0x240 */
385 u32 oobseloutcen; /* 0x244 */
386 u32 PAD[6];
387 u32 oobsyncd; /* 0x260 */
388 u32 oobseloutden; /* 0x264 */
389 u32 PAD[38];
390 u32 oobaextwidth; /* 0x300 */
391 u32 oobainwidth; /* 0x304 */
392 u32 oobaoutwidth; /* 0x308 */
393 u32 PAD[5];
394 u32 oobbextwidth; /* 0x320 */
395 u32 oobbinwidth; /* 0x324 */
396 u32 oobboutwidth; /* 0x328 */
397 u32 PAD[5];
398 u32 oobcextwidth; /* 0x340 */
399 u32 oobcinwidth; /* 0x344 */
400 u32 oobcoutwidth; /* 0x348 */
401 u32 PAD[5];
402 u32 oobdextwidth; /* 0x360 */
403 u32 oobdinwidth; /* 0x364 */
404 u32 oobdoutwidth; /* 0x368 */
405 u32 PAD[37];
406 u32 ioctrlset; /* 0x400 */
407 u32 ioctrlclear; /* 0x404 */
408 u32 ioctrl; /* 0x408 */
409 u32 PAD[61];
410 u32 iostatus; /* 0x500 */
411 u32 PAD[127];
412 u32 ioctrlwidth; /* 0x700 */
413 u32 iostatuswidth; /* 0x704 */
414 u32 PAD[62];
415 u32 resetctrl; /* 0x800 */
416 u32 resetstatus; /* 0x804 */
417 u32 resetreadid; /* 0x808 */
418 u32 resetwriteid; /* 0x80c */
419 u32 PAD[60];
420 u32 errlogctrl; /* 0x900 */
421 u32 errlogdone; /* 0x904 */
422 u32 errlogstatus; /* 0x908 */
423 u32 errlogaddrlo; /* 0x90c */
424 u32 errlogaddrhi; /* 0x910 */
425 u32 errlogid; /* 0x914 */
426 u32 errloguser; /* 0x918 */
427 u32 errlogflags; /* 0x91c */
428 u32 PAD[56];
429 u32 intstatus; /* 0xa00 */
430 u32 PAD[127];
431 u32 config; /* 0xe00 */
432 u32 PAD[63];
433 u32 itcr; /* 0xf00 */
434 u32 PAD[3];
435 u32 itipooba; /* 0xf10 */
436 u32 itipoobb; /* 0xf14 */
437 u32 itipoobc; /* 0xf18 */
438 u32 itipoobd; /* 0xf1c */
439 u32 PAD[4];
440 u32 itipoobaout; /* 0xf30 */
441 u32 itipoobbout; /* 0xf34 */
442 u32 itipoobcout; /* 0xf38 */
443 u32 itipoobdout; /* 0xf3c */
444 u32 PAD[4];
445 u32 itopooba; /* 0xf50 */
446 u32 itopoobb; /* 0xf54 */
447 u32 itopoobc; /* 0xf58 */
448 u32 itopoobd; /* 0xf5c */
449 u32 PAD[4];
450 u32 itopoobain; /* 0xf70 */
451 u32 itopoobbin; /* 0xf74 */
452 u32 itopoobcin; /* 0xf78 */
453 u32 itopoobdin; /* 0xf7c */
454 u32 PAD[4];
455 u32 itopreset; /* 0xf90 */
456 u32 PAD[15];
457 u32 peripherialid4; /* 0xfd0 */
458 u32 peripherialid5; /* 0xfd4 */
459 u32 peripherialid6; /* 0xfd8 */
460 u32 peripherialid7; /* 0xfdc */
461 u32 peripherialid0; /* 0xfe0 */
462 u32 peripherialid1; /* 0xfe4 */
463 u32 peripherialid2; /* 0xfe8 */
464 u32 peripherialid3; /* 0xfec */
465 u32 componentid0; /* 0xff0 */
466 u32 componentid1; /* 0xff4 */
467 u32 componentid2; /* 0xff8 */
468 u32 componentid3; /* 0xffc */
469};
470
Arend van Spriel5b435de2011-10-05 13:19:03 +0200471/* parse the enumeration rom to identify all cores */
Arend van Spriel52045632011-12-08 15:06:50 -0800472static void ai_scan(struct si_pub *sih, struct bcma_bus *bus)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200473{
474 struct si_info *sii = (struct si_info *)sih;
Arend van Spriel52045632011-12-08 15:06:50 -0800475 struct bcma_device *core;
476 uint idx;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200477
Arend van Spriel52045632011-12-08 15:06:50 -0800478 list_for_each_entry(core, &bus->cores, list) {
479 idx = core->core_index;
480 sii->cia[idx] = core->id.manuf << CIA_MFG_SHIFT;
481 sii->cia[idx] |= core->id.id << CIA_CID_SHIFT;
482 sii->cia[idx] |= core->id.class << CIA_CCL_SHIFT;
483 sii->cib[idx] = core->id.rev << CIB_REV_SHIFT;
484 sii->coreid[idx] = core->id.id;
485 sii->coresba[idx] = core->addr;
486 sii->coresba_size[idx] = 0x1000;
487 sii->coresba2[idx] = 0;
488 sii->coresba2_size[idx] = 0;
489 sii->wrapba[idx] = core->wrap;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200490 sii->numcores++;
491 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200492}
493
Arend van Spriel16d28122011-12-08 15:06:51 -0800494static struct bcma_device *ai_find_bcma_core(struct si_pub *sih, uint coreidx)
495{
496 struct si_info *sii = (struct si_info *)sih;
497 struct bcma_device *core;
498
499 list_for_each_entry(core, &sii->icbus->cores, list) {
500 if (core->core_index == coreidx)
501 return core;
502 }
503 return NULL;
504}
Arend van Spriel5b435de2011-10-05 13:19:03 +0200505/*
506 * This function changes the logical "focus" to the indicated core.
507 * Return the current core's virtual address. Since each core starts with the
508 * same set of registers (BIST, clock control, etc), the returned address
509 * contains the first register of this 'common' register block (not to be
510 * confused with 'common core').
511 */
512void __iomem *ai_setcoreidx(struct si_pub *sih, uint coreidx)
513{
514 struct si_info *sii = (struct si_info *)sih;
Arend van Spriel16d28122011-12-08 15:06:51 -0800515 struct bcma_device *core;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200516
Arend van Spriel16d28122011-12-08 15:06:51 -0800517 if (sii->curidx != coreidx) {
518 core = ai_find_bcma_core(sih, coreidx);
519 if (core == NULL)
520 return NULL;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200521
Arend van Spriel16d28122011-12-08 15:06:51 -0800522 (void)bcma_aread32(core, BCMA_IOST);
523 sii->curidx = coreidx;
524 }
Arend van Spriel5b435de2011-10-05 13:19:03 +0200525 return sii->curmap;
526}
527
528/* Return the number of address spaces in current core */
529int ai_numaddrspaces(struct si_pub *sih)
530{
531 return 2;
532}
533
534/* Return the address of the nth address space in the current core */
535u32 ai_addrspace(struct si_pub *sih, uint asidx)
536{
537 struct si_info *sii;
538 uint cidx;
539
540 sii = (struct si_info *)sih;
541 cidx = sii->curidx;
542
543 if (asidx == 0)
544 return sii->coresba[cidx];
545 else if (asidx == 1)
546 return sii->coresba2[cidx];
547 else {
548 /* Need to parse the erom again to find addr space */
549 return 0;
550 }
551}
552
553/* Return the size of the nth address space in the current core */
554u32 ai_addrspacesize(struct si_pub *sih, uint asidx)
555{
556 struct si_info *sii;
557 uint cidx;
558
559 sii = (struct si_info *)sih;
560 cidx = sii->curidx;
561
562 if (asidx == 0)
563 return sii->coresba_size[cidx];
564 else if (asidx == 1)
565 return sii->coresba2_size[cidx];
566 else {
567 /* Need to parse the erom again to find addr */
568 return 0;
569 }
570}
571
572uint ai_flag(struct si_pub *sih)
573{
574 struct si_info *sii;
575 struct aidmp *ai;
576
577 sii = (struct si_info *)sih;
578 ai = sii->curwrap;
579
580 return R_REG(&ai->oobselouta30) & 0x1f;
581}
582
583void ai_setint(struct si_pub *sih, int siflag)
584{
585}
586
587uint ai_corevendor(struct si_pub *sih)
588{
589 struct si_info *sii;
590 u32 cia;
591
592 sii = (struct si_info *)sih;
593 cia = sii->cia[sii->curidx];
594 return (cia & CIA_MFG_MASK) >> CIA_MFG_SHIFT;
595}
596
597uint ai_corerev(struct si_pub *sih)
598{
599 struct si_info *sii;
600 u32 cib;
601
602 sii = (struct si_info *)sih;
603 cib = sii->cib[sii->curidx];
604 return (cib & CIB_REV_MASK) >> CIB_REV_SHIFT;
605}
606
607bool ai_iscoreup(struct si_pub *sih)
608{
609 struct si_info *sii;
610 struct aidmp *ai;
611
612 sii = (struct si_info *)sih;
613 ai = sii->curwrap;
614
615 return (((R_REG(&ai->ioctrl) & (SICF_FGC | SICF_CLOCK_EN)) ==
616 SICF_CLOCK_EN)
617 && ((R_REG(&ai->resetctrl) & AIRC_RESET) == 0));
618}
619
620void ai_core_cflags_wo(struct si_pub *sih, u32 mask, u32 val)
621{
622 struct si_info *sii;
623 struct aidmp *ai;
624 u32 w;
625
626 sii = (struct si_info *)sih;
627
628 ai = sii->curwrap;
629
630 if (mask || val) {
631 w = ((R_REG(&ai->ioctrl) & ~mask) | val);
632 W_REG(&ai->ioctrl, w);
633 }
634}
635
636u32 ai_core_cflags(struct si_pub *sih, u32 mask, u32 val)
637{
638 struct si_info *sii;
639 struct aidmp *ai;
640 u32 w;
641
642 sii = (struct si_info *)sih;
643 ai = sii->curwrap;
644
645 if (mask || val) {
646 w = ((R_REG(&ai->ioctrl) & ~mask) | val);
647 W_REG(&ai->ioctrl, w);
648 }
649
650 return R_REG(&ai->ioctrl);
651}
652
653/* return true if PCIE capability exists in the pci config space */
654static bool ai_ispcie(struct si_info *sii)
655{
656 u8 cap_ptr;
657
658 cap_ptr =
Arend van Sprielcbc80db2011-12-08 15:06:48 -0800659 pcicore_find_pci_capability(sii->pcibus, PCI_CAP_ID_EXP, NULL,
Arend van Spriel5b435de2011-10-05 13:19:03 +0200660 NULL);
661 if (!cap_ptr)
662 return false;
663
664 return true;
665}
666
667static bool ai_buscore_prep(struct si_info *sii)
668{
669 /* kludge to enable the clock on the 4306 which lacks a slowclock */
670 if (!ai_ispcie(sii))
671 ai_clkctl_xtal(&sii->pub, XTAL | PLL, ON);
672 return true;
673}
674
675u32 ai_core_sflags(struct si_pub *sih, u32 mask, u32 val)
676{
677 struct si_info *sii;
678 struct aidmp *ai;
679 u32 w;
680
681 sii = (struct si_info *)sih;
682 ai = sii->curwrap;
683
684 if (mask || val) {
685 w = ((R_REG(&ai->iostatus) & ~mask) | val);
686 W_REG(&ai->iostatus, w);
687 }
688
689 return R_REG(&ai->iostatus);
690}
691
692static bool
693ai_buscore_setup(struct si_info *sii, u32 savewin, uint *origidx)
694{
695 bool pci, pcie;
696 uint i;
697 uint pciidx, pcieidx, pcirev, pcierev;
698 struct chipcregs __iomem *cc;
699
700 cc = ai_setcoreidx(&sii->pub, SI_CC_IDX);
701
702 /* get chipcommon rev */
703 sii->pub.ccrev = (int)ai_corerev(&sii->pub);
704
705 /* get chipcommon chipstatus */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800706 if (ai_get_ccrev(&sii->pub) >= 11)
Arend van Spriel2e397c32011-12-08 15:06:44 -0800707 sii->chipst = R_REG(&cc->chipstatus);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200708
709 /* get chipcommon capabilites */
710 sii->pub.cccaps = R_REG(&cc->capabilities);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200711
712 /* get pmu rev and caps */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800713 if (ai_get_cccaps(&sii->pub) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200714 sii->pub.pmucaps = R_REG(&cc->pmucapabilities);
715 sii->pub.pmurev = sii->pub.pmucaps & PCAP_REV_MASK;
716 }
717
718 /* figure out bus/orignal core idx */
719 sii->pub.buscoretype = NODEV_CORE_ID;
720 sii->pub.buscorerev = NOREV;
Arend van Spriel2e397c32011-12-08 15:06:44 -0800721 sii->buscoreidx = BADIDX;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200722
723 pci = pcie = false;
724 pcirev = pcierev = NOREV;
725 pciidx = pcieidx = BADIDX;
726
727 for (i = 0; i < sii->numcores; i++) {
728 uint cid, crev;
729
730 ai_setcoreidx(&sii->pub, i);
731 cid = ai_coreid(&sii->pub);
732 crev = ai_corerev(&sii->pub);
733
734 if (cid == PCI_CORE_ID) {
735 pciidx = i;
736 pcirev = crev;
737 pci = true;
738 } else if (cid == PCIE_CORE_ID) {
739 pcieidx = i;
740 pcierev = crev;
741 pcie = true;
742 }
743
744 /* find the core idx before entering this func. */
745 if ((savewin && (savewin == sii->coresba[i])) ||
746 (cc == sii->regs[i]))
747 *origidx = i;
748 }
749
750 if (pci && pcie) {
751 if (ai_ispcie(sii))
752 pci = false;
753 else
754 pcie = false;
755 }
756 if (pci) {
757 sii->pub.buscoretype = PCI_CORE_ID;
758 sii->pub.buscorerev = pcirev;
Arend van Spriel2e397c32011-12-08 15:06:44 -0800759 sii->buscoreidx = pciidx;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200760 } else if (pcie) {
761 sii->pub.buscoretype = PCIE_CORE_ID;
762 sii->pub.buscorerev = pcierev;
Arend van Spriel2e397c32011-12-08 15:06:44 -0800763 sii->buscoreidx = pcieidx;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200764 }
765
766 /* fixup necessary chip/core configurations */
Arend van Sprielad5db132011-12-08 15:06:55 -0800767 if (!sii->pch) {
768 sii->pch = pcicore_init(&sii->pub, sii->pcibus,
769 sii->curmap + PCI_16KB0_PCIREGS_OFFSET);
770 if (sii->pch == NULL)
771 return false;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200772 }
773 if (ai_pci_fixcfg(&sii->pub)) {
774 /* si_doattach: si_pci_fixcfg failed */
775 return false;
776 }
777
778 /* return to the original core */
779 ai_setcoreidx(&sii->pub, *origidx);
780
781 return true;
782}
783
784/*
785 * get boardtype and boardrev
786 */
787static __used void ai_nvram_process(struct si_info *sii)
788{
789 uint w = 0;
790
791 /* do a pci config read to get subsystem id and subvendor id */
Arend van Sprielcbc80db2011-12-08 15:06:48 -0800792 pci_read_config_dword(sii->pcibus, PCI_SUBSYSTEM_VENDOR_ID, &w);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200793
794 sii->pub.boardvendor = w & 0xffff;
795 sii->pub.boardtype = (w >> 16) & 0xffff;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200796}
797
798static struct si_info *ai_doattach(struct si_info *sii,
Arend van Spriel28a53442011-12-08 15:06:49 -0800799 struct bcma_bus *pbus)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200800{
Arend van Spriel28a53442011-12-08 15:06:49 -0800801 void __iomem *regs = pbus->mmio;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200802 struct si_pub *sih = &sii->pub;
803 u32 w, savewin;
804 struct chipcregs __iomem *cc;
805 uint socitype;
806 uint origidx;
807
808 memset((unsigned char *) sii, 0, sizeof(struct si_info));
809
810 savewin = 0;
811
Arend van Spriel28a53442011-12-08 15:06:49 -0800812 sii->icbus = pbus;
Arend van Spriel2e397c32011-12-08 15:06:44 -0800813 sii->buscoreidx = BADIDX;
Arend van Spriel28a53442011-12-08 15:06:49 -0800814 sii->pcibus = pbus->host_pci;
Arend van Spriel52045632011-12-08 15:06:50 -0800815 sii->curmap = regs;
816 sii->curwrap = sii->curmap + SI_CORE_SIZE;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200817
Arend van Spriel16d28122011-12-08 15:06:51 -0800818 /* switch to Chipcommon core */
819 bcma_read32(pbus->drv_cc.core, 0);
820 savewin = SI_ENUM_BASE;
Arend van Spriel5b435de2011-10-05 13:19:03 +0200821
Arend van Spriel5b435de2011-10-05 13:19:03 +0200822 cc = (struct chipcregs __iomem *) regs;
823
824 /* bus/core/clk setup for register access */
825 if (!ai_buscore_prep(sii))
826 return NULL;
827
828 /*
829 * ChipID recognition.
830 * We assume we can read chipid at offset 0 from the regs arg.
831 * If we add other chiptypes (or if we need to support old sdio
832 * hosts w/o chipcommon), some way of recognizing them needs to
833 * be added here.
834 */
835 w = R_REG(&cc->chipid);
836 socitype = (w & CID_TYPE_MASK) >> CID_TYPE_SHIFT;
837 /* Might as wll fill in chip id rev & pkg */
838 sih->chip = w & CID_ID_MASK;
839 sih->chiprev = (w & CID_REV_MASK) >> CID_REV_SHIFT;
840 sih->chippkg = (w & CID_PKG_MASK) >> CID_PKG_SHIFT;
841
Arend van Spriel5b435de2011-10-05 13:19:03 +0200842 /* scan for cores */
843 if (socitype == SOCI_AI) {
Joe Perches8505a7e2011-11-13 11:41:04 -0800844 SI_MSG("Found chip type AI (0x%08x)\n", w);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200845 /* pass chipc address instead of original core base */
Arend van Spriel52045632011-12-08 15:06:50 -0800846 ai_scan(&sii->pub, pbus);
Arend van Spriel5b435de2011-10-05 13:19:03 +0200847 } else {
848 /* Found chip of unknown type */
849 return NULL;
850 }
851 /* no cores found, bail out */
852 if (sii->numcores == 0)
853 return NULL;
854
855 /* bus/core/clk setup */
856 origidx = SI_CC_IDX;
857 if (!ai_buscore_setup(sii, savewin, &origidx))
858 goto exit;
859
860 /* Init nvram from sprom/otp if they exist */
861 if (srom_var_init(&sii->pub, cc))
862 goto exit;
863
864 ai_nvram_process(sii);
865
866 /* === NVRAM, clock is ready === */
867 cc = (struct chipcregs __iomem *) ai_setcore(sih, CC_CORE_ID, 0);
868 W_REG(&cc->gpiopullup, 0);
869 W_REG(&cc->gpiopulldown, 0);
870 ai_setcoreidx(sih, origidx);
871
872 /* PMU specific initializations */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800873 if (ai_get_cccaps(sih) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200874 u32 xtalfreq;
875 si_pmu_init(sih);
876 si_pmu_chip_init(sih);
877
878 xtalfreq = si_pmu_measure_alpclk(sih);
879 si_pmu_pll_init(sih, xtalfreq);
880 si_pmu_res_init(sih);
881 si_pmu_swreg_init(sih);
882 }
883
884 /* setup the GPIO based LED powersave register */
885 w = getintvar(sih, BRCMS_SROM_LEDDC);
886 if (w == 0)
887 w = DEFAULT_GPIOTIMERVAL;
888 ai_corereg(sih, SI_CC_IDX, offsetof(struct chipcregs, gpiotimerval),
889 ~0, w);
890
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800891 if (PCIE(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +0200892 pcicore_attach(sii->pch, SI_DOATTACH);
893
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800894 if (ai_get_chip_id(sih) == BCM43224_CHIP_ID) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200895 /*
896 * enable 12 mA drive strenth for 43224 and
897 * set chipControl register bit 15
898 */
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800899 if (ai_get_chiprev(sih) == 0) {
Joe Perches8505a7e2011-11-13 11:41:04 -0800900 SI_MSG("Applying 43224A0 WARs\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200901 ai_corereg(sih, SI_CC_IDX,
902 offsetof(struct chipcregs, chipcontrol),
903 CCTRL43224_GPIO_TOGGLE,
904 CCTRL43224_GPIO_TOGGLE);
905 si_pmu_chipcontrol(sih, 0, CCTRL_43224A0_12MA_LED_DRIVE,
906 CCTRL_43224A0_12MA_LED_DRIVE);
907 }
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800908 if (ai_get_chiprev(sih) >= 1) {
Joe Perches8505a7e2011-11-13 11:41:04 -0800909 SI_MSG("Applying 43224B0+ WARs\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200910 si_pmu_chipcontrol(sih, 0, CCTRL_43224B0_12MA_LED_DRIVE,
911 CCTRL_43224B0_12MA_LED_DRIVE);
912 }
913 }
914
Arend van Sprielb2ffec42011-12-08 15:06:45 -0800915 if (ai_get_chip_id(sih) == BCM4313_CHIP_ID) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200916 /*
917 * enable 12 mA drive strenth for 4313 and
918 * set chipControl register bit 1
919 */
Joe Perches8505a7e2011-11-13 11:41:04 -0800920 SI_MSG("Applying 4313 WARs\n");
Arend van Spriel5b435de2011-10-05 13:19:03 +0200921 si_pmu_chipcontrol(sih, 0, CCTRL_4313_12MA_LED_DRIVE,
922 CCTRL_4313_12MA_LED_DRIVE);
923 }
924
925 return sii;
926
927 exit:
928 if (sii->pch)
929 pcicore_deinit(sii->pch);
930 sii->pch = NULL;
931
932 return NULL;
933}
934
935/*
Arend van Spriel28a53442011-12-08 15:06:49 -0800936 * Allocate a si handle and do the attach.
Arend van Spriel5b435de2011-10-05 13:19:03 +0200937 */
938struct si_pub *
Arend van Spriel28a53442011-12-08 15:06:49 -0800939ai_attach(struct bcma_bus *pbus)
Arend van Spriel5b435de2011-10-05 13:19:03 +0200940{
941 struct si_info *sii;
942
943 /* alloc struct si_info */
944 sii = kmalloc(sizeof(struct si_info), GFP_ATOMIC);
945 if (sii == NULL)
946 return NULL;
947
Arend van Spriel28a53442011-12-08 15:06:49 -0800948 if (ai_doattach(sii, pbus) == NULL) {
Arend van Spriel5b435de2011-10-05 13:19:03 +0200949 kfree(sii);
950 return NULL;
951 }
952
953 return (struct si_pub *) sii;
954}
955
956/* may be called with core in reset */
957void ai_detach(struct si_pub *sih)
958{
959 struct si_info *sii;
960
961 struct si_pub *si_local = NULL;
962 memcpy(&si_local, &sih, sizeof(struct si_pub **));
963
964 sii = (struct si_info *)sih;
965
966 if (sii == NULL)
967 return;
968
969 if (sii->pch)
970 pcicore_deinit(sii->pch);
971 sii->pch = NULL;
972
973 srom_free_vars(sih);
974 kfree(sii);
975}
976
977/* register driver interrupt disabling and restoring callback functions */
978void
979ai_register_intr_callback(struct si_pub *sih, void *intrsoff_fn,
980 void *intrsrestore_fn,
981 void *intrsenabled_fn, void *intr_arg)
982{
983 struct si_info *sii;
984
985 sii = (struct si_info *)sih;
986 sii->intr_arg = intr_arg;
987 sii->intrsoff_fn = (u32 (*)(void *)) intrsoff_fn;
988 sii->intrsrestore_fn = (void (*) (void *, u32)) intrsrestore_fn;
989 sii->intrsenabled_fn = (bool (*)(void *)) intrsenabled_fn;
990 /* save current core id. when this function called, the current core
991 * must be the core which provides driver functions(il, et, wl, etc.)
992 */
993 sii->dev_coreid = sii->coreid[sii->curidx];
994}
995
996void ai_deregister_intr_callback(struct si_pub *sih)
997{
998 struct si_info *sii;
999
1000 sii = (struct si_info *)sih;
1001 sii->intrsoff_fn = NULL;
1002}
1003
1004uint ai_coreid(struct si_pub *sih)
1005{
1006 struct si_info *sii;
1007
1008 sii = (struct si_info *)sih;
1009 return sii->coreid[sii->curidx];
1010}
1011
1012uint ai_coreidx(struct si_pub *sih)
1013{
1014 struct si_info *sii;
1015
1016 sii = (struct si_info *)sih;
1017 return sii->curidx;
1018}
1019
1020bool ai_backplane64(struct si_pub *sih)
1021{
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001022 return (ai_get_cccaps(sih) & CC_CAP_BKPLN64) != 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001023}
1024
1025/* return index of coreid or BADIDX if not found */
1026uint ai_findcoreidx(struct si_pub *sih, uint coreid, uint coreunit)
1027{
Arend van Spriel16d28122011-12-08 15:06:51 -08001028 struct bcma_device *core;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001029 struct si_info *sii;
1030 uint found;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001031
1032 sii = (struct si_info *)sih;
1033
1034 found = 0;
1035
Arend van Spriel16d28122011-12-08 15:06:51 -08001036 list_for_each_entry(core, &sii->icbus->cores, list)
1037 if (core->id.id == coreid) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001038 if (found == coreunit)
Arend van Spriel16d28122011-12-08 15:06:51 -08001039 return core->core_index;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001040 found++;
1041 }
1042
1043 return BADIDX;
1044}
1045
1046/*
1047 * This function changes logical "focus" to the indicated core;
1048 * must be called with interrupts off.
1049 * Moreover, callers should keep interrupts off during switching
1050 * out of and back to d11 core.
1051 */
1052void __iomem *ai_setcore(struct si_pub *sih, uint coreid, uint coreunit)
1053{
1054 uint idx;
1055
1056 idx = ai_findcoreidx(sih, coreid, coreunit);
1057 if (idx >= SI_MAXCORES)
1058 return NULL;
1059
1060 return ai_setcoreidx(sih, idx);
1061}
1062
1063/* Turn off interrupt as required by ai_setcore, before switch core */
1064void __iomem *ai_switch_core(struct si_pub *sih, uint coreid, uint *origidx,
1065 uint *intr_val)
1066{
1067 void __iomem *cc;
1068 struct si_info *sii;
1069
1070 sii = (struct si_info *)sih;
1071
Arend van Spriel5b435de2011-10-05 13:19:03 +02001072 INTR_OFF(sii, *intr_val);
1073 *origidx = sii->curidx;
1074 cc = ai_setcore(sih, coreid, 0);
1075 return cc;
1076}
1077
1078/* restore coreidx and restore interrupt */
1079void ai_restore_core(struct si_pub *sih, uint coreid, uint intr_val)
1080{
1081 struct si_info *sii;
1082
1083 sii = (struct si_info *)sih;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001084
1085 ai_setcoreidx(sih, coreid);
1086 INTR_RESTORE(sii, intr_val);
1087}
1088
1089void ai_write_wrapperreg(struct si_pub *sih, u32 offset, u32 val)
1090{
1091 struct si_info *sii = (struct si_info *)sih;
1092 u32 *w = (u32 *) sii->curwrap;
1093 W_REG(w + (offset / 4), val);
1094 return;
1095}
1096
1097/*
1098 * Switch to 'coreidx', issue a single arbitrary 32bit register mask&set
1099 * operation, switch back to the original core, and return the new value.
1100 *
1101 * When using the silicon backplane, no fiddling with interrupts or core
1102 * switches is needed.
1103 *
1104 * Also, when using pci/pcie, we can optimize away the core switching for pci
1105 * registers and (on newer pci cores) chipcommon registers.
1106 */
1107uint ai_corereg(struct si_pub *sih, uint coreidx, uint regoff, uint mask,
1108 uint val)
1109{
1110 uint origidx = 0;
1111 u32 __iomem *r = NULL;
1112 uint w;
1113 uint intr_val = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001114 struct si_info *sii;
1115
1116 sii = (struct si_info *)sih;
1117
1118 if (coreidx >= SI_MAXCORES)
1119 return 0;
1120
Arend van Sprielad5db132011-12-08 15:06:55 -08001121 INTR_OFF(sii, intr_val);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001122
Arend van Sprielad5db132011-12-08 15:06:55 -08001123 /* save current core index */
1124 origidx = ai_coreidx(&sii->pub);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001125
Arend van Sprielad5db132011-12-08 15:06:55 -08001126 /* switch core */
1127 r = (u32 __iomem *) ((unsigned char __iomem *)
1128 ai_setcoreidx(&sii->pub, coreidx) + regoff);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001129
1130 /* mask and set */
1131 if (mask || val) {
1132 w = (R_REG(r) & ~mask) | val;
1133 W_REG(r, w);
1134 }
1135
1136 /* readback */
1137 w = R_REG(r);
1138
Arend van Sprielad5db132011-12-08 15:06:55 -08001139 /* restore core index */
1140 if (origidx != coreidx)
1141 ai_setcoreidx(&sii->pub, origidx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001142
Arend van Sprielad5db132011-12-08 15:06:55 -08001143 INTR_RESTORE(sii, intr_val);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001144
1145 return w;
1146}
1147
1148void ai_core_disable(struct si_pub *sih, u32 bits)
1149{
1150 struct si_info *sii;
1151 u32 dummy;
1152 struct aidmp *ai;
1153
1154 sii = (struct si_info *)sih;
1155
1156 ai = sii->curwrap;
1157
1158 /* if core is already in reset, just return */
1159 if (R_REG(&ai->resetctrl) & AIRC_RESET)
1160 return;
1161
1162 W_REG(&ai->ioctrl, bits);
1163 dummy = R_REG(&ai->ioctrl);
1164 udelay(10);
1165
1166 W_REG(&ai->resetctrl, AIRC_RESET);
1167 udelay(1);
1168}
1169
1170/* reset and re-enable a core
1171 * inputs:
1172 * bits - core specific bits that are set during and after reset sequence
1173 * resetbits - core specific bits that are set only during reset sequence
1174 */
1175void ai_core_reset(struct si_pub *sih, u32 bits, u32 resetbits)
1176{
1177 struct si_info *sii;
1178 struct aidmp *ai;
1179 u32 dummy;
1180
1181 sii = (struct si_info *)sih;
1182 ai = sii->curwrap;
1183
1184 /*
1185 * Must do the disable sequence first to work
1186 * for arbitrary current core state.
1187 */
1188 ai_core_disable(sih, (bits | resetbits));
1189
1190 /*
1191 * Now do the initialization sequence.
1192 */
1193 W_REG(&ai->ioctrl, (bits | SICF_FGC | SICF_CLOCK_EN));
1194 dummy = R_REG(&ai->ioctrl);
1195 W_REG(&ai->resetctrl, 0);
1196 udelay(1);
1197
1198 W_REG(&ai->ioctrl, (bits | SICF_CLOCK_EN));
1199 dummy = R_REG(&ai->ioctrl);
1200 udelay(1);
1201}
1202
1203/* return the slow clock source - LPO, XTAL, or PCI */
1204static uint ai_slowclk_src(struct si_info *sii)
1205{
1206 struct chipcregs __iomem *cc;
1207 u32 val;
1208
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001209 if (ai_get_ccrev(&sii->pub) < 6) {
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001210 pci_read_config_dword(sii->pcibus, PCI_GPIO_OUT,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001211 &val);
1212 if (val & PCI_CFG_GPIO_SCS)
1213 return SCC_SS_PCI;
1214 return SCC_SS_XTAL;
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001215 } else if (ai_get_ccrev(&sii->pub) < 10) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001216 cc = (struct chipcregs __iomem *)
1217 ai_setcoreidx(&sii->pub, sii->curidx);
1218 return R_REG(&cc->slow_clk_ctl) & SCC_SS_MASK;
1219 } else /* Insta-clock */
1220 return SCC_SS_XTAL;
1221}
1222
1223/*
1224* return the ILP (slowclock) min or max frequency
1225* precondition: we've established the chip has dynamic clk control
1226*/
1227static uint ai_slowclk_freq(struct si_info *sii, bool max_freq,
1228 struct chipcregs __iomem *cc)
1229{
1230 u32 slowclk;
1231 uint div;
1232
1233 slowclk = ai_slowclk_src(sii);
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001234 if (ai_get_ccrev(&sii->pub) < 6) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001235 if (slowclk == SCC_SS_PCI)
1236 return max_freq ? (PCIMAXFREQ / 64)
1237 : (PCIMINFREQ / 64);
1238 else
1239 return max_freq ? (XTALMAXFREQ / 32)
1240 : (XTALMINFREQ / 32);
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001241 } else if (ai_get_ccrev(&sii->pub) < 10) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001242 div = 4 *
1243 (((R_REG(&cc->slow_clk_ctl) & SCC_CD_MASK) >>
1244 SCC_CD_SHIFT) + 1);
1245 if (slowclk == SCC_SS_LPO)
1246 return max_freq ? LPOMAXFREQ : LPOMINFREQ;
1247 else if (slowclk == SCC_SS_XTAL)
1248 return max_freq ? (XTALMAXFREQ / div)
1249 : (XTALMINFREQ / div);
1250 else if (slowclk == SCC_SS_PCI)
1251 return max_freq ? (PCIMAXFREQ / div)
1252 : (PCIMINFREQ / div);
1253 } else {
1254 /* Chipc rev 10 is InstaClock */
1255 div = R_REG(&cc->system_clk_ctl) >> SYCC_CD_SHIFT;
1256 div = 4 * (div + 1);
1257 return max_freq ? XTALMAXFREQ : (XTALMINFREQ / div);
1258 }
1259 return 0;
1260}
1261
1262static void
1263ai_clkctl_setdelay(struct si_info *sii, struct chipcregs __iomem *cc)
1264{
1265 uint slowmaxfreq, pll_delay, slowclk;
1266 uint pll_on_delay, fref_sel_delay;
1267
1268 pll_delay = PLL_DELAY;
1269
1270 /*
1271 * If the slow clock is not sourced by the xtal then
1272 * add the xtal_on_delay since the xtal will also be
1273 * powered down by dynamic clk control logic.
1274 */
1275
1276 slowclk = ai_slowclk_src(sii);
1277 if (slowclk != SCC_SS_XTAL)
1278 pll_delay += XTAL_ON_DELAY;
1279
1280 /* Starting with 4318 it is ILP that is used for the delays */
1281 slowmaxfreq =
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001282 ai_slowclk_freq(sii,
1283 (ai_get_ccrev(&sii->pub) >= 10) ? false : true, cc);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001284
1285 pll_on_delay = ((slowmaxfreq * pll_delay) + 999999) / 1000000;
1286 fref_sel_delay = ((slowmaxfreq * FREF_DELAY) + 999999) / 1000000;
1287
1288 W_REG(&cc->pll_on_delay, pll_on_delay);
1289 W_REG(&cc->fref_sel_delay, fref_sel_delay);
1290}
1291
1292/* initialize power control delay registers */
1293void ai_clkctl_init(struct si_pub *sih)
1294{
1295 struct si_info *sii;
1296 uint origidx = 0;
1297 struct chipcregs __iomem *cc;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001298
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001299 if (!(ai_get_cccaps(sih) & CC_CAP_PWR_CTL))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001300 return;
1301
1302 sii = (struct si_info *)sih;
Arend van Sprielad5db132011-12-08 15:06:55 -08001303 origidx = sii->curidx;
1304 cc = (struct chipcregs __iomem *)
1305 ai_setcore(sih, CC_CORE_ID, 0);
1306 if (cc == NULL)
1307 return;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001308
1309 /* set all Instaclk chip ILP to 1 MHz */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001310 if (ai_get_ccrev(sih) >= 10)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001311 SET_REG(&cc->system_clk_ctl, SYCC_CD_MASK,
1312 (ILP_DIV_1MHZ << SYCC_CD_SHIFT));
1313
1314 ai_clkctl_setdelay(sii, cc);
1315
Arend van Sprielad5db132011-12-08 15:06:55 -08001316 ai_setcoreidx(sih, origidx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001317}
1318
1319/*
1320 * return the value suitable for writing to the
1321 * dot11 core FAST_PWRUP_DELAY register
1322 */
1323u16 ai_clkctl_fast_pwrup_delay(struct si_pub *sih)
1324{
1325 struct si_info *sii;
1326 uint origidx = 0;
1327 struct chipcregs __iomem *cc;
1328 uint slowminfreq;
1329 u16 fpdelay;
1330 uint intr_val = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001331
1332 sii = (struct si_info *)sih;
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001333 if (ai_get_cccaps(sih) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001334 INTR_OFF(sii, intr_val);
1335 fpdelay = si_pmu_fast_pwrup_delay(sih);
1336 INTR_RESTORE(sii, intr_val);
1337 return fpdelay;
1338 }
1339
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001340 if (!(ai_get_cccaps(sih) & CC_CAP_PWR_CTL))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001341 return 0;
1342
Arend van Spriel5b435de2011-10-05 13:19:03 +02001343 fpdelay = 0;
Arend van Sprielad5db132011-12-08 15:06:55 -08001344 origidx = sii->curidx;
1345 INTR_OFF(sii, intr_val);
1346 cc = (struct chipcregs __iomem *)
1347 ai_setcore(sih, CC_CORE_ID, 0);
1348 if (cc == NULL)
1349 goto done;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001350
1351 slowminfreq = ai_slowclk_freq(sii, false, cc);
1352 fpdelay = (((R_REG(&cc->pll_on_delay) + 2) * 1000000) +
1353 (slowminfreq - 1)) / slowminfreq;
1354
1355 done:
Arend van Sprielad5db132011-12-08 15:06:55 -08001356 ai_setcoreidx(sih, origidx);
1357 INTR_RESTORE(sii, intr_val);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001358 return fpdelay;
1359}
1360
1361/* turn primary xtal and/or pll off/on */
1362int ai_clkctl_xtal(struct si_pub *sih, uint what, bool on)
1363{
1364 struct si_info *sii;
1365 u32 in, out, outen;
1366
1367 sii = (struct si_info *)sih;
1368
1369 /* pcie core doesn't have any mapping to control the xtal pu */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001370 if (PCIE(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001371 return -1;
1372
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001373 pci_read_config_dword(sii->pcibus, PCI_GPIO_IN, &in);
1374 pci_read_config_dword(sii->pcibus, PCI_GPIO_OUT, &out);
1375 pci_read_config_dword(sii->pcibus, PCI_GPIO_OUTEN, &outen);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001376
1377 /*
1378 * Avoid glitching the clock if GPRS is already using it.
1379 * We can't actually read the state of the PLLPD so we infer it
1380 * by the value of XTAL_PU which *is* readable via gpioin.
1381 */
1382 if (on && (in & PCI_CFG_GPIO_XTAL))
1383 return 0;
1384
1385 if (what & XTAL)
1386 outen |= PCI_CFG_GPIO_XTAL;
1387 if (what & PLL)
1388 outen |= PCI_CFG_GPIO_PLL;
1389
1390 if (on) {
1391 /* turn primary xtal on */
1392 if (what & XTAL) {
1393 out |= PCI_CFG_GPIO_XTAL;
1394 if (what & PLL)
1395 out |= PCI_CFG_GPIO_PLL;
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001396 pci_write_config_dword(sii->pcibus,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001397 PCI_GPIO_OUT, out);
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001398 pci_write_config_dword(sii->pcibus,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001399 PCI_GPIO_OUTEN, outen);
1400 udelay(XTAL_ON_DELAY);
1401 }
1402
1403 /* turn pll on */
1404 if (what & PLL) {
1405 out &= ~PCI_CFG_GPIO_PLL;
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001406 pci_write_config_dword(sii->pcibus,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001407 PCI_GPIO_OUT, out);
1408 mdelay(2);
1409 }
1410 } else {
1411 if (what & XTAL)
1412 out &= ~PCI_CFG_GPIO_XTAL;
1413 if (what & PLL)
1414 out |= PCI_CFG_GPIO_PLL;
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001415 pci_write_config_dword(sii->pcibus,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001416 PCI_GPIO_OUT, out);
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001417 pci_write_config_dword(sii->pcibus,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001418 PCI_GPIO_OUTEN, outen);
1419 }
1420
1421 return 0;
1422}
1423
1424/* clk control mechanism through chipcommon, no policy checking */
1425static bool _ai_clkctl_cc(struct si_info *sii, uint mode)
1426{
1427 uint origidx = 0;
1428 struct chipcregs __iomem *cc;
1429 u32 scc;
1430 uint intr_val = 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001431
1432 /* chipcommon cores prior to rev6 don't support dynamic clock control */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001433 if (ai_get_ccrev(&sii->pub) < 6)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001434 return false;
1435
Arend van Sprielad5db132011-12-08 15:06:55 -08001436 INTR_OFF(sii, intr_val);
1437 origidx = sii->curidx;
1438 cc = (struct chipcregs __iomem *)
1439 ai_setcore(&sii->pub, CC_CORE_ID, 0);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001440
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001441 if (!(ai_get_cccaps(&sii->pub) & CC_CAP_PWR_CTL) &&
1442 (ai_get_ccrev(&sii->pub) < 20))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001443 goto done;
1444
1445 switch (mode) {
1446 case CLK_FAST: /* FORCEHT, fast (pll) clock */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001447 if (ai_get_ccrev(&sii->pub) < 10) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001448 /*
1449 * don't forget to force xtal back
1450 * on before we clear SCC_DYN_XTAL..
1451 */
1452 ai_clkctl_xtal(&sii->pub, XTAL, ON);
1453 SET_REG(&cc->slow_clk_ctl,
1454 (SCC_XC | SCC_FS | SCC_IP), SCC_IP);
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001455 } else if (ai_get_ccrev(&sii->pub) < 20) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001456 OR_REG(&cc->system_clk_ctl, SYCC_HR);
1457 } else {
1458 OR_REG(&cc->clk_ctl_st, CCS_FORCEHT);
1459 }
1460
1461 /* wait for the PLL */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001462 if (ai_get_cccaps(&sii->pub) & CC_CAP_PMU) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001463 u32 htavail = CCS_HTAVAIL;
1464 SPINWAIT(((R_REG(&cc->clk_ctl_st) & htavail)
1465 == 0), PMU_MAX_TRANSITION_DLY);
1466 } else {
1467 udelay(PLL_DELAY);
1468 }
1469 break;
1470
1471 case CLK_DYNAMIC: /* enable dynamic clock control */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001472 if (ai_get_ccrev(&sii->pub) < 10) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001473 scc = R_REG(&cc->slow_clk_ctl);
1474 scc &= ~(SCC_FS | SCC_IP | SCC_XC);
1475 if ((scc & SCC_SS_MASK) != SCC_SS_XTAL)
1476 scc |= SCC_XC;
1477 W_REG(&cc->slow_clk_ctl, scc);
1478
1479 /*
1480 * for dynamic control, we have to
1481 * release our xtal_pu "force on"
1482 */
1483 if (scc & SCC_XC)
1484 ai_clkctl_xtal(&sii->pub, XTAL, OFF);
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001485 } else if (ai_get_ccrev(&sii->pub) < 20) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001486 /* Instaclock */
1487 AND_REG(&cc->system_clk_ctl, ~SYCC_HR);
1488 } else {
1489 AND_REG(&cc->clk_ctl_st, ~CCS_FORCEHT);
1490 }
1491 break;
1492
1493 default:
1494 break;
1495 }
1496
1497 done:
Arend van Sprielad5db132011-12-08 15:06:55 -08001498 ai_setcoreidx(&sii->pub, origidx);
1499 INTR_RESTORE(sii, intr_val);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001500 return mode == CLK_FAST;
1501}
1502
1503/*
1504 * clock control policy function throught chipcommon
1505 *
1506 * set dynamic clk control mode (forceslow, forcefast, dynamic)
1507 * returns true if we are forcing fast clock
1508 * this is a wrapper over the next internal function
1509 * to allow flexible policy settings for outside caller
1510 */
1511bool ai_clkctl_cc(struct si_pub *sih, uint mode)
1512{
1513 struct si_info *sii;
1514
1515 sii = (struct si_info *)sih;
1516
1517 /* chipcommon cores prior to rev6 don't support dynamic clock control */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001518 if (ai_get_ccrev(sih) < 6)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001519 return false;
1520
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001521 if (PCI_FORCEHT(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001522 return mode == CLK_FAST;
1523
1524 return _ai_clkctl_cc(sii, mode);
1525}
1526
1527/* Build device path */
1528int ai_devpath(struct si_pub *sih, char *path, int size)
1529{
1530 int slen;
1531
1532 if (!path || size <= 0)
1533 return -1;
1534
1535 slen = snprintf(path, (size_t) size, "pci/%u/%u/",
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001536 ((struct si_info *)sih)->pcibus->bus->number,
Arend van Spriel5b435de2011-10-05 13:19:03 +02001537 PCI_SLOT(((struct pci_dev *)
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001538 (((struct si_info *)(sih))->pcibus))->devfn));
Arend van Spriel5b435de2011-10-05 13:19:03 +02001539
1540 if (slen < 0 || slen >= size) {
1541 path[0] = '\0';
1542 return -1;
1543 }
1544
1545 return 0;
1546}
1547
1548void ai_pci_up(struct si_pub *sih)
1549{
1550 struct si_info *sii;
1551
1552 sii = (struct si_info *)sih;
1553
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001554 if (PCI_FORCEHT(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001555 _ai_clkctl_cc(sii, CLK_FAST);
1556
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001557 if (PCIE(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001558 pcicore_up(sii->pch, SI_PCIUP);
1559
1560}
1561
1562/* Unconfigure and/or apply various WARs when system is going to sleep mode */
1563void ai_pci_sleep(struct si_pub *sih)
1564{
1565 struct si_info *sii;
1566
1567 sii = (struct si_info *)sih;
1568
1569 pcicore_sleep(sii->pch);
1570}
1571
1572/* Unconfigure and/or apply various WARs when going down */
1573void ai_pci_down(struct si_pub *sih)
1574{
1575 struct si_info *sii;
1576
1577 sii = (struct si_info *)sih;
1578
1579 /* release FORCEHT since chip is going to "down" state */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001580 if (PCI_FORCEHT(sih))
Arend van Spriel5b435de2011-10-05 13:19:03 +02001581 _ai_clkctl_cc(sii, CLK_DYNAMIC);
1582
1583 pcicore_down(sii->pch, SI_PCIDOWN);
1584}
1585
1586/*
1587 * Configure the pci core for pci client (NIC) action
1588 * coremask is the bitvec of cores by index to be enabled.
1589 */
1590void ai_pci_setup(struct si_pub *sih, uint coremask)
1591{
1592 struct si_info *sii;
1593 struct sbpciregs __iomem *regs = NULL;
1594 u32 siflag = 0, w;
1595 uint idx = 0;
1596
1597 sii = (struct si_info *)sih;
1598
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001599 if (PCI(sih)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001600 /* get current core index */
1601 idx = sii->curidx;
1602
1603 /* we interrupt on this backplane flag number */
1604 siflag = ai_flag(sih);
1605
1606 /* switch over to pci core */
Arend van Spriel2e397c32011-12-08 15:06:44 -08001607 regs = ai_setcoreidx(sih, sii->buscoreidx);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001608 }
1609
1610 /*
1611 * Enable sb->pci interrupts. Assume
1612 * PCI rev 2.3 support was added in pci core rev 6 and things changed..
1613 */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001614 if (PCIE(sih) || (PCI(sih) && (ai_get_buscorerev(sih) >= 6))) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001615 /* pci config write to set this core bit in PCIIntMask */
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001616 pci_read_config_dword(sii->pcibus, PCI_INT_MASK, &w);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001617 w |= (coremask << PCI_SBIM_SHIFT);
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001618 pci_write_config_dword(sii->pcibus, PCI_INT_MASK, w);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001619 } else {
1620 /* set sbintvec bit for our flag number */
1621 ai_setint(sih, siflag);
1622 }
1623
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001624 if (PCI(sih)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001625 pcicore_pci_setup(sii->pch, regs);
1626
1627 /* switch back to previous core */
1628 ai_setcoreidx(sih, idx);
1629 }
1630}
1631
1632/*
1633 * Fixup SROMless PCI device's configuration.
1634 * The current core may be changed upon return.
1635 */
1636int ai_pci_fixcfg(struct si_pub *sih)
1637{
1638 uint origidx;
1639 void __iomem *regs = NULL;
1640 struct si_info *sii = (struct si_info *)sih;
1641
1642 /* Fixup PI in SROM shadow area to enable the correct PCI core access */
1643 /* save the current index */
1644 origidx = ai_coreidx(&sii->pub);
1645
1646 /* check 'pi' is correct and fix it if not */
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001647 regs = ai_setcore(&sii->pub, ai_get_buscoretype(sih), 0);
1648 if (ai_get_buscoretype(sih) == PCIE_CORE_ID)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001649 pcicore_fixcfg_pcie(sii->pch,
1650 (struct sbpcieregs __iomem *)regs);
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001651 else if (ai_get_buscoretype(sih) == PCI_CORE_ID)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001652 pcicore_fixcfg_pci(sii->pch, (struct sbpciregs __iomem *)regs);
1653
1654 /* restore the original index */
1655 ai_setcoreidx(&sii->pub, origidx);
1656
1657 pcicore_hwup(sii->pch);
1658 return 0;
1659}
1660
1661/* mask&set gpiocontrol bits */
1662u32 ai_gpiocontrol(struct si_pub *sih, u32 mask, u32 val, u8 priority)
1663{
1664 uint regoff;
1665
1666 regoff = offsetof(struct chipcregs, gpiocontrol);
1667 return ai_corereg(sih, SI_CC_IDX, regoff, mask, val);
1668}
1669
1670void ai_chipcontrl_epa4331(struct si_pub *sih, bool on)
1671{
1672 struct si_info *sii;
1673 struct chipcregs __iomem *cc;
1674 uint origidx;
1675 u32 val;
1676
1677 sii = (struct si_info *)sih;
1678 origidx = ai_coreidx(sih);
1679
1680 cc = (struct chipcregs __iomem *) ai_setcore(sih, CC_CORE_ID, 0);
1681
1682 val = R_REG(&cc->chipcontrol);
1683
1684 if (on) {
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001685 if (ai_get_chippkg(sih) == 9 || ai_get_chippkg(sih) == 0xb)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001686 /* Ext PA Controls for 4331 12x9 Package */
1687 W_REG(&cc->chipcontrol, val |
1688 CCTRL4331_EXTPA_EN |
1689 CCTRL4331_EXTPA_ON_GPIO2_5);
1690 else
1691 /* Ext PA Controls for 4331 12x12 Package */
1692 W_REG(&cc->chipcontrol,
1693 val | CCTRL4331_EXTPA_EN);
1694 } else {
1695 val &= ~(CCTRL4331_EXTPA_EN | CCTRL4331_EXTPA_ON_GPIO2_5);
1696 W_REG(&cc->chipcontrol, val);
1697 }
1698
1699 ai_setcoreidx(sih, origidx);
1700}
1701
1702/* Enable BT-COEX & Ex-PA for 4313 */
1703void ai_epa_4313war(struct si_pub *sih)
1704{
1705 struct si_info *sii;
1706 struct chipcregs __iomem *cc;
1707 uint origidx;
1708
1709 sii = (struct si_info *)sih;
1710 origidx = ai_coreidx(sih);
1711
1712 cc = ai_setcore(sih, CC_CORE_ID, 0);
1713
1714 /* EPA Fix */
1715 W_REG(&cc->gpiocontrol,
1716 R_REG(&cc->gpiocontrol) | GPIO_CTRL_EPA_EN_MASK);
1717
1718 ai_setcoreidx(sih, origidx);
1719}
1720
1721/* check if the device is removed */
1722bool ai_deviceremoved(struct si_pub *sih)
1723{
1724 u32 w;
1725 struct si_info *sii;
1726
1727 sii = (struct si_info *)sih;
1728
Arend van Sprielcbc80db2011-12-08 15:06:48 -08001729 pci_read_config_dword(sii->pcibus, PCI_VENDOR_ID, &w);
Arend van Spriel5b435de2011-10-05 13:19:03 +02001730 if ((w & 0xFFFF) != PCI_VENDOR_ID_BROADCOM)
1731 return true;
1732
1733 return false;
1734}
1735
1736bool ai_is_sprom_available(struct si_pub *sih)
1737{
Arend van Spriel2e397c32011-12-08 15:06:44 -08001738 struct si_info *sii = (struct si_info *)sih;
1739
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001740 if (ai_get_ccrev(sih) >= 31) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001741 uint origidx;
1742 struct chipcregs __iomem *cc;
1743 u32 sromctrl;
1744
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001745 if ((ai_get_cccaps(sih) & CC_CAP_SROM) == 0)
Arend van Spriel5b435de2011-10-05 13:19:03 +02001746 return false;
1747
Arend van Spriel5b435de2011-10-05 13:19:03 +02001748 origidx = sii->curidx;
1749 cc = ai_setcoreidx(sih, SI_CC_IDX);
1750 sromctrl = R_REG(&cc->sromcontrol);
1751 ai_setcoreidx(sih, origidx);
1752 return sromctrl & SRC_PRESENT;
1753 }
1754
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001755 switch (ai_get_chip_id(sih)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001756 case BCM4313_CHIP_ID:
Arend van Spriel2e397c32011-12-08 15:06:44 -08001757 return (sii->chipst & CST4313_SPROM_PRESENT) != 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001758 default:
1759 return true;
1760 }
1761}
1762
1763bool ai_is_otp_disabled(struct si_pub *sih)
1764{
Arend van Spriel2e397c32011-12-08 15:06:44 -08001765 struct si_info *sii = (struct si_info *)sih;
1766
Arend van Sprielb2ffec42011-12-08 15:06:45 -08001767 switch (ai_get_chip_id(sih)) {
Arend van Spriel5b435de2011-10-05 13:19:03 +02001768 case BCM4313_CHIP_ID:
Arend van Spriel2e397c32011-12-08 15:06:44 -08001769 return (sii->chipst & CST4313_OTP_PRESENT) == 0;
Arend van Spriel5b435de2011-10-05 13:19:03 +02001770 /* These chips always have their OTP on */
1771 case BCM43224_CHIP_ID:
1772 case BCM43225_CHIP_ID:
1773 default:
1774 return false;
1775 }
1776}