1csx_RepGet8(9F) Kernel Functions for Drivers csx_RepGet8(9F)
2
3
4
6 csx_RepGet8, csx_RepGet16, csx_RepGet32, csx_RepGet64 - read repeti‐
7 tively from the device register
8
10 #include <sys/pccard.h>
11
12
13
14 void csx_RepGet8(acc_handle_t handle, uint8_t *hostaddr, uint32_t offset,
15 uint32_t repcount, uint32_t flags);
16
17
18 void csx_RepGet16(acc_handle_t handle, uint16_t *hostaddr, uint32_t offset,
19 uint32_t repcount, uint32_t flags);
20
21
22 void csx_RepGet32(acc_handle_t handle, uint32_t *hostaddr, uint32_t offset,
23 uint32_t repcount, uint32_t flags);
24
25
26 void csx_RepGet64(acc_handle_t handle, uint64_t *hostaddr, uint32_t offset,
27 uint32_t repcount, uint32_t flags);
28
29
31 Solaris DDI Specific (Solaris DDI)
32
34 handle The access handle returned from csx_RequestIO(9F),
35 csx_RequestWindow(9F), or csx_DupHandle(9F).
36
37
38 hostaddr Source host address.
39
40
41 offset The offset in bytes from the base of the mapped resource.
42
43
44 repcount Number of data accesses to perform.
45
46
47 flags Device address flags.
48
49
51 These functions generate multiple reads of various sizes from the
52 mapped memory or device register.
53
54
55 The csx_RepGet8(), csx_RepGet16(), csx_RepGet32(), and csx_RepGet64()
56 functions generate repcount reads of 8 bits, 16 bits, 32 bits, and 64
57 bits of data, respectively, from the device address represented by the
58 handle, handle, at an offset in bytes represented by the offset, off‐
59 set. The data read is stored consecutively into the buffer pointed to
60 by the host address pointer, hostaddr.
61
62
63 Data that consists of more than one byte will automatically be trans‐
64 lated to maintain a consistent view between the host and the device
65 based on the encoded information in the data access handle. The trans‐
66 lation may involve byte swapping if the host and the device have incom‐
67 patible endian characteristics.
68
69
70 When the flags argument is set to CS_DEV_AUTOINCR, these functions
71 increment the device offset, offset, after each datum read operation.
72 However, when the flags argument is set to CS_DEV_NO_AUTOINCR, the same
73 device offset will be used for every datum access. For example, this
74 flag may be useful when reading from a data register.
75
77 These functions may be called from user, kernel, or interrupt context.
78
80 csx_DupHandle(9F), csx_Get8(9F), csx_GetMappedAddr(9F), csx_Put8(9F),
81 csx_RepPut8(9F), csx_RequestIO(9F), csx_RequestWindow(9F)
82
83
84 PC Card 95 Standard, PCMCIA/JEIDA
85
86
87
88SunOS 5.11 19 Jul 1996 csx_RepGet8(9F)