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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
*/
#ifndef _SYS_ROOTNEX_H
#define _SYS_ROOTNEX_H
/*
* x86 root nexus implementation specific state
*/
#include <sys/types.h>
#include <sys/conf.h>
#include <sys/modctl.h>
#include <sys/sunddi.h>
#include <sys/iommulib.h>
#include <sys/sdt.h>
#ifdef __cplusplus
extern "C" {
#endif
/* size of buffer used for ctlop reportdev */
#define REPORTDEV_BUFSIZE 1024
/* min and max interrupt vectors */
#define VEC_MIN 1
#define VEC_MAX 255
/* atomic increment/decrement to keep track of outstanding binds, etc */
#ifdef DEBUG
#define ROOTNEX_DPROF_INC(addr) atomic_inc_64(addr)
#define ROOTNEX_DPROF_DEC(addr) atomic_dec_64(addr)
#define ROOTNEX_DPROBE1(name, type1, arg1) \
DTRACE_PROBE1(name, type1, arg1)
#define ROOTNEX_DPROBE2(name, type1, arg1, type2, arg2) \
DTRACE_PROBE2(name, type1, arg1, type2, arg2)
#define ROOTNEX_DPROBE3(name, type1, arg1, type2, arg2, type3, arg3) \
DTRACE_PROBE3(name, type1, arg1, type2, arg2, type3, arg3)
#define ROOTNEX_DPROBE4(name, type1, arg1, type2, arg2, type3, arg3, \
type4, arg4) \
DTRACE_PROBE4(name, type1, arg1, type2, arg2, type3, arg3, type4, arg4)
#else
#define ROOTNEX_DPROF_INC(addr)
#define ROOTNEX_DPROF_DEC(addr)
#define ROOTNEX_DPROBE1(name, type1, arg1)
#define ROOTNEX_DPROBE2(name, type1, arg1, type2, arg2)
#define ROOTNEX_DPROBE3(name, type1, arg1, type2, arg2, type3, arg3)
#define ROOTNEX_DPROBE4(name, type1, arg1, type2, arg2, type3, arg3, \
type4, arg4)
#endif
/* set in dmac_type to signify that this cookie uses the copy buffer */
#define ROOTNEX_USES_COPYBUF 0x80000000
/*
* integer or boolean property name and value. A few static rootnex properties
* are created during rootnex attach from an array of rootnex_intprop_t..
*/
typedef struct rootnex_intprop_s {
char *prop_name;
int prop_value;
} rootnex_intprop_t;
/*
* sgl related information which is visible to rootnex_get_sgl(). Trying to
* isolate get_sgl() as much as possible so it can be easily replaced.
*/
typedef struct rootnex_sglinfo_s {
/*
* Used to simplify calculations to get the maximum number
* of cookies.
*/
boolean_t si_cancross;
/*
* These are passed into rootnex_get_sgl().
*
* si_min_addr - the minimum physical address
* si_max_addr - the maximum physical address
* si_max_cookie_size - the maximum size of a physically contiguous
* piece of memory that we can handle in a sgl.
* si_segmask - segment mask to determine if we cross a segment boundary
* si_flags - dma_attr_flags
* si_max_pages - max number of pages this sgl could occupy (which
* is also the maximum number of cookies we might see.
*/
uint64_t si_min_addr;
uint64_t si_max_addr;
uint64_t si_max_cookie_size;
uint64_t si_segmask;
uint_t si_flags;
uint_t si_max_pages;
/*
* these are returned by rootnex_get_sgl()
*
* si_bounce_on_seg - if we need to use bounce buffer for pages above
* ddi_dma_seg
* si_copybuf_req - amount of copy buffer needed by the buffer.
* si_buf_offset - The initial offset into the first page of the buffer.
* It's set in get sgl and used in the bind slow path to help
* calculate the current page index & offset from the current offset
* which is relative to the start of the buffer.
* si_asp - address space of buffer passed in.
* si_sgl_size - The actual number of cookies in the sgl. This does
* not reflect and sharing that we might do on window boundaries.
*/
boolean_t si_bounce_on_seg;
size_t si_copybuf_req;
off_t si_buf_offset;
struct as *si_asp;
uint_t si_sgl_size;
} rootnex_sglinfo_t;
/*
* When we have to use the copy buffer, we allocate one of these structures per
* buffer page to track which pages need the copy buffer, what the kernel
* virtual address is (which the device can't reach), and what the copy buffer
* virtual address is (where the device dma's to/from). For 32-bit kernels,
* since we can't use seg kpm, we also need to keep the page_t around and state
* if we've currently mapped in the page into KVA space for buffers which don't
* have kva already and when we have multiple windows because we used up all our
* copy buffer space.
*/
typedef struct rootnex_pgmap_s {
boolean_t pm_uses_copybuf;
#if !defined(__amd64)
boolean_t pm_mapped;
page_t *pm_pp;
caddr_t pm_vaddr;
#endif
caddr_t pm_kaddr;
caddr_t pm_cbaddr;
} rootnex_pgmap_t;
/*
* We only need to trim a buffer when we have multiple windows. Each window has
* trim state. We might have trimmed the end of the previous window, leaving the
* first cookie of this window trimmed[tr_trim_first] (which basically means we
* won't start with a new cookie), or we might need to trim the end of the
* current window [tr_trim_last] (which basically means we won't end with a
* complete cookie). We keep the same state for the first & last cookie in a
* window (a window can have one or more cookies). However, when we trim the
* last cookie, we keep a pointer to the last cookie in the trim state since we
* only need this info when we trim. The pointer to the first cookie in the
* window is in the window state since we need to know what the first cookie in
* the window is in various places.
*
* If we do trim a cookie, we save away the physical address and size of the
* cookie so that we can over write the cookie when we switch windows (the
* space for a cookie which is in two windows is shared between the windows.
* We keep around the same information for the last page in a window.
*
* if we happened to trim on a page that uses the copy buffer, and that page
* is also in the middle of a window boundary because we have filled up the
* copy buffer, we need to remember the copy buffer address for both windows
* since the same page will have different copy buffer addresses in the two
* windows. We need to due the same for kaddr in the 32-bit kernel since we
* have a limited kva space which we map to.
*/
typedef struct rootnex_trim_s {
boolean_t tr_trim_first;
boolean_t tr_trim_last;
ddi_dma_cookie_t *tr_last_cookie;
uint64_t tr_first_paddr;
uint64_t tr_last_paddr;
size_t tr_first_size;
size_t tr_last_size;
boolean_t tr_first_copybuf_win;
boolean_t tr_last_copybuf_win;
uint_t tr_first_pidx;
uint_t tr_last_pidx;
caddr_t tr_first_cbaddr;
caddr_t tr_last_cbaddr;
#if !defined(__amd64)
caddr_t tr_first_kaddr;
caddr_t tr_last_kaddr;
#endif
} rootnex_trim_t;
/*
* per window state. A bound DMA handle can have multiple windows. Each window
* will have the following state. We track if this window needs to sync,
* the offset into the buffer where the window starts, the size of the window.
* a pointer to the first cookie in the window, the number of cookies in the
* window, and the trim state for the window. For the 32-bit kernel, we keep
* track of if we need to remap the copy buffer when we switch to a this window
*/
typedef struct rootnex_window_s {
boolean_t wd_dosync;
uint_t wd_cookie_cnt;
off_t wd_offset;
size_t wd_size;
ddi_dma_cookie_t *wd_first_cookie;
rootnex_trim_t wd_trim;
#if !defined(__amd64)
boolean_t wd_remap_copybuf;
#endif
} rootnex_window_t;
/* per dma handle private state */
typedef struct rootnex_dma_s {
/*
* sgl related state used to build and describe the sgl.
*
* dp_partial_required - used in the bind slow path to identify if we
* need to do a partial mapping or not.
* dp_trim_required - used in the bind slow path to identify if we
* need to trim when switching to a new window. This should only be
* set when partial is set.
* dp_granularity_power_2 - set in alloc handle and used in bind slow
* path to determine if we & or % to calculate the trim.
* dp_dma - copy of dma "object" passed in during bind
* dp_maxxfer - trimmed dma_attr_maxxfer so that it is a whole
* multiple of granularity
* dp_sglinfo - See rootnex_sglinfo_t above.
*/
boolean_t dp_partial_required;
boolean_t dp_trim_required;
boolean_t dp_granularity_power_2;
uint64_t dp_maxxfer;
boolean_t dp_dvma_used;
ddi_dma_obj_t dp_dma;
ddi_dma_obj_t dp_dvma;
rootnex_sglinfo_t dp_sglinfo;
/*
* Copy buffer related state
*
* dp_copybuf_size - the actual size of the copy buffer that we are
* using. This can be smaller that dp_copybuf_req, i.e. bind size >
* max copy buffer size.
* dp_cbaddr - kernel address of copy buffer. Used to determine where
* where to copy to/from.
* dp_cbsize - the "real" size returned from the copy buffer alloc.
* Set in the copybuf alloc and used to free copybuf.
* dp_pgmap - page map used in sync to determine which pages in the
* buffer use the copy buffer and what addresses to use to copy to/
* from.
* dp_cb_remaping - status if this bind causes us to have to remap
* the copybuf when switching to new windows. This is only used in
* the 32-bit kernel since we use seg kpm in the 64-bit kernel for
* this case.
* dp_kva - kernel heap arena vmem space for mapping to buffers which
* we don't have a kernel VA to bcopy to/from. This is only used in
* the 32-bit kernel since we use seg kpm in the 64-bit kernel for
* this case.
*/
size_t dp_copybuf_size;
caddr_t dp_cbaddr;
size_t dp_cbsize;
rootnex_pgmap_t *dp_pgmap;
#if !defined(__amd64)
boolean_t dp_cb_remaping;
caddr_t dp_kva;
#endif
/*
* window related state. The pointer to the window state array which may
* be a pointer into the pre allocated state, or we may have had to
* allocate the window array on the fly because it wouldn't fit. If
* we allocate it, we'll use dp_need_to_free_window and dp_window_size
* during cleanup. dp_current_win keeps track of the current window.
* dp_max_win is the maximum number of windows we could have.
*/
uint_t dp_current_win;
rootnex_window_t *dp_window;
boolean_t dp_need_to_free_window;
uint_t dp_window_size;
uint_t dp_max_win;
/* dip of driver which "owns" handle. set to rdip in alloc_handle() */
dev_info_t *dp_dip;
/*
* dp_mutex and dp_inuse are only used to see if a driver is trying to
* bind to an already bound dma handle. dp_mutex only used for dp_inuse
*/
kmutex_t dp_mutex;
boolean_t dp_inuse;
/*
* cookie related state. The pointer to the cookies (dp_cookies) may
* be a pointer into the pre allocated state, or we may have had to
* allocate the cookie array on the fly because it wouldn't fit. If
* we allocate it, we'll use dp_need_to_free_cookie and dp_cookie_size
* during cleanup. dp_current_cookie is only used in the obsoleted
* interfaces to determine when we've used up all the cookies in a
* window during nextseg()..
*/
size_t dp_cookie_size;
ddi_dma_cookie_t *dp_cookies;
boolean_t dp_need_to_free_cookie;
uint_t dp_current_cookie; /* for obsoleted I/Fs */
ddi_dma_cookie_t *dp_saved_cookies;
boolean_t dp_need_to_switch_cookies;
void *dp_iommu_private;
/*
* pre allocated space for the bind state, allocated during alloc
* handle. For a lot of devices, this will save us from having to do
* kmem_alloc's during the bind most of the time. kmem_alloc's can be
* expensive on x86 when the cpu count goes up since xcalls are
* expensive on x86.
*/
uchar_t *dp_prealloc_buffer;
/*
* sleep flags set on bind and unset on unbind
*/
int dp_sleep_flags;
} rootnex_dma_t;
/*
* profile/performance counters. Most things will be dtrace probes, but there
* are a couple of things we want to keep track all the time. We track the
* total number of active handles and binds (i.e. an alloc without a free or
* a bind without an unbind) since rootnex attach. We also track the total
* number of binds which have failed since rootnex attach.
*/
typedef enum {
ROOTNEX_CNT_ACTIVE_HDLS = 0,
ROOTNEX_CNT_ACTIVE_BINDS = 1,
ROOTNEX_CNT_ALLOC_FAIL = 2,
ROOTNEX_CNT_BIND_FAIL = 3,
ROOTNEX_CNT_SYNC_FAIL = 4,
ROOTNEX_CNT_GETWIN_FAIL = 5,
/* This one must be last */
ROOTNEX_CNT_LAST
} rootnex_cnt_t;
/*
* global driver state.
* r_dmahdl_cache - dma_handle kmem_cache
* r_dvma_call_list_id - ddi_set_callback() id
* r_peekpoke_mutex - serialize peeks and pokes.
* r_dip - rootnex dip
* r_reserved_msg_printed - ctlops reserve message threshold
* r_counters - profile/performance counters
*/
typedef struct rootnex_state_s {
uint_t r_prealloc_cookies;
uint_t r_prealloc_size;
kmem_cache_t *r_dmahdl_cache;
uintptr_t r_dvma_call_list_id;
kmutex_t r_peekpoke_mutex;
dev_info_t *r_dip;
ddi_iblock_cookie_t r_err_ibc;
boolean_t r_reserved_msg_printed;
uint64_t r_counters[ROOTNEX_CNT_LAST];
iommulib_nexhandle_t r_iommulib_handle;
} rootnex_state_t;
#ifdef __cplusplus
}
#endif
#endif /* _SYS_ROOTNEX_H */
|