blob: 8b1322296fed4b6dc8435ded314a6dbc01613f9e [file] [log] [blame]
Michael Buesch61e115a2007-09-18 15:12:50 -04001#ifndef LINUX_SSB_H_
2#define LINUX_SSB_H_
3
4#include <linux/device.h>
5#include <linux/list.h>
6#include <linux/types.h>
7#include <linux/spinlock.h>
8#include <linux/pci.h>
Hauke Mehrtensec43b082012-11-20 22:24:33 +00009#include <linux/gpio.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040010#include <linux/mod_devicetable.h>
Michael Buesch9c0c7a42008-07-09 15:48:45 +020011#include <linux/dma-mapping.h>
Hauke Mehrtensbde327e2012-12-05 18:46:08 +010012#include <linux/platform_device.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040013
14#include <linux/ssb/ssb_regs.h>
15
16
17struct pcmcia_device;
18struct ssb_bus;
19struct ssb_driver;
20
Rafał Miłeckib0f70292012-01-02 08:41:23 +010021struct ssb_sprom_core_pwr_info {
22 u8 itssi_2g, itssi_5g;
23 u8 maxpwr_2g, maxpwr_5gl, maxpwr_5g, maxpwr_5gh;
Hauke Mehrtens3b64e6f2012-02-28 00:56:06 +010024 u16 pa_2g[4], pa_5gl[4], pa_5g[4], pa_5gh[4];
Rafał Miłeckib0f70292012-01-02 08:41:23 +010025};
26
Michael Buesch61e115a2007-09-18 15:12:50 -040027struct ssb_sprom {
28 u8 revision;
Hauke Mehrtens85249822013-02-18 21:47:45 +010029 u8 il0mac[6] __aligned(sizeof(u16)); /* MAC address for 802.11b/g */
30 u8 et0mac[6] __aligned(sizeof(u16)); /* MAC address for Ethernet */
31 u8 et1mac[6] __aligned(sizeof(u16)); /* MAC address for 802.11a */
Larry Fingerac82fab2007-11-09 16:54:45 -060032 u8 et0phyaddr; /* MII address for enet0 */
33 u8 et1phyaddr; /* MII address for enet1 */
Michael Buesche861b982007-12-22 21:51:30 +010034 u8 et0mdcport; /* MDIO for enet0 */
35 u8 et1mdcport; /* MDIO for enet1 */
Rafał Miłeckie2d646c2011-08-28 18:47:22 +020036 u16 board_rev; /* Board revision number from SPROM. */
Hauke Mehrtens52aa63f2012-02-28 00:56:08 +010037 u16 board_num; /* Board number from SPROM. */
38 u16 board_type; /* Board type from SPROM. */
Larry Fingerac82fab2007-11-09 16:54:45 -060039 u8 country_code; /* Country Code */
Hauke Mehrtens03a56422012-02-28 00:56:07 +010040 char alpha2[2]; /* Country Code as two chars like EU or US */
Hauke Mehrtensedd8d902012-02-28 00:56:04 +010041 u8 leddc_on_time; /* LED Powersave Duty Cycle On Count */
42 u8 leddc_off_time; /* LED Powersave Duty Cycle Off Count */
Gábor Stefanikf6790562009-08-10 21:23:08 +020043 u8 ant_available_a; /* 2GHz antenna available bits (up to 4) */
44 u8 ant_available_bg; /* 5GHz antenna available bits (up to 4) */
Larry Fingerac82fab2007-11-09 16:54:45 -060045 u16 pa0b0;
46 u16 pa0b1;
47 u16 pa0b2;
48 u16 pa1b0;
49 u16 pa1b1;
50 u16 pa1b2;
Gábor Stefanikf6790562009-08-10 21:23:08 +020051 u16 pa1lob0;
52 u16 pa1lob1;
53 u16 pa1lob2;
54 u16 pa1hib0;
55 u16 pa1hib1;
56 u16 pa1hib2;
Larry Fingerac82fab2007-11-09 16:54:45 -060057 u8 gpio0; /* GPIO pin 0 */
58 u8 gpio1; /* GPIO pin 1 */
59 u8 gpio2; /* GPIO pin 2 */
60 u8 gpio3; /* GPIO pin 3 */
Hauke Mehrtensedd8d902012-02-28 00:56:04 +010061 u8 maxpwr_bg; /* 2.4GHz Amplifier Max Power (in dBm Q5.2) */
62 u8 maxpwr_al; /* 5.2GHz Amplifier Max Power (in dBm Q5.2) */
63 u8 maxpwr_a; /* 5.3GHz Amplifier Max Power (in dBm Q5.2) */
64 u8 maxpwr_ah; /* 5.8GHz Amplifier Max Power (in dBm Q5.2) */
Larry Fingerac82fab2007-11-09 16:54:45 -060065 u8 itssi_a; /* Idle TSSI Target for A-PHY */
66 u8 itssi_bg; /* Idle TSSI Target for B/G-PHY */
Gábor Stefanikf6790562009-08-10 21:23:08 +020067 u8 tri2g; /* 2.4GHz TX isolation */
68 u8 tri5gl; /* 5.2GHz TX isolation */
69 u8 tri5g; /* 5.3GHz TX isolation */
70 u8 tri5gh; /* 5.8GHz TX isolation */
Rafał Miłecki172c69a2010-11-28 10:39:35 +010071 u8 txpid2g[4]; /* 2GHz TX power index */
72 u8 txpid5gl[4]; /* 4.9 - 5.1GHz TX power index */
73 u8 txpid5g[4]; /* 5.1 - 5.5GHz TX power index */
74 u8 txpid5gh[4]; /* 5.5 - ...GHz TX power index */
Hauke Mehrtensedd8d902012-02-28 00:56:04 +010075 s8 rxpo2g; /* 2GHz RX power offset */
76 s8 rxpo5g; /* 5GHz RX power offset */
Gábor Stefanikf6790562009-08-10 21:23:08 +020077 u8 rssisav2g; /* 2GHz RSSI params */
78 u8 rssismc2g;
79 u8 rssismf2g;
80 u8 bxa2g; /* 2GHz BX arch */
81 u8 rssisav5g; /* 5GHz RSSI params */
82 u8 rssismc5g;
83 u8 rssismf5g;
84 u8 bxa5g; /* 5GHz BX arch */
85 u16 cck2gpo; /* CCK power offset */
86 u32 ofdm2gpo; /* 2.4GHz OFDM power offset */
87 u32 ofdm5glpo; /* 5.2GHz OFDM power offset */
88 u32 ofdm5gpo; /* 5.3GHz OFDM power offset */
89 u32 ofdm5ghpo; /* 5.8GHz OFDM power offset */
90 u16 boardflags_lo; /* Board flags (bits 0-15) */
91 u16 boardflags_hi; /* Board flags (bits 16-31) */
92 u16 boardflags2_lo; /* Board flags (bits 32-47) */
93 u16 boardflags2_hi; /* Board flags (bits 48-63) */
94 /* TODO store board flags in a single u64 */
Michael Buesche861b982007-12-22 21:51:30 +010095
Rafał Miłeckib0f70292012-01-02 08:41:23 +010096 struct ssb_sprom_core_pwr_info core_pwr_info[4];
97
Michael Buesche861b982007-12-22 21:51:30 +010098 /* Antenna gain values for up to 4 antennas
99 * on each band. Values in dBm/4 (Q5.2). Negative gain means the
100 * loss in the connectors is bigger than the gain. */
101 struct {
Hauke Mehrtensf8f8a662012-02-28 00:56:05 +0100102 s8 a0, a1, a2, a3;
Michael Buesche861b982007-12-22 21:51:30 +0100103 } antenna_gain;
Larry Fingerac82fab2007-11-09 16:54:45 -0600104
Rafał Miłecki8a5ac6e2011-12-08 18:02:21 +0100105 struct {
106 struct {
107 u8 tssipos, extpa_gain, pdet_range, tr_iso, antswlut;
108 } ghz2;
109 struct {
110 u8 tssipos, extpa_gain, pdet_range, tr_iso, antswlut;
111 } ghz5;
112 } fem;
113
Hauke Mehrtens52aa63f2012-02-28 00:56:08 +0100114 u16 mcs2gpo[8];
115 u16 mcs5gpo[8];
116 u16 mcs5glpo[8];
117 u16 mcs5ghpo[8];
118 u8 opo;
119
120 u8 rxgainerr2ga[3];
121 u8 rxgainerr5gla[3];
122 u8 rxgainerr5gma[3];
123 u8 rxgainerr5gha[3];
124 u8 rxgainerr5gua[3];
125
126 u8 noiselvl2ga[3];
127 u8 noiselvl5gla[3];
128 u8 noiselvl5gma[3];
129 u8 noiselvl5gha[3];
130 u8 noiselvl5gua[3];
131
132 u8 regrev;
133 u8 txchain;
134 u8 rxchain;
135 u8 antswitch;
136 u16 cddpo;
137 u16 stbcpo;
138 u16 bw40po;
139 u16 bwduppo;
140
141 u8 tempthresh;
142 u8 tempoffset;
143 u16 rawtempsense;
144 u8 measpower;
145 u8 tempsense_slope;
146 u8 tempcorrx;
147 u8 tempsense_option;
148 u8 freqoffset_corr;
149 u8 iqcal_swp_dis;
150 u8 hw_iqcal_en;
151 u8 elna2g;
152 u8 elna5g;
153 u8 phycal_tempdelta;
154 u8 temps_period;
155 u8 temps_hysteresis;
156 u8 measpower1;
157 u8 measpower2;
158 u8 pcieingress_war;
159
160 /* power per rate from sromrev 9 */
161 u16 cckbw202gpo;
162 u16 cckbw20ul2gpo;
163 u32 legofdmbw202gpo;
164 u32 legofdmbw20ul2gpo;
165 u32 legofdmbw205glpo;
166 u32 legofdmbw20ul5glpo;
167 u32 legofdmbw205gmpo;
168 u32 legofdmbw20ul5gmpo;
169 u32 legofdmbw205ghpo;
170 u32 legofdmbw20ul5ghpo;
171 u32 mcsbw202gpo;
172 u32 mcsbw20ul2gpo;
173 u32 mcsbw402gpo;
174 u32 mcsbw205glpo;
175 u32 mcsbw20ul5glpo;
176 u32 mcsbw405glpo;
177 u32 mcsbw205gmpo;
178 u32 mcsbw20ul5gmpo;
179 u32 mcsbw405gmpo;
180 u32 mcsbw205ghpo;
181 u32 mcsbw20ul5ghpo;
182 u32 mcsbw405ghpo;
183 u16 mcs32po;
184 u16 legofdm40duppo;
185 u8 sar2g;
186 u8 sar5g;
Michael Buesch61e115a2007-09-18 15:12:50 -0400187};
188
189/* Information about the PCB the circuitry is soldered on. */
190struct ssb_boardinfo {
191 u16 vendor;
192 u16 type;
Michael Buesch61e115a2007-09-18 15:12:50 -0400193};
194
195
196struct ssb_device;
197/* Lowlevel read/write operations on the device MMIO.
198 * Internal, don't use that outside of ssb. */
199struct ssb_bus_ops {
Michael Bueschffc76892008-02-20 19:08:10 +0100200 u8 (*read8)(struct ssb_device *dev, u16 offset);
Michael Buesch61e115a2007-09-18 15:12:50 -0400201 u16 (*read16)(struct ssb_device *dev, u16 offset);
202 u32 (*read32)(struct ssb_device *dev, u16 offset);
Michael Bueschffc76892008-02-20 19:08:10 +0100203 void (*write8)(struct ssb_device *dev, u16 offset, u8 value);
Michael Buesch61e115a2007-09-18 15:12:50 -0400204 void (*write16)(struct ssb_device *dev, u16 offset, u16 value);
205 void (*write32)(struct ssb_device *dev, u16 offset, u32 value);
Michael Bueschd625a292008-04-02 19:46:56 +0200206#ifdef CONFIG_SSB_BLOCKIO
207 void (*block_read)(struct ssb_device *dev, void *buffer,
208 size_t count, u16 offset, u8 reg_width);
209 void (*block_write)(struct ssb_device *dev, const void *buffer,
210 size_t count, u16 offset, u8 reg_width);
211#endif
Michael Buesch61e115a2007-09-18 15:12:50 -0400212};
213
214
215/* Core-ID values. */
216#define SSB_DEV_CHIPCOMMON 0x800
217#define SSB_DEV_ILINE20 0x801
218#define SSB_DEV_SDRAM 0x803
219#define SSB_DEV_PCI 0x804
220#define SSB_DEV_MIPS 0x805
221#define SSB_DEV_ETHERNET 0x806
222#define SSB_DEV_V90 0x807
223#define SSB_DEV_USB11_HOSTDEV 0x808
224#define SSB_DEV_ADSL 0x809
225#define SSB_DEV_ILINE100 0x80A
226#define SSB_DEV_IPSEC 0x80B
227#define SSB_DEV_PCMCIA 0x80D
228#define SSB_DEV_INTERNAL_MEM 0x80E
229#define SSB_DEV_MEMC_SDRAM 0x80F
230#define SSB_DEV_EXTIF 0x811
231#define SSB_DEV_80211 0x812
232#define SSB_DEV_MIPS_3302 0x816
233#define SSB_DEV_USB11_HOST 0x817
234#define SSB_DEV_USB11_DEV 0x818
235#define SSB_DEV_USB20_HOST 0x819
236#define SSB_DEV_USB20_DEV 0x81A
237#define SSB_DEV_SDIO_HOST 0x81B
238#define SSB_DEV_ROBOSWITCH 0x81C
239#define SSB_DEV_PARA_ATA 0x81D
240#define SSB_DEV_SATA_XORDMA 0x81E
241#define SSB_DEV_ETHERNET_GBIT 0x81F
242#define SSB_DEV_PCIE 0x820
243#define SSB_DEV_MIMO_PHY 0x821
244#define SSB_DEV_SRAM_CTRLR 0x822
245#define SSB_DEV_MINI_MACPHY 0x823
246#define SSB_DEV_ARM_1176 0x824
247#define SSB_DEV_ARM_7TDMI 0x825
Hauke Mehrtensccaf8c32012-05-31 22:38:22 +0200248#define SSB_DEV_ARM_CM3 0x82A
Michael Buesch61e115a2007-09-18 15:12:50 -0400249
250/* Vendor-ID values */
251#define SSB_VENDOR_BROADCOM 0x4243
252
253/* Some kernel subsystems poke with dev->drvdata, so we must use the
254 * following ugly workaround to get from struct device to struct ssb_device */
255struct __ssb_dev_wrapper {
256 struct device dev;
257 struct ssb_device *sdev;
258};
259
260struct ssb_device {
261 /* Having a copy of the ops pointer in each dev struct
262 * is an optimization. */
263 const struct ssb_bus_ops *ops;
264
FUJITA Tomonori14f92952010-06-03 19:37:27 -0700265 struct device *dev, *dma_dev;
Michael Buesch4ac58462008-04-11 11:59:00 +0200266
Michael Buesch61e115a2007-09-18 15:12:50 -0400267 struct ssb_bus *bus;
268 struct ssb_device_id id;
269
270 u8 core_index;
271 unsigned int irq;
272
273 /* Internal-only stuff follows. */
274 void *drvdata; /* Per-device data */
275 void *devtypedata; /* Per-devicetype (eg 802.11) data */
276};
277
278/* Go from struct device to struct ssb_device. */
279static inline
280struct ssb_device * dev_to_ssb_dev(struct device *dev)
281{
282 struct __ssb_dev_wrapper *wrap;
283 wrap = container_of(dev, struct __ssb_dev_wrapper, dev);
284 return wrap->sdev;
285}
286
287/* Device specific user data */
288static inline
289void ssb_set_drvdata(struct ssb_device *dev, void *data)
290{
291 dev->drvdata = data;
292}
293static inline
294void * ssb_get_drvdata(struct ssb_device *dev)
295{
296 return dev->drvdata;
297}
298
299/* Devicetype specific user data. This is per device-type (not per device) */
300void ssb_set_devtypedata(struct ssb_device *dev, void *data);
301static inline
302void * ssb_get_devtypedata(struct ssb_device *dev)
303{
304 return dev->devtypedata;
305}
306
307
308struct ssb_driver {
309 const char *name;
310 const struct ssb_device_id *id_table;
311
312 int (*probe)(struct ssb_device *dev, const struct ssb_device_id *id);
313 void (*remove)(struct ssb_device *dev);
314 int (*suspend)(struct ssb_device *dev, pm_message_t state);
315 int (*resume)(struct ssb_device *dev);
316 void (*shutdown)(struct ssb_device *dev);
317
318 struct device_driver drv;
319};
320#define drv_to_ssb_drv(_drv) container_of(_drv, struct ssb_driver, drv)
321
322extern int __ssb_driver_register(struct ssb_driver *drv, struct module *owner);
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400323#define ssb_driver_register(drv) \
324 __ssb_driver_register(drv, THIS_MODULE)
325
Michael Buesch61e115a2007-09-18 15:12:50 -0400326extern void ssb_driver_unregister(struct ssb_driver *drv);
327
328
329
330
331enum ssb_bustype {
332 SSB_BUSTYPE_SSB, /* This SSB bus is the system bus */
333 SSB_BUSTYPE_PCI, /* SSB is connected to PCI bus */
334 SSB_BUSTYPE_PCMCIA, /* SSB is connected to PCMCIA bus */
Albert Herranz24ea6022009-09-08 19:30:12 +0200335 SSB_BUSTYPE_SDIO, /* SSB is connected to SDIO bus */
Michael Buesch61e115a2007-09-18 15:12:50 -0400336};
337
338/* board_vendor */
339#define SSB_BOARDVENDOR_BCM 0x14E4 /* Broadcom */
340#define SSB_BOARDVENDOR_DELL 0x1028 /* Dell */
341#define SSB_BOARDVENDOR_HP 0x0E11 /* HP */
342/* board_type */
343#define SSB_BOARD_BCM94306MP 0x0418
344#define SSB_BOARD_BCM4309G 0x0421
345#define SSB_BOARD_BCM4306CB 0x0417
346#define SSB_BOARD_BCM4309MP 0x040C
347#define SSB_BOARD_MP4318 0x044A
348#define SSB_BOARD_BU4306 0x0416
349#define SSB_BOARD_BU4309 0x040A
350/* chip_package */
351#define SSB_CHIPPACK_BCM4712S 1 /* Small 200pin 4712 */
352#define SSB_CHIPPACK_BCM4712M 2 /* Medium 225pin 4712 */
353#define SSB_CHIPPACK_BCM4712L 0 /* Large 340pin 4712 */
354
355#include <linux/ssb/ssb_driver_chipcommon.h>
356#include <linux/ssb/ssb_driver_mips.h>
357#include <linux/ssb/ssb_driver_extif.h>
358#include <linux/ssb/ssb_driver_pci.h>
359
360struct ssb_bus {
361 /* The MMIO area. */
362 void __iomem *mmio;
363
364 const struct ssb_bus_ops *ops;
365
Michael Buesch8b454992009-10-09 20:32:10 +0200366 /* The core currently mapped into the MMIO window.
367 * Not valid on all host-buses. So don't use outside of SSB. */
Michael Buesch61e115a2007-09-18 15:12:50 -0400368 struct ssb_device *mapped_device;
Albert Herranz24ea6022009-09-08 19:30:12 +0200369 union {
370 /* Currently mapped PCMCIA segment. (bustype == SSB_BUSTYPE_PCMCIA only) */
371 u8 mapped_pcmcia_seg;
372 /* Current SSB base address window for SDIO. */
373 u32 sdio_sbaddr;
374 };
Michael Buesch993e1c72007-12-22 22:01:36 +0100375 /* Lock for core and segment switching.
376 * On PCMCIA-host busses this is used to protect the whole MMIO access. */
Michael Buesch61e115a2007-09-18 15:12:50 -0400377 spinlock_t bar_lock;
378
Michael Buesch8b454992009-10-09 20:32:10 +0200379 /* The host-bus this backplane is running on. */
Michael Buesch61e115a2007-09-18 15:12:50 -0400380 enum ssb_bustype bustype;
Michael Buesch8b454992009-10-09 20:32:10 +0200381 /* Pointers to the host-bus. Check bustype before using any of these pointers. */
382 union {
383 /* Pointer to the PCI bus (only valid if bustype == SSB_BUSTYPE_PCI). */
384 struct pci_dev *host_pci;
385 /* Pointer to the PCMCIA device (only if bustype == SSB_BUSTYPE_PCMCIA). */
386 struct pcmcia_device *host_pcmcia;
387 /* Pointer to the SDIO device (only if bustype == SSB_BUSTYPE_SDIO). */
388 struct sdio_func *host_sdio;
389 };
Albert Herranz24ea6022009-09-08 19:30:12 +0200390
391 /* See enum ssb_quirks */
392 unsigned int quirks;
Michael Buesch61e115a2007-09-18 15:12:50 -0400393
Michael Buesche7ec2e32008-03-10 17:26:32 +0100394#ifdef CONFIG_SSB_SPROM
Michael Buesch61e115a2007-09-18 15:12:50 -0400395 /* Mutex to protect the SPROM writing. */
Michael Buesche7ec2e32008-03-10 17:26:32 +0100396 struct mutex sprom_mutex;
Michael Buesch61e115a2007-09-18 15:12:50 -0400397#endif
398
399 /* ID information about the Chip. */
400 u16 chip_id;
Rafał Miłeckice57d9e2011-04-01 12:06:48 +0200401 u8 chip_rev;
Rafał Miłeckiea2db492010-03-31 21:59:21 +0200402 u16 sprom_offset;
Larry Fingerc272ef42007-11-09 16:56:25 -0600403 u16 sprom_size; /* number of words in sprom */
Michael Buesch61e115a2007-09-18 15:12:50 -0400404 u8 chip_package;
405
406 /* List of devices (cores) on the backplane. */
407 struct ssb_device devices[SSB_MAX_NR_CORES];
408 u8 nr_devices;
409
Michael Buesch61e115a2007-09-18 15:12:50 -0400410 /* Software ID number for this bus. */
411 unsigned int busnumber;
412
413 /* The ChipCommon device (if available). */
414 struct ssb_chipcommon chipco;
415 /* The PCI-core device (if available). */
416 struct ssb_pcicore pcicore;
417 /* The MIPS-core device (if available). */
418 struct ssb_mipscore mipscore;
419 /* The EXTif-core device (if available). */
420 struct ssb_extif extif;
421
422 /* The following structure elements are not available in early
423 * SSB initialization. Though, they are available for regular
424 * registered drivers at any stage. So be careful when
425 * using them in the ssb core code. */
426
427 /* ID information about the PCB. */
428 struct ssb_boardinfo boardinfo;
429 /* Contents of the SPROM. */
430 struct ssb_sprom sprom;
Michael Buesch7cb44612008-02-19 17:46:48 +0100431 /* If the board has a cardbus slot, this is set to true. */
432 bool has_cardbus_slot;
Michael Buesch61e115a2007-09-18 15:12:50 -0400433
Michael Buesch53521d82008-02-19 16:22:50 +0100434#ifdef CONFIG_SSB_EMBEDDED
435 /* Lock for GPIO register access. */
436 spinlock_t gpio_lock;
Hauke Mehrtensbde327e2012-12-05 18:46:08 +0100437 struct platform_device *watchdog;
Michael Buesch53521d82008-02-19 16:22:50 +0100438#endif /* EMBEDDED */
Hauke Mehrtensec43b082012-11-20 22:24:33 +0000439#ifdef CONFIG_SSB_DRIVER_GPIO
440 struct gpio_chip gpio;
441#endif /* DRIVER_GPIO */
Michael Buesch53521d82008-02-19 16:22:50 +0100442
Michael Buesch61e115a2007-09-18 15:12:50 -0400443 /* Internal-only stuff follows. Do not touch. */
444 struct list_head list;
445#ifdef CONFIG_SSB_DEBUG
446 /* Is the bus already powered up? */
447 bool powered_up;
448 int power_warn_count;
449#endif /* DEBUG */
450};
451
Albert Herranz24ea6022009-09-08 19:30:12 +0200452enum ssb_quirks {
453 /* SDIO connected card requires performing a read after writing a 32-bit value */
454 SSB_QUIRK_SDIO_READ_AFTER_WRITE32 = (1 << 0),
455};
456
Michael Buesch61e115a2007-09-18 15:12:50 -0400457/* The initialization-invariants. */
458struct ssb_init_invariants {
Michael Buesch7cb44612008-02-19 17:46:48 +0100459 /* Versioning information about the PCB. */
Michael Buesch61e115a2007-09-18 15:12:50 -0400460 struct ssb_boardinfo boardinfo;
Michael Buesch7cb44612008-02-19 17:46:48 +0100461 /* The SPROM information. That's either stored in an
462 * EEPROM or NVRAM on the board. */
Michael Buesch61e115a2007-09-18 15:12:50 -0400463 struct ssb_sprom sprom;
Michael Buesch7cb44612008-02-19 17:46:48 +0100464 /* If the board has a cardbus slot, this is set to true. */
465 bool has_cardbus_slot;
Michael Buesch61e115a2007-09-18 15:12:50 -0400466};
467/* Type of function to fetch the invariants. */
468typedef int (*ssb_invariants_func_t)(struct ssb_bus *bus,
469 struct ssb_init_invariants *iv);
470
471/* Register a SSB system bus. get_invariants() is called after the
472 * basic system devices are initialized.
473 * The invariants are usually fetched from some NVRAM.
474 * Put the invariants into the struct pointed to by iv. */
475extern int ssb_bus_ssbbus_register(struct ssb_bus *bus,
476 unsigned long baseaddr,
477 ssb_invariants_func_t get_invariants);
478#ifdef CONFIG_SSB_PCIHOST
479extern int ssb_bus_pcibus_register(struct ssb_bus *bus,
480 struct pci_dev *host_pci);
481#endif /* CONFIG_SSB_PCIHOST */
482#ifdef CONFIG_SSB_PCMCIAHOST
483extern int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
484 struct pcmcia_device *pcmcia_dev,
485 unsigned long baseaddr);
486#endif /* CONFIG_SSB_PCMCIAHOST */
Albert Herranz24ea6022009-09-08 19:30:12 +0200487#ifdef CONFIG_SSB_SDIOHOST
488extern int ssb_bus_sdiobus_register(struct ssb_bus *bus,
489 struct sdio_func *sdio_func,
490 unsigned int quirks);
491#endif /* CONFIG_SSB_SDIOHOST */
492
Michael Buesch61e115a2007-09-18 15:12:50 -0400493
494extern void ssb_bus_unregister(struct ssb_bus *bus);
495
John W. Linvilled53cdbb2010-03-31 21:39:35 +0200496/* Does the device have an SPROM? */
497extern bool ssb_is_sprom_available(struct ssb_bus *bus);
498
Michael Buesche79c1ba2009-02-27 16:59:05 +0100499/* Set a fallback SPROM.
500 * See kdoc at the function definition for complete documentation. */
Hauke Mehrtensb3ae52b2011-05-10 23:31:30 +0200501extern int ssb_arch_register_fallback_sprom(
502 int (*sprom_callback)(struct ssb_bus *bus,
503 struct ssb_sprom *out));
Michael Buesche79c1ba2009-02-27 16:59:05 +0100504
Michael Buesch8fe2b652008-03-30 00:10:50 +0100505/* Suspend a SSB bus.
506 * Call this from the parent bus suspend routine. */
507extern int ssb_bus_suspend(struct ssb_bus *bus);
508/* Resume a SSB bus.
509 * Call this from the parent bus resume routine. */
510extern int ssb_bus_resume(struct ssb_bus *bus);
511
Michael Buesch61e115a2007-09-18 15:12:50 -0400512extern u32 ssb_clockspeed(struct ssb_bus *bus);
513
514/* Is the device enabled in hardware? */
515int ssb_device_is_enabled(struct ssb_device *dev);
516/* Enable a device and pass device-specific SSB_TMSLOW flags.
517 * If no device-specific flags are available, use 0. */
518void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags);
519/* Disable a device in hardware and pass SSB_TMSLOW flags (if any). */
520void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags);
521
522
523/* Device MMIO register read/write functions. */
Michael Bueschffc76892008-02-20 19:08:10 +0100524static inline u8 ssb_read8(struct ssb_device *dev, u16 offset)
525{
526 return dev->ops->read8(dev, offset);
527}
Michael Buesch61e115a2007-09-18 15:12:50 -0400528static inline u16 ssb_read16(struct ssb_device *dev, u16 offset)
529{
530 return dev->ops->read16(dev, offset);
531}
532static inline u32 ssb_read32(struct ssb_device *dev, u16 offset)
533{
534 return dev->ops->read32(dev, offset);
535}
Michael Bueschffc76892008-02-20 19:08:10 +0100536static inline void ssb_write8(struct ssb_device *dev, u16 offset, u8 value)
537{
538 dev->ops->write8(dev, offset, value);
539}
Michael Buesch61e115a2007-09-18 15:12:50 -0400540static inline void ssb_write16(struct ssb_device *dev, u16 offset, u16 value)
541{
542 dev->ops->write16(dev, offset, value);
543}
544static inline void ssb_write32(struct ssb_device *dev, u16 offset, u32 value)
545{
546 dev->ops->write32(dev, offset, value);
547}
Michael Bueschd625a292008-04-02 19:46:56 +0200548#ifdef CONFIG_SSB_BLOCKIO
549static inline void ssb_block_read(struct ssb_device *dev, void *buffer,
550 size_t count, u16 offset, u8 reg_width)
551{
552 dev->ops->block_read(dev, buffer, count, offset, reg_width);
553}
554
555static inline void ssb_block_write(struct ssb_device *dev, const void *buffer,
556 size_t count, u16 offset, u8 reg_width)
557{
558 dev->ops->block_write(dev, buffer, count, offset, reg_width);
559}
560#endif /* CONFIG_SSB_BLOCKIO */
Michael Buesch61e115a2007-09-18 15:12:50 -0400561
562
Michael Bueschf2257632008-06-20 11:50:29 +0200563/* The SSB DMA API. Use this API for any DMA operation on the device.
564 * This API basically is a wrapper that calls the correct DMA API for
565 * the host device type the SSB device is attached to. */
566
Michael Buesch61e115a2007-09-18 15:12:50 -0400567/* Translation (routing) bits that need to be ORed to DMA
568 * addresses before they are given to a device. */
569extern u32 ssb_dma_translation(struct ssb_device *dev);
570#define SSB_DMA_TRANSLATION_MASK 0xC0000000
571#define SSB_DMA_TRANSLATION_SHIFT 30
572
Michael Bueschf2257632008-06-20 11:50:29 +0200573static inline void __cold __ssb_dma_not_implemented(struct ssb_device *dev)
574{
575#ifdef CONFIG_SSB_DEBUG
576 printk(KERN_ERR "SSB: BUG! Calling DMA API for "
577 "unsupported bustype %d\n", dev->bus->bustype);
578#endif /* DEBUG */
579}
580
Michael Buesch61e115a2007-09-18 15:12:50 -0400581#ifdef CONFIG_SSB_PCIHOST
582/* PCI-host wrapper driver */
583extern int ssb_pcihost_register(struct pci_driver *driver);
584static inline void ssb_pcihost_unregister(struct pci_driver *driver)
585{
586 pci_unregister_driver(driver);
587}
Miguel Botón961d57c2008-01-01 01:16:46 +0100588
589static inline
590void ssb_pcihost_set_power_state(struct ssb_device *sdev, pci_power_t state)
591{
592 if (sdev->bus->bustype == SSB_BUSTYPE_PCI)
593 pci_set_power_state(sdev->bus->host_pci, state);
594}
Andrew Morton532031d2008-02-04 23:58:42 -0800595#else
596static inline void ssb_pcihost_unregister(struct pci_driver *driver)
597{
598}
599
600static inline
601void ssb_pcihost_set_power_state(struct ssb_device *sdev, pci_power_t state)
602{
603}
Michael Buesch61e115a2007-09-18 15:12:50 -0400604#endif /* CONFIG_SSB_PCIHOST */
605
606
607/* If a driver is shutdown or suspended, call this to signal
608 * that the bus may be completely powered down. SSB will decide,
609 * if it's really time to power down the bus, based on if there
610 * are other devices that want to run. */
611extern int ssb_bus_may_powerdown(struct ssb_bus *bus);
612/* Before initializing and enabling a device, call this to power-up the bus.
613 * If you want to allow use of dynamic-power-control, pass the flag.
614 * Otherwise static always-on powercontrol will be used. */
615extern int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl);
616
Rafał Miłecki8576f812011-05-11 02:10:58 +0200617extern void ssb_commit_settings(struct ssb_bus *bus);
Michael Buesch61e115a2007-09-18 15:12:50 -0400618
619/* Various helper functions */
620extern u32 ssb_admatch_base(u32 adm);
621extern u32 ssb_admatch_size(u32 adm);
622
Michael Bueschaab547c2008-02-29 11:36:12 +0100623/* PCI device mapping and fixup routines.
624 * Called from the architecture pcibios init code.
625 * These are only available on SSB_EMBEDDED configurations. */
626#ifdef CONFIG_SSB_EMBEDDED
627int ssb_pcibios_plat_dev_init(struct pci_dev *dev);
628int ssb_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin);
629#endif /* CONFIG_SSB_EMBEDDED */
Michael Buesch61e115a2007-09-18 15:12:50 -0400630
631#endif /* LINUX_SSB_H_ */