blob: 5b2d23b0d23012f192f05bc6cb9b657fa71535bf [file] [log] [blame]
Kuo-Jung Sud169a702013-05-07 14:33:31 +08001/*
2 * Faraday 10/100Mbps Ethernet Controller
3 *
4 * (C) Copyright 2010 Faraday Technology
5 * Dante Su <dantesu@faraday-tech.com>
6 *
7 * This file is released under the terms of GPL v2 and any later version.
8 * See the file COPYING in the root directory of the source tree for details.
9 */
10
11#ifndef _FTMAC110_H
12#define _FTMAC110_H
13
14struct ftmac110_regs {
15 uint32_t isr; /* 0x00: Interrups Status Register */
16 uint32_t imr; /* 0x04: Interrupt Mask Register */
17 uint32_t mac[2]; /* 0x08: MAC Address */
18 uint32_t mht[2]; /* 0x10: Multicast Hash Table Register */
19 uint32_t txpd; /* 0x18: Tx Poll Demand Register */
20 uint32_t rxpd; /* 0x1c: Rx Poll Demand Register */
21 uint32_t txba; /* 0x20: Tx Ring Base Address Register */
22 uint32_t rxba; /* 0x24: Rx Ring Base Address Register */
23 uint32_t itc; /* 0x28: Interrupt Timer Control Register */
24 uint32_t aptc; /* 0x2C: Automatic Polling Timer Control Register */
25 uint32_t dblac; /* 0x30: DMA Burst Length&Arbitration Control */
26 uint32_t revr; /* 0x34: Revision Register */
27 uint32_t fear; /* 0x38: Feature Register */
28 uint32_t rsvd[19];
29 uint32_t maccr; /* 0x88: MAC Control Register */
30 uint32_t macsr; /* 0x8C: MAC Status Register */
31 uint32_t phycr; /* 0x90: PHY Control Register */
32 uint32_t phydr; /* 0x94: PHY Data Register */
33 uint32_t fcr; /* 0x98: Flow Control Register */
34 uint32_t bpr; /* 0x9C: Back Pressure Register */
35};
36
37/*
38 * Interrupt status/mask register(ISR/IMR) bits
39 */
40#define ISR_ALL 0x3ff
41#define ISR_PHYSTCHG (1 << 9) /* phy status change */
42#define ISR_AHBERR (1 << 8) /* bus error */
43#define ISR_RXLOST (1 << 7) /* rx lost */
44#define ISR_RXFIFO (1 << 6) /* rx to fifo */
45#define ISR_TXLOST (1 << 5) /* tx lost */
46#define ISR_TXOK (1 << 4) /* tx to ethernet */
47#define ISR_NOTXBUF (1 << 3) /* out of tx buffer */
48#define ISR_TXFIFO (1 << 2) /* tx to fifo */
49#define ISR_NORXBUF (1 << 1) /* out of rx buffer */
50#define ISR_RXOK (1 << 0) /* rx to buffer */
51
52/*
53 * MACCR control bits
54 */
55#define MACCR_100M (1 << 18) /* 100Mbps mode */
56#define MACCR_RXBCST (1 << 17) /* rx broadcast packet */
57#define MACCR_RXMCST (1 << 16) /* rx multicast packet */
58#define MACCR_FD (1 << 15) /* full duplex */
59#define MACCR_CRCAPD (1 << 14) /* tx crc append */
60#define MACCR_RXALL (1 << 12) /* rx all packets */
61#define MACCR_RXFTL (1 << 11) /* rx packet even it's > 1518 byte */
62#define MACCR_RXRUNT (1 << 10) /* rx packet even it's < 64 byte */
63#define MACCR_RXMCSTHT (1 << 9) /* rx multicast hash table */
64#define MACCR_RXEN (1 << 8) /* rx enable */
65#define MACCR_RXINHDTX (1 << 6) /* rx in half duplex tx */
66#define MACCR_TXEN (1 << 5) /* tx enable */
67#define MACCR_CRCDIS (1 << 4) /* tx packet even it's crc error */
68#define MACCR_LOOPBACK (1 << 3) /* loop-back */
69#define MACCR_RESET (1 << 2) /* reset */
70#define MACCR_RXDMAEN (1 << 1) /* rx dma enable */
71#define MACCR_TXDMAEN (1 << 0) /* tx dma enable */
72
73/*
74 * PHYCR control bits
75 */
76#define PHYCR_READ (1 << 26)
77#define PHYCR_WRITE (1 << 27)
78#define PHYCR_REG_SHIFT 21
79#define PHYCR_ADDR_SHIFT 16
80
81/*
82 * ITC control bits
83 */
84
85/* Tx Cycle Length */
86#define ITC_TX_CYCLONG (1 << 15) /* 100Mbps=81.92us; 10Mbps=819.2us */
87#define ITC_TX_CYCNORM (0 << 15) /* 100Mbps=5.12us; 10Mbps=51.2us */
88/* Tx Threshold: Aggregate n interrupts as 1 interrupt */
89#define ITC_TX_THR(n) (((n) & 0x7) << 12)
90/* Tx Interrupt Timeout = n * Tx Cycle */
91#define ITC_TX_ITMO(n) (((n) & 0xf) << 8)
92/* Rx Cycle Length */
93#define ITC_RX_CYCLONG (1 << 7) /* 100Mbps=81.92us; 10Mbps=819.2us */
94#define ITC_RX_CYCNORM (0 << 7) /* 100Mbps=5.12us; 10Mbps=51.2us */
95/* Rx Threshold: Aggregate n interrupts as 1 interrupt */
96#define ITC_RX_THR(n) (((n) & 0x7) << 4)
97/* Rx Interrupt Timeout = n * Rx Cycle */
98#define ITC_RX_ITMO(n) (((n) & 0xf) << 0)
99
100#define ITC_DEFAULT \
101 (ITC_TX_THR(1) | ITC_TX_ITMO(0) | ITC_RX_THR(1) | ITC_RX_ITMO(0))
102
103/*
104 * APTC contrl bits
105 */
106
107/* Tx Cycle Length */
108#define APTC_TX_CYCLONG (1 << 12) /* 100Mbps=81.92us; 10Mbps=819.2us */
109#define APTC_TX_CYCNORM (0 << 12) /* 100Mbps=5.12us; 10Mbps=51.2us */
110/* Tx Poll Timeout = n * Tx Cycle, 0=No auto polling */
111#define APTC_TX_PTMO(n) (((n) & 0xf) << 8)
112/* Rx Cycle Length */
113#define APTC_RX_CYCLONG (1 << 4) /* 100Mbps=81.92us; 10Mbps=819.2us */
114#define APTC_RX_CYCNORM (0 << 4) /* 100Mbps=5.12us; 10Mbps=51.2us */
115/* Rx Poll Timeout = n * Rx Cycle, 0=No auto polling */
116#define APTC_RX_PTMO(n) (((n) & 0xf) << 0)
117
118#define APTC_DEFAULT (APTC_TX_PTMO(0) | APTC_RX_PTMO(1))
119
120/*
121 * DBLAC contrl bits
122 */
123#define DBLAC_BURST_MAX_ANY (0 << 14) /* un-limited */
124#define DBLAC_BURST_MAX_32X4 (2 << 14) /* max = 32 x 4 bytes */
125#define DBLAC_BURST_MAX_64X4 (3 << 14) /* max = 64 x 4 bytes */
126#define DBLAC_RXTHR_EN (1 << 9) /* enable rx threshold arbitration */
127#define DBLAC_RXTHR_HIGH(n) (((n) & 0x7) << 6) /* upper bound = n/8 fifo */
128#define DBLAC_RXTHR_LOW(n) (((n) & 0x7) << 3) /* lower bound = n/8 fifo */
129#define DBLAC_BURST_CAP16 (1 << 2) /* support burst 16 */
130#define DBLAC_BURST_CAP8 (1 << 1) /* support burst 8 */
131#define DBLAC_BURST_CAP4 (1 << 0) /* support burst 4 */
132
133#define DBLAC_DEFAULT \
134 (DBLAC_RXTHR_EN | DBLAC_RXTHR_HIGH(6) | DBLAC_RXTHR_LOW(2))
135
136/*
137 * descriptor structure
138 */
139struct ftmac110_rxd {
140 uint32_t ct[2];
141 uint32_t buf;
142 void *vbuf; /* reserved */
143};
144
145#define FTMAC110_RXCT0_OWNER BIT_MASK(31) /* owner: 1=HW, 0=SW */
146#define FTMAC110_RXCT0_FRS BIT_MASK(29) /* first pkt desc */
147#define FTMAC110_RXCT0_LRS BIT_MASK(28) /* last pkt desc */
148#define FTMAC110_RXCT0_ODDNB BIT_MASK(22) /* odd nibble */
149#define FTMAC110_RXCT0_RUNT BIT_MASK(21) /* runt pkt */
150#define FTMAC110_RXCT0_FTL BIT_MASK(20) /* frame too long */
151#define FTMAC110_RXCT0_CRC BIT_MASK(19) /* pkt crc error */
152#define FTMAC110_RXCT0_ERR BIT_MASK(18) /* bus error */
153#define FTMAC110_RXCT0_ERRMASK (0x1f << 18) /* all errors */
154#define FTMAC110_RXCT0_BCST BIT_MASK(17) /* Bcst pkt */
155#define FTMAC110_RXCT0_MCST BIT_MASK(16) /* Mcst pkt */
156#define FTMAC110_RXCT0_LEN(x) ((x) & 0x7ff)
157
158#define FTMAC110_RXCT1_END BIT_MASK(31)
159#define FTMAC110_RXCT1_BUFSZ(x) ((x) & 0x7ff)
160
161struct ftmac110_txd {
162 uint32_t ct[2];
163 uint32_t buf;
164 void *vbuf; /* reserved */
165};
166
167#define FTMAC110_TXCT0_OWNER BIT_MASK(31) /* owner: 1=HW, 0=SW */
168#define FTMAC110_TXCT0_COL 0x00000003 /* collision */
169
170#define FTMAC110_TXCT1_END BIT_MASK(31) /* end of ring */
171#define FTMAC110_TXCT1_TXIC BIT_MASK(30) /* tx done interrupt */
172#define FTMAC110_TXCT1_TX2FIC BIT_MASK(29) /* tx fifo interrupt */
173#define FTMAC110_TXCT1_FTS BIT_MASK(28) /* first pkt desc */
174#define FTMAC110_TXCT1_LTS BIT_MASK(27) /* last pkt desc */
175#define FTMAC110_TXCT1_LEN(x) ((x) & 0x7ff)
176
177#endif /* FTMAC110_H */