Changeset 1787e527 in mainline for kernel/generic/include/ddi/irq.h


Ignore:
Timestamp:
2009-11-16T21:22:54Z (14 years ago)
Author:
Lenka Trochtova <trochtova.lenka@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5ebdf94
Parents:
fcbd1be (diff), 9c70ed6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merged with head (unstable)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ddi/irq.h

    rfcbd1be r1787e527  
    3737
    3838typedef enum {
     39        /** Read 1 byte from the I/O space. */
    3940        CMD_PIO_READ_8 = 1,
     41        /** Read 2 bytes from the I/O space. */
    4042        CMD_PIO_READ_16,
     43        /** Read 4 bytes from the I/O space. */
    4144        CMD_PIO_READ_32,
     45        /** Write 1 byte to the I/O space. */
    4246        CMD_PIO_WRITE_8,
     47        /** Write 2 bytes to the I/O space. */
    4348        CMD_PIO_WRITE_16,
     49        /** Write 4 bytes to the I/O space. */
    4450        CMD_PIO_WRITE_32,
     51        /**
     52         * Perform a bit test on the source argument and store the result into
     53         * the destination argument.
     54         */
    4555        CMD_BTEST,
     56        /**
     57         * Predicate the execution of the following N commands by the boolean
     58         * value of the source argument.
     59         */
    4660        CMD_PREDICATE,
     61        /** Accept the interrupt. */
    4762        CMD_ACCEPT,
     63        /** Decline the interrupt. */
    4864        CMD_DECLINE,
    4965        CMD_LAST
Note: See TracChangeset for help on using the changeset viewer.