blob: 8b0cef9fd692b93ed9f5475c3f8882034a1527ad [file] [log] [blame]
Rafał Miłecki8369ae32011-05-09 18:56:46 +02001#ifndef LINUX_BCMA_H_
2#define LINUX_BCMA_H_
3
4#include <linux/pci.h>
5#include <linux/mod_devicetable.h>
6
7#include <linux/bcma/bcma_driver_chipcommon.h>
8#include <linux/bcma/bcma_driver_pci.h>
9
10#include "bcma_regs.h"
11
12struct bcma_device;
13struct bcma_bus;
14
15enum bcma_hosttype {
16 BCMA_HOSTTYPE_NONE,
17 BCMA_HOSTTYPE_PCI,
18 BCMA_HOSTTYPE_SDIO,
19};
20
21struct bcma_chipinfo {
22 u16 id;
23 u8 rev;
24 u8 pkg;
25};
26
27struct bcma_host_ops {
28 u8 (*read8)(struct bcma_device *core, u16 offset);
29 u16 (*read16)(struct bcma_device *core, u16 offset);
30 u32 (*read32)(struct bcma_device *core, u16 offset);
31 void (*write8)(struct bcma_device *core, u16 offset, u8 value);
32 void (*write16)(struct bcma_device *core, u16 offset, u16 value);
33 void (*write32)(struct bcma_device *core, u16 offset, u32 value);
34 /* Agent ops */
35 u32 (*aread32)(struct bcma_device *core, u16 offset);
36 void (*awrite32)(struct bcma_device *core, u16 offset, u32 value);
37};
38
39/* Core manufacturers */
40#define BCMA_MANUF_ARM 0x43B
41#define BCMA_MANUF_MIPS 0x4A7
42#define BCMA_MANUF_BCM 0x4BF
43
44/* Core class values. */
45#define BCMA_CL_SIM 0x0
46#define BCMA_CL_EROM 0x1
47#define BCMA_CL_CORESIGHT 0x9
48#define BCMA_CL_VERIF 0xB
49#define BCMA_CL_OPTIMO 0xD
50#define BCMA_CL_GEN 0xE
51#define BCMA_CL_PRIMECELL 0xF
52
53/* Core-ID values. */
54#define BCMA_CORE_OOB_ROUTER 0x367 /* Out of band */
55#define BCMA_CORE_INVALID 0x700
56#define BCMA_CORE_CHIPCOMMON 0x800
57#define BCMA_CORE_ILINE20 0x801
58#define BCMA_CORE_SRAM 0x802
59#define BCMA_CORE_SDRAM 0x803
60#define BCMA_CORE_PCI 0x804
61#define BCMA_CORE_MIPS 0x805
62#define BCMA_CORE_ETHERNET 0x806
63#define BCMA_CORE_V90 0x807
64#define BCMA_CORE_USB11_HOSTDEV 0x808
65#define BCMA_CORE_ADSL 0x809
66#define BCMA_CORE_ILINE100 0x80A
67#define BCMA_CORE_IPSEC 0x80B
68#define BCMA_CORE_UTOPIA 0x80C
69#define BCMA_CORE_PCMCIA 0x80D
70#define BCMA_CORE_INTERNAL_MEM 0x80E
71#define BCMA_CORE_MEMC_SDRAM 0x80F
72#define BCMA_CORE_OFDM 0x810
73#define BCMA_CORE_EXTIF 0x811
74#define BCMA_CORE_80211 0x812
75#define BCMA_CORE_PHY_A 0x813
76#define BCMA_CORE_PHY_B 0x814
77#define BCMA_CORE_PHY_G 0x815
78#define BCMA_CORE_MIPS_3302 0x816
79#define BCMA_CORE_USB11_HOST 0x817
80#define BCMA_CORE_USB11_DEV 0x818
81#define BCMA_CORE_USB20_HOST 0x819
82#define BCMA_CORE_USB20_DEV 0x81A
83#define BCMA_CORE_SDIO_HOST 0x81B
84#define BCMA_CORE_ROBOSWITCH 0x81C
85#define BCMA_CORE_PARA_ATA 0x81D
86#define BCMA_CORE_SATA_XORDMA 0x81E
87#define BCMA_CORE_ETHERNET_GBIT 0x81F
88#define BCMA_CORE_PCIE 0x820
89#define BCMA_CORE_PHY_N 0x821
90#define BCMA_CORE_SRAM_CTL 0x822
91#define BCMA_CORE_MINI_MACPHY 0x823
92#define BCMA_CORE_ARM_1176 0x824
93#define BCMA_CORE_ARM_7TDMI 0x825
94#define BCMA_CORE_PHY_LP 0x826
95#define BCMA_CORE_PMU 0x827
96#define BCMA_CORE_PHY_SSN 0x828
97#define BCMA_CORE_SDIO_DEV 0x829
98#define BCMA_CORE_ARM_CM3 0x82A
99#define BCMA_CORE_PHY_HT 0x82B
100#define BCMA_CORE_MIPS_74K 0x82C
101#define BCMA_CORE_MAC_GBIT 0x82D
102#define BCMA_CORE_DDR12_MEM_CTL 0x82E
103#define BCMA_CORE_PCIE_RC 0x82F /* PCIe Root Complex */
104#define BCMA_CORE_OCP_OCP_BRIDGE 0x830
105#define BCMA_CORE_SHARED_COMMON 0x831
106#define BCMA_CORE_OCP_AHB_BRIDGE 0x832
107#define BCMA_CORE_SPI_HOST 0x833
108#define BCMA_CORE_I2S 0x834
109#define BCMA_CORE_SDR_DDR1_MEM_CTL 0x835 /* SDR/DDR1 memory controller core */
110#define BCMA_CORE_SHIM 0x837 /* SHIM component in ubus/6362 */
111#define BCMA_CORE_DEFAULT 0xFFF
112
113#define BCMA_MAX_NR_CORES 16
114
115struct bcma_device {
116 struct bcma_bus *bus;
117 struct bcma_device_id id;
118
119 struct device dev;
Rafał Miłecki1bdcd092011-05-18 11:40:22 +0200120 struct device *dma_dev;
121 unsigned int irq;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200122 bool dev_registered;
123
124 u8 core_index;
125
126 u32 addr;
127 u32 wrap;
128
129 void *drvdata;
130 struct list_head list;
131};
132
133static inline void *bcma_get_drvdata(struct bcma_device *core)
134{
135 return core->drvdata;
136}
137static inline void bcma_set_drvdata(struct bcma_device *core, void *drvdata)
138{
139 core->drvdata = drvdata;
140}
141
142struct bcma_driver {
143 const char *name;
144 const struct bcma_device_id *id_table;
145
146 int (*probe)(struct bcma_device *dev);
147 void (*remove)(struct bcma_device *dev);
148 int (*suspend)(struct bcma_device *dev, pm_message_t state);
149 int (*resume)(struct bcma_device *dev);
150 void (*shutdown)(struct bcma_device *dev);
151
152 struct device_driver drv;
153};
154extern
155int __bcma_driver_register(struct bcma_driver *drv, struct module *owner);
156static inline int bcma_driver_register(struct bcma_driver *drv)
157{
158 return __bcma_driver_register(drv, THIS_MODULE);
159}
160extern void bcma_driver_unregister(struct bcma_driver *drv);
161
162struct bcma_bus {
163 /* The MMIO area. */
164 void __iomem *mmio;
165
166 const struct bcma_host_ops *ops;
167
168 enum bcma_hosttype hosttype;
169 union {
170 /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */
171 struct pci_dev *host_pci;
172 /* Pointer to the SDIO device (only for BCMA_HOSTTYPE_SDIO) */
173 struct sdio_func *host_sdio;
174 };
175
176 struct bcma_chipinfo chipinfo;
177
178 struct bcma_device *mapped_core;
179 struct list_head cores;
180 u8 nr_cores;
181
182 struct bcma_drv_cc drv_cc;
183 struct bcma_drv_pci drv_pci;
184};
185
186extern inline u32 bcma_read8(struct bcma_device *core, u16 offset)
187{
188 return core->bus->ops->read8(core, offset);
189}
190extern inline u32 bcma_read16(struct bcma_device *core, u16 offset)
191{
192 return core->bus->ops->read16(core, offset);
193}
194extern inline u32 bcma_read32(struct bcma_device *core, u16 offset)
195{
196 return core->bus->ops->read32(core, offset);
197}
198extern inline
199void bcma_write8(struct bcma_device *core, u16 offset, u32 value)
200{
201 core->bus->ops->write8(core, offset, value);
202}
203extern inline
204void bcma_write16(struct bcma_device *core, u16 offset, u32 value)
205{
206 core->bus->ops->write16(core, offset, value);
207}
208extern inline
209void bcma_write32(struct bcma_device *core, u16 offset, u32 value)
210{
211 core->bus->ops->write32(core, offset, value);
212}
213extern inline u32 bcma_aread32(struct bcma_device *core, u16 offset)
214{
215 return core->bus->ops->aread32(core, offset);
216}
217extern inline
218void bcma_awrite32(struct bcma_device *core, u16 offset, u32 value)
219{
220 core->bus->ops->awrite32(core, offset, value);
221}
222
223extern bool bcma_core_is_enabled(struct bcma_device *core);
224extern int bcma_core_enable(struct bcma_device *core, u32 flags);
225
226#endif /* LINUX_BCMA_H_ */