The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/isa/isadmareg.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $OpenBSD: isadmareg.h,v 1.5 1998/01/20 18:40:30 niklas Exp $    */
    2 /*      $NetBSD: isadmareg.h,v 1.4 1995/06/28 04:31:48 cgd Exp $        */
    3 
    4 #include <dev/ic/i8237reg.h>
    5 
    6 /*
    7  * Register definitions for DMA controller 1 (channels 0..3):
    8  */
    9 #define DMA1_CHN(c)     (1*(2*(c)))     /* addr reg for channel c */
   10 #define DMA1_SR         (1*8)           /* status register */
   11 #define DMA1_SMSK       (1*10)  /* single mask register */
   12 #define DMA1_MODE       (1*11)  /* mode register */
   13 #define DMA1_FFC        (1*12)  /* clear first/last FF */
   14 
   15 #define DMA1_IOSIZE     (1*12)
   16 
   17 /*
   18  * Register definitions for DMA controller 2 (channels 4..7):
   19  */
   20 #define DMA2_CHN(c)     (2*(2*(c)))     /* addr reg for channel c */
   21 #define DMA2_SR         (2*8)           /* status register */
   22 #define DMA2_SMSK       (2*10)  /* single mask register */
   23 #define DMA2_MODE       (2*11)  /* mode register */
   24 #define DMA2_FFC        (2*12)  /* clear first/last FF */
   25 
   26 #define DMA2_IOSIZE     (2*12)

Cache object: c4f876ceeccdf694142838eb40cc252e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.