blob: b3fe0575ff6b7acd3a053191de5ad559cbb666d5 [file] [log] [blame]
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001/*******************************************************************************
2 Copyright (C) 2007-2009 STMicroelectronics Ltd
3
4 This program is free software; you can redistribute it and/or modify it
5 under the terms and conditions of the GNU General Public License,
6 version 2, as published by the Free Software Foundation.
7
8 This program is distributed in the hope it will be useful, but WITHOUT
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 more details.
12
13 You should have received a copy of the GNU General Public License along with
14 this program; if not, write to the Free Software Foundation, Inc.,
15 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16
17 The full GNU General Public License is included in this distribution in
18 the file called "COPYING".
19
20 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
21*******************************************************************************/
Rayagond Kokatanurbd4242d2012-08-22 21:28:18 +000022#ifndef __DWMAC1000_H__
23#define __DWMAC1000_H__
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070024
Giuseppe CAVALLARO21d437c2010-01-06 23:07:20 +000025#include <linux/phy.h>
26#include "common.h"
27
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070028#define GMAC_CONTROL 0x00000000 /* Configuration */
29#define GMAC_FRAME_FILTER 0x00000004 /* Frame Filter */
30#define GMAC_HASH_HIGH 0x00000008 /* Multicast Hash Table High */
31#define GMAC_HASH_LOW 0x0000000c /* Multicast Hash Table Low */
32#define GMAC_MII_ADDR 0x00000010 /* MII Address */
33#define GMAC_MII_DATA 0x00000014 /* MII Data */
34#define GMAC_FLOW_CTRL 0x00000018 /* Flow Control */
35#define GMAC_VLAN_TAG 0x0000001c /* VLAN Tag */
36#define GMAC_VERSION 0x00000020 /* GMAC CORE Version */
37#define GMAC_WAKEUP_FILTER 0x00000028 /* Wake-up Frame Filter */
38
39#define GMAC_INT_STATUS 0x00000038 /* interrupt status register */
Giuseppe CAVALLARO21d437c2010-01-06 23:07:20 +000040enum dwmac1000_irq_status {
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +000041 lpiis_irq = 0x400,
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070042 time_stamp_irq = 0x0200,
43 mmc_rx_csum_offload_irq = 0x0080,
44 mmc_tx_irq = 0x0040,
45 mmc_rx_irq = 0x0020,
46 mmc_irq = 0x0010,
47 pmt_irq = 0x0008,
48 pcs_ane_irq = 0x0004,
49 pcs_link_irq = 0x0002,
50 rgmii_irq = 0x0001,
51};
52#define GMAC_INT_MASK 0x0000003c /* interrupt mask register */
53
54/* PMT Control and Status */
55#define GMAC_PMT 0x0000002c
56enum power_event {
57 pointer_reset = 0x80000000,
58 global_unicast = 0x00000200,
59 wake_up_rx_frame = 0x00000040,
60 magic_frame = 0x00000020,
61 wake_up_frame_en = 0x00000004,
62 magic_pkt_en = 0x00000002,
63 power_down = 0x00000001,
64};
65
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +000066/* Energy Efficient Ethernet (EEE)
67 *
68 * LPI status, timer and control register offset
69 */
70#define LPI_CTRL_STATUS 0x0030
71#define LPI_TIMER_CTRL 0x0034
72
73/* LPI control and status defines */
74#define LPI_CTRL_STATUS_LPITXA 0x00080000 /* Enable LPI TX Automate */
75#define LPI_CTRL_STATUS_PLSEN 0x00040000 /* Enable PHY Link Status */
76#define LPI_CTRL_STATUS_PLS 0x00020000 /* PHY Link Status */
77#define LPI_CTRL_STATUS_LPIEN 0x00010000 /* LPI Enable */
78#define LPI_CTRL_STATUS_RLPIST 0x00000200 /* Receive LPI state */
79#define LPI_CTRL_STATUS_TLPIST 0x00000100 /* Transmit LPI state */
80#define LPI_CTRL_STATUS_RLPIEX 0x00000008 /* Receive LPI Exit */
81#define LPI_CTRL_STATUS_RLPIEN 0x00000004 /* Receive LPI Entry */
82#define LPI_CTRL_STATUS_TLPIEX 0x00000002 /* Transmit LPI Exit */
83#define LPI_CTRL_STATUS_TLPIEN 0x00000001 /* Transmit LPI Entry */
84
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070085/* GMAC HW ADDR regs */
Giuseppe CAVALLAROcffb13f2012-05-13 22:18:41 +000086#define GMAC_ADDR_HIGH(reg) (((reg > 15) ? 0x00000800 : 0x00000040) + \
87 (reg * 8))
88#define GMAC_ADDR_LOW(reg) (((reg > 15) ? 0x00000804 : 0x00000044) + \
89 (reg * 8))
Vince Bridgersaefef4c2014-07-31 15:49:14 -050090#define GMAC_MAX_PERFECT_ADDRESSES 1
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070091
Giuseppe CAVALLARO0982a0f2013-03-26 04:43:07 +000092/* PCS registers (AN/TBI/SGMII/RGMII) offset */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070093#define GMAC_AN_CTRL 0x000000c0 /* AN control */
94#define GMAC_AN_STATUS 0x000000c4 /* AN status */
95#define GMAC_ANE_ADV 0x000000c8 /* Auto-Neg. Advertisement */
Giuseppe CAVALLARO0982a0f2013-03-26 04:43:07 +000096#define GMAC_ANE_LPA 0x000000cc /* Auto-Neg. link partener ability */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070097#define GMAC_ANE_EXP 0x000000d0 /* ANE expansion */
98#define GMAC_TBI 0x000000d4 /* TBI extend status */
Giuseppe CAVALLARO0982a0f2013-03-26 04:43:07 +000099#define GMAC_S_R_GMII 0x000000d8 /* SGMII RGMII status */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700100
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +0000101/* AN Configuration defines */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000102#define GMAC_AN_CTRL_RAN 0x00000200 /* Restart Auto-Negotiation */
103#define GMAC_AN_CTRL_ANE 0x00001000 /* Auto-Negotiation Enable */
104#define GMAC_AN_CTRL_ELE 0x00004000 /* External Loopback Enable */
105#define GMAC_AN_CTRL_ECD 0x00010000 /* Enable Comma Detect */
106#define GMAC_AN_CTRL_LR 0x00020000 /* Lock to Reference */
107#define GMAC_AN_CTRL_SGMRAL 0x00040000 /* SGMII RAL Control */
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +0000108
109/* AN Status defines */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000110#define GMAC_AN_STATUS_LS 0x00000004 /* Link Status 0:down 1:up */
111#define GMAC_AN_STATUS_ANA 0x00000008 /* Auto-Negotiation Ability */
112#define GMAC_AN_STATUS_ANC 0x00000020 /* Auto-Negotiation Complete */
113#define GMAC_AN_STATUS_ES 0x00000100 /* Extended Status */
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +0000114
115/* Register 54 (SGMII/RGMII status register) */
116#define GMAC_S_R_GMII_LINK 0x8
117#define GMAC_S_R_GMII_SPEED 0x5
118#define GMAC_S_R_GMII_SPEED_SHIFT 0x1
119#define GMAC_S_R_GMII_MODE 0x1
120#define GMAC_S_R_GMII_SPEED_125 2
121#define GMAC_S_R_GMII_SPEED_25 1
122
123/* Common ADV and LPA defines */
124#define GMAC_ANE_FD (1 << 5)
125#define GMAC_ANE_HD (1 << 6)
126#define GMAC_ANE_PSE (3 << 7)
127#define GMAC_ANE_PSE_SHIFT 7
128
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700129/* GMAC Configuration defines */
Vince Bridgers2618abb2014-01-20 05:39:01 -0600130#define GMAC_CONTROL_2K 0x08000000 /* IEEE 802.3as 2K packets */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700131#define GMAC_CONTROL_TC 0x01000000 /* Transmit Conf. in RGMII/SGMII */
132#define GMAC_CONTROL_WD 0x00800000 /* Disable Watchdog on receive */
133#define GMAC_CONTROL_JD 0x00400000 /* Jabber disable */
134#define GMAC_CONTROL_BE 0x00200000 /* Frame Burst Enable */
135#define GMAC_CONTROL_JE 0x00100000 /* Jumbo frame */
136enum inter_frame_gap {
137 GMAC_CONTROL_IFG_88 = 0x00040000,
138 GMAC_CONTROL_IFG_80 = 0x00020000,
139 GMAC_CONTROL_IFG_40 = 0x000e0000,
140};
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000141#define GMAC_CONTROL_DCRS 0x00010000 /* Disable carrier sense */
142#define GMAC_CONTROL_PS 0x00008000 /* Port Select 0:GMI 1:MII */
143#define GMAC_CONTROL_FES 0x00004000 /* Speed 0:10 1:100 */
144#define GMAC_CONTROL_DO 0x00002000 /* Disable Rx Own */
145#define GMAC_CONTROL_LM 0x00001000 /* Loop-back mode */
146#define GMAC_CONTROL_DM 0x00000800 /* Duplex Mode */
147#define GMAC_CONTROL_IPC 0x00000400 /* Checksum Offload */
148#define GMAC_CONTROL_DR 0x00000200 /* Disable Retry */
149#define GMAC_CONTROL_LUD 0x00000100 /* Link up/down */
150#define GMAC_CONTROL_ACS 0x00000080 /* Auto Pad/FCS Stripping */
151#define GMAC_CONTROL_DC 0x00000010 /* Deferral Check */
152#define GMAC_CONTROL_TE 0x00000008 /* Transmitter Enable */
153#define GMAC_CONTROL_RE 0x00000004 /* Receiver Enable */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700154
155#define GMAC_CORE_INIT (GMAC_CONTROL_JD | GMAC_CONTROL_PS | GMAC_CONTROL_ACS | \
Giuseppe CAVALLAROb1dee472014-08-27 08:20:04 +0200156 GMAC_CONTROL_BE | GMAC_CONTROL_DCRS)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700157
158/* GMAC Frame Filter defines */
159#define GMAC_FRAME_FILTER_PR 0x00000001 /* Promiscuous Mode */
160#define GMAC_FRAME_FILTER_HUC 0x00000002 /* Hash Unicast */
161#define GMAC_FRAME_FILTER_HMC 0x00000004 /* Hash Multicast */
162#define GMAC_FRAME_FILTER_DAIF 0x00000008 /* DA Inverse Filtering */
163#define GMAC_FRAME_FILTER_PM 0x00000010 /* Pass all multicast */
164#define GMAC_FRAME_FILTER_DBF 0x00000020 /* Disable Broadcast frames */
165#define GMAC_FRAME_FILTER_SAIF 0x00000100 /* Inverse Filtering */
166#define GMAC_FRAME_FILTER_SAF 0x00000200 /* Source Address Filter */
167#define GMAC_FRAME_FILTER_HPF 0x00000400 /* Hash or perfect Filter */
168#define GMAC_FRAME_FILTER_RA 0x80000000 /* Receive all mode */
169/* GMII ADDR defines */
170#define GMAC_MII_ADDR_WRITE 0x00000002 /* MII Write */
171#define GMAC_MII_ADDR_BUSY 0x00000001 /* MII Busy */
172/* GMAC FLOW CTRL defines */
173#define GMAC_FLOW_CTRL_PT_MASK 0xffff0000 /* Pause Time Mask */
174#define GMAC_FLOW_CTRL_PT_SHIFT 16
Vince Bridgers2453beb2015-04-15 11:17:39 -0500175#define GMAC_FLOW_CTRL_UP 0x00000008 /* Unicast pause frame enable */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700176#define GMAC_FLOW_CTRL_RFE 0x00000004 /* Rx Flow Control Enable */
177#define GMAC_FLOW_CTRL_TFE 0x00000002 /* Tx Flow Control Enable */
178#define GMAC_FLOW_CTRL_FCB_BPA 0x00000001 /* Flow Control Busy ... */
179
180/*--- DMA BLOCK defines ---*/
181/* DMA Bus Mode register defines */
182#define DMA_BUS_MODE_SFT_RESET 0x00000001 /* Software Reset */
183#define DMA_BUS_MODE_DA 0x00000002 /* Arbitration scheme */
184#define DMA_BUS_MODE_DSL_MASK 0x0000007c /* Descriptor Skip Length */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000185#define DMA_BUS_MODE_DSL_SHIFT 2 /* (in DWORDS) */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700186/* Programmable burst length (passed thorugh platform)*/
187#define DMA_BUS_MODE_PBL_MASK 0x00003f00 /* Programmable Burst Len */
188#define DMA_BUS_MODE_PBL_SHIFT 8
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000189#define DMA_BUS_MODE_ATDS 0x00000080 /* Alternate Descriptor Size */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700190
191enum rx_tx_priority_ratio {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000192 double_ratio = 0x00004000, /* 2:1 */
193 triple_ratio = 0x00008000, /* 3:1 */
194 quadruple_ratio = 0x0000c000, /* 4:1 */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700195};
196
197#define DMA_BUS_MODE_FB 0x00010000 /* Fixed burst */
Giuseppe CAVALLAROb9cde0a2012-05-13 22:18:42 +0000198#define DMA_BUS_MODE_MB 0x04000000 /* Mixed burst */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700199#define DMA_BUS_MODE_RPBL_MASK 0x003e0000 /* Rx-Programmable Burst Len */
200#define DMA_BUS_MODE_RPBL_SHIFT 17
201#define DMA_BUS_MODE_USP 0x00800000
Deepak SIKRI8327eb62012-04-04 04:33:23 +0000202#define DMA_BUS_MODE_PBL 0x01000000
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700203#define DMA_BUS_MODE_AAL 0x02000000
204
205/* DMA CRS Control and Status Register Mapping */
206#define DMA_HOST_TX_DESC 0x00001048 /* Current Host Tx descriptor */
207#define DMA_HOST_RX_DESC 0x0000104c /* Current Host Rx descriptor */
208/* DMA Bus Mode register defines */
209#define DMA_BUS_PR_RATIO_MASK 0x0000c000 /* Rx/Tx priority ratio */
210#define DMA_BUS_PR_RATIO_SHIFT 14
211#define DMA_BUS_FB 0x00010000 /* Fixed Burst */
212
213/* DMA operation mode defines (start/stop tx/rx are placed in common header)*/
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000214/* Disable Drop TCP/IP csum error */
215#define DMA_CONTROL_DT 0x04000000
216#define DMA_CONTROL_RSF 0x02000000 /* Receive Store and Forward */
217#define DMA_CONTROL_DFF 0x01000000 /* Disaable flushing */
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200218/* Threshold for Activating the FC */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700219enum rfa {
220 act_full_minus_1 = 0x00800000,
221 act_full_minus_2 = 0x00800200,
222 act_full_minus_3 = 0x00800400,
223 act_full_minus_4 = 0x00800600,
224};
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200225/* Threshold for Deactivating the FC */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700226enum rfd {
227 deac_full_minus_1 = 0x00400000,
228 deac_full_minus_2 = 0x00400800,
229 deac_full_minus_3 = 0x00401000,
230 deac_full_minus_4 = 0x00401800,
231};
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000232#define DMA_CONTROL_TSF 0x00200000 /* Transmit Store and Forward */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700233
234enum ttc_control {
235 DMA_CONTROL_TTC_64 = 0x00000000,
236 DMA_CONTROL_TTC_128 = 0x00004000,
237 DMA_CONTROL_TTC_192 = 0x00008000,
238 DMA_CONTROL_TTC_256 = 0x0000c000,
239 DMA_CONTROL_TTC_40 = 0x00010000,
240 DMA_CONTROL_TTC_32 = 0x00014000,
241 DMA_CONTROL_TTC_24 = 0x00018000,
242 DMA_CONTROL_TTC_16 = 0x0001c000,
243};
244#define DMA_CONTROL_TC_TX_MASK 0xfffe3fff
245
246#define DMA_CONTROL_EFC 0x00000100
247#define DMA_CONTROL_FEF 0x00000080
248#define DMA_CONTROL_FUF 0x00000040
249
Vince Bridgers2453beb2015-04-15 11:17:39 -0500250/* Receive flow control activation field
251 * RFA field in DMA control register, bits 23,10:9
252 */
253#define DMA_CONTROL_RFA_MASK 0x00800600
254
255/* Receive flow control deactivation field
256 * RFD field in DMA control register, bits 22,12:11
257 */
258#define DMA_CONTROL_RFD_MASK 0x00401800
259
260/* RFD and RFA fields are encoded as follows
261 *
262 * Bit Field
263 * 0,00 - Full minus 1KB (only valid when rxfifo >= 4KB and EFC enabled)
264 * 0,01 - Full minus 2KB (only valid when rxfifo >= 4KB and EFC enabled)
265 * 0,10 - Full minus 3KB (only valid when rxfifo >= 4KB and EFC enabled)
266 * 0,11 - Full minus 4KB (only valid when rxfifo > 4KB and EFC enabled)
267 * 1,00 - Full minus 5KB (only valid when rxfifo > 8KB and EFC enabled)
268 * 1,01 - Full minus 6KB (only valid when rxfifo > 8KB and EFC enabled)
269 * 1,10 - Full minus 7KB (only valid when rxfifo > 8KB and EFC enabled)
270 * 1,11 - Reserved
271 *
272 * RFD should always be > RFA for a given FIFO size. RFD == RFA may work,
273 * but packet throughput performance may not be as expected.
274 *
275 * Be sure that bit 3 in GMAC Register 6 is set for Unicast Pause frame
276 * detection (IEEE Specification Requirement, Annex 31B, 31B.1, Pause
277 * Description).
278 *
279 * Be sure that DZPA (bit 7 in Flow Control Register, GMAC Register 6),
280 * is set to 0. This allows pause frames with a quanta of 0 to be sent
281 * as an XOFF message to the link peer.
282 */
283
284#define RFA_FULL_MINUS_1K 0x00000000
285#define RFA_FULL_MINUS_2K 0x00000200
286#define RFA_FULL_MINUS_3K 0x00000400
287#define RFA_FULL_MINUS_4K 0x00000600
288#define RFA_FULL_MINUS_5K 0x00800000
289#define RFA_FULL_MINUS_6K 0x00800200
290#define RFA_FULL_MINUS_7K 0x00800400
291
292#define RFD_FULL_MINUS_1K 0x00000000
293#define RFD_FULL_MINUS_2K 0x00000800
294#define RFD_FULL_MINUS_3K 0x00001000
295#define RFD_FULL_MINUS_4K 0x00001800
296#define RFD_FULL_MINUS_5K 0x00400000
297#define RFD_FULL_MINUS_6K 0x00400800
298#define RFD_FULL_MINUS_7K 0x00401000
299
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700300enum rtc_control {
301 DMA_CONTROL_RTC_64 = 0x00000000,
302 DMA_CONTROL_RTC_32 = 0x00000008,
303 DMA_CONTROL_RTC_96 = 0x00000010,
304 DMA_CONTROL_RTC_128 = 0x00000018,
305};
306#define DMA_CONTROL_TC_RX_MASK 0xffffffe7
307
308#define DMA_CONTROL_OSF 0x00000004 /* Operate on second frame */
309
310/* MMC registers offset */
311#define GMAC_MMC_CTRL 0x100
312#define GMAC_MMC_RX_INTR 0x104
313#define GMAC_MMC_TX_INTR 0x108
314#define GMAC_MMC_RX_CSUM_OFFLOAD 0x208
Vince Bridgers3b57de92014-07-31 15:49:17 -0500315#define GMAC_EXTHASH_BASE 0x500
Giuseppe CAVALLARO21d437c2010-01-06 23:07:20 +0000316
stephen hemmingercadb7922010-10-13 14:51:25 +0000317extern const struct stmmac_dma_ops dwmac1000_dma_ops;
Rayagond Kokatanurbd4242d2012-08-22 21:28:18 +0000318#endif /* __DWMAC1000_H__ */