blob: 42ecf961004e95b510375d65c2e6b546b79e2fb4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Martyn Welcha17a75e2009-07-31 09:28:17 +01002#ifndef _VME_BRIDGE_H_
3#define _VME_BRIDGE_H_
4
Dmitry Kalinkinad1bfe42015-10-11 01:00:58 +03005#include <linux/vme.h>
6
Martyn Welcha17a75e2009-07-31 09:28:17 +01007#define VME_CRCSR_BUF_SIZE (508*1024)
Martyn Welcha17a75e2009-07-31 09:28:17 +01008/*
9 * Resource structures
10 */
11struct vme_master_resource {
12 struct list_head list;
13 struct vme_bridge *parent;
14 /*
15 * We are likely to need to access the VME bus in interrupt context, so
Martyn Welch400822f2009-08-11 16:20:22 +010016 * protect master routines with a spinlock rather than a mutex.
Martyn Welcha17a75e2009-07-31 09:28:17 +010017 */
18 spinlock_t lock;
19 int locked;
20 int number;
Martyn Welch6af04b02011-12-01 17:06:29 +000021 u32 address_attr;
22 u32 cycle_attr;
23 u32 width_attr;
Martyn Welch8fafb472010-02-18 15:13:12 +000024 struct resource bus_resource;
Emilio G. Cota05997262010-11-12 11:15:40 +000025 void __iomem *kern_base;
Martyn Welcha17a75e2009-07-31 09:28:17 +010026};
27
28struct vme_slave_resource {
29 struct list_head list;
30 struct vme_bridge *parent;
Martyn Welch400822f2009-08-11 16:20:22 +010031 struct mutex mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +010032 int locked;
33 int number;
Martyn Welch6af04b02011-12-01 17:06:29 +000034 u32 address_attr;
35 u32 cycle_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +010036};
37
38struct vme_dma_pattern {
39 u32 pattern;
Martyn Welch6af04b02011-12-01 17:06:29 +000040 u32 type;
Martyn Welcha17a75e2009-07-31 09:28:17 +010041};
42
43struct vme_dma_pci {
44 dma_addr_t address;
45};
46
47struct vme_dma_vme {
48 unsigned long long address;
Martyn Welch6af04b02011-12-01 17:06:29 +000049 u32 aspace;
50 u32 cycle;
51 u32 dwidth;
Martyn Welcha17a75e2009-07-31 09:28:17 +010052};
53
54struct vme_dma_list {
55 struct list_head list;
56 struct vme_dma_resource *parent;
57 struct list_head entries;
Martyn Welch400822f2009-08-11 16:20:22 +010058 struct mutex mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +010059};
60
61struct vme_dma_resource {
62 struct list_head list;
63 struct vme_bridge *parent;
Martyn Welch400822f2009-08-11 16:20:22 +010064 struct mutex mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +010065 int locked;
66 int number;
67 struct list_head pending;
68 struct list_head running;
Martyn Welch6af04b02011-12-01 17:06:29 +000069 u32 route_attr;
Martyn Welcha17a75e2009-07-31 09:28:17 +010070};
71
Martyn Welch42fb5032009-08-11 17:44:56 +010072struct vme_lm_resource {
73 struct list_head list;
74 struct vme_bridge *parent;
75 struct mutex mtx;
76 int locked;
77 int number;
78 int monitors;
79};
80
Dmitry Kalinkin0b049662015-09-18 02:01:44 +030081struct vme_error_handler {
Martyn Welcha17a75e2009-07-31 09:28:17 +010082 struct list_head list;
Dmitry Kalinkin0b049662015-09-18 02:01:44 +030083 unsigned long long start; /* Beginning of error window */
84 unsigned long long end; /* End of error window */
85 unsigned long long first_error; /* Address of the first error */
86 u32 aspace; /* Address space of error window*/
87 unsigned num_errors; /* Number of errors */
Martyn Welcha17a75e2009-07-31 09:28:17 +010088};
89
90struct vme_callback {
91 void (*func)(int, int, void*);
92 void *priv_data;
93};
94
95struct vme_irq {
96 int count;
Dmitry Kalinkinad1bfe42015-10-11 01:00:58 +030097 struct vme_callback callback[VME_NUM_STATUSID];
Martyn Welcha17a75e2009-07-31 09:28:17 +010098};
99
100/* Allow 16 characters for name (including null character) */
101#define VMENAMSIZ 16
102
103/* This structure stores all the information about one bridge
104 * The structure should be dynamically allocated by the driver and one instance
105 * of the structure should be present for each VME chip present in the system.
Martyn Welcha17a75e2009-07-31 09:28:17 +0100106 */
107struct vme_bridge {
Martyn Welchead1f3e2009-12-15 08:43:02 +0000108 char name[VMENAMSIZ];
Martyn Welcha17a75e2009-07-31 09:28:17 +0100109 int num;
110 struct list_head master_resources;
111 struct list_head slave_resources;
112 struct list_head dma_resources;
Martyn Welch42fb5032009-08-11 17:44:56 +0100113 struct list_head lm_resources;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100114
Dmitry Kalinkin0b049662015-09-18 02:01:44 +0300115 /* List for registered errors handlers */
116 struct list_head vme_error_handlers;
117 /* List of devices on this bridge */
118 struct list_head devices;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100119
120 /* Bridge Info - XXX Move to private structure? */
Manohar Vanga7f58f022011-08-10 11:33:46 +0200121 struct device *parent; /* Parent device (eg. pdev->dev for PCI) */
Martyn Welch29848ac2010-02-18 15:13:05 +0000122 void *driver_priv; /* Private pointer for the bridge driver */
Manohar Vanga733e3ef2011-08-12 12:30:48 +0200123 struct list_head bus_list; /* list of VME buses */
Martyn Welcha17a75e2009-07-31 09:28:17 +0100124
Martyn Welcha17a75e2009-07-31 09:28:17 +0100125 /* Interrupt callbacks */
126 struct vme_irq irq[7];
Martyn Welchc813f592009-10-29 16:34:54 +0000127 /* Locking for VME irq callback configuration */
128 struct mutex irq_mtx;
Martyn Welcha17a75e2009-07-31 09:28:17 +0100129
130 /* Slave Functions */
131 int (*slave_get) (struct vme_slave_resource *, int *,
132 unsigned long long *, unsigned long long *, dma_addr_t *,
Martyn Welch6af04b02011-12-01 17:06:29 +0000133 u32 *, u32 *);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100134 int (*slave_set) (struct vme_slave_resource *, int, unsigned long long,
Martyn Welch6af04b02011-12-01 17:06:29 +0000135 unsigned long long, dma_addr_t, u32, u32);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100136
137 /* Master Functions */
138 int (*master_get) (struct vme_master_resource *, int *,
Martyn Welch6af04b02011-12-01 17:06:29 +0000139 unsigned long long *, unsigned long long *, u32 *, u32 *,
140 u32 *);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100141 int (*master_set) (struct vme_master_resource *, int,
Martyn Welch6af04b02011-12-01 17:06:29 +0000142 unsigned long long, unsigned long long, u32, u32, u32);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100143 ssize_t (*master_read) (struct vme_master_resource *, void *, size_t,
144 loff_t);
145 ssize_t (*master_write) (struct vme_master_resource *, void *, size_t,
146 loff_t);
147 unsigned int (*master_rmw) (struct vme_master_resource *, unsigned int,
148 unsigned int, unsigned int, loff_t);
149
150 /* DMA Functions */
151 int (*dma_list_add) (struct vme_dma_list *, struct vme_dma_attr *,
152 struct vme_dma_attr *, size_t);
153 int (*dma_list_exec) (struct vme_dma_list *);
154 int (*dma_list_empty) (struct vme_dma_list *);
155
156 /* Interrupt Functions */
Martyn Welch29848ac2010-02-18 15:13:05 +0000157 void (*irq_set) (struct vme_bridge *, int, int, int);
158 int (*irq_generate) (struct vme_bridge *, int, int);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100159
160 /* Location monitor functions */
Martyn Welch6af04b02011-12-01 17:06:29 +0000161 int (*lm_set) (struct vme_lm_resource *, unsigned long long, u32, u32);
162 int (*lm_get) (struct vme_lm_resource *, unsigned long long *, u32 *,
163 u32 *);
Aaron Sierrafa54b322016-04-29 16:41:02 -0500164 int (*lm_attach)(struct vme_lm_resource *, int,
165 void (*callback)(void *), void *);
Martyn Welch42fb5032009-08-11 17:44:56 +0100166 int (*lm_detach) (struct vme_lm_resource *, int);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100167
168 /* CR/CSR space functions */
Martyn Welch29848ac2010-02-18 15:13:05 +0000169 int (*slot_get) (struct vme_bridge *);
Manohar Vanga7f58f022011-08-10 11:33:46 +0200170
171 /* Bridge parent interface */
172 void *(*alloc_consistent)(struct device *dev, size_t size,
173 dma_addr_t *dma);
174 void (*free_consistent)(struct device *dev, size_t size,
175 void *vaddr, dma_addr_t dma);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100176};
177
Dmitry Kalinkine2c63932015-09-18 02:01:42 +0300178void vme_bus_error_handler(struct vme_bridge *bridge,
Dmitry Kalinkin472f16f2015-09-18 02:01:43 +0300179 unsigned long long address, int am);
Martyn Welchc813f592009-10-29 16:34:54 +0000180void vme_irq_handler(struct vme_bridge *, int, int);
181
Aaron Sierra326071b2016-04-24 15:11:38 -0500182struct vme_bridge *vme_init_bridge(struct vme_bridge *);
Martyn Welchead1f3e2009-12-15 08:43:02 +0000183int vme_register_bridge(struct vme_bridge *);
184void vme_unregister_bridge(struct vme_bridge *);
Dmitry Kalinkin0b049662015-09-18 02:01:44 +0300185struct vme_error_handler *vme_register_error_handler(
186 struct vme_bridge *bridge, u32 aspace,
187 unsigned long long address, size_t len);
188void vme_unregister_error_handler(struct vme_error_handler *handler);
Martyn Welcha17a75e2009-07-31 09:28:17 +0100189
190#endif /* _VME_BRIDGE_H_ */