source: rtems-libbsd/freebsd/sys/dev/dwc/if_dwc.h @ 6b176ce

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 6b176ce was 6b176ce, checked in by Sebastian Huber <sebastian.huber@…>, on 03/30/15 at 12:30:04

if_dwc: Checksum offload

  • Property mode set to 100644
File size: 9.7 KB
Line 
1/*-
2 * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com>
3 * All rights reserved.
4 *
5 * This software was developed by SRI International and the University of
6 * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237)
7 * ("CTSRD"), as part of the DARPA CRASH research programme.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 *    notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 *    notice, this list of conditions and the following disclaimer in the
16 *    documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * $FreeBSD$
31 */
32
33/*
34 * Register names were taken almost as is from the documentation.
35 */
36
37#define MAC_CONFIGURATION       0x0
38#define  CONF_JD                (1 << 22)       /* jabber timer disable */
39#define  CONF_BE                (1 << 21)       /* Frame Burst Enable */
40#define  CONF_PS                (1 << 15)       /* GMII/MII */
41#define  CONF_FES               (1 << 14)       /* MII speed select */
42#define  CONF_DM                (1 << 11)       /* Full Duplex Enable */
43#define  CONF_IPC               (1 << 10)       /* Checksum Enable */
44#define  CONF_ACS               (1 << 7)
45#define  CONF_TE                (1 << 3)
46#define  CONF_RE                (1 << 2)
47#define MAC_FRAME_FILTER        0x4
48#define  FRAME_FILTER_RA        (1 << 31)       /* Receive All */
49#define  FRAME_FILTER_HPF       (1 << 10)       /* Hash or Perfect Filter */
50#define  FRAME_FILTER_PM        (1 << 4)        /* Pass multicast */
51#define  FRAME_FILTER_HMC       (1 << 2)
52#define  FRAME_FILTER_HUC       (1 << 1)
53#define  FRAME_FILTER_PR        (1 << 0)        /* All Incoming Frames */
54#define GMII_ADDRESS            0x10
55#define  GMII_ADDRESS_PA_MASK   0x1f            /* Phy device */
56#define  GMII_ADDRESS_PA_SHIFT  11
57#define  GMII_ADDRESS_GR_MASK   0x1f            /* Phy register */
58#define  GMII_ADDRESS_GR_SHIFT  6
59#define  GMII_ADDRESS_CR_MASK   0xf
60#define  GMII_ADDRESS_CR_SHIFT  2               /* Clock */
61#define  GMII_ADDRESS_GW        (1 << 1)        /* Write operation */
62#define  GMII_ADDRESS_GB        (1 << 0)        /* Busy */
63#define GMII_DATA               0x14
64#define FLOW_CONTROL            0x18
65#define GMAC_VLAN_TAG           0x1C
66#define VERSION                 0x20
67#define DEBUG                   0x24
68#define LPI_CONTROL_STATUS      0x30
69#define LPI_TIMERS_CONTROL      0x34
70#define INTERRUPT_STATUS        0x38
71#define INTERRUPT_MASK          0x3C
72#define MAC_ADDRESS_HIGH(n)     ((n > 15 ? 0x800 : 0x40) + 0x8 * n)
73#define MAC_ADDRESS_LOW(n)      ((n > 15 ? 0x804 : 0x44) + 0x8 * n)
74
75#define SGMII_RGMII_SMII_CTRL_STATUS    0xD8
76#define MMC_CONTROL                     0x100
77#define  MMC_CONTROL_CNTRST             (1 << 0)
78#define MMC_RECEIVE_INTERRUPT           0x104
79#define MMC_TRANSMIT_INTERRUPT          0x108
80#define MMC_RECEIVE_INTERRUPT_MASK      0x10C
81#define MMC_TRANSMIT_INTERRUPT_MASK     0x110
82#define TXOCTETCOUNT_GB                 0x114
83#define TXFRAMECOUNT_GB                 0x118
84#define TXBROADCASTFRAMES_G             0x11C
85#define TXMULTICASTFRAMES_G             0x120
86#define TX64OCTETS_GB                   0x124
87#define TX65TO127OCTETS_GB              0x128
88#define TX128TO255OCTETS_GB             0x12C
89#define TX256TO511OCTETS_GB             0x130
90#define TX512TO1023OCTETS_GB            0x134
91#define TX1024TOMAXOCTETS_GB            0x138
92#define TXUNICASTFRAMES_GB              0x13C
93#define TXMULTICASTFRAMES_GB            0x140
94#define TXBROADCASTFRAMES_GB            0x144
95#define TXUNDERFLOWERROR                0x148
96#define TXSINGLECOL_G                   0x14C
97#define TXMULTICOL_G                    0x150
98#define TXDEFERRED                      0x154
99#define TXLATECOL                       0x158
100#define TXEXESSCOL                      0x15C
101#define TXCARRIERERR                    0x160
102#define TXOCTETCNT                      0x164
103#define TXFRAMECOUNT_G                  0x168
104#define TXEXCESSDEF                     0x16C
105#define TXPAUSEFRAMES                   0x170
106#define TXVLANFRAMES_G                  0x174
107#define TXOVERSIZE_G                    0x178
108#define RXFRAMECOUNT_GB                 0x180
109#define RXOCTETCOUNT_GB                 0x184
110#define RXOCTETCOUNT_G                  0x188
111#define RXBROADCASTFRAMES_G             0x18C
112#define RXMULTICASTFRAMES_G             0x190
113#define RXCRCERROR                      0x194
114#define RXALIGNMENTERROR                0x198
115#define RXRUNTERROR                     0x19C
116#define RXJABBERERROR                   0x1A0
117#define RXUNDERSIZE_G                   0x1A4
118#define RXOVERSIZE_G                    0x1A8
119#define RX64OCTETS_GB                   0x1AC
120#define RX65TO127OCTETS_GB              0x1B0
121#define RX128TO255OCTETS_GB             0x1B4
122#define RX256TO511OCTETS_GB             0x1B8
123#define RX512TO1023OCTETS_GB            0x1BC
124#define RX1024TOMAXOCTETS_GB            0x1C0
125#define RXUNICASTFRAMES_G               0x1C4
126#define RXLENGTHERROR                   0x1C8
127#define RXOUTOFRANGETYPE                0x1CC
128#define RXPAUSEFRAMES                   0x1D0
129#define RXFIFOOVERFLOW                  0x1D4
130#define RXVLANFRAMES_GB                 0x1D8
131#define RXWATCHDOGERROR                 0x1DC
132#define RXRCVERROR                      0x1E0
133#define RXCTRLFRAMES_G                  0x1E4
134#define MMC_IPC_RECEIVE_INT_MASK        0x200
135#define MMC_IPC_RECEIVE_INT             0x208
136#define RXIPV4_GD_FRMS                  0x210
137#define RXIPV4_HDRERR_FRMS              0x214
138#define RXIPV4_NOPAY_FRMS               0x218
139#define RXIPV4_FRAG_FRMS                0x21C
140#define RXIPV4_UDSBL_FRMS               0x220
141#define RXIPV6_GD_FRMS                  0x224
142#define RXIPV6_HDRERR_FRMS              0x228
143#define RXIPV6_NOPAY_FRMS               0x22C
144#define RXUDP_GD_FRMS                   0x230
145#define RXUDP_ERR_FRMS                  0x234
146#define RXTCP_GD_FRMS                   0x238
147#define RXTCP_ERR_FRMS                  0x23C
148#define RXICMP_GD_FRMS                  0x240
149#define RXICMP_ERR_FRMS                 0x244
150#define RXIPV4_GD_OCTETS                0x250
151#define RXIPV4_HDRERR_OCTETS            0x254
152#define RXIPV4_NOPAY_OCTETS             0x258
153#define RXIPV4_FRAG_OCTETS              0x25C
154#define RXIPV4_UDSBL_OCTETS             0x260
155#define RXIPV6_GD_OCTETS                0x264
156#define RXIPV6_HDRERR_OCTETS            0x268
157#define RXIPV6_NOPAY_OCTETS             0x26C
158#define RXUDP_GD_OCTETS                 0x270
159#define RXUDP_ERR_OCTETS                0x274
160#define RXTCP_GD_OCTETS                 0x278
161#define RXTCPERROCTETS                  0x27C
162#define RXICMP_GD_OCTETS                0x280
163#define RXICMP_ERR_OCTETS               0x284
164#define L3_L4_CONTROL0                  0x400
165#define LAYER4_ADDRESS0                 0x404
166#define LAYER3_ADDR0_REG0               0x410
167#define LAYER3_ADDR1_REG0               0x414
168#define LAYER3_ADDR2_REG0               0x418
169#define LAYER3_ADDR3_REG0               0x41C
170#define L3_L4_CONTROL1                  0x430
171#define LAYER4_ADDRESS1                 0x434
172#define LAYER3_ADDR0_REG1               0x440
173#define LAYER3_ADDR1_REG1               0x444
174#define LAYER3_ADDR2_REG1               0x448
175#define LAYER3_ADDR3_REG1               0x44C
176#define L3_L4_CONTROL2                  0x460
177#define LAYER4_ADDRESS2                 0x464
178#define LAYER3_ADDR0_REG2               0x470
179#define LAYER3_ADDR1_REG2               0x474
180#define LAYER3_ADDR2_REG2               0x478
181#define LAYER3_ADDR3_REG2               0x47C
182#define L3_L4_CONTROL3                  0x490
183#define LAYER4_ADDRESS3                 0x494
184#define LAYER3_ADDR0_REG3               0x4A0
185#define LAYER3_ADDR1_REG3               0x4A4
186#define LAYER3_ADDR2_REG3               0x4A8
187#define LAYER3_ADDR3_REG3               0x4AC
188#define HASH_TABLE_REG(n)               0x500 + (0x4 * n)
189#define VLAN_INCL_REG                   0x584
190#define VLAN_HASH_TABLE_REG             0x588
191#define TIMESTAMP_CONTROL               0x700
192#define SUB_SECOND_INCREMENT            0x704
193#define SYSTEM_TIME_SECONDS             0x708
194#define SYSTEM_TIME_NANOSECONDS         0x70C
195#define SYSTEM_TIME_SECONDS_UPDATE      0x710
196#define SYSTEM_TIME_NANOSECONDS_UPDATE  0x714
197#define TIMESTAMP_ADDEND                0x718
198#define TARGET_TIME_SECONDS             0x71C
199#define TARGET_TIME_NANOSECONDS         0x720
200#define SYSTEM_TIME_HIGHER_WORD_SECONDS 0x724
201#define TIMESTAMP_STATUS                0x728
202#define PPS_CONTROL                     0x72C
203#define AUXILIARY_TIMESTAMP_NANOSECONDS 0x730
204#define AUXILIARY_TIMESTAMP_SECONDS     0x734
205#define PPS0_INTERVAL                   0x760
206#define PPS0_WIDTH                      0x764
207
208/* DMA */
209#define BUS_MODE                0x1000
210#define  BUS_MODE_EIGHTXPBL     (1 << 24) /* Multiplies PBL by 8 */
211#define  BUS_MODE_PBL_SHIFT     8 /* Single block transfer size */
212#define  BUS_MODE_PBL_BEATS_8   8
213#define  BUS_MODE_ATDS          (1 << 7) /* Alternate Descriptor Size */
214#define  BUS_MODE_SWR           (1 << 0) /* Reset */
215#define TRANSMIT_POLL_DEMAND    0x1004
216#define RECEIVE_POLL_DEMAND     0x1008
217#define RX_DESCR_LIST_ADDR      0x100C
218#define TX_DESCR_LIST_ADDR      0x1010
219#define DMA_STATUS              0x1014
220#define  DMA_STATUS_NIS         (1 << 16)
221#define  DMA_STATUS_AIS         (1 << 15)
222#define  DMA_STATUS_FBI         (1 << 13)
223#define  DMA_STATUS_RI          (1 << 6)
224#define  DMA_STATUS_TI          (1 << 0)
225#define  DMA_STATUS_INTR_MASK   0x1ffff
226#define OPERATION_MODE          0x1018
227#define  MODE_RSF               (1 << 25) /* RX Full Frame */
228#define  MODE_TSF               (1 << 21) /* TX Full Frame */
229#define  MODE_FTF               (1 << 20) /* Flush TX FIFO */
230#define  MODE_ST                (1 << 13) /* Start DMA TX */
231#define  MODE_FUF               (1 << 6)  /* TX frames < 64bytes */
232#define  MODE_RTC_LEV32         0x1
233#define  MODE_RTC_SHIFT         3
234#define  MODE_OSF               (1 << 2) /* Process Second frame */
235#define  MODE_SR                (1 << 1) /* Start DMA RX */
236#define INTERRUPT_ENABLE        0x101C
237#define  INT_EN_NIE             (1 << 16) /* Normal/Summary */
238#define  INT_EN_AIE             (1 << 15) /* Abnormal/Summary */
239#define  INT_EN_ERE             (1 << 14) /* Early receive */
240#define  INT_EN_FBE             (1 << 13) /* Fatal bus error */
241#define  INT_EN_ETE             (1 << 10) /* Early transmit */
242#define  INT_EN_RWE             (1 << 9)  /* Receive watchdog */
243#define  INT_EN_RSE             (1 << 8)  /* Receive stopped */
244#define  INT_EN_RUE             (1 << 7)  /* Recv buf unavailable */
245#define  INT_EN_RIE             (1 << 6)  /* Receive interrupt */
246#define  INT_EN_UNE             (1 << 5)  /* Tx underflow */
247#define  INT_EN_OVE             (1 << 4)  /* Receive overflow */
248#define  INT_EN_TJE             (1 << 3)  /* Transmit jabber */
249#define  INT_EN_TUE             (1 << 2)  /* Tx. buf unavailable */
250#define  INT_EN_TSE             (1 << 1)  /* Transmit stopped */
251#define  INT_EN_TIE             (1 << 0)  /* Transmit interrupt */
252#define  INT_EN_DEFAULT         (INT_EN_TIE|INT_EN_RIE| \
253            INT_EN_NIE|INT_EN_AIE|                      \
254            INT_EN_FBE|INT_EN_UNE)
255
256#define MISSED_FRAMEBUF_OVERFLOW_CNTR   0x1020
257#define RECEIVE_INT_WATCHDOG_TMR        0x1024
258#define AXI_BUS_MODE                    0x1028
259#define AHB_OR_AXI_STATUS               0x102C
260#define CURRENT_HOST_TRANSMIT_DESCR     0x1048
261#define CURRENT_HOST_RECEIVE_DESCR      0x104C
262#define CURRENT_HOST_TRANSMIT_BUF_ADDR  0x1050
263#define CURRENT_HOST_RECEIVE_BUF_ADDR   0x1054
264#define HW_FEATURE                      0x1058
Note: See TracBrowser for help on using the repository browser.