ssb.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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/ssb/ssb_regs.h>
  10. struct pcmcia_device;
  11. struct ssb_bus;
  12. struct ssb_driver;
  13. struct ssb_sprom_r1 {
  14. u16 pci_spid; /* Subsystem Product ID for PCI */
  15. u16 pci_svid; /* Subsystem Vendor ID for PCI */
  16. u16 pci_pid; /* Product ID for PCI */
  17. u8 il0mac[6]; /* MAC address for 802.11b/g */
  18. u8 et0mac[6]; /* MAC address for Ethernet */
  19. u8 et1mac[6]; /* MAC address for 802.11a */
  20. u8 et0phyaddr:5; /* MII address for enet0 */
  21. u8 et1phyaddr:5; /* MII address for enet1 */
  22. u8 et0mdcport:1; /* MDIO for enet0 */
  23. u8 et1mdcport:1; /* MDIO for enet1 */
  24. u8 board_rev; /* Board revision */
  25. u8 country_code:4; /* Country Code */
  26. u8 antenna_a:2; /* Antenna 0/1 available for A-PHY */
  27. u8 antenna_bg:2; /* Antenna 0/1 available for B-PHY and G-PHY */
  28. u16 pa0b0;
  29. u16 pa0b1;
  30. u16 pa0b2;
  31. u16 pa1b0;
  32. u16 pa1b1;
  33. u16 pa1b2;
  34. u8 gpio0; /* GPIO pin 0 */
  35. u8 gpio1; /* GPIO pin 1 */
  36. u8 gpio2; /* GPIO pin 2 */
  37. u8 gpio3; /* GPIO pin 3 */
  38. u16 maxpwr_a; /* A-PHY Power Amplifier Max Power (in dBm Q5.2) */
  39. u16 maxpwr_bg; /* B/G-PHY Power Amplifier Max Power (in dBm Q5.2) */
  40. u8 itssi_a; /* Idle TSSI Target for A-PHY */
  41. u8 itssi_bg; /* Idle TSSI Target for B/G-PHY */
  42. u16 boardflags_lo; /* Boardflags (low 16 bits) */
  43. u8 antenna_gain_a; /* A-PHY Antenna gain (in dBm Q5.2) */
  44. u8 antenna_gain_bg; /* B/G-PHY Antenna gain (in dBm Q5.2) */
  45. u8 oem[8]; /* OEM string (rev 1 only) */
  46. };
  47. struct ssb_sprom_r2 {
  48. u16 boardflags_hi; /* Boardflags (high 16 bits) */
  49. u8 maxpwr_a_lo; /* A-PHY Max Power Low */
  50. u8 maxpwr_a_hi; /* A-PHY Max Power High */
  51. u16 pa1lob0; /* A-PHY PA Low Settings */
  52. u16 pa1lob1; /* A-PHY PA Low Settings */
  53. u16 pa1lob2; /* A-PHY PA Low Settings */
  54. u16 pa1hib0; /* A-PHY PA High Settings */
  55. u16 pa1hib1; /* A-PHY PA High Settings */
  56. u16 pa1hib2; /* A-PHY PA High Settings */
  57. u8 ofdm_pwr_off; /* OFDM Power Offset from CCK Level */
  58. u8 country_str[2]; /* Two char Country Code */
  59. };
  60. struct ssb_sprom_r3 {
  61. u32 ofdmapo; /* A-PHY OFDM Mid Power Offset */
  62. u32 ofdmalpo; /* A-PHY OFDM Low Power Offset */
  63. u32 ofdmahpo; /* A-PHY OFDM High Power Offset */
  64. u8 gpioldc_on_cnt; /* GPIO LED Powersave Duty Cycle ON count */
  65. u8 gpioldc_off_cnt; /* GPIO LED Powersave Duty Cycle OFF count */
  66. u8 cckpo_1M:4; /* CCK Power Offset for Rate 1M */
  67. u8 cckpo_2M:4; /* CCK Power Offset for Rate 2M */
  68. u8 cckpo_55M:4; /* CCK Power Offset for Rate 5.5M */
  69. u8 cckpo_11M:4; /* CCK Power Offset for Rate 11M */
  70. u32 ofdmgpo; /* G-PHY OFDM Power Offset */
  71. };
  72. struct ssb_sprom {
  73. u8 revision;
  74. u8 temp_fill[2 * sizeof(struct ssb_sprom_r1)];
  75. u8 il0mac[6]; /* MAC address for 802.11b/g */
  76. u8 et0mac[6]; /* MAC address for Ethernet */
  77. u8 et1mac[6]; /* MAC address for 802.11a */
  78. u8 et0phyaddr; /* MII address for enet0 */
  79. u8 et1phyaddr; /* MII address for enet1 */
  80. u8 country_code; /* Country Code */
  81. u16 pa0b0;
  82. u16 pa0b1;
  83. u16 pa0b2;
  84. u16 pa1b0;
  85. u16 pa1b1;
  86. u16 pa1b2;
  87. u8 gpio0; /* GPIO pin 0 */
  88. u8 gpio1; /* GPIO pin 1 */
  89. u8 gpio2; /* GPIO pin 2 */
  90. u8 gpio3; /* GPIO pin 3 */
  91. u16 maxpwr_a; /* A-PHY Amplifier Max Power (in dBm Q5.2) */
  92. u16 maxpwr_bg; /* B/G-PHY Amplifier Max Power (in dBm Q5.2) */
  93. u8 itssi_a; /* Idle TSSI Target for A-PHY */
  94. u8 itssi_bg; /* Idle TSSI Target for B/G-PHY */
  95. u16 boardflags_lo; /* Boardflags (low 16 bits) */
  96. u8 antenna_gain_a; /* A-PHY Antenna gain (in dBm Q5.2) */
  97. u8 antenna_gain_bg; /* B/G-PHY Antenna gain (in dBm Q5.2) */
  98. /* TODO - add any parameters needed from rev 2, 3, or 4 SPROMs */
  99. /* The valid r# fields are selected by the "revision".
  100. * Revision 3 and lower inherit from lower revisions.
  101. */
  102. union {
  103. struct {
  104. struct ssb_sprom_r1 r1;
  105. struct ssb_sprom_r2 r2;
  106. struct ssb_sprom_r3 r3;
  107. };
  108. };
  109. };
  110. /* Information about the PCB the circuitry is soldered on. */
  111. struct ssb_boardinfo {
  112. u16 vendor;
  113. u16 type;
  114. u16 rev;
  115. };
  116. struct ssb_device;
  117. /* Lowlevel read/write operations on the device MMIO.
  118. * Internal, don't use that outside of ssb. */
  119. struct ssb_bus_ops {
  120. u16 (*read16)(struct ssb_device *dev, u16 offset);
  121. u32 (*read32)(struct ssb_device *dev, u16 offset);
  122. void (*write16)(struct ssb_device *dev, u16 offset, u16 value);
  123. void (*write32)(struct ssb_device *dev, u16 offset, u32 value);
  124. };
  125. /* Core-ID values. */
  126. #define SSB_DEV_CHIPCOMMON 0x800
  127. #define SSB_DEV_ILINE20 0x801
  128. #define SSB_DEV_SDRAM 0x803
  129. #define SSB_DEV_PCI 0x804
  130. #define SSB_DEV_MIPS 0x805
  131. #define SSB_DEV_ETHERNET 0x806
  132. #define SSB_DEV_V90 0x807
  133. #define SSB_DEV_USB11_HOSTDEV 0x808
  134. #define SSB_DEV_ADSL 0x809
  135. #define SSB_DEV_ILINE100 0x80A
  136. #define SSB_DEV_IPSEC 0x80B
  137. #define SSB_DEV_PCMCIA 0x80D
  138. #define SSB_DEV_INTERNAL_MEM 0x80E
  139. #define SSB_DEV_MEMC_SDRAM 0x80F
  140. #define SSB_DEV_EXTIF 0x811
  141. #define SSB_DEV_80211 0x812
  142. #define SSB_DEV_MIPS_3302 0x816
  143. #define SSB_DEV_USB11_HOST 0x817
  144. #define SSB_DEV_USB11_DEV 0x818
  145. #define SSB_DEV_USB20_HOST 0x819
  146. #define SSB_DEV_USB20_DEV 0x81A
  147. #define SSB_DEV_SDIO_HOST 0x81B
  148. #define SSB_DEV_ROBOSWITCH 0x81C
  149. #define SSB_DEV_PARA_ATA 0x81D
  150. #define SSB_DEV_SATA_XORDMA 0x81E
  151. #define SSB_DEV_ETHERNET_GBIT 0x81F
  152. #define SSB_DEV_PCIE 0x820
  153. #define SSB_DEV_MIMO_PHY 0x821
  154. #define SSB_DEV_SRAM_CTRLR 0x822
  155. #define SSB_DEV_MINI_MACPHY 0x823
  156. #define SSB_DEV_ARM_1176 0x824
  157. #define SSB_DEV_ARM_7TDMI 0x825
  158. /* Vendor-ID values */
  159. #define SSB_VENDOR_BROADCOM 0x4243
  160. /* Some kernel subsystems poke with dev->drvdata, so we must use the
  161. * following ugly workaround to get from struct device to struct ssb_device */
  162. struct __ssb_dev_wrapper {
  163. struct device dev;
  164. struct ssb_device *sdev;
  165. };
  166. struct ssb_device {
  167. /* Having a copy of the ops pointer in each dev struct
  168. * is an optimization. */
  169. const struct ssb_bus_ops *ops;
  170. struct device *dev;
  171. struct ssb_bus *bus;
  172. struct ssb_device_id id;
  173. u8 core_index;
  174. unsigned int irq;
  175. /* Internal-only stuff follows. */
  176. void *drvdata; /* Per-device data */
  177. void *devtypedata; /* Per-devicetype (eg 802.11) data */
  178. };
  179. /* Go from struct device to struct ssb_device. */
  180. static inline
  181. struct ssb_device * dev_to_ssb_dev(struct device *dev)
  182. {
  183. struct __ssb_dev_wrapper *wrap;
  184. wrap = container_of(dev, struct __ssb_dev_wrapper, dev);
  185. return wrap->sdev;
  186. }
  187. /* Device specific user data */
  188. static inline
  189. void ssb_set_drvdata(struct ssb_device *dev, void *data)
  190. {
  191. dev->drvdata = data;
  192. }
  193. static inline
  194. void * ssb_get_drvdata(struct ssb_device *dev)
  195. {
  196. return dev->drvdata;
  197. }
  198. /* Devicetype specific user data. This is per device-type (not per device) */
  199. void ssb_set_devtypedata(struct ssb_device *dev, void *data);
  200. static inline
  201. void * ssb_get_devtypedata(struct ssb_device *dev)
  202. {
  203. return dev->devtypedata;
  204. }
  205. struct ssb_driver {
  206. const char *name;
  207. const struct ssb_device_id *id_table;
  208. int (*probe)(struct ssb_device *dev, const struct ssb_device_id *id);
  209. void (*remove)(struct ssb_device *dev);
  210. int (*suspend)(struct ssb_device *dev, pm_message_t state);
  211. int (*resume)(struct ssb_device *dev);
  212. void (*shutdown)(struct ssb_device *dev);
  213. struct device_driver drv;
  214. };
  215. #define drv_to_ssb_drv(_drv) container_of(_drv, struct ssb_driver, drv)
  216. extern int __ssb_driver_register(struct ssb_driver *drv, struct module *owner);
  217. static inline int ssb_driver_register(struct ssb_driver *drv)
  218. {
  219. return __ssb_driver_register(drv, THIS_MODULE);
  220. }
  221. extern void ssb_driver_unregister(struct ssb_driver *drv);
  222. enum ssb_bustype {
  223. SSB_BUSTYPE_SSB, /* This SSB bus is the system bus */
  224. SSB_BUSTYPE_PCI, /* SSB is connected to PCI bus */
  225. SSB_BUSTYPE_PCMCIA, /* SSB is connected to PCMCIA bus */
  226. };
  227. /* board_vendor */
  228. #define SSB_BOARDVENDOR_BCM 0x14E4 /* Broadcom */
  229. #define SSB_BOARDVENDOR_DELL 0x1028 /* Dell */
  230. #define SSB_BOARDVENDOR_HP 0x0E11 /* HP */
  231. /* board_type */
  232. #define SSB_BOARD_BCM94306MP 0x0418
  233. #define SSB_BOARD_BCM4309G 0x0421
  234. #define SSB_BOARD_BCM4306CB 0x0417
  235. #define SSB_BOARD_BCM4309MP 0x040C
  236. #define SSB_BOARD_MP4318 0x044A
  237. #define SSB_BOARD_BU4306 0x0416
  238. #define SSB_BOARD_BU4309 0x040A
  239. /* chip_package */
  240. #define SSB_CHIPPACK_BCM4712S 1 /* Small 200pin 4712 */
  241. #define SSB_CHIPPACK_BCM4712M 2 /* Medium 225pin 4712 */
  242. #define SSB_CHIPPACK_BCM4712L 0 /* Large 340pin 4712 */
  243. #include <linux/ssb/ssb_driver_chipcommon.h>
  244. #include <linux/ssb/ssb_driver_mips.h>
  245. #include <linux/ssb/ssb_driver_extif.h>
  246. #include <linux/ssb/ssb_driver_pci.h>
  247. struct ssb_bus {
  248. /* The MMIO area. */
  249. void __iomem *mmio;
  250. const struct ssb_bus_ops *ops;
  251. /* The core in the basic address register window. (PCI bus only) */
  252. struct ssb_device *mapped_device;
  253. /* Currently mapped PCMCIA segment. (bustype == SSB_BUSTYPE_PCMCIA only) */
  254. u8 mapped_pcmcia_seg;
  255. /* Lock for core and segment switching. */
  256. spinlock_t bar_lock;
  257. /* The bus this backplane is running on. */
  258. enum ssb_bustype bustype;
  259. /* Pointer to the PCI bus (only valid if bustype == SSB_BUSTYPE_PCI). */
  260. struct pci_dev *host_pci;
  261. /* Pointer to the PCMCIA device (only if bustype == SSB_BUSTYPE_PCMCIA). */
  262. struct pcmcia_device *host_pcmcia;
  263. #ifdef CONFIG_SSB_PCIHOST
  264. /* Mutex to protect the SPROM writing. */
  265. struct mutex pci_sprom_mutex;
  266. #endif
  267. /* ID information about the Chip. */
  268. u16 chip_id;
  269. u16 chip_rev;
  270. u16 sprom_size; /* number of words in sprom */
  271. u8 chip_package;
  272. /* List of devices (cores) on the backplane. */
  273. struct ssb_device devices[SSB_MAX_NR_CORES];
  274. u8 nr_devices;
  275. /* Reference count. Number of suspended devices. */
  276. u8 suspend_cnt;
  277. /* Software ID number for this bus. */
  278. unsigned int busnumber;
  279. /* The ChipCommon device (if available). */
  280. struct ssb_chipcommon chipco;
  281. /* The PCI-core device (if available). */
  282. struct ssb_pcicore pcicore;
  283. /* The MIPS-core device (if available). */
  284. struct ssb_mipscore mipscore;
  285. /* The EXTif-core device (if available). */
  286. struct ssb_extif extif;
  287. /* The following structure elements are not available in early
  288. * SSB initialization. Though, they are available for regular
  289. * registered drivers at any stage. So be careful when
  290. * using them in the ssb core code. */
  291. /* ID information about the PCB. */
  292. struct ssb_boardinfo boardinfo;
  293. /* Contents of the SPROM. */
  294. struct ssb_sprom sprom;
  295. /* Internal-only stuff follows. Do not touch. */
  296. struct list_head list;
  297. #ifdef CONFIG_SSB_DEBUG
  298. /* Is the bus already powered up? */
  299. bool powered_up;
  300. int power_warn_count;
  301. #endif /* DEBUG */
  302. };
  303. /* The initialization-invariants. */
  304. struct ssb_init_invariants {
  305. struct ssb_boardinfo boardinfo;
  306. struct ssb_sprom sprom;
  307. };
  308. /* Type of function to fetch the invariants. */
  309. typedef int (*ssb_invariants_func_t)(struct ssb_bus *bus,
  310. struct ssb_init_invariants *iv);
  311. /* Register a SSB system bus. get_invariants() is called after the
  312. * basic system devices are initialized.
  313. * The invariants are usually fetched from some NVRAM.
  314. * Put the invariants into the struct pointed to by iv. */
  315. extern int ssb_bus_ssbbus_register(struct ssb_bus *bus,
  316. unsigned long baseaddr,
  317. ssb_invariants_func_t get_invariants);
  318. #ifdef CONFIG_SSB_PCIHOST
  319. extern int ssb_bus_pcibus_register(struct ssb_bus *bus,
  320. struct pci_dev *host_pci);
  321. #endif /* CONFIG_SSB_PCIHOST */
  322. #ifdef CONFIG_SSB_PCMCIAHOST
  323. extern int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
  324. struct pcmcia_device *pcmcia_dev,
  325. unsigned long baseaddr);
  326. #endif /* CONFIG_SSB_PCMCIAHOST */
  327. extern void ssb_bus_unregister(struct ssb_bus *bus);
  328. extern u32 ssb_clockspeed(struct ssb_bus *bus);
  329. /* Is the device enabled in hardware? */
  330. int ssb_device_is_enabled(struct ssb_device *dev);
  331. /* Enable a device and pass device-specific SSB_TMSLOW flags.
  332. * If no device-specific flags are available, use 0. */
  333. void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags);
  334. /* Disable a device in hardware and pass SSB_TMSLOW flags (if any). */
  335. void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags);
  336. /* Device MMIO register read/write functions. */
  337. static inline u16 ssb_read16(struct ssb_device *dev, u16 offset)
  338. {
  339. return dev->ops->read16(dev, offset);
  340. }
  341. static inline u32 ssb_read32(struct ssb_device *dev, u16 offset)
  342. {
  343. return dev->ops->read32(dev, offset);
  344. }
  345. static inline void ssb_write16(struct ssb_device *dev, u16 offset, u16 value)
  346. {
  347. dev->ops->write16(dev, offset, value);
  348. }
  349. static inline void ssb_write32(struct ssb_device *dev, u16 offset, u32 value)
  350. {
  351. dev->ops->write32(dev, offset, value);
  352. }
  353. /* Translation (routing) bits that need to be ORed to DMA
  354. * addresses before they are given to a device. */
  355. extern u32 ssb_dma_translation(struct ssb_device *dev);
  356. #define SSB_DMA_TRANSLATION_MASK 0xC0000000
  357. #define SSB_DMA_TRANSLATION_SHIFT 30
  358. extern int ssb_dma_set_mask(struct ssb_device *ssb_dev, u64 mask);
  359. #ifdef CONFIG_SSB_PCIHOST
  360. /* PCI-host wrapper driver */
  361. extern int ssb_pcihost_register(struct pci_driver *driver);
  362. static inline void ssb_pcihost_unregister(struct pci_driver *driver)
  363. {
  364. pci_unregister_driver(driver);
  365. }
  366. #endif /* CONFIG_SSB_PCIHOST */
  367. /* If a driver is shutdown or suspended, call this to signal
  368. * that the bus may be completely powered down. SSB will decide,
  369. * if it's really time to power down the bus, based on if there
  370. * are other devices that want to run. */
  371. extern int ssb_bus_may_powerdown(struct ssb_bus *bus);
  372. /* Before initializing and enabling a device, call this to power-up the bus.
  373. * If you want to allow use of dynamic-power-control, pass the flag.
  374. * Otherwise static always-on powercontrol will be used. */
  375. extern int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl);
  376. /* Various helper functions */
  377. extern u32 ssb_admatch_base(u32 adm);
  378. extern u32 ssb_admatch_size(u32 adm);
  379. #endif /* LINUX_SSB_H_ */