aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2005-05-14 10:14:56 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2005-05-14 10:14:56 +0000
commitb22bf660630ff6f6b82b9c17abd9721c3fd8bcef (patch)
tree8f8dfa32b717e024b13ab2d3e5a3409e35636eda /sys/dev/ic
parent8253c060cf7d1561dff5105042d7f941a360b47a (diff)
downloadsrc-b22bf660630ff6f6b82b9c17abd9721c3fd8bcef.tar.gz
src-b22bf660630ff6f6b82b9c17abd9721c3fd8bcef.zip
- Move bus dependent defines to {isa,cbus}_dmareg.h.
- Use isa/isareg.h rather than <arch>/isa/isa.h. Tested on: i386, pc98
Notes
Notes: svn path=/head/; revision=146214
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/i8237.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys/dev/ic/i8237.h b/sys/dev/ic/i8237.h
index bdda9fa2bf22..5d4b3f4c8ffc 100644
--- a/sys/dev/ic/i8237.h
+++ b/sys/dev/ic/i8237.h
@@ -9,26 +9,3 @@
#define DMA37MD_AUTO 0x50 /* autoinitialise single pass mode */
#define DMA37MD_WRITE 0x04 /* read the device, write memory operation */
#define DMA37MD_READ 0x08 /* write the device, read memory operation */
-
-#ifndef PC98
-/*
-** Register definitions for DMA controller 1 (channels 0..3):
-*/
-#define DMA1_CHN(c) (IO_DMA1 + 1*(2*(c))) /* addr reg for channel c */
-#define DMA1_STATUS (IO_DMA1 + 1*8) /* status register */
-#define DMA1_SMSK (IO_DMA1 + 1*10) /* single mask register */
-#define DMA1_MODE (IO_DMA1 + 1*11) /* mode register */
-#define DMA1_FFC (IO_DMA1 + 1*12) /* clear first/last FF */
-#define DMA1_RESET (IO_DMA1 + 1*13) /* reset */
-
-/*
-** Register definitions for DMA controller 2 (channels 4..7):
-*/
-#define DMA2_CHN(c) (IO_DMA2 + 2*(2*(c))) /* addr reg for channel c */
-#define DMA2_STATUS (IO_DMA2 + 2*8) /* status register */
-#define DMA2_SMSK (IO_DMA2 + 2*10) /* single mask register */
-#define DMA2_MODE (IO_DMA2 + 2*11) /* mode register */
-#define DMA2_FFC (IO_DMA2 + 2*12) /* clear first/last FF */
-#define DMA2_RESET (IO_DMA2 + 2*13) /* reset */
-#endif
-