File: amihdreg.h

package info (click to toggle)
kernel-source-2.0.35 2.0.35-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 32,456 kB
  • ctags: 94,327
  • sloc: ansic: 587,014; asm: 26,388; makefile: 4,055; sh: 1,221; perl: 727; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (31 lines) | stat: -rw-r--r-- 1,060 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef _LINUX_AMIHDREG_H
#define _LINUX_AMIHDREG_H

/*
 * This file contains some defines for the Amiga IDE hd controller.
 * Various sources. Check out some definitions (see comments with
 * a ques).
 */

#define IDE_DISABLE_IRQ  0x02
#define IDE_ENABLE_IRQ   0x00
 
/* Bases of the hard drive controller */
#define HD_BASE_A4000   0xdd2020
#define HD_BASE_A1200   0xda0000

/* Offsets from one of the above bases */
#define AMI_HD_ERROR	(0x06)		/* see err-bits */
#define AMI_HD_NSECTOR	(0x0a)		/* nr of sectors to read/write */
#define AMI_HD_SECTOR	(0x0e)		/* starting sector */
#define AMI_HD_LCYL	(0x12)		/* starting cylinder */
#define AMI_HD_HCYL	(0x16)		/* high byte of starting cyl */
#define AMI_HD_SELECT	(0x1a)		/* 101dhhhh , d=drive, hhhh=head */
#define AMI_HD_STATUS	(0x1e)		/* see status-bits */
#define AMI_HD_CMD	(0x101a)

/* These are at different offsets from the base */
#define HD_A4000_IRQ	(0xdd3020)	/* MSB = 1, Harddisk is source of interrupt */
#define HD_A1200_IRQ	(0xda9000)	/* MSB = 1, Harddisk is source of interrupt */

#endif