NetBSD/sys/dev/podulebus/dtidereg.h

24 lines
565 B
C
Raw Normal View History

2005-02-27 03:26:58 +03:00
/* $NetBSD: dtidereg.h,v 1.3 2005/02/27 00:27:44 perry Exp $ */
2000-05-10 01:55:44 +04:00
/* This file is in the public domain */
/*
* dtidereg.h - hardware-related constants of the D.T. Software IDE interface.
*/
/*
* This is mostly reverse-engineered by Ben Harris from the driver that
* comes with the board and the board itself. Treat with caution.
*/
#define DTIDE_NCHANNELS 2
2000-05-10 01:55:44 +04:00
#define DTIDE_MAGICBASE 0x2000
#define DTIDE_REGSHIFT 5 /* ie DA0 == LA5 */
#define DTIDE_CMDBASE0 0x2400
#define DTIDE_CTLBASE0 0x2500
#define DTIDE_CMDBASE1 0x2600
#define DTIDE_CTLBASE1 0x2700
2005-02-27 03:26:58 +03:00