1ldi_devmap(9F) Kernel Functions for Drivers ldi_devmap(9F)
2
3
4
6 ldi_devmap - Issue a devmap request to a device
7
9 #include <sys/sunldi.h>
10
11 int ldi_devmap(ldi_handle_t lh, devmap_cookie_t dhp, offset_t off,
12 size_t len, size_t *maplen, uint_t model);
13
14
16 lh Layered handle.
17
18
19 dhp Opaque mapping handle used by the system to describe mapping.
20
21
22 off User offset within the logical device memory at which mapping
23 begins.
24
25
26 len Mapping length (in bytes).
27
28
29 maplen Pointer to length (in bytes) of validated mapping. (Less
30 than or equal to len).
31
32
33 model Data model type of current thread.
34
35
37 The ldi_devmap() function passes an devmap request to the device entry
38 point for the device specified by the layered handle. This operation is
39 supported for character devices.
40
42 The ldi_devmap() function returns 0 upon success. If a failure occurs
43 before the request is passed to the device, possible return values are
44 shown below. Otherwise any other error number may be returned by the
45 device.
46
47 EINVAL Invalid input parameters.
48
49
50 ENOTSUP Operation is not supported for this device.
51
52
54 This function may be called from user or kernel context.
55
56
57
58SunOS 5.11 3 June 2003 ldi_devmap(9F)