Linux Audio

Check our new training course

Loading...
v6.8
  1/* SPDX-License-Identifier: GPL-2.0 */
  2
  3#ifndef XILINX_LL_TEMAC_H
  4#define XILINX_LL_TEMAC_H
  5
  6#include <linux/netdevice.h>
  7#include <linux/of.h>
  8#include <linux/platform_device.h>
  9#include <linux/spinlock.h>
 10
 11#ifdef CONFIG_PPC_DCR
 12#include <asm/dcr.h>
 13#include <asm/dcr-regs.h>
 14#endif
 15
 16/* packet size info */
 17#define XTE_HDR_SIZE			14      /* size of Ethernet header */
 18#define XTE_TRL_SIZE			4       /* size of Ethernet trailer (FCS) */
 19#define XTE_JUMBO_MTU			9000
 20#define XTE_MAX_JUMBO_FRAME_SIZE	(XTE_JUMBO_MTU + XTE_HDR_SIZE + XTE_TRL_SIZE)
 21
 22/*  Configuration options */
 23
 24/*  Accept all incoming packets.
 25 *  This option defaults to disabled (cleared)
 26 */
 27#define XTE_OPTION_PROMISC                      (1 << 0)
 28/*  Jumbo frame support for Tx & Rx.
 29 *  This option defaults to disabled (cleared)
 30 */
 31#define XTE_OPTION_JUMBO                        (1 << 1)
 32/*  VLAN Rx & Tx frame support.
 33 *  This option defaults to disabled (cleared)
 34 */
 35#define XTE_OPTION_VLAN                         (1 << 2)
 36/*  Enable recognition of flow control frames on Rx
 37 *  This option defaults to enabled (set)
 38 */
 39#define XTE_OPTION_FLOW_CONTROL                 (1 << 4)
 40/*  Strip FCS and PAD from incoming frames.
 41 *  Note: PAD from VLAN frames is not stripped.
 42 *  This option defaults to disabled (set)
 43 */
 44#define XTE_OPTION_FCS_STRIP                    (1 << 5)
 45/*  Generate FCS field and add PAD automatically for outgoing frames.
 46 *  This option defaults to enabled (set)
 47 */
 48#define XTE_OPTION_FCS_INSERT                   (1 << 6)
 49/*  Enable Length/Type error checking for incoming frames. When this option is
 50 *  set, the MAC will filter frames that have a mismatched type/length field
 51 *  and if XTE_OPTION_REPORT_RXERR is set, the user is notified when these
 52 *  types of frames are encountered. When this option is cleared, the MAC will
 53 *  allow these types of frames to be received.
 54 *  This option defaults to enabled (set)
 55 */
 56#define XTE_OPTION_LENTYPE_ERR                  (1 << 7)
 57/*  Enable the transmitter.
 58 *  This option defaults to enabled (set)
 59 */
 60#define XTE_OPTION_TXEN                         (1 << 11)
 61/*  Enable the receiver
 62 *  This option defaults to enabled (set)
 63 */
 64#define XTE_OPTION_RXEN                         (1 << 12)
 65
 66/*  Default options set when device is initialized or reset */
 67#define XTE_OPTION_DEFAULTS                     \
 68	(XTE_OPTION_TXEN |                          \
 69	 XTE_OPTION_FLOW_CONTROL |                  \
 70	 XTE_OPTION_RXEN)
 71
 72/* XPS_LL_TEMAC SDMA registers definition */
 73
 74#define TX_NXTDESC_PTR      0x00            /* r */
 75#define TX_CURBUF_ADDR      0x01            /* r */
 76#define TX_CURBUF_LENGTH    0x02            /* r */
 77#define TX_CURDESC_PTR      0x03            /* rw */
 78#define TX_TAILDESC_PTR     0x04            /* rw */
 79#define TX_CHNL_CTRL        0x05            /* rw */
 80/*
 81 *  0:7      24:31       IRQTimeout
 82 *  8:15     16:23       IRQCount
 83 *  16:20    11:15       Reserved
 84 *  21       10          0
 85 *  22       9           UseIntOnEnd
 86 *  23       8           LdIRQCnt
 87 *  24       7           IRQEn
 88 *  25:28    3:6         Reserved
 89 *  29       2           IrqErrEn
 90 *  30       1           IrqDlyEn
 91 *  31       0           IrqCoalEn
 92 */
 93#define CHNL_CTRL_IRQ_IOE       (1 << 9)
 94#define CHNL_CTRL_IRQ_EN        (1 << 7)
 95#define CHNL_CTRL_IRQ_ERR_EN    (1 << 2)
 96#define CHNL_CTRL_IRQ_DLY_EN    (1 << 1)
 97#define CHNL_CTRL_IRQ_COAL_EN   (1 << 0)
 98#define TX_IRQ_REG          0x06            /* rw */
 99/*
100 *  0:7      24:31       DltTmrValue
101 *  8:15     16:23       ClscCntrValue
102 *  16:17    14:15       Reserved
103 *  18:21    10:13       ClscCnt
104 *  22:23    8:9         DlyCnt
105 *  24:28    3::7        Reserved
106 *  29       2           ErrIrq
107 *  30       1           DlyIrq
108 *  31       0           CoalIrq
109 */
110#define TX_CHNL_STS         0x07            /* r */
111/*
112 *  0:9      22:31   Reserved
113 *  10       21      TailPErr
114 *  11       20      CmpErr
115 *  12       19      AddrErr
116 *  13       18      NxtPErr
117 *  14       17      CurPErr
118 *  15       16      BsyWr
119 *  16:23    8:15    Reserved
120 *  24       7       Error
121 *  25       6       IOE
122 *  26       5       SOE
123 *  27       4       Cmplt
124 *  28       3       SOP
125 *  29       2       EOP
126 *  30       1       EngBusy
127 *  31       0       Reserved
128 */
129
130#define RX_NXTDESC_PTR      0x08            /* r */
131#define RX_CURBUF_ADDR      0x09            /* r */
132#define RX_CURBUF_LENGTH    0x0a            /* r */
133#define RX_CURDESC_PTR      0x0b            /* rw */
134#define RX_TAILDESC_PTR     0x0c            /* rw */
135#define RX_CHNL_CTRL        0x0d            /* rw */
136/*
137 *  0:7      24:31       IRQTimeout
138 *  8:15     16:23       IRQCount
139 *  16:20    11:15       Reserved
140 *  21       10          0
141 *  22       9           UseIntOnEnd
142 *  23       8           LdIRQCnt
143 *  24       7           IRQEn
144 *  25:28    3:6         Reserved
145 *  29       2           IrqErrEn
146 *  30       1           IrqDlyEn
147 *  31       0           IrqCoalEn
148 */
149#define RX_IRQ_REG          0x0e            /* rw */
150#define IRQ_COAL        (1 << 0)
151#define IRQ_DLY         (1 << 1)
152#define IRQ_ERR         (1 << 2)
153#define IRQ_DMAERR      (1 << 7)            /* this is not documented ??? */
154/*
155 *  0:7      24:31       DltTmrValue
156 *  8:15     16:23       ClscCntrValue
157 *  16:17    14:15       Reserved
158 *  18:21    10:13       ClscCnt
159 *  22:23    8:9         DlyCnt
160 *  24:28    3::7        Reserved
161 */
162#define RX_CHNL_STS         0x0f        /* r */
163#define CHNL_STS_ENGBUSY    (1 << 1)
164#define CHNL_STS_EOP        (1 << 2)
165#define CHNL_STS_SOP        (1 << 3)
166#define CHNL_STS_CMPLT      (1 << 4)
167#define CHNL_STS_SOE        (1 << 5)
168#define CHNL_STS_IOE        (1 << 6)
169#define CHNL_STS_ERR        (1 << 7)
170
171#define CHNL_STS_BSYWR      (1 << 16)
172#define CHNL_STS_CURPERR    (1 << 17)
173#define CHNL_STS_NXTPERR    (1 << 18)
174#define CHNL_STS_ADDRERR    (1 << 19)
175#define CHNL_STS_CMPERR     (1 << 20)
176#define CHNL_STS_TAILERR    (1 << 21)
177/*
178 *  0:9      22:31   Reserved
179 *  10       21      TailPErr
180 *  11       20      CmpErr
181 *  12       19      AddrErr
182 *  13       18      NxtPErr
183 *  14       17      CurPErr
184 *  15       16      BsyWr
185 *  16:23    8:15    Reserved
186 *  24       7       Error
187 *  25       6       IOE
188 *  26       5       SOE
189 *  27       4       Cmplt
190 *  28       3       SOP
191 *  29       2       EOP
192 *  30       1       EngBusy
193 *  31       0       Reserved
194 */
195
196#define DMA_CONTROL_REG             0x10            /* rw */
197#define DMA_CONTROL_RST                 (1 << 0)
198#define DMA_TAIL_ENABLE                 (1 << 2)
199
200/* XPS_LL_TEMAC direct registers definition */
201
202#define XTE_RAF0_OFFSET              0x00
203#define RAF0_RST                        (1 << 0)
204#define RAF0_MCSTREJ                    (1 << 1)
205#define RAF0_BCSTREJ                    (1 << 2)
206#define XTE_TPF0_OFFSET              0x04
207#define XTE_IFGP0_OFFSET             0x08
208#define XTE_ISR0_OFFSET              0x0c
209#define ISR0_HARDACSCMPLT               (1 << 0)
210#define ISR0_AUTONEG                    (1 << 1)
211#define ISR0_RXCMPLT                    (1 << 2)
212#define ISR0_RXREJ                      (1 << 3)
213#define ISR0_RXFIFOOVR                  (1 << 4)
214#define ISR0_TXCMPLT                    (1 << 5)
215#define ISR0_RXDCMLCK                   (1 << 6)
216
217#define XTE_IPR0_OFFSET              0x10
218#define XTE_IER0_OFFSET              0x14
219
220#define XTE_MSW0_OFFSET              0x20
221#define XTE_LSW0_OFFSET              0x24
222#define XTE_CTL0_OFFSET              0x28
223#define XTE_RDY0_OFFSET              0x2c
224
225#define XTE_RSE_MIIM_RR_MASK      0x0002
226#define XTE_RSE_MIIM_WR_MASK      0x0004
227#define XTE_RSE_CFG_RR_MASK       0x0020
228#define XTE_RSE_CFG_WR_MASK       0x0040
229#define XTE_RDY0_HARD_ACS_RDY_MASK  (0x10000)
230
231/* XPS_LL_TEMAC indirect registers offset definition */
232
233#define	XTE_RXC0_OFFSET			0x00000200 /* Rx configuration word 0 */
234#define	XTE_RXC1_OFFSET			0x00000240 /* Rx configuration word 1 */
235#define XTE_RXC1_RXRST_MASK		(1 << 31)  /* Receiver reset */
236#define XTE_RXC1_RXJMBO_MASK		(1 << 30)  /* Jumbo frame enable */
237#define XTE_RXC1_RXFCS_MASK		(1 << 29)  /* FCS not stripped */
238#define XTE_RXC1_RXEN_MASK		(1 << 28)  /* Receiver enable */
239#define XTE_RXC1_RXVLAN_MASK		(1 << 27)  /* VLAN enable */
240#define XTE_RXC1_RXHD_MASK		(1 << 26)  /* Half duplex */
241#define XTE_RXC1_RXLT_MASK		(1 << 25)  /* Length/type check disable */
242
243#define XTE_TXC_OFFSET			0x00000280 /*  Tx configuration */
244#define XTE_TXC_TXRST_MASK		(1 << 31)  /* Transmitter reset */
245#define XTE_TXC_TXJMBO_MASK		(1 << 30)  /* Jumbo frame enable */
246#define XTE_TXC_TXFCS_MASK		(1 << 29)  /* Generate FCS */
247#define XTE_TXC_TXEN_MASK		(1 << 28)  /* Transmitter enable */
248#define XTE_TXC_TXVLAN_MASK		(1 << 27)  /* VLAN enable */
249#define XTE_TXC_TXHD_MASK		(1 << 26)  /* Half duplex */
250
251#define XTE_FCC_OFFSET			0x000002C0 /* Flow control config */
252#define XTE_FCC_RXFLO_MASK		(1 << 29)  /* Rx flow control enable */
253#define XTE_FCC_TXFLO_MASK		(1 << 30)  /* Tx flow control enable */
254
255#define XTE_EMCFG_OFFSET		0x00000300 /* EMAC configuration */
256#define XTE_EMCFG_LINKSPD_MASK		0xC0000000 /* Link speed */
257#define XTE_EMCFG_HOSTEN_MASK		(1 << 26)  /* Host interface enable */
258#define XTE_EMCFG_LINKSPD_10		0x00000000 /* 10 Mbit LINKSPD_MASK */
259#define XTE_EMCFG_LINKSPD_100		(1 << 30)  /* 100 Mbit LINKSPD_MASK */
260#define XTE_EMCFG_LINKSPD_1000		(1 << 31)  /* 1000 Mbit LINKSPD_MASK */
261
262#define XTE_GMIC_OFFSET			0x00000320 /* RGMII/SGMII config */
263#define XTE_MC_OFFSET			0x00000340 /* MDIO configuration */
264#define XTE_UAW0_OFFSET			0x00000380 /* Unicast address word 0 */
265#define XTE_UAW1_OFFSET			0x00000384 /* Unicast address word 1 */
266
267#define XTE_MAW0_OFFSET			0x00000388 /* Multicast addr word 0 */
268#define XTE_MAW1_OFFSET			0x0000038C /* Multicast addr word 1 */
269#define XTE_AFM_OFFSET			0x00000390 /* Promiscuous mode */
270#define XTE_AFM_EPPRM_MASK		(1 << 31)  /* Promiscuous mode enable */
271
272/* Interrupt Request status */
273#define XTE_TIS_OFFSET			0x000003A0
274#define TIS_FRIS			(1 << 0)
275#define TIS_MRIS			(1 << 1)
276#define TIS_MWIS			(1 << 2)
277#define TIS_ARIS			(1 << 3)
278#define TIS_AWIS			(1 << 4)
279#define TIS_CRIS			(1 << 5)
280#define TIS_CWIS			(1 << 6)
281
282#define XTE_TIE_OFFSET			0x000003A4 /* Interrupt enable */
283
284/* MII Management Control register (MGTCR) */
285#define XTE_MGTDR_OFFSET		0x000003B0 /* MII data */
286#define XTE_MIIMAI_OFFSET		0x000003B4 /* MII control */
287
288#define CNTLREG_WRITE_ENABLE_MASK   0x8000
289#define CNTLREG_EMAC1SEL_MASK       0x0400
290#define CNTLREG_ADDRESSCODE_MASK    0x03ff
291
292/* CDMAC descriptor status bit definitions */
293
294#define STS_CTRL_APP0_ERR         (1 << 31)
295#define STS_CTRL_APP0_IRQONEND    (1 << 30)
296/* undocumented */
297#define STS_CTRL_APP0_STOPONEND   (1 << 29)
298#define STS_CTRL_APP0_CMPLT       (1 << 28)
299#define STS_CTRL_APP0_SOP         (1 << 27)
300#define STS_CTRL_APP0_EOP         (1 << 26)
301#define STS_CTRL_APP0_ENGBUSY     (1 << 25)
302/* undocumented */
303#define STS_CTRL_APP0_ENGRST      (1 << 24)
304
305#define TX_CONTROL_CALC_CSUM_MASK   1
306
307#define MULTICAST_CAM_TABLE_NUM 4
308
309/* TEMAC Synthesis features */
310#define TEMAC_FEATURE_RX_CSUM  (1 << 0)
311#define TEMAC_FEATURE_TX_CSUM  (1 << 1)
312
313/* TX/RX CURDESC_PTR points to first descriptor */
314/* TX/RX TAILDESC_PTR points to last descriptor in linked list */
315
316/**
317 * struct cdmac_bd - LocalLink buffer descriptor format
318 *
319 * app0 bits:
320 *	0    Error
321 *	1    IrqOnEnd    generate an interrupt at completion of DMA  op
322 *	2    reserved
323 *	3    completed   Current descriptor completed
324 *	4    SOP         TX - marks first desc/ RX marks first desct
325 *	5    EOP         TX marks last desc/RX marks last desc
326 *	6    EngBusy     DMA is processing
327 *	7    reserved
328 *	8:31 application specific
329 */
330struct cdmac_bd {
331	u32 next;	/* Physical address of next buffer descriptor */
332	u32 phys;
333	u32 len;
334	u32 app0;
335	u32 app1;	/* TX start << 16 | insert */
336	u32 app2;	/* TX csum */
337	u32 app3;
338	u32 app4;	/* skb for TX length for RX */
339};
340
341struct temac_local {
342	struct net_device *ndev;
343	struct device *dev;
344
345	/* Connection to PHY device */
346	struct device_node *phy_node;
347	/* For non-device-tree devices */
348	char phy_name[MII_BUS_ID_SIZE + 3];
349	phy_interface_t phy_interface;
350
351	/* MDIO bus data */
352	struct mii_bus *mii_bus;	/* MII bus reference */
353
354	/* IO registers, dma functions and IRQs */
355	void __iomem *regs;
356	void __iomem *sdma_regs;
357#ifdef CONFIG_PPC_DCR
358	dcr_host_t sdma_dcrs;
359#endif
360	u32 (*temac_ior)(struct temac_local *lp, int offset);
361	void (*temac_iow)(struct temac_local *lp, int offset, u32 value);
362	u32 (*dma_in)(struct temac_local *lp, int reg);
363	void (*dma_out)(struct temac_local *lp, int reg, u32 value);
364
365	int tx_irq;
366	int rx_irq;
367	int emac_num;
368
369	struct sk_buff **rx_skb;
370	spinlock_t rx_lock;
371	/* For synchronization of indirect register access.  Must be
372	 * shared mutex between interfaces in same TEMAC block.
373	 */
374	spinlock_t *indirect_lock;
375	u32 options;			/* Current options word */
376	int last_link;
377	unsigned int temac_features;
378
379	/* Buffer descriptors */
380	struct cdmac_bd *tx_bd_v;
381	dma_addr_t tx_bd_p;
382	u32 tx_bd_num;
383	struct cdmac_bd *rx_bd_v;
384	dma_addr_t rx_bd_p;
385	u32 rx_bd_num;
386	int tx_bd_ci;
387	int tx_bd_tail;
388	int rx_bd_ci;
389	int rx_bd_tail;
390
391	/* DMA channel control setup */
392	u8 coalesce_count_tx;
393	u8 coalesce_delay_tx;
394	u8 coalesce_count_rx;
395	u8 coalesce_delay_rx;
396
397	struct delayed_work restart_work;
398};
399
400/* Wrappers for temac_ior()/temac_iow() function pointers above */
401#define temac_ior(lp, o) ((lp)->temac_ior(lp, o))
402#define temac_iow(lp, o, v) ((lp)->temac_iow(lp, o, v))
403
404/* xilinx_temac.c */
405int temac_indirect_busywait(struct temac_local *lp);
406u32 temac_indirect_in32(struct temac_local *lp, int reg);
407u32 temac_indirect_in32_locked(struct temac_local *lp, int reg);
408void temac_indirect_out32(struct temac_local *lp, int reg, u32 value);
409void temac_indirect_out32_locked(struct temac_local *lp, int reg, u32 value);
410
411/* xilinx_temac_mdio.c */
412int temac_mdio_setup(struct temac_local *lp, struct platform_device *pdev);
413void temac_mdio_teardown(struct temac_local *lp);
414
415#endif /* XILINX_LL_TEMAC_H */
v5.14.15
  1/* SPDX-License-Identifier: GPL-2.0 */
  2
  3#ifndef XILINX_LL_TEMAC_H
  4#define XILINX_LL_TEMAC_H
  5
  6#include <linux/netdevice.h>
  7#include <linux/of.h>
 
  8#include <linux/spinlock.h>
  9
 10#ifdef CONFIG_PPC_DCR
 11#include <asm/dcr.h>
 12#include <asm/dcr-regs.h>
 13#endif
 14
 15/* packet size info */
 16#define XTE_HDR_SIZE			14      /* size of Ethernet header */
 17#define XTE_TRL_SIZE			4       /* size of Ethernet trailer (FCS) */
 18#define XTE_JUMBO_MTU			9000
 19#define XTE_MAX_JUMBO_FRAME_SIZE	(XTE_JUMBO_MTU + XTE_HDR_SIZE + XTE_TRL_SIZE)
 20
 21/*  Configuration options */
 22
 23/*  Accept all incoming packets.
 24 *  This option defaults to disabled (cleared) */
 
 25#define XTE_OPTION_PROMISC                      (1 << 0)
 26/*  Jumbo frame support for Tx & Rx.
 27 *  This option defaults to disabled (cleared) */
 
 28#define XTE_OPTION_JUMBO                        (1 << 1)
 29/*  VLAN Rx & Tx frame support.
 30 *  This option defaults to disabled (cleared) */
 
 31#define XTE_OPTION_VLAN                         (1 << 2)
 32/*  Enable recognition of flow control frames on Rx
 33 *  This option defaults to enabled (set) */
 
 34#define XTE_OPTION_FLOW_CONTROL                 (1 << 4)
 35/*  Strip FCS and PAD from incoming frames.
 36 *  Note: PAD from VLAN frames is not stripped.
 37 *  This option defaults to disabled (set) */
 
 38#define XTE_OPTION_FCS_STRIP                    (1 << 5)
 39/*  Generate FCS field and add PAD automatically for outgoing frames.
 40 *  This option defaults to enabled (set) */
 
 41#define XTE_OPTION_FCS_INSERT                   (1 << 6)
 42/*  Enable Length/Type error checking for incoming frames. When this option is
 43set, the MAC will filter frames that have a mismatched type/length field
 44and if XTE_OPTION_REPORT_RXERR is set, the user is notified when these
 45types of frames are encountered. When this option is cleared, the MAC will
 46allow these types of frames to be received.
 47This option defaults to enabled (set) */
 
 48#define XTE_OPTION_LENTYPE_ERR                  (1 << 7)
 49/*  Enable the transmitter.
 50 *  This option defaults to enabled (set) */
 
 51#define XTE_OPTION_TXEN                         (1 << 11)
 52/*  Enable the receiver
 53*   This option defaults to enabled (set) */
 
 54#define XTE_OPTION_RXEN                         (1 << 12)
 55
 56/*  Default options set when device is initialized or reset */
 57#define XTE_OPTION_DEFAULTS                     \
 58	(XTE_OPTION_TXEN |                          \
 59	 XTE_OPTION_FLOW_CONTROL |                  \
 60	 XTE_OPTION_RXEN)
 61
 62/* XPS_LL_TEMAC SDMA registers definition */
 63
 64#define TX_NXTDESC_PTR      0x00            /* r */
 65#define TX_CURBUF_ADDR      0x01            /* r */
 66#define TX_CURBUF_LENGTH    0x02            /* r */
 67#define TX_CURDESC_PTR      0x03            /* rw */
 68#define TX_TAILDESC_PTR     0x04            /* rw */
 69#define TX_CHNL_CTRL        0x05            /* rw */
 70/*
 71 0:7      24:31       IRQTimeout
 72 8:15     16:23       IRQCount
 73 16:20    11:15       Reserved
 74 21       10          0
 75 22       9           UseIntOnEnd
 76 23       8           LdIRQCnt
 77 24       7           IRQEn
 78 25:28    3:6         Reserved
 79 29       2           IrqErrEn
 80 30       1           IrqDlyEn
 81 31       0           IrqCoalEn
 82*/
 83#define CHNL_CTRL_IRQ_IOE       (1 << 9)
 84#define CHNL_CTRL_IRQ_EN        (1 << 7)
 85#define CHNL_CTRL_IRQ_ERR_EN    (1 << 2)
 86#define CHNL_CTRL_IRQ_DLY_EN    (1 << 1)
 87#define CHNL_CTRL_IRQ_COAL_EN   (1 << 0)
 88#define TX_IRQ_REG          0x06            /* rw */
 89/*
 90  0:7      24:31       DltTmrValue
 91 8:15     16:23       ClscCntrValue
 92 16:17    14:15       Reserved
 93 18:21    10:13       ClscCnt
 94 22:23    8:9         DlyCnt
 95 24:28    3::7        Reserved
 96 29       2           ErrIrq
 97 30       1           DlyIrq
 98 31       0           CoalIrq
 99 */
100#define TX_CHNL_STS         0x07            /* r */
101/*
102   0:9      22:31   Reserved
103 10       21      TailPErr
104 11       20      CmpErr
105 12       19      AddrErr
106 13       18      NxtPErr
107 14       17      CurPErr
108 15       16      BsyWr
109 16:23    8:15    Reserved
110 24       7       Error
111 25       6       IOE
112 26       5       SOE
113 27       4       Cmplt
114 28       3       SOP
115 29       2       EOP
116 30       1       EngBusy
117 31       0       Reserved
118*/
119
120#define RX_NXTDESC_PTR      0x08            /* r */
121#define RX_CURBUF_ADDR      0x09            /* r */
122#define RX_CURBUF_LENGTH    0x0a            /* r */
123#define RX_CURDESC_PTR      0x0b            /* rw */
124#define RX_TAILDESC_PTR     0x0c            /* rw */
125#define RX_CHNL_CTRL        0x0d            /* rw */
126/*
127 0:7      24:31       IRQTimeout
128 8:15     16:23       IRQCount
129 16:20    11:15       Reserved
130 21       10          0
131 22       9           UseIntOnEnd
132 23       8           LdIRQCnt
133 24       7           IRQEn
134 25:28    3:6         Reserved
135 29       2           IrqErrEn
136 30       1           IrqDlyEn
137 31       0           IrqCoalEn
138 */
139#define RX_IRQ_REG          0x0e            /* rw */
140#define IRQ_COAL        (1 << 0)
141#define IRQ_DLY         (1 << 1)
142#define IRQ_ERR         (1 << 2)
143#define IRQ_DMAERR      (1 << 7)            /* this is not documented ??? */
144/*
145 0:7      24:31       DltTmrValue
146 8:15     16:23       ClscCntrValue
147 16:17    14:15       Reserved
148 18:21    10:13       ClscCnt
149 22:23    8:9         DlyCnt
150 24:28    3::7        Reserved
151*/
152#define RX_CHNL_STS         0x0f        /* r */
153#define CHNL_STS_ENGBUSY    (1 << 1)
154#define CHNL_STS_EOP        (1 << 2)
155#define CHNL_STS_SOP        (1 << 3)
156#define CHNL_STS_CMPLT      (1 << 4)
157#define CHNL_STS_SOE        (1 << 5)
158#define CHNL_STS_IOE        (1 << 6)
159#define CHNL_STS_ERR        (1 << 7)
160
161#define CHNL_STS_BSYWR      (1 << 16)
162#define CHNL_STS_CURPERR    (1 << 17)
163#define CHNL_STS_NXTPERR    (1 << 18)
164#define CHNL_STS_ADDRERR    (1 << 19)
165#define CHNL_STS_CMPERR     (1 << 20)
166#define CHNL_STS_TAILERR    (1 << 21)
167/*
168 0:9      22:31   Reserved
169 10       21      TailPErr
170 11       20      CmpErr
171 12       19      AddrErr
172 13       18      NxtPErr
173 14       17      CurPErr
174 15       16      BsyWr
175 16:23    8:15    Reserved
176 24       7       Error
177 25       6       IOE
178 26       5       SOE
179 27       4       Cmplt
180 28       3       SOP
181 29       2       EOP
182 30       1       EngBusy
183 31       0       Reserved
184*/
185
186#define DMA_CONTROL_REG             0x10            /* rw */
187#define DMA_CONTROL_RST                 (1 << 0)
188#define DMA_TAIL_ENABLE                 (1 << 2)
189
190/* XPS_LL_TEMAC direct registers definition */
191
192#define XTE_RAF0_OFFSET              0x00
193#define RAF0_RST                        (1 << 0)
194#define RAF0_MCSTREJ                    (1 << 1)
195#define RAF0_BCSTREJ                    (1 << 2)
196#define XTE_TPF0_OFFSET              0x04
197#define XTE_IFGP0_OFFSET             0x08
198#define XTE_ISR0_OFFSET              0x0c
199#define ISR0_HARDACSCMPLT               (1 << 0)
200#define ISR0_AUTONEG                    (1 << 1)
201#define ISR0_RXCMPLT                    (1 << 2)
202#define ISR0_RXREJ                      (1 << 3)
203#define ISR0_RXFIFOOVR                  (1 << 4)
204#define ISR0_TXCMPLT                    (1 << 5)
205#define ISR0_RXDCMLCK                   (1 << 6)
206
207#define XTE_IPR0_OFFSET              0x10
208#define XTE_IER0_OFFSET              0x14
209
210#define XTE_MSW0_OFFSET              0x20
211#define XTE_LSW0_OFFSET              0x24
212#define XTE_CTL0_OFFSET              0x28
213#define XTE_RDY0_OFFSET              0x2c
214
215#define XTE_RSE_MIIM_RR_MASK      0x0002
216#define XTE_RSE_MIIM_WR_MASK      0x0004
217#define XTE_RSE_CFG_RR_MASK       0x0020
218#define XTE_RSE_CFG_WR_MASK       0x0040
219#define XTE_RDY0_HARD_ACS_RDY_MASK  (0x10000)
220
221/* XPS_LL_TEMAC indirect registers offset definition */
222
223#define	XTE_RXC0_OFFSET			0x00000200 /* Rx configuration word 0 */
224#define	XTE_RXC1_OFFSET			0x00000240 /* Rx configuration word 1 */
225#define XTE_RXC1_RXRST_MASK		(1 << 31)  /* Receiver reset */
226#define XTE_RXC1_RXJMBO_MASK		(1 << 30)  /* Jumbo frame enable */
227#define XTE_RXC1_RXFCS_MASK		(1 << 29)  /* FCS not stripped */
228#define XTE_RXC1_RXEN_MASK		(1 << 28)  /* Receiver enable */
229#define XTE_RXC1_RXVLAN_MASK		(1 << 27)  /* VLAN enable */
230#define XTE_RXC1_RXHD_MASK		(1 << 26)  /* Half duplex */
231#define XTE_RXC1_RXLT_MASK		(1 << 25)  /* Length/type check disable */
232
233#define XTE_TXC_OFFSET			0x00000280 /*  Tx configuration */
234#define XTE_TXC_TXRST_MASK		(1 << 31)  /* Transmitter reset */
235#define XTE_TXC_TXJMBO_MASK		(1 << 30)  /* Jumbo frame enable */
236#define XTE_TXC_TXFCS_MASK		(1 << 29)  /* Generate FCS */
237#define XTE_TXC_TXEN_MASK		(1 << 28)  /* Transmitter enable */
238#define XTE_TXC_TXVLAN_MASK		(1 << 27)  /* VLAN enable */
239#define XTE_TXC_TXHD_MASK		(1 << 26)  /* Half duplex */
240
241#define XTE_FCC_OFFSET			0x000002C0 /* Flow control config */
242#define XTE_FCC_RXFLO_MASK		(1 << 29)  /* Rx flow control enable */
243#define XTE_FCC_TXFLO_MASK		(1 << 30)  /* Tx flow control enable */
244
245#define XTE_EMCFG_OFFSET		0x00000300 /* EMAC configuration */
246#define XTE_EMCFG_LINKSPD_MASK		0xC0000000 /* Link speed */
247#define XTE_EMCFG_HOSTEN_MASK		(1 << 26)  /* Host interface enable */
248#define XTE_EMCFG_LINKSPD_10		0x00000000 /* 10 Mbit LINKSPD_MASK */
249#define XTE_EMCFG_LINKSPD_100		(1 << 30)  /* 100 Mbit LINKSPD_MASK */
250#define XTE_EMCFG_LINKSPD_1000		(1 << 31)  /* 1000 Mbit LINKSPD_MASK */
251
252#define XTE_GMIC_OFFSET			0x00000320 /* RGMII/SGMII config */
253#define XTE_MC_OFFSET			0x00000340 /* MDIO configuration */
254#define XTE_UAW0_OFFSET			0x00000380 /* Unicast address word 0 */
255#define XTE_UAW1_OFFSET			0x00000384 /* Unicast address word 1 */
256
257#define XTE_MAW0_OFFSET			0x00000388 /* Multicast addr word 0 */
258#define XTE_MAW1_OFFSET			0x0000038C /* Multicast addr word 1 */
259#define XTE_AFM_OFFSET			0x00000390 /* Promiscuous mode */
260#define XTE_AFM_EPPRM_MASK		(1 << 31)  /* Promiscuous mode enable */
261
262/* Interrupt Request status */
263#define XTE_TIS_OFFSET			0x000003A0
264#define TIS_FRIS			(1 << 0)
265#define TIS_MRIS			(1 << 1)
266#define TIS_MWIS			(1 << 2)
267#define TIS_ARIS			(1 << 3)
268#define TIS_AWIS			(1 << 4)
269#define TIS_CRIS			(1 << 5)
270#define TIS_CWIS			(1 << 6)
271
272#define XTE_TIE_OFFSET			0x000003A4 /* Interrupt enable */
273
274/**  MII Mamagement Control register (MGTCR) */
275#define XTE_MGTDR_OFFSET		0x000003B0 /* MII data */
276#define XTE_MIIMAI_OFFSET		0x000003B4 /* MII control */
277
278#define CNTLREG_WRITE_ENABLE_MASK   0x8000
279#define CNTLREG_EMAC1SEL_MASK       0x0400
280#define CNTLREG_ADDRESSCODE_MASK    0x03ff
281
282/* CDMAC descriptor status bit definitions */
283
284#define STS_CTRL_APP0_ERR         (1 << 31)
285#define STS_CTRL_APP0_IRQONEND    (1 << 30)
286/* undoccumented */
287#define STS_CTRL_APP0_STOPONEND   (1 << 29)
288#define STS_CTRL_APP0_CMPLT       (1 << 28)
289#define STS_CTRL_APP0_SOP         (1 << 27)
290#define STS_CTRL_APP0_EOP         (1 << 26)
291#define STS_CTRL_APP0_ENGBUSY     (1 << 25)
292/* undocumented */
293#define STS_CTRL_APP0_ENGRST      (1 << 24)
294
295#define TX_CONTROL_CALC_CSUM_MASK   1
296
297#define MULTICAST_CAM_TABLE_NUM 4
298
299/* TEMAC Synthesis features */
300#define TEMAC_FEATURE_RX_CSUM  (1 << 0)
301#define TEMAC_FEATURE_TX_CSUM  (1 << 1)
302
303/* TX/RX CURDESC_PTR points to first descriptor */
304/* TX/RX TAILDESC_PTR points to last descriptor in linked list */
305
306/**
307 * struct cdmac_bd - LocalLink buffer descriptor format
308 *
309 * app0 bits:
310 *	0    Error
311 *	1    IrqOnEnd    generate an interrupt at completion of DMA  op
312 *	2    reserved
313 *	3    completed   Current descriptor completed
314 *	4    SOP         TX - marks first desc/ RX marks first desct
315 *	5    EOP         TX marks last desc/RX marks last desc
316 *	6    EngBusy     DMA is processing
317 *	7    reserved
318 *	8:31 application specific
319 */
320struct cdmac_bd {
321	u32 next;	/* Physical address of next buffer descriptor */
322	u32 phys;
323	u32 len;
324	u32 app0;
325	u32 app1;	/* TX start << 16 | insert */
326	u32 app2;	/* TX csum */
327	u32 app3;
328	u32 app4;	/* skb for TX length for RX */
329};
330
331struct temac_local {
332	struct net_device *ndev;
333	struct device *dev;
334
335	/* Connection to PHY device */
336	struct device_node *phy_node;
337	/* For non-device-tree devices */
338	char phy_name[MII_BUS_ID_SIZE + 3];
339	phy_interface_t phy_interface;
340
341	/* MDIO bus data */
342	struct mii_bus *mii_bus;	/* MII bus reference */
343
344	/* IO registers, dma functions and IRQs */
345	void __iomem *regs;
346	void __iomem *sdma_regs;
347#ifdef CONFIG_PPC_DCR
348	dcr_host_t sdma_dcrs;
349#endif
350	u32 (*temac_ior)(struct temac_local *lp, int offset);
351	void (*temac_iow)(struct temac_local *lp, int offset, u32 value);
352	u32 (*dma_in)(struct temac_local *lp, int reg);
353	void (*dma_out)(struct temac_local *lp, int reg, u32 value);
354
355	int tx_irq;
356	int rx_irq;
357	int emac_num;
358
359	struct sk_buff **rx_skb;
360	spinlock_t rx_lock;
361	/* For synchronization of indirect register access.  Must be
362	 * shared mutex between interfaces in same TEMAC block.
363	 */
364	spinlock_t *indirect_lock;
365	u32 options;			/* Current options word */
366	int last_link;
367	unsigned int temac_features;
368
369	/* Buffer descriptors */
370	struct cdmac_bd *tx_bd_v;
371	dma_addr_t tx_bd_p;
372	u32 tx_bd_num;
373	struct cdmac_bd *rx_bd_v;
374	dma_addr_t rx_bd_p;
375	u32 rx_bd_num;
376	int tx_bd_ci;
377	int tx_bd_tail;
378	int rx_bd_ci;
379	int rx_bd_tail;
380
381	/* DMA channel control setup */
382	u8 coalesce_count_tx;
383	u8 coalesce_delay_tx;
384	u8 coalesce_count_rx;
385	u8 coalesce_delay_rx;
386
387	struct delayed_work restart_work;
388};
389
390/* Wrappers for temac_ior()/temac_iow() function pointers above */
391#define temac_ior(lp, o) ((lp)->temac_ior(lp, o))
392#define temac_iow(lp, o, v) ((lp)->temac_iow(lp, o, v))
393
394/* xilinx_temac.c */
395int temac_indirect_busywait(struct temac_local *lp);
396u32 temac_indirect_in32(struct temac_local *lp, int reg);
397u32 temac_indirect_in32_locked(struct temac_local *lp, int reg);
398void temac_indirect_out32(struct temac_local *lp, int reg, u32 value);
399void temac_indirect_out32_locked(struct temac_local *lp, int reg, u32 value);
400
401/* xilinx_temac_mdio.c */
402int temac_mdio_setup(struct temac_local *lp, struct platform_device *pdev);
403void temac_mdio_teardown(struct temac_local *lp);
404
405#endif /* XILINX_LL_TEMAC_H */