summaryrefslogtreecommitdiff
path: root/sys/dev/vme/vmevar.h
blob: b6e85cc3edda88f7f9a19b8ea9e783ad93b9f4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* $NetBSD: vmevar.h,v 1.14 2012/10/27 17:18:38 chs Exp $ */

/*
 * Copyright (c) 1999
 *	Matthias Drochner.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#ifndef _VMEVAR_H_
#define _VMEVAR_H_

typedef u_int32_t vme_addr_t, vme_size_t;
typedef int vme_am_t;

typedef enum {
	VME_D8 = 1,
	VME_D16 = 2,
	VME_D32 = 4
} vme_datasize_t;

typedef int vme_swap_t; /* hardware swap capabilities,
			 placeholder - contents to be specified */

#ifdef _KERNEL

/*
 * Generic placeholder for any resources needed for a mapping,
 * overloaded by bus interface driver
 */
typedef void *vme_mapresc_t;

/* Describes interrupt mapping, opaque to MI drivers */
typedef void *vme_intr_handle_t;

/*
 * Tag structure passed to VME bus devices;
 * contains the bus dependent functions, accessed via macros below.
 */
typedef struct vme_chipset_tag {
	void *cookie;

	int (*vct_map)(void *, vme_addr_t, vme_size_t,
			vme_am_t, vme_datasize_t, vme_swap_t,
			bus_space_tag_t *, bus_space_handle_t *,
			vme_mapresc_t *);
	void (*vct_unmap)(void *, vme_mapresc_t);

	int (*vct_probe)(void *, vme_addr_t, vme_size_t,
			 vme_am_t, vme_datasize_t,
			 int (*)(void *, bus_space_tag_t, bus_space_handle_t),
			      void *);

	int (*vct_int_map)(void *, int, int, vme_intr_handle_t *);
	const struct evcnt *(*vct_int_evcnt)(void *, vme_intr_handle_t);
	void *(*vct_int_establish)(void *, vme_intr_handle_t, int,
					int (*)(void *), void *);
	void (*vct_int_disestablish)(void *, void *);

	int (*vct_dmamap_create)(void *, vme_size_t,
				 vme_am_t, vme_datasize_t, vme_swap_t,
				 int, vme_size_t, vme_addr_t,
				 int, bus_dmamap_t *);
	void (*vct_dmamap_destroy)(void *, bus_dmamap_t);

	/*
	 * This sucks: we have to give all the VME specific arguments
	 * twice - for dmamem_alloc and for dmamem_create. Perhaps
	 * give a "dmamap" argument here, meaning: "allocate memory which
	 * can be accessed through this DMA map".
	 */
	int (*vct_dmamem_alloc)(void *, vme_size_t,
				vme_am_t, vme_datasize_t, vme_swap_t,
				bus_dma_segment_t *, int, int *, int);
	void (*vct_dmamem_free)(void *, bus_dma_segment_t *, int);

	struct vmebus_softc *bus;
} *vme_chipset_tag_t;

/*
 * map / unmap: map VME address ranges into kernel address space
 * XXX should have mapping to CPU only to allow user mmap() without
 *     wasting kvm
 */
#define vme_space_map(vc, vmeaddr, len, am, datasize, swap, tag, handle, resc) \
	(*((vc)->vct_map))((vc)->cookie, (vmeaddr), (len), (am), (datasize), \
			   (swap), (tag), (handle), (resc))
#define vme_space_unmap(vc, resc) \
	(*((vc)->vct_unmap))((vc)->cookie, (resc))

/*
 * probe: check readability or call callback.
 */
#define vme_probe(vc, vmeaddr, len, am, datasize, callback, cbarg) \
	(*((vc)->vct_probe))((vc)->cookie, (vmeaddr), (len), (am), \
			     (datasize), (callback), (cbarg))

/*
 * install / deinstall VME interrupt handler.
 */
#define vme_intr_map(vc, level, vector, handlep) \
	(*((vc)->vct_int_map))((vc)->cookie, (level), (vector), (handlep))
#define vme_intr_evcnt(vc, handle) \
	(*((vc)->vct_int_evcnt))((vc)->cookie, (handle))
#define vme_intr_establish(vc, handle, prio, func, arg) \
	(*((vc)->vct_int_establish))((vc)->cookie, \
		(handle), (prio), (func), (arg))
#define vme_intr_disestablish(vc, cookie) \
	(*((vc)->vct_int_unmap))((vc)->cookie, (cookie))

/*
 * Create DMA map (which is later used by bus independent DMA functions).
 */
#define vme_dmamap_create(vc, size, am, datasize, swap, nsegs, segsz, bound, \
			  flags, map) \
	(*((vc)->vct_dmamap_create))((vc)->cookie, (size), (am), (datasize), \
		(swap), (nsegs), (segsz), (bound), (flags), (map))
#define vme_dmamap_destroy(vc, map) \
	(*((vc)->vct_dmamap_destroy))((vc)->cookie, (map))

/*
 * Allocate memory directly accessible from VME.
 */
#define vme_dmamem_alloc(vc, size, am, datasize, swap, \
  segs, nsegs, rsegs, flags) \
  (*((vc)->vct_dmamem_alloc))((vc)->cookie, (size), (am), (datasize), (swap), \
  (segs), (nsegs), (rsegs), (flags))
#define vme_dmamem_free(vc, segs, nsegs) \
  (*((vc)->vct_dmamem_free))((vc)->cookie, (segs), (nsegs))

/*
 * Autoconfiguration data structures.
 */

struct vme_attach_args;
typedef void (*vme_slaveconf_callback)(device_t,
				       struct vme_attach_args *);

struct vmebus_attach_args {
	vme_chipset_tag_t va_vct;
	bus_dma_tag_t va_bdt;

	vme_slaveconf_callback va_slaveconfig;
};

struct extent;

struct vmebus_softc {
	vme_chipset_tag_t sc_vct;
	bus_dma_tag_t sc_bdt;

	vme_slaveconf_callback slaveconfig;

	struct extent *vme32ext, *vme24ext, *vme16ext;
};

#define VME_MAXCFRANGES 3

struct vme_range {
	vme_addr_t offset;
	vme_size_t size;
	vme_am_t am;
};

struct vme_attach_args {
	vme_chipset_tag_t va_vct;
	bus_dma_tag_t va_bdt;

	int ivector, ilevel;
	int numcfranges;
	struct vme_range r[VME_MAXCFRANGES];
};

/*
 * Address space accounting.
 */
int _vme_space_alloc(struct vmebus_softc *, vme_addr_t, vme_size_t, vme_am_t);
void _vme_space_free(struct vmebus_softc *, vme_addr_t, vme_size_t, vme_am_t);
int _vme_space_get(struct vmebus_softc *, vme_size_t, vme_am_t,
		   u_long, vme_addr_t*);

#define vme_space_alloc(tag, addr, size, ams) \
	_vme_space_alloc(tag->bus, addr, size, ams)

#define vme_space_free(tag, addr, size, ams) \
	_vme_space_free(tag->bus, addr, size, ams)

#define vme_space_get(tag, size, ams, align, addr) \
	_vme_space_get(tag->bus, size, ams, align, addr)

#endif /* KERNEL */
#endif /* _VMEVAR_H_ */