1STRUCT CCW1(9) The ccw bus STRUCT CCW1(9)
2
3
4
6 struct_ccw1 - channel command word
7
9 struct ccw1 {
10 __u8 cmd_code;
11 __u8 flags;
12 __u16 count;
13 __u32 cda;
14 };
15
17 cmd_code
18 command code
19
20 flags
21 flags, like IDA adressing, etc.
22
23 count
24 byte count
25
26 cda
27 data address
28
30 The ccw is the basic structure to build channel programs that perform
31 operations with the device or the control unit. Only Format-1 channel
32 command words are supported.
33
35 Cornelia Huck <cornelia.huck@de.ibm.com>
36 Author.
37
39Kernel Hackers Manual 2.6. June 2019 STRUCT CCW1(9)