Changes in kernel/generic/include/ddi/irq.h [9cdac5a:78ffb70] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/irq.h
r9cdac5a r78ffb70 54 54 /** Read 4 bytes from the I/O space. */ 55 55 CMD_PIO_READ_32, 56 57 56 /** Write 1 byte to the I/O space. */ 58 57 CMD_PIO_WRITE_8, … … 63 62 64 63 /** 65 * Write 1 byte from the source argument 66 * to the I/O space. 67 */ 68 CMD_PIO_WRITE_A_8, 64 * Perform a bit test on the source argument and store the result into 65 * the destination argument. 66 */ 67 CMD_BTEST, 68 69 69 /** 70 * Write 2 bytes from the source argument 71 * to the I/O space. 72 */ 73 CMD_PIO_WRITE_A_16, 74 /** 75 * Write 4 bytes from the source argument 76 * to the I/O space. 77 */ 78 CMD_PIO_WRITE_A_32, 79 80 /** 81 * Perform a bit masking on the source argument 82 * and store the result into the destination argument. 83 */ 84 CMD_BTEST, 85 86 /** 87 * Predicate the execution of the following 88 * N commands by the boolean value of the source 89 * argument. 70 * Predicate the execution of the following N commands by the boolean 71 * value of the source argument. 90 72 */ 91 73 CMD_PREDICATE, … … 93 75 /** Accept the interrupt. */ 94 76 CMD_ACCEPT, 95 96 77 /** Decline the interrupt. */ 97 78 CMD_DECLINE,
Note:
See TracChangeset
for help on using the changeset viewer.