Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 1 | #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> |
| 9 | #include <linux/mod_devicetable.h> |
Michael Buesch | 9c0c7a4 | 2008-07-09 15:48:45 +0200 | [diff] [blame] | 10 | #include <linux/dma-mapping.h> |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 11 | |
| 12 | #include <linux/ssb/ssb_regs.h> |
| 13 | |
| 14 | |
| 15 | struct pcmcia_device; |
| 16 | struct ssb_bus; |
| 17 | struct ssb_driver; |
| 18 | |
Rafał Miłecki | b0f7029 | 2012-01-02 08:41:23 +0100 | [diff] [blame] | 19 | struct ssb_sprom_core_pwr_info { |
| 20 | u8 itssi_2g, itssi_5g; |
| 21 | u8 maxpwr_2g, maxpwr_5gl, maxpwr_5g, maxpwr_5gh; |
Hauke Mehrtens | 3b64e6f | 2012-02-28 00:56:06 +0100 | [diff] [blame^] | 22 | u16 pa_2g[4], pa_5gl[4], pa_5g[4], pa_5gh[4]; |
Rafał Miłecki | b0f7029 | 2012-01-02 08:41:23 +0100 | [diff] [blame] | 23 | }; |
| 24 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 25 | struct ssb_sprom { |
| 26 | u8 revision; |
Larry Finger | ac82fab | 2007-11-09 16:54:45 -0600 | [diff] [blame] | 27 | u8 il0mac[6]; /* MAC address for 802.11b/g */ |
| 28 | u8 et0mac[6]; /* MAC address for Ethernet */ |
| 29 | u8 et1mac[6]; /* MAC address for 802.11a */ |
| 30 | u8 et0phyaddr; /* MII address for enet0 */ |
| 31 | u8 et1phyaddr; /* MII address for enet1 */ |
Michael Buesch | e861b98 | 2007-12-22 21:51:30 +0100 | [diff] [blame] | 32 | u8 et0mdcport; /* MDIO for enet0 */ |
| 33 | u8 et1mdcport; /* MDIO for enet1 */ |
Rafał Miłecki | e2d646c | 2011-08-28 18:47:22 +0200 | [diff] [blame] | 34 | u16 board_rev; /* Board revision number from SPROM. */ |
Larry Finger | ac82fab | 2007-11-09 16:54:45 -0600 | [diff] [blame] | 35 | u8 country_code; /* Country Code */ |
Hauke Mehrtens | edd8d90 | 2012-02-28 00:56:04 +0100 | [diff] [blame] | 36 | u8 leddc_on_time; /* LED Powersave Duty Cycle On Count */ |
| 37 | u8 leddc_off_time; /* LED Powersave Duty Cycle Off Count */ |
Gábor Stefanik | f679056 | 2009-08-10 21:23:08 +0200 | [diff] [blame] | 38 | u8 ant_available_a; /* 2GHz antenna available bits (up to 4) */ |
| 39 | u8 ant_available_bg; /* 5GHz antenna available bits (up to 4) */ |
Larry Finger | ac82fab | 2007-11-09 16:54:45 -0600 | [diff] [blame] | 40 | u16 pa0b0; |
| 41 | u16 pa0b1; |
| 42 | u16 pa0b2; |
| 43 | u16 pa1b0; |
| 44 | u16 pa1b1; |
| 45 | u16 pa1b2; |
Gábor Stefanik | f679056 | 2009-08-10 21:23:08 +0200 | [diff] [blame] | 46 | u16 pa1lob0; |
| 47 | u16 pa1lob1; |
| 48 | u16 pa1lob2; |
| 49 | u16 pa1hib0; |
| 50 | u16 pa1hib1; |
| 51 | u16 pa1hib2; |
Larry Finger | ac82fab | 2007-11-09 16:54:45 -0600 | [diff] [blame] | 52 | u8 gpio0; /* GPIO pin 0 */ |
| 53 | u8 gpio1; /* GPIO pin 1 */ |
| 54 | u8 gpio2; /* GPIO pin 2 */ |
| 55 | u8 gpio3; /* GPIO pin 3 */ |
Hauke Mehrtens | edd8d90 | 2012-02-28 00:56:04 +0100 | [diff] [blame] | 56 | u8 maxpwr_bg; /* 2.4GHz Amplifier Max Power (in dBm Q5.2) */ |
| 57 | u8 maxpwr_al; /* 5.2GHz Amplifier Max Power (in dBm Q5.2) */ |
| 58 | u8 maxpwr_a; /* 5.3GHz Amplifier Max Power (in dBm Q5.2) */ |
| 59 | u8 maxpwr_ah; /* 5.8GHz Amplifier Max Power (in dBm Q5.2) */ |
Larry Finger | ac82fab | 2007-11-09 16:54:45 -0600 | [diff] [blame] | 60 | u8 itssi_a; /* Idle TSSI Target for A-PHY */ |
| 61 | u8 itssi_bg; /* Idle TSSI Target for B/G-PHY */ |
Gábor Stefanik | f679056 | 2009-08-10 21:23:08 +0200 | [diff] [blame] | 62 | u8 tri2g; /* 2.4GHz TX isolation */ |
| 63 | u8 tri5gl; /* 5.2GHz TX isolation */ |
| 64 | u8 tri5g; /* 5.3GHz TX isolation */ |
| 65 | u8 tri5gh; /* 5.8GHz TX isolation */ |
Rafał Miłecki | 172c69a | 2010-11-28 10:39:35 +0100 | [diff] [blame] | 66 | u8 txpid2g[4]; /* 2GHz TX power index */ |
| 67 | u8 txpid5gl[4]; /* 4.9 - 5.1GHz TX power index */ |
| 68 | u8 txpid5g[4]; /* 5.1 - 5.5GHz TX power index */ |
| 69 | u8 txpid5gh[4]; /* 5.5 - ...GHz TX power index */ |
Hauke Mehrtens | edd8d90 | 2012-02-28 00:56:04 +0100 | [diff] [blame] | 70 | s8 rxpo2g; /* 2GHz RX power offset */ |
| 71 | s8 rxpo5g; /* 5GHz RX power offset */ |
Gábor Stefanik | f679056 | 2009-08-10 21:23:08 +0200 | [diff] [blame] | 72 | u8 rssisav2g; /* 2GHz RSSI params */ |
| 73 | u8 rssismc2g; |
| 74 | u8 rssismf2g; |
| 75 | u8 bxa2g; /* 2GHz BX arch */ |
| 76 | u8 rssisav5g; /* 5GHz RSSI params */ |
| 77 | u8 rssismc5g; |
| 78 | u8 rssismf5g; |
| 79 | u8 bxa5g; /* 5GHz BX arch */ |
| 80 | u16 cck2gpo; /* CCK power offset */ |
| 81 | u32 ofdm2gpo; /* 2.4GHz OFDM power offset */ |
| 82 | u32 ofdm5glpo; /* 5.2GHz OFDM power offset */ |
| 83 | u32 ofdm5gpo; /* 5.3GHz OFDM power offset */ |
| 84 | u32 ofdm5ghpo; /* 5.8GHz OFDM power offset */ |
| 85 | u16 boardflags_lo; /* Board flags (bits 0-15) */ |
| 86 | u16 boardflags_hi; /* Board flags (bits 16-31) */ |
| 87 | u16 boardflags2_lo; /* Board flags (bits 32-47) */ |
| 88 | u16 boardflags2_hi; /* Board flags (bits 48-63) */ |
| 89 | /* TODO store board flags in a single u64 */ |
Michael Buesch | e861b98 | 2007-12-22 21:51:30 +0100 | [diff] [blame] | 90 | |
Rafał Miłecki | b0f7029 | 2012-01-02 08:41:23 +0100 | [diff] [blame] | 91 | struct ssb_sprom_core_pwr_info core_pwr_info[4]; |
| 92 | |
Michael Buesch | e861b98 | 2007-12-22 21:51:30 +0100 | [diff] [blame] | 93 | /* Antenna gain values for up to 4 antennas |
| 94 | * on each band. Values in dBm/4 (Q5.2). Negative gain means the |
| 95 | * loss in the connectors is bigger than the gain. */ |
| 96 | struct { |
Hauke Mehrtens | f8f8a66 | 2012-02-28 00:56:05 +0100 | [diff] [blame] | 97 | s8 a0, a1, a2, a3; |
Michael Buesch | e861b98 | 2007-12-22 21:51:30 +0100 | [diff] [blame] | 98 | } antenna_gain; |
Larry Finger | ac82fab | 2007-11-09 16:54:45 -0600 | [diff] [blame] | 99 | |
Rafał Miłecki | 8a5ac6e | 2011-12-08 18:02:21 +0100 | [diff] [blame] | 100 | struct { |
| 101 | struct { |
| 102 | u8 tssipos, extpa_gain, pdet_range, tr_iso, antswlut; |
| 103 | } ghz2; |
| 104 | struct { |
| 105 | u8 tssipos, extpa_gain, pdet_range, tr_iso, antswlut; |
| 106 | } ghz5; |
| 107 | } fem; |
| 108 | |
Gábor Stefanik | f679056 | 2009-08-10 21:23:08 +0200 | [diff] [blame] | 109 | /* TODO - add any parameters needed from rev 2, 3, 4, 5 or 8 SPROMs */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | /* Information about the PCB the circuitry is soldered on. */ |
| 113 | struct ssb_boardinfo { |
| 114 | u16 vendor; |
| 115 | u16 type; |
Sergei Shtylyov | 304e21b | 2011-07-01 22:35:28 +0400 | [diff] [blame] | 116 | u8 rev; |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 117 | }; |
| 118 | |
| 119 | |
| 120 | struct ssb_device; |
| 121 | /* Lowlevel read/write operations on the device MMIO. |
| 122 | * Internal, don't use that outside of ssb. */ |
| 123 | struct ssb_bus_ops { |
Michael Buesch | ffc7689 | 2008-02-20 19:08:10 +0100 | [diff] [blame] | 124 | u8 (*read8)(struct ssb_device *dev, u16 offset); |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 125 | u16 (*read16)(struct ssb_device *dev, u16 offset); |
| 126 | u32 (*read32)(struct ssb_device *dev, u16 offset); |
Michael Buesch | ffc7689 | 2008-02-20 19:08:10 +0100 | [diff] [blame] | 127 | void (*write8)(struct ssb_device *dev, u16 offset, u8 value); |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 128 | void (*write16)(struct ssb_device *dev, u16 offset, u16 value); |
| 129 | void (*write32)(struct ssb_device *dev, u16 offset, u32 value); |
Michael Buesch | d625a29 | 2008-04-02 19:46:56 +0200 | [diff] [blame] | 130 | #ifdef CONFIG_SSB_BLOCKIO |
| 131 | void (*block_read)(struct ssb_device *dev, void *buffer, |
| 132 | size_t count, u16 offset, u8 reg_width); |
| 133 | void (*block_write)(struct ssb_device *dev, const void *buffer, |
| 134 | size_t count, u16 offset, u8 reg_width); |
| 135 | #endif |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | |
| 139 | /* Core-ID values. */ |
| 140 | #define SSB_DEV_CHIPCOMMON 0x800 |
| 141 | #define SSB_DEV_ILINE20 0x801 |
| 142 | #define SSB_DEV_SDRAM 0x803 |
| 143 | #define SSB_DEV_PCI 0x804 |
| 144 | #define SSB_DEV_MIPS 0x805 |
| 145 | #define SSB_DEV_ETHERNET 0x806 |
| 146 | #define SSB_DEV_V90 0x807 |
| 147 | #define SSB_DEV_USB11_HOSTDEV 0x808 |
| 148 | #define SSB_DEV_ADSL 0x809 |
| 149 | #define SSB_DEV_ILINE100 0x80A |
| 150 | #define SSB_DEV_IPSEC 0x80B |
| 151 | #define SSB_DEV_PCMCIA 0x80D |
| 152 | #define SSB_DEV_INTERNAL_MEM 0x80E |
| 153 | #define SSB_DEV_MEMC_SDRAM 0x80F |
| 154 | #define SSB_DEV_EXTIF 0x811 |
| 155 | #define SSB_DEV_80211 0x812 |
| 156 | #define SSB_DEV_MIPS_3302 0x816 |
| 157 | #define SSB_DEV_USB11_HOST 0x817 |
| 158 | #define SSB_DEV_USB11_DEV 0x818 |
| 159 | #define SSB_DEV_USB20_HOST 0x819 |
| 160 | #define SSB_DEV_USB20_DEV 0x81A |
| 161 | #define SSB_DEV_SDIO_HOST 0x81B |
| 162 | #define SSB_DEV_ROBOSWITCH 0x81C |
| 163 | #define SSB_DEV_PARA_ATA 0x81D |
| 164 | #define SSB_DEV_SATA_XORDMA 0x81E |
| 165 | #define SSB_DEV_ETHERNET_GBIT 0x81F |
| 166 | #define SSB_DEV_PCIE 0x820 |
| 167 | #define SSB_DEV_MIMO_PHY 0x821 |
| 168 | #define SSB_DEV_SRAM_CTRLR 0x822 |
| 169 | #define SSB_DEV_MINI_MACPHY 0x823 |
| 170 | #define SSB_DEV_ARM_1176 0x824 |
| 171 | #define SSB_DEV_ARM_7TDMI 0x825 |
| 172 | |
| 173 | /* Vendor-ID values */ |
| 174 | #define SSB_VENDOR_BROADCOM 0x4243 |
| 175 | |
| 176 | /* Some kernel subsystems poke with dev->drvdata, so we must use the |
| 177 | * following ugly workaround to get from struct device to struct ssb_device */ |
| 178 | struct __ssb_dev_wrapper { |
| 179 | struct device dev; |
| 180 | struct ssb_device *sdev; |
| 181 | }; |
| 182 | |
| 183 | struct ssb_device { |
| 184 | /* Having a copy of the ops pointer in each dev struct |
| 185 | * is an optimization. */ |
| 186 | const struct ssb_bus_ops *ops; |
| 187 | |
FUJITA Tomonori | 14f9295 | 2010-06-03 19:37:27 -0700 | [diff] [blame] | 188 | struct device *dev, *dma_dev; |
Michael Buesch | 4ac5846 | 2008-04-11 11:59:00 +0200 | [diff] [blame] | 189 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 190 | struct ssb_bus *bus; |
| 191 | struct ssb_device_id id; |
| 192 | |
| 193 | u8 core_index; |
| 194 | unsigned int irq; |
| 195 | |
| 196 | /* Internal-only stuff follows. */ |
| 197 | void *drvdata; /* Per-device data */ |
| 198 | void *devtypedata; /* Per-devicetype (eg 802.11) data */ |
| 199 | }; |
| 200 | |
| 201 | /* Go from struct device to struct ssb_device. */ |
| 202 | static inline |
| 203 | struct ssb_device * dev_to_ssb_dev(struct device *dev) |
| 204 | { |
| 205 | struct __ssb_dev_wrapper *wrap; |
| 206 | wrap = container_of(dev, struct __ssb_dev_wrapper, dev); |
| 207 | return wrap->sdev; |
| 208 | } |
| 209 | |
| 210 | /* Device specific user data */ |
| 211 | static inline |
| 212 | void ssb_set_drvdata(struct ssb_device *dev, void *data) |
| 213 | { |
| 214 | dev->drvdata = data; |
| 215 | } |
| 216 | static inline |
| 217 | void * ssb_get_drvdata(struct ssb_device *dev) |
| 218 | { |
| 219 | return dev->drvdata; |
| 220 | } |
| 221 | |
| 222 | /* Devicetype specific user data. This is per device-type (not per device) */ |
| 223 | void ssb_set_devtypedata(struct ssb_device *dev, void *data); |
| 224 | static inline |
| 225 | void * ssb_get_devtypedata(struct ssb_device *dev) |
| 226 | { |
| 227 | return dev->devtypedata; |
| 228 | } |
| 229 | |
| 230 | |
| 231 | struct ssb_driver { |
| 232 | const char *name; |
| 233 | const struct ssb_device_id *id_table; |
| 234 | |
| 235 | int (*probe)(struct ssb_device *dev, const struct ssb_device_id *id); |
| 236 | void (*remove)(struct ssb_device *dev); |
| 237 | int (*suspend)(struct ssb_device *dev, pm_message_t state); |
| 238 | int (*resume)(struct ssb_device *dev); |
| 239 | void (*shutdown)(struct ssb_device *dev); |
| 240 | |
| 241 | struct device_driver drv; |
| 242 | }; |
| 243 | #define drv_to_ssb_drv(_drv) container_of(_drv, struct ssb_driver, drv) |
| 244 | |
| 245 | extern int __ssb_driver_register(struct ssb_driver *drv, struct module *owner); |
Paul Gortmaker | eb5589a | 2011-05-27 09:02:11 -0400 | [diff] [blame] | 246 | #define ssb_driver_register(drv) \ |
| 247 | __ssb_driver_register(drv, THIS_MODULE) |
| 248 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 249 | extern void ssb_driver_unregister(struct ssb_driver *drv); |
| 250 | |
| 251 | |
| 252 | |
| 253 | |
| 254 | enum ssb_bustype { |
| 255 | SSB_BUSTYPE_SSB, /* This SSB bus is the system bus */ |
| 256 | SSB_BUSTYPE_PCI, /* SSB is connected to PCI bus */ |
| 257 | SSB_BUSTYPE_PCMCIA, /* SSB is connected to PCMCIA bus */ |
Albert Herranz | 24ea602 | 2009-09-08 19:30:12 +0200 | [diff] [blame] | 258 | SSB_BUSTYPE_SDIO, /* SSB is connected to SDIO bus */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 259 | }; |
| 260 | |
| 261 | /* board_vendor */ |
| 262 | #define SSB_BOARDVENDOR_BCM 0x14E4 /* Broadcom */ |
| 263 | #define SSB_BOARDVENDOR_DELL 0x1028 /* Dell */ |
| 264 | #define SSB_BOARDVENDOR_HP 0x0E11 /* HP */ |
| 265 | /* board_type */ |
| 266 | #define SSB_BOARD_BCM94306MP 0x0418 |
| 267 | #define SSB_BOARD_BCM4309G 0x0421 |
| 268 | #define SSB_BOARD_BCM4306CB 0x0417 |
| 269 | #define SSB_BOARD_BCM4309MP 0x040C |
| 270 | #define SSB_BOARD_MP4318 0x044A |
| 271 | #define SSB_BOARD_BU4306 0x0416 |
| 272 | #define SSB_BOARD_BU4309 0x040A |
| 273 | /* chip_package */ |
| 274 | #define SSB_CHIPPACK_BCM4712S 1 /* Small 200pin 4712 */ |
| 275 | #define SSB_CHIPPACK_BCM4712M 2 /* Medium 225pin 4712 */ |
| 276 | #define SSB_CHIPPACK_BCM4712L 0 /* Large 340pin 4712 */ |
| 277 | |
| 278 | #include <linux/ssb/ssb_driver_chipcommon.h> |
| 279 | #include <linux/ssb/ssb_driver_mips.h> |
| 280 | #include <linux/ssb/ssb_driver_extif.h> |
| 281 | #include <linux/ssb/ssb_driver_pci.h> |
| 282 | |
| 283 | struct ssb_bus { |
| 284 | /* The MMIO area. */ |
| 285 | void __iomem *mmio; |
| 286 | |
| 287 | const struct ssb_bus_ops *ops; |
| 288 | |
Michael Buesch | 8b45499 | 2009-10-09 20:32:10 +0200 | [diff] [blame] | 289 | /* The core currently mapped into the MMIO window. |
| 290 | * Not valid on all host-buses. So don't use outside of SSB. */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 291 | struct ssb_device *mapped_device; |
Albert Herranz | 24ea602 | 2009-09-08 19:30:12 +0200 | [diff] [blame] | 292 | union { |
| 293 | /* Currently mapped PCMCIA segment. (bustype == SSB_BUSTYPE_PCMCIA only) */ |
| 294 | u8 mapped_pcmcia_seg; |
| 295 | /* Current SSB base address window for SDIO. */ |
| 296 | u32 sdio_sbaddr; |
| 297 | }; |
Michael Buesch | 993e1c7 | 2007-12-22 22:01:36 +0100 | [diff] [blame] | 298 | /* Lock for core and segment switching. |
| 299 | * On PCMCIA-host busses this is used to protect the whole MMIO access. */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 300 | spinlock_t bar_lock; |
| 301 | |
Michael Buesch | 8b45499 | 2009-10-09 20:32:10 +0200 | [diff] [blame] | 302 | /* The host-bus this backplane is running on. */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 303 | enum ssb_bustype bustype; |
Michael Buesch | 8b45499 | 2009-10-09 20:32:10 +0200 | [diff] [blame] | 304 | /* Pointers to the host-bus. Check bustype before using any of these pointers. */ |
| 305 | union { |
| 306 | /* Pointer to the PCI bus (only valid if bustype == SSB_BUSTYPE_PCI). */ |
| 307 | struct pci_dev *host_pci; |
| 308 | /* Pointer to the PCMCIA device (only if bustype == SSB_BUSTYPE_PCMCIA). */ |
| 309 | struct pcmcia_device *host_pcmcia; |
| 310 | /* Pointer to the SDIO device (only if bustype == SSB_BUSTYPE_SDIO). */ |
| 311 | struct sdio_func *host_sdio; |
| 312 | }; |
Albert Herranz | 24ea602 | 2009-09-08 19:30:12 +0200 | [diff] [blame] | 313 | |
| 314 | /* See enum ssb_quirks */ |
| 315 | unsigned int quirks; |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 316 | |
Michael Buesch | e7ec2e3 | 2008-03-10 17:26:32 +0100 | [diff] [blame] | 317 | #ifdef CONFIG_SSB_SPROM |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 318 | /* Mutex to protect the SPROM writing. */ |
Michael Buesch | e7ec2e3 | 2008-03-10 17:26:32 +0100 | [diff] [blame] | 319 | struct mutex sprom_mutex; |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 320 | #endif |
| 321 | |
| 322 | /* ID information about the Chip. */ |
| 323 | u16 chip_id; |
Rafał Miłecki | ce57d9e6 | 2011-04-01 12:06:48 +0200 | [diff] [blame] | 324 | u8 chip_rev; |
Rafał Miłecki | ea2db49 | 2010-03-31 21:59:21 +0200 | [diff] [blame] | 325 | u16 sprom_offset; |
Larry Finger | c272ef4 | 2007-11-09 16:56:25 -0600 | [diff] [blame] | 326 | u16 sprom_size; /* number of words in sprom */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 327 | u8 chip_package; |
| 328 | |
| 329 | /* List of devices (cores) on the backplane. */ |
| 330 | struct ssb_device devices[SSB_MAX_NR_CORES]; |
| 331 | u8 nr_devices; |
| 332 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 333 | /* Software ID number for this bus. */ |
| 334 | unsigned int busnumber; |
| 335 | |
| 336 | /* The ChipCommon device (if available). */ |
| 337 | struct ssb_chipcommon chipco; |
| 338 | /* The PCI-core device (if available). */ |
| 339 | struct ssb_pcicore pcicore; |
| 340 | /* The MIPS-core device (if available). */ |
| 341 | struct ssb_mipscore mipscore; |
| 342 | /* The EXTif-core device (if available). */ |
| 343 | struct ssb_extif extif; |
| 344 | |
| 345 | /* The following structure elements are not available in early |
| 346 | * SSB initialization. Though, they are available for regular |
| 347 | * registered drivers at any stage. So be careful when |
| 348 | * using them in the ssb core code. */ |
| 349 | |
| 350 | /* ID information about the PCB. */ |
| 351 | struct ssb_boardinfo boardinfo; |
| 352 | /* Contents of the SPROM. */ |
| 353 | struct ssb_sprom sprom; |
Michael Buesch | 7cb4461 | 2008-02-19 17:46:48 +0100 | [diff] [blame] | 354 | /* If the board has a cardbus slot, this is set to true. */ |
| 355 | bool has_cardbus_slot; |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 356 | |
Michael Buesch | 53521d8 | 2008-02-19 16:22:50 +0100 | [diff] [blame] | 357 | #ifdef CONFIG_SSB_EMBEDDED |
| 358 | /* Lock for GPIO register access. */ |
| 359 | spinlock_t gpio_lock; |
| 360 | #endif /* EMBEDDED */ |
| 361 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 362 | /* Internal-only stuff follows. Do not touch. */ |
| 363 | struct list_head list; |
| 364 | #ifdef CONFIG_SSB_DEBUG |
| 365 | /* Is the bus already powered up? */ |
| 366 | bool powered_up; |
| 367 | int power_warn_count; |
| 368 | #endif /* DEBUG */ |
| 369 | }; |
| 370 | |
Albert Herranz | 24ea602 | 2009-09-08 19:30:12 +0200 | [diff] [blame] | 371 | enum ssb_quirks { |
| 372 | /* SDIO connected card requires performing a read after writing a 32-bit value */ |
| 373 | SSB_QUIRK_SDIO_READ_AFTER_WRITE32 = (1 << 0), |
| 374 | }; |
| 375 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 376 | /* The initialization-invariants. */ |
| 377 | struct ssb_init_invariants { |
Michael Buesch | 7cb4461 | 2008-02-19 17:46:48 +0100 | [diff] [blame] | 378 | /* Versioning information about the PCB. */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 379 | struct ssb_boardinfo boardinfo; |
Michael Buesch | 7cb4461 | 2008-02-19 17:46:48 +0100 | [diff] [blame] | 380 | /* The SPROM information. That's either stored in an |
| 381 | * EEPROM or NVRAM on the board. */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 382 | struct ssb_sprom sprom; |
Michael Buesch | 7cb4461 | 2008-02-19 17:46:48 +0100 | [diff] [blame] | 383 | /* If the board has a cardbus slot, this is set to true. */ |
| 384 | bool has_cardbus_slot; |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 385 | }; |
| 386 | /* Type of function to fetch the invariants. */ |
| 387 | typedef int (*ssb_invariants_func_t)(struct ssb_bus *bus, |
| 388 | struct ssb_init_invariants *iv); |
| 389 | |
| 390 | /* Register a SSB system bus. get_invariants() is called after the |
| 391 | * basic system devices are initialized. |
| 392 | * The invariants are usually fetched from some NVRAM. |
| 393 | * Put the invariants into the struct pointed to by iv. */ |
| 394 | extern int ssb_bus_ssbbus_register(struct ssb_bus *bus, |
| 395 | unsigned long baseaddr, |
| 396 | ssb_invariants_func_t get_invariants); |
| 397 | #ifdef CONFIG_SSB_PCIHOST |
| 398 | extern int ssb_bus_pcibus_register(struct ssb_bus *bus, |
| 399 | struct pci_dev *host_pci); |
| 400 | #endif /* CONFIG_SSB_PCIHOST */ |
| 401 | #ifdef CONFIG_SSB_PCMCIAHOST |
| 402 | extern int ssb_bus_pcmciabus_register(struct ssb_bus *bus, |
| 403 | struct pcmcia_device *pcmcia_dev, |
| 404 | unsigned long baseaddr); |
| 405 | #endif /* CONFIG_SSB_PCMCIAHOST */ |
Albert Herranz | 24ea602 | 2009-09-08 19:30:12 +0200 | [diff] [blame] | 406 | #ifdef CONFIG_SSB_SDIOHOST |
| 407 | extern int ssb_bus_sdiobus_register(struct ssb_bus *bus, |
| 408 | struct sdio_func *sdio_func, |
| 409 | unsigned int quirks); |
| 410 | #endif /* CONFIG_SSB_SDIOHOST */ |
| 411 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 412 | |
| 413 | extern void ssb_bus_unregister(struct ssb_bus *bus); |
| 414 | |
John W. Linville | d53cdbb | 2010-03-31 21:39:35 +0200 | [diff] [blame] | 415 | /* Does the device have an SPROM? */ |
| 416 | extern bool ssb_is_sprom_available(struct ssb_bus *bus); |
| 417 | |
Michael Buesch | e79c1ba | 2009-02-27 16:59:05 +0100 | [diff] [blame] | 418 | /* Set a fallback SPROM. |
| 419 | * See kdoc at the function definition for complete documentation. */ |
Hauke Mehrtens | b3ae52b | 2011-05-10 23:31:30 +0200 | [diff] [blame] | 420 | extern int ssb_arch_register_fallback_sprom( |
| 421 | int (*sprom_callback)(struct ssb_bus *bus, |
| 422 | struct ssb_sprom *out)); |
Michael Buesch | e79c1ba | 2009-02-27 16:59:05 +0100 | [diff] [blame] | 423 | |
Michael Buesch | 8fe2b65 | 2008-03-30 00:10:50 +0100 | [diff] [blame] | 424 | /* Suspend a SSB bus. |
| 425 | * Call this from the parent bus suspend routine. */ |
| 426 | extern int ssb_bus_suspend(struct ssb_bus *bus); |
| 427 | /* Resume a SSB bus. |
| 428 | * Call this from the parent bus resume routine. */ |
| 429 | extern int ssb_bus_resume(struct ssb_bus *bus); |
| 430 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 431 | extern u32 ssb_clockspeed(struct ssb_bus *bus); |
| 432 | |
| 433 | /* Is the device enabled in hardware? */ |
| 434 | int ssb_device_is_enabled(struct ssb_device *dev); |
| 435 | /* Enable a device and pass device-specific SSB_TMSLOW flags. |
| 436 | * If no device-specific flags are available, use 0. */ |
| 437 | void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags); |
| 438 | /* Disable a device in hardware and pass SSB_TMSLOW flags (if any). */ |
| 439 | void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags); |
| 440 | |
| 441 | |
| 442 | /* Device MMIO register read/write functions. */ |
Michael Buesch | ffc7689 | 2008-02-20 19:08:10 +0100 | [diff] [blame] | 443 | static inline u8 ssb_read8(struct ssb_device *dev, u16 offset) |
| 444 | { |
| 445 | return dev->ops->read8(dev, offset); |
| 446 | } |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 447 | static inline u16 ssb_read16(struct ssb_device *dev, u16 offset) |
| 448 | { |
| 449 | return dev->ops->read16(dev, offset); |
| 450 | } |
| 451 | static inline u32 ssb_read32(struct ssb_device *dev, u16 offset) |
| 452 | { |
| 453 | return dev->ops->read32(dev, offset); |
| 454 | } |
Michael Buesch | ffc7689 | 2008-02-20 19:08:10 +0100 | [diff] [blame] | 455 | static inline void ssb_write8(struct ssb_device *dev, u16 offset, u8 value) |
| 456 | { |
| 457 | dev->ops->write8(dev, offset, value); |
| 458 | } |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 459 | static inline void ssb_write16(struct ssb_device *dev, u16 offset, u16 value) |
| 460 | { |
| 461 | dev->ops->write16(dev, offset, value); |
| 462 | } |
| 463 | static inline void ssb_write32(struct ssb_device *dev, u16 offset, u32 value) |
| 464 | { |
| 465 | dev->ops->write32(dev, offset, value); |
| 466 | } |
Michael Buesch | d625a29 | 2008-04-02 19:46:56 +0200 | [diff] [blame] | 467 | #ifdef CONFIG_SSB_BLOCKIO |
| 468 | static inline void ssb_block_read(struct ssb_device *dev, void *buffer, |
| 469 | size_t count, u16 offset, u8 reg_width) |
| 470 | { |
| 471 | dev->ops->block_read(dev, buffer, count, offset, reg_width); |
| 472 | } |
| 473 | |
| 474 | static inline void ssb_block_write(struct ssb_device *dev, const void *buffer, |
| 475 | size_t count, u16 offset, u8 reg_width) |
| 476 | { |
| 477 | dev->ops->block_write(dev, buffer, count, offset, reg_width); |
| 478 | } |
| 479 | #endif /* CONFIG_SSB_BLOCKIO */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 480 | |
| 481 | |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 482 | /* The SSB DMA API. Use this API for any DMA operation on the device. |
| 483 | * This API basically is a wrapper that calls the correct DMA API for |
| 484 | * the host device type the SSB device is attached to. */ |
| 485 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 486 | /* Translation (routing) bits that need to be ORed to DMA |
| 487 | * addresses before they are given to a device. */ |
| 488 | extern u32 ssb_dma_translation(struct ssb_device *dev); |
| 489 | #define SSB_DMA_TRANSLATION_MASK 0xC0000000 |
| 490 | #define SSB_DMA_TRANSLATION_SHIFT 30 |
| 491 | |
Michael Buesch | f225763 | 2008-06-20 11:50:29 +0200 | [diff] [blame] | 492 | static inline void __cold __ssb_dma_not_implemented(struct ssb_device *dev) |
| 493 | { |
| 494 | #ifdef CONFIG_SSB_DEBUG |
| 495 | printk(KERN_ERR "SSB: BUG! Calling DMA API for " |
| 496 | "unsupported bustype %d\n", dev->bus->bustype); |
| 497 | #endif /* DEBUG */ |
| 498 | } |
| 499 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 500 | #ifdef CONFIG_SSB_PCIHOST |
| 501 | /* PCI-host wrapper driver */ |
| 502 | extern int ssb_pcihost_register(struct pci_driver *driver); |
| 503 | static inline void ssb_pcihost_unregister(struct pci_driver *driver) |
| 504 | { |
| 505 | pci_unregister_driver(driver); |
| 506 | } |
Miguel Botón | 961d57c | 2008-01-01 01:16:46 +0100 | [diff] [blame] | 507 | |
| 508 | static inline |
| 509 | void ssb_pcihost_set_power_state(struct ssb_device *sdev, pci_power_t state) |
| 510 | { |
| 511 | if (sdev->bus->bustype == SSB_BUSTYPE_PCI) |
| 512 | pci_set_power_state(sdev->bus->host_pci, state); |
| 513 | } |
Andrew Morton | 532031d | 2008-02-04 23:58:42 -0800 | [diff] [blame] | 514 | #else |
| 515 | static inline void ssb_pcihost_unregister(struct pci_driver *driver) |
| 516 | { |
| 517 | } |
| 518 | |
| 519 | static inline |
| 520 | void ssb_pcihost_set_power_state(struct ssb_device *sdev, pci_power_t state) |
| 521 | { |
| 522 | } |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 523 | #endif /* CONFIG_SSB_PCIHOST */ |
| 524 | |
| 525 | |
| 526 | /* If a driver is shutdown or suspended, call this to signal |
| 527 | * that the bus may be completely powered down. SSB will decide, |
| 528 | * if it's really time to power down the bus, based on if there |
| 529 | * are other devices that want to run. */ |
| 530 | extern int ssb_bus_may_powerdown(struct ssb_bus *bus); |
| 531 | /* Before initializing and enabling a device, call this to power-up the bus. |
| 532 | * If you want to allow use of dynamic-power-control, pass the flag. |
| 533 | * Otherwise static always-on powercontrol will be used. */ |
| 534 | extern int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl); |
| 535 | |
Rafał Miłecki | 8576f81 | 2011-05-11 02:10:58 +0200 | [diff] [blame] | 536 | extern void ssb_commit_settings(struct ssb_bus *bus); |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 537 | |
| 538 | /* Various helper functions */ |
| 539 | extern u32 ssb_admatch_base(u32 adm); |
| 540 | extern u32 ssb_admatch_size(u32 adm); |
| 541 | |
Michael Buesch | aab547c | 2008-02-29 11:36:12 +0100 | [diff] [blame] | 542 | /* PCI device mapping and fixup routines. |
| 543 | * Called from the architecture pcibios init code. |
| 544 | * These are only available on SSB_EMBEDDED configurations. */ |
| 545 | #ifdef CONFIG_SSB_EMBEDDED |
| 546 | int ssb_pcibios_plat_dev_init(struct pci_dev *dev); |
| 547 | int ssb_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin); |
| 548 | #endif /* CONFIG_SSB_EMBEDDED */ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 549 | |
| 550 | #endif /* LINUX_SSB_H_ */ |