brcm80211: fmac: move bus core prep code to sdio_chip.c
[pandora-kernel.git] / drivers / net / wireless / brcm80211 / brcmfmac / sdio_chip.h
1 /*
2  * Copyright (c) 2011 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
17 #ifndef _BRCMFMAC_SDIO_CHIP_H_
18 #define _BRCMFMAC_SDIO_CHIP_H_
19
20 /*
21  * Core reg address translation.
22  * Both macro's returns a 32 bits byte address on the backplane bus.
23  */
24 #define CORE_CC_REG(base, field) \
25                 (base + offsetof(struct chipcregs, field))
26 #define CORE_BUS_REG(base, field) \
27                 (base + offsetof(struct sdpcmd_regs, field))
28 #define CORE_SB(base, field) \
29                 (base + SBCONFIGOFF + offsetof(struct sbconfig, field))
30
31 /* SDIO function 1 register CHIPCLKCSR */
32 /* Force ALP request to backplane */
33 #define SBSDIO_FORCE_ALP                0x01
34 /* Force HT request to backplane */
35 #define SBSDIO_FORCE_HT                 0x02
36 /* Force ILP request to backplane */
37 #define SBSDIO_FORCE_ILP                0x04
38 /* Make ALP ready (power up xtal) */
39 #define SBSDIO_ALP_AVAIL_REQ            0x08
40 /* Make HT ready (power up PLL) */
41 #define SBSDIO_HT_AVAIL_REQ             0x10
42 /* Squelch clock requests from HW */
43 #define SBSDIO_FORCE_HW_CLKREQ_OFF      0x20
44 /* Status: ALP is ready */
45 #define SBSDIO_ALP_AVAIL                0x40
46 /* Status: HT is ready */
47 #define SBSDIO_HT_AVAIL                 0x80
48 #define SBSDIO_AVBITS           (SBSDIO_HT_AVAIL | SBSDIO_ALP_AVAIL)
49 #define SBSDIO_ALPAV(regval)    ((regval) & SBSDIO_AVBITS)
50 #define SBSDIO_HTAV(regval)     (((regval) & SBSDIO_AVBITS) == SBSDIO_AVBITS)
51 #define SBSDIO_ALPONLY(regval)  (SBSDIO_ALPAV(regval) && !SBSDIO_HTAV(regval))
52 #define SBSDIO_CLKAV(regval, alponly) \
53         (SBSDIO_ALPAV(regval) && (alponly ? 1 : SBSDIO_HTAV(regval)))
54
55 struct chip_info {
56         u32 chip;
57         u32 chiprev;
58         u32 cccorebase;
59         u32 ccrev;
60         u32 cccaps;
61         u32 buscorebase; /* 32 bits backplane bus address */
62         u32 buscorerev;
63         u32 buscoretype;
64         u32 ramcorebase;
65         u32 armcorebase;
66         u32 pmurev;
67         u32 ramsize;
68 };
69
70 struct sbconfig {
71         u32 PAD[2];
72         u32 sbipsflag;  /* initiator port ocp slave flag */
73         u32 PAD[3];
74         u32 sbtpsflag;  /* target port ocp slave flag */
75         u32 PAD[11];
76         u32 sbtmerrloga;        /* (sonics >= 2.3) */
77         u32 PAD;
78         u32 sbtmerrlog; /* (sonics >= 2.3) */
79         u32 PAD[3];
80         u32 sbadmatch3; /* address match3 */
81         u32 PAD;
82         u32 sbadmatch2; /* address match2 */
83         u32 PAD;
84         u32 sbadmatch1; /* address match1 */
85         u32 PAD[7];
86         u32 sbimstate;  /* initiator agent state */
87         u32 sbintvec;   /* interrupt mask */
88         u32 sbtmstatelow;       /* target state */
89         u32 sbtmstatehigh;      /* target state */
90         u32 sbbwa0;             /* bandwidth allocation table0 */
91         u32 PAD;
92         u32 sbimconfiglow;      /* initiator configuration */
93         u32 sbimconfighigh;     /* initiator configuration */
94         u32 sbadmatch0; /* address match0 */
95         u32 PAD;
96         u32 sbtmconfiglow;      /* target configuration */
97         u32 sbtmconfighigh;     /* target configuration */
98         u32 sbbconfig;  /* broadcast configuration */
99         u32 PAD;
100         u32 sbbstate;   /* broadcast state */
101         u32 PAD[3];
102         u32 sbactcnfg;  /* activate configuration */
103         u32 PAD[3];
104         u32 sbflagst;   /* current sbflags */
105         u32 PAD[3];
106         u32 sbidlow;            /* identification */
107         u32 sbidhigh;   /* identification */
108 };
109
110 extern int brcmf_sdio_chip_attach(struct brcmf_sdio_dev *sdiodev,
111                                   struct chip_info *ci, u32 regs);
112
113
114 #endif          /* _BRCMFMAC_SDIO_CHIP_H_ */