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
32
33
34
35 #ifndef _DEV_PCI_PCIIDE_APOLLO_REG_H_
36 #define _DEV_PCI_PCIIDE_APOLLO_REG_H_
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 #define APO_IDECONF 0x40
53 #define APO_IDECONF_EN(channel) (0x00000001 << (1 - (channel)))
54 #define APO_IDECONF_SERR_EN 0x00000100
55 #define APO_IDECONF_DS_SOURCE 0x00000200
56 #define APO_IDECONF_ALT_INTR_EN 0x00000400
57 #define APO_IDECONF_PERR_EN 0x00000800
58 #define APO_IDECONF_WR_BUFF_EN(channel) (0x00001000 << ((1 - (channel)) << 1))
59 #define APO_IDECONF_RD_PREF_EN(channel) (0x00002000 << ((1 - (channel)) << 1))
60 #define APO_IDECONF_DEVSEL_TME 0x00010000
61 #define APO_IDECONF_MAS_CMD_MON 0x00020000
62 #define APO_IDECONF_IO_NAT(channel) \
63 (0x00400000 << (1 - (channel)))
64 #define APO_IDECONF_FIFO_TRSH(channel, x) \
65 ((x) & 0x3) << ((1 - (channel)) << 1 + 24)
66 #define APO_IDECONF_FIFO_CONF_MASK 0x60000000
67
68
69 #define APO_CTLMISC 0x44
70 #define APO_CTLMISC_BM_STS_RTY 0x00000008
71 #define APO_CTLMISC_FIFO_HWS 0x00000010
72 #define APO_CTLMISC_WR_IRDY_WS 0x00000020
73 #define APO_CTLMISC_RD_IRDY_WS 0x00000040
74 #define APO_CTLMISC_INTR_SWP 0x00004000
75 #define APO_CTLMISC_DRDY_TIME_MASK 0x00030000
76 #define APO_CTLMISC_FIFO_FLSH_RD(channel) (0x00100000 << (1 - (channel)))
77 #define APO_CTLMISC_FIFO_FLSH_DMA(channel) (0x00400000 << (1 - (channel)))
78
79
80 #define APO_DATATIM 0x48
81 #define APO_DATATIM_MASK(channel) (0xffff << ((1 - (channel)) << 4))
82 #define APO_DATATIM_RECOV(channel, drive, x) (((x) & 0xf) << \
83 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
84 #define APO_DATATIM_PULSE(channel, drive, x) (((x) & 0xf) << \
85 (((1 - (channel)) << 4) + ((1 - (drive)) << 3) + 4))
86
87
88 #define APO_MISCTIM 0x4c
89
90
91 #define APO_UDMA 0x50
92 #define APO_UDMA_MASK(channel) (0xffff << ((1 - (channel)) << 4))
93 #define APO_UDMA_TIME(channel, drive, x) (((x) & 0xf) << \
94 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
95 #define APO_UDMA_PIO_MODE(channel, drive) (0x20 << \
96 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
97 #define APO_UDMA_EN(channel, drive) (0x40 << \
98 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
99 #define APO_UDMA_EN_MTH(channel, drive) (0x80 << \
100 (((1 - (channel)) << 4) + ((1 - (drive)) << 3)))
101 #define APO_UDMA_CLK66(channel) (0x08 << ((1 - (channel)) << 4))
102
103 static int8_t apollo_udma133_tim[] = {0x07, 0x07, 0x06, 0x04, 0x02, 0x01, 0x00};
104 static int8_t apollo_udma100_tim[] = {0x07, 0x07, 0x04, 0x02, 0x01, 0x00};
105 static int8_t apollo_udma66_tim[] = {0x03, 0x03, 0x02, 0x01, 0x00};
106 static int8_t apollo_udma33_tim[] = {0x03, 0x02, 0x00};
107 static int8_t apollo_pio_set[] = {0x0a, 0x0a, 0x0a, 0x02, 0x02};
108 static int8_t apollo_pio_rec[] = {0x08, 0x08, 0x08, 0x02, 0x00};
109
110 #endif