ssb.h 17 KB

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