bcma.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. #ifndef LINUX_BCMA_H_
  2. #define LINUX_BCMA_H_
  3. #include <linux/pci.h>
  4. #include <linux/mod_devicetable.h>
  5. #include <linux/bcma/bcma_driver_chipcommon.h>
  6. #include <linux/bcma/bcma_driver_pci.h>
  7. #include <linux/bcma/bcma_driver_mips.h>
  8. #include <linux/bcma/bcma_driver_gmac_cmn.h>
  9. #include <linux/ssb/ssb.h> /* SPROM sharing */
  10. #include <linux/bcma/bcma_regs.h>
  11. struct bcma_device;
  12. struct bcma_bus;
  13. enum bcma_hosttype {
  14. BCMA_HOSTTYPE_PCI,
  15. BCMA_HOSTTYPE_SDIO,
  16. BCMA_HOSTTYPE_SOC,
  17. };
  18. struct bcma_chipinfo {
  19. u16 id;
  20. u8 rev;
  21. u8 pkg;
  22. };
  23. struct bcma_boardinfo {
  24. u16 vendor;
  25. u16 type;
  26. };
  27. enum bcma_clkmode {
  28. BCMA_CLKMODE_FAST,
  29. BCMA_CLKMODE_DYNAMIC,
  30. };
  31. struct bcma_host_ops {
  32. u8 (*read8)(struct bcma_device *core, u16 offset);
  33. u16 (*read16)(struct bcma_device *core, u16 offset);
  34. u32 (*read32)(struct bcma_device *core, u16 offset);
  35. void (*write8)(struct bcma_device *core, u16 offset, u8 value);
  36. void (*write16)(struct bcma_device *core, u16 offset, u16 value);
  37. void (*write32)(struct bcma_device *core, u16 offset, u32 value);
  38. #ifdef CONFIG_BCMA_BLOCKIO
  39. void (*block_read)(struct bcma_device *core, void *buffer,
  40. size_t count, u16 offset, u8 reg_width);
  41. void (*block_write)(struct bcma_device *core, const void *buffer,
  42. size_t count, u16 offset, u8 reg_width);
  43. #endif
  44. /* Agent ops */
  45. u32 (*aread32)(struct bcma_device *core, u16 offset);
  46. void (*awrite32)(struct bcma_device *core, u16 offset, u32 value);
  47. };
  48. /* Core manufacturers */
  49. #define BCMA_MANUF_ARM 0x43B
  50. #define BCMA_MANUF_MIPS 0x4A7
  51. #define BCMA_MANUF_BCM 0x4BF
  52. /* Core class values. */
  53. #define BCMA_CL_SIM 0x0
  54. #define BCMA_CL_EROM 0x1
  55. #define BCMA_CL_CORESIGHT 0x9
  56. #define BCMA_CL_VERIF 0xB
  57. #define BCMA_CL_OPTIMO 0xD
  58. #define BCMA_CL_GEN 0xE
  59. #define BCMA_CL_PRIMECELL 0xF
  60. /* Core-ID values. */
  61. #define BCMA_CORE_OOB_ROUTER 0x367 /* Out of band */
  62. #define BCMA_CORE_4706_CHIPCOMMON 0x500
  63. #define BCMA_CORE_4706_SOC_RAM 0x50E
  64. #define BCMA_CORE_4706_MAC_GBIT 0x52D
  65. #define BCMA_CORE_AMEMC 0x52E /* DDR1/2 memory controller core */
  66. #define BCMA_CORE_ALTA 0x534 /* I2S core */
  67. #define BCMA_CORE_4706_MAC_GBIT_COMMON 0x5DC
  68. #define BCMA_CORE_DDR23_PHY 0x5DD
  69. #define BCMA_CORE_INVALID 0x700
  70. #define BCMA_CORE_CHIPCOMMON 0x800
  71. #define BCMA_CORE_ILINE20 0x801
  72. #define BCMA_CORE_SRAM 0x802
  73. #define BCMA_CORE_SDRAM 0x803
  74. #define BCMA_CORE_PCI 0x804
  75. #define BCMA_CORE_MIPS 0x805
  76. #define BCMA_CORE_ETHERNET 0x806
  77. #define BCMA_CORE_V90 0x807
  78. #define BCMA_CORE_USB11_HOSTDEV 0x808
  79. #define BCMA_CORE_ADSL 0x809
  80. #define BCMA_CORE_ILINE100 0x80A
  81. #define BCMA_CORE_IPSEC 0x80B
  82. #define BCMA_CORE_UTOPIA 0x80C
  83. #define BCMA_CORE_PCMCIA 0x80D
  84. #define BCMA_CORE_INTERNAL_MEM 0x80E
  85. #define BCMA_CORE_MEMC_SDRAM 0x80F
  86. #define BCMA_CORE_OFDM 0x810
  87. #define BCMA_CORE_EXTIF 0x811
  88. #define BCMA_CORE_80211 0x812
  89. #define BCMA_CORE_PHY_A 0x813
  90. #define BCMA_CORE_PHY_B 0x814
  91. #define BCMA_CORE_PHY_G 0x815
  92. #define BCMA_CORE_MIPS_3302 0x816
  93. #define BCMA_CORE_USB11_HOST 0x817
  94. #define BCMA_CORE_USB11_DEV 0x818
  95. #define BCMA_CORE_USB20_HOST 0x819
  96. #define BCMA_CORE_USB20_DEV 0x81A
  97. #define BCMA_CORE_SDIO_HOST 0x81B
  98. #define BCMA_CORE_ROBOSWITCH 0x81C
  99. #define BCMA_CORE_PARA_ATA 0x81D
  100. #define BCMA_CORE_SATA_XORDMA 0x81E
  101. #define BCMA_CORE_ETHERNET_GBIT 0x81F
  102. #define BCMA_CORE_PCIE 0x820
  103. #define BCMA_CORE_PHY_N 0x821
  104. #define BCMA_CORE_SRAM_CTL 0x822
  105. #define BCMA_CORE_MINI_MACPHY 0x823
  106. #define BCMA_CORE_ARM_1176 0x824
  107. #define BCMA_CORE_ARM_7TDMI 0x825
  108. #define BCMA_CORE_PHY_LP 0x826
  109. #define BCMA_CORE_PMU 0x827
  110. #define BCMA_CORE_PHY_SSN 0x828
  111. #define BCMA_CORE_SDIO_DEV 0x829
  112. #define BCMA_CORE_ARM_CM3 0x82A
  113. #define BCMA_CORE_PHY_HT 0x82B
  114. #define BCMA_CORE_MIPS_74K 0x82C
  115. #define BCMA_CORE_MAC_GBIT 0x82D
  116. #define BCMA_CORE_DDR12_MEM_CTL 0x82E
  117. #define BCMA_CORE_PCIE_RC 0x82F /* PCIe Root Complex */
  118. #define BCMA_CORE_OCP_OCP_BRIDGE 0x830
  119. #define BCMA_CORE_SHARED_COMMON 0x831
  120. #define BCMA_CORE_OCP_AHB_BRIDGE 0x832
  121. #define BCMA_CORE_SPI_HOST 0x833
  122. #define BCMA_CORE_I2S 0x834
  123. #define BCMA_CORE_SDR_DDR1_MEM_CTL 0x835 /* SDR/DDR1 memory controller core */
  124. #define BCMA_CORE_SHIM 0x837 /* SHIM component in ubus/6362 */
  125. #define BCMA_CORE_DEFAULT 0xFFF
  126. #define BCMA_MAX_NR_CORES 16
  127. /* Chip IDs of PCIe devices */
  128. #define BCMA_CHIP_ID_BCM4313 0x4313
  129. #define BCMA_CHIP_ID_BCM43224 43224
  130. #define BCMA_PKG_ID_BCM43224_FAB_CSM 0x8
  131. #define BCMA_PKG_ID_BCM43224_FAB_SMIC 0xa
  132. #define BCMA_CHIP_ID_BCM43225 43225
  133. #define BCMA_CHIP_ID_BCM43227 43227
  134. #define BCMA_CHIP_ID_BCM43228 43228
  135. #define BCMA_CHIP_ID_BCM43421 43421
  136. #define BCMA_CHIP_ID_BCM43428 43428
  137. #define BCMA_CHIP_ID_BCM43431 43431
  138. #define BCMA_CHIP_ID_BCM43460 43460
  139. #define BCMA_CHIP_ID_BCM4331 0x4331
  140. #define BCMA_CHIP_ID_BCM6362 0x6362
  141. #define BCMA_CHIP_ID_BCM4360 0x4360
  142. #define BCMA_CHIP_ID_BCM4352 0x4352
  143. /* Chip IDs of SoCs */
  144. #define BCMA_CHIP_ID_BCM4706 0x5300
  145. #define BCMA_PKG_ID_BCM4706L 1
  146. #define BCMA_CHIP_ID_BCM4716 0x4716
  147. #define BCMA_PKG_ID_BCM4716 8
  148. #define BCMA_PKG_ID_BCM4717 9
  149. #define BCMA_PKG_ID_BCM4718 10
  150. #define BCMA_CHIP_ID_BCM47162 47162
  151. #define BCMA_CHIP_ID_BCM4748 0x4748
  152. #define BCMA_CHIP_ID_BCM4749 0x4749
  153. #define BCMA_CHIP_ID_BCM5356 0x5356
  154. #define BCMA_CHIP_ID_BCM5357 0x5357
  155. #define BCMA_PKG_ID_BCM5358 9
  156. #define BCMA_PKG_ID_BCM47186 10
  157. #define BCMA_PKG_ID_BCM5357 11
  158. #define BCMA_CHIP_ID_BCM53572 53572
  159. #define BCMA_PKG_ID_BCM47188 9
  160. struct bcma_device {
  161. struct bcma_bus *bus;
  162. struct bcma_device_id id;
  163. struct device dev;
  164. struct device *dma_dev;
  165. unsigned int irq;
  166. bool dev_registered;
  167. u8 core_index;
  168. u8 core_unit;
  169. u32 addr;
  170. u32 addr1;
  171. u32 wrap;
  172. void __iomem *io_addr;
  173. void __iomem *io_wrap;
  174. void *drvdata;
  175. struct list_head list;
  176. };
  177. static inline void *bcma_get_drvdata(struct bcma_device *core)
  178. {
  179. return core->drvdata;
  180. }
  181. static inline void bcma_set_drvdata(struct bcma_device *core, void *drvdata)
  182. {
  183. core->drvdata = drvdata;
  184. }
  185. struct bcma_driver {
  186. const char *name;
  187. const struct bcma_device_id *id_table;
  188. int (*probe)(struct bcma_device *dev);
  189. void (*remove)(struct bcma_device *dev);
  190. int (*suspend)(struct bcma_device *dev);
  191. int (*resume)(struct bcma_device *dev);
  192. void (*shutdown)(struct bcma_device *dev);
  193. struct device_driver drv;
  194. };
  195. extern
  196. int __bcma_driver_register(struct bcma_driver *drv, struct module *owner);
  197. #define bcma_driver_register(drv) \
  198. __bcma_driver_register(drv, THIS_MODULE)
  199. extern void bcma_driver_unregister(struct bcma_driver *drv);
  200. /* Set a fallback SPROM.
  201. * See kdoc at the function definition for complete documentation. */
  202. extern int bcma_arch_register_fallback_sprom(
  203. int (*sprom_callback)(struct bcma_bus *bus,
  204. struct ssb_sprom *out));
  205. struct bcma_bus {
  206. /* The MMIO area. */
  207. void __iomem *mmio;
  208. const struct bcma_host_ops *ops;
  209. enum bcma_hosttype hosttype;
  210. union {
  211. /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */
  212. struct pci_dev *host_pci;
  213. /* Pointer to the SDIO device (only for BCMA_HOSTTYPE_SDIO) */
  214. struct sdio_func *host_sdio;
  215. };
  216. struct bcma_chipinfo chipinfo;
  217. struct bcma_boardinfo boardinfo;
  218. struct bcma_device *mapped_core;
  219. struct list_head cores;
  220. u8 nr_cores;
  221. u8 init_done:1;
  222. u8 num;
  223. struct bcma_drv_cc drv_cc;
  224. struct bcma_drv_pci drv_pci[2];
  225. struct bcma_drv_mips drv_mips;
  226. struct bcma_drv_gmac_cmn drv_gmac_cmn;
  227. /* We decided to share SPROM struct with SSB as long as we do not need
  228. * any hacks for BCMA. This simplifies drivers code. */
  229. struct ssb_sprom sprom;
  230. };
  231. static inline u32 bcma_read8(struct bcma_device *core, u16 offset)
  232. {
  233. return core->bus->ops->read8(core, offset);
  234. }
  235. static inline u32 bcma_read16(struct bcma_device *core, u16 offset)
  236. {
  237. return core->bus->ops->read16(core, offset);
  238. }
  239. static inline u32 bcma_read32(struct bcma_device *core, u16 offset)
  240. {
  241. return core->bus->ops->read32(core, offset);
  242. }
  243. static inline
  244. void bcma_write8(struct bcma_device *core, u16 offset, u32 value)
  245. {
  246. core->bus->ops->write8(core, offset, value);
  247. }
  248. static inline
  249. void bcma_write16(struct bcma_device *core, u16 offset, u32 value)
  250. {
  251. core->bus->ops->write16(core, offset, value);
  252. }
  253. static inline
  254. void bcma_write32(struct bcma_device *core, u16 offset, u32 value)
  255. {
  256. core->bus->ops->write32(core, offset, value);
  257. }
  258. #ifdef CONFIG_BCMA_BLOCKIO
  259. static inline void bcma_block_read(struct bcma_device *core, void *buffer,
  260. size_t count, u16 offset, u8 reg_width)
  261. {
  262. core->bus->ops->block_read(core, buffer, count, offset, reg_width);
  263. }
  264. static inline void bcma_block_write(struct bcma_device *core,
  265. const void *buffer, size_t count,
  266. u16 offset, u8 reg_width)
  267. {
  268. core->bus->ops->block_write(core, buffer, count, offset, reg_width);
  269. }
  270. #endif
  271. static inline u32 bcma_aread32(struct bcma_device *core, u16 offset)
  272. {
  273. return core->bus->ops->aread32(core, offset);
  274. }
  275. static inline
  276. void bcma_awrite32(struct bcma_device *core, u16 offset, u32 value)
  277. {
  278. core->bus->ops->awrite32(core, offset, value);
  279. }
  280. static inline void bcma_mask32(struct bcma_device *cc, u16 offset, u32 mask)
  281. {
  282. bcma_write32(cc, offset, bcma_read32(cc, offset) & mask);
  283. }
  284. static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set)
  285. {
  286. bcma_write32(cc, offset, bcma_read32(cc, offset) | set);
  287. }
  288. static inline void bcma_maskset32(struct bcma_device *cc,
  289. u16 offset, u32 mask, u32 set)
  290. {
  291. bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set);
  292. }
  293. static inline void bcma_mask16(struct bcma_device *cc, u16 offset, u16 mask)
  294. {
  295. bcma_write16(cc, offset, bcma_read16(cc, offset) & mask);
  296. }
  297. static inline void bcma_set16(struct bcma_device *cc, u16 offset, u16 set)
  298. {
  299. bcma_write16(cc, offset, bcma_read16(cc, offset) | set);
  300. }
  301. static inline void bcma_maskset16(struct bcma_device *cc,
  302. u16 offset, u16 mask, u16 set)
  303. {
  304. bcma_write16(cc, offset, (bcma_read16(cc, offset) & mask) | set);
  305. }
  306. extern struct bcma_device *bcma_find_core(struct bcma_bus *bus, u16 coreid);
  307. extern bool bcma_core_is_enabled(struct bcma_device *core);
  308. extern void bcma_core_disable(struct bcma_device *core, u32 flags);
  309. extern int bcma_core_enable(struct bcma_device *core, u32 flags);
  310. extern void bcma_core_set_clockmode(struct bcma_device *core,
  311. enum bcma_clkmode clkmode);
  312. extern void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status,
  313. bool on);
  314. #define BCMA_DMA_TRANSLATION_MASK 0xC0000000
  315. #define BCMA_DMA_TRANSLATION_NONE 0x00000000
  316. #define BCMA_DMA_TRANSLATION_DMA32_CMT 0x40000000 /* Client Mode Translation for 32-bit DMA */
  317. #define BCMA_DMA_TRANSLATION_DMA64_CMT 0x80000000 /* Client Mode Translation for 64-bit DMA */
  318. extern u32 bcma_core_dma_translation(struct bcma_device *core);
  319. #endif /* LINUX_BCMA_H_ */