blob: 397578a738839756f7787d9b39556fd32b1277e1 [file] [log] [blame]
Martyn Welcha17a75e2009-07-31 09:28:17 +01001#ifndef _VME_BRIDGE_H_
2#define _VME_BRIDGE_H_
3
4#define VME_CRCSR_BUF_SIZE (508*1024)
Martyn Welcha17a75e2009-07-31 09:28:17 +01005/*
6 * Resource structures
7 */
8struct vme_master_resource {
9 struct list_head list;
10 struct vme_bridge *parent;
11 /*
12 * We are likely to need to access the VME bus in interrupt context, so
Martyn Welch400822f2009-08-11 16:20:22 +010013 * protect master routines with a spinlock rather than a mutex.
Martyn Welcha17a75e2009-07-31 09:28:17 +010014 */
15 spinlock_t lock;
16 int locked;
17 int number;
Martyn Welch6af04b02011-12-01 17:06:29 +000018 u32 address_attr;
19 u32 cycle_attr;
20 u32 width_attr;
Martyn Welch8fafb472010-02-18 15:13:12 +000021 struct resource bus_resource;
Emilio G. Cota05997262010-11-12 11:15:40 +000022 void __iomem *kern_base;
Martyn Welcha17a75e2009-07-31 09:28:17 +010023};
24
25struct vme_slave_resource {
26 struct list_head list;
27 struct vme_bridge *parent;
Martyn Welch400822f2009-08-11 16:20:22 +010028 struct mutex mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +010029 int locked;
30 int number;
Martyn Welch6af04b02011-12-01 17:06:29 +000031 u32 address_attr;
32 u32 cycle_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +010033};
34
35struct vme_dma_pattern {
36 u32 pattern;
Martyn Welch6af04b02011-12-01 17:06:29 +000037 u32 type;
Martyn Welcha17a75e2009-07-31 09:28:17 +010038};
39
40struct vme_dma_pci {
41 dma_addr_t address;
42};
43
44struct vme_dma_vme {
45 unsigned long long address;
Martyn Welch6af04b02011-12-01 17:06:29 +000046 u32 aspace;
47 u32 cycle;
48 u32 dwidth;
Martyn Welcha17a75e2009-07-31 09:28:17 +010049};
50
51struct vme_dma_list {
52 struct list_head list;
53 struct vme_dma_resource *parent;
54 struct list_head entries;
Martyn Welch400822f2009-08-11 16:20:22 +010055 struct mutex mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +010056};
57
58struct vme_dma_resource {
59 struct list_head list;
60 struct vme_bridge *parent;
Martyn Welch400822f2009-08-11 16:20:22 +010061 struct mutex mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +010062 int locked;
63 int number;
64 struct list_head pending;
65 struct list_head running;
Martyn Welch6af04b02011-12-01 17:06:29 +000066 u32 route_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +010067};
68
Martyn Welch42fb5032009-08-11 17:44:56 +010069struct vme_lm_resource {
70 struct list_head list;
71 struct vme_bridge *parent;
72 struct mutex mtx;
73 int locked;
74 int number;
75 int monitors;
76};
77
Dmitry Kalinkin0b049662015-09-18 02:01:44 +030078struct vme_error_handler {
Martyn Welcha17a75e2009-07-31 09:28:17 +010079 struct list_head list;
Dmitry Kalinkin0b049662015-09-18 02:01:44 +030080 unsigned long long start; /* Beginning of error window */
81 unsigned long long end; /* End of error window */
82 unsigned long long first_error; /* Address of the first error */
83 u32 aspace; /* Address space of error window*/
84 unsigned num_errors; /* Number of errors */
Martyn Welcha17a75e2009-07-31 09:28:17 +010085};
86
87struct vme_callback {
88 void (*func)(int, int, void*);
89 void *priv_data;
90};
91
92struct vme_irq {
93 int count;
94 struct vme_callback callback[255];
95};
96
97/* Allow 16 characters for name (including null character) */
98#define VMENAMSIZ 16
99
100/* This structure stores all the information about one bridge
101 * The structure should be dynamically allocated by the driver and one instance
102 * of the structure should be present for each VME chip present in the system.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100103 */
104struct vme_bridge {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000105 char name[VMENAMSIZ];
Martyn Welcha17a75e2009-07-31 09:28:17 +0100106 int num;
107 struct list_head master_resources;
108 struct list_head slave_resources;
109 struct list_head dma_resources;
Martyn Welch42fb5032009-08-11 17:44:56 +0100110 struct list_head lm_resources;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100111
Dmitry Kalinkin0b049662015-09-18 02:01:44 +0300112 /* List for registered errors handlers */
113 struct list_head vme_error_handlers;
114 /* List of devices on this bridge */
115 struct list_head devices;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100116
117 /* Bridge Info - XXX Move to private structure? */
Manohar Vanga7f58f022011-08-10 11:33:46 +0200118 struct device *parent; /* Parent device (eg. pdev->dev for PCI) */
Martyn Welch29848ac2010-02-18 15:13:05 +0000119 void *driver_priv; /* Private pointer for the bridge driver */
Manohar Vanga733e3ef2011-08-12 12:30:48 +0200120 struct list_head bus_list; /* list of VME buses */
Martyn Welcha17a75e2009-07-31 09:28:17 +0100121
Martyn Welcha17a75e2009-07-31 09:28:17 +0100122 /* Interrupt callbacks */
123 struct vme_irq irq[7];
Martyn Welchc813f592009-10-29 16:34:54 +0000124 /* Locking for VME irq callback configuration */
125 struct mutex irq_mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100126
127 /* Slave Functions */
128 int (*slave_get) (struct vme_slave_resource *, int *,
129 unsigned long long *, unsigned long long *, dma_addr_t *,
Martyn Welch6af04b02011-12-01 17:06:29 +0000130 u32 *, u32 *);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100131 int (*slave_set) (struct vme_slave_resource *, int, unsigned long long,
Martyn Welch6af04b02011-12-01 17:06:29 +0000132 unsigned long long, dma_addr_t, u32, u32);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100133
134 /* Master Functions */
135 int (*master_get) (struct vme_master_resource *, int *,
Martyn Welch6af04b02011-12-01 17:06:29 +0000136 unsigned long long *, unsigned long long *, u32 *, u32 *,
137 u32 *);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100138 int (*master_set) (struct vme_master_resource *, int,
Martyn Welch6af04b02011-12-01 17:06:29 +0000139 unsigned long long, unsigned long long, u32, u32, u32);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100140 ssize_t (*master_read) (struct vme_master_resource *, void *, size_t,
141 loff_t);
142 ssize_t (*master_write) (struct vme_master_resource *, void *, size_t,
143 loff_t);
144 unsigned int (*master_rmw) (struct vme_master_resource *, unsigned int,
145 unsigned int, unsigned int, loff_t);
146
147 /* DMA Functions */
148 int (*dma_list_add) (struct vme_dma_list *, struct vme_dma_attr *,
149 struct vme_dma_attr *, size_t);
150 int (*dma_list_exec) (struct vme_dma_list *);
151 int (*dma_list_empty) (struct vme_dma_list *);
152
153 /* Interrupt Functions */
Martyn Welch29848ac2010-02-18 15:13:05 +0000154 void (*irq_set) (struct vme_bridge *, int, int, int);
155 int (*irq_generate) (struct vme_bridge *, int, int);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100156
157 /* Location monitor functions */
Martyn Welch6af04b02011-12-01 17:06:29 +0000158 int (*lm_set) (struct vme_lm_resource *, unsigned long long, u32, u32);
159 int (*lm_get) (struct vme_lm_resource *, unsigned long long *, u32 *,
160 u32 *);
Martyn Welch42fb5032009-08-11 17:44:56 +0100161 int (*lm_attach) (struct vme_lm_resource *, int, void (*callback)(int));
162 int (*lm_detach) (struct vme_lm_resource *, int);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100163
164 /* CR/CSR space functions */
Martyn Welch29848ac2010-02-18 15:13:05 +0000165 int (*slot_get) (struct vme_bridge *);
Manohar Vanga7f58f022011-08-10 11:33:46 +0200166
167 /* Bridge parent interface */
168 void *(*alloc_consistent)(struct device *dev, size_t size,
169 dma_addr_t *dma);
170 void (*free_consistent)(struct device *dev, size_t size,
171 void *vaddr, dma_addr_t dma);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100172};
173
Dmitry Kalinkine2c63932015-09-18 02:01:42 +0300174void vme_bus_error_handler(struct vme_bridge *bridge,
Dmitry Kalinkin472f16f2015-09-18 02:01:43 +0300175 unsigned long long address, int am);
Martyn Welchc813f592009-10-29 16:34:54 +0000176void vme_irq_handler(struct vme_bridge *, int, int);
177
Martyn Welchead1f3e2009-12-15 08:43:02 +0000178int vme_register_bridge(struct vme_bridge *);
179void vme_unregister_bridge(struct vme_bridge *);
Dmitry Kalinkin0b049662015-09-18 02:01:44 +0300180struct vme_error_handler *vme_register_error_handler(
181 struct vme_bridge *bridge, u32 aspace,
182 unsigned long long address, size_t len);
183void vme_unregister_error_handler(struct vme_error_handler *handler);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100184
185#endif /* _VME_BRIDGE_H_ */