blob: 79509b80847bb8277af0b41af02af800195334fc [file] [log] [blame]
Thomas Chouc960b132010-04-20 12:49:52 +08001/*
2 * Altera 10/100/1000 triple speed ethernet mac
3 *
4 * Copyright (C) 2008 Altera Corporation.
5 * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef _ALTERA_TSE_H_
12#define _ALTERA_TSE_H_
13
Simon Glasscd93d622020-05-10 11:40:13 -060014#include <linux/bitops.h>
Thomas Chou13146ec2015-11-06 09:36:41 +080015#define __packed_1_ __packed __aligned(1)
Thomas Chouc960b132010-04-20 12:49:52 +080016
Thomas Chou38fa4ac2015-11-09 11:02:15 +080017/* dma type */
18#define ALT_SGDMA 0
Thomas Choue3e87262015-11-09 14:36:29 +080019#define ALT_MSGDMA 1
Thomas Chou38fa4ac2015-11-09 11:02:15 +080020
Thomas Chouc960b132010-04-20 12:49:52 +080021/* SGDMA Stuff */
Thomas Chou4c8df1d2015-11-06 09:37:08 +080022#define ALT_SGDMA_STATUS_BUSY_MSK BIT(4)
Thomas Chouc960b132010-04-20 12:49:52 +080023
Thomas Chou4c8df1d2015-11-06 09:37:08 +080024#define ALT_SGDMA_CONTROL_RUN_MSK BIT(5)
25#define ALT_SGDMA_CONTROL_STOP_DMA_ER_MSK BIT(6)
26#define ALT_SGDMA_CONTROL_SOFTWARERESET_MSK BIT(16)
Thomas Chouc960b132010-04-20 12:49:52 +080027
Thomas Chouc960b132010-04-20 12:49:52 +080028/*
29 * Descriptor control bit masks & offsets
30 *
31 * Note: The control byte physically occupies bits [31:24] in memory.
32 * The following bit-offsets are expressed relative to the LSB of
33 * the control register bitfield.
34 */
Thomas Chou4c8df1d2015-11-06 09:37:08 +080035#define ALT_SGDMA_DESCRIPTOR_CONTROL_GENERATE_EOP_MSK BIT(0)
36#define ALT_SGDMA_DESCRIPTOR_CONTROL_READ_FIXED_ADDRESS_MSK BIT(1)
37#define ALT_SGDMA_DESCRIPTOR_CONTROL_WRITE_FIXED_ADDRESS_MSK BIT(2)
38#define ALT_SGDMA_DESCRIPTOR_CONTROL_OWNED_BY_HW_MSK BIT(7)
Thomas Chouc960b132010-04-20 12:49:52 +080039
40/*
41 * Descriptor status bit masks & offsets
42 *
43 * Note: The status byte physically occupies bits [23:16] in memory.
44 * The following bit-offsets are expressed relative to the LSB of
45 * the status register bitfield.
46 */
Thomas Chou4c8df1d2015-11-06 09:37:08 +080047#define ALT_SGDMA_DESCRIPTOR_STATUS_TERMINATED_BY_EOP_MSK BIT(7)
Thomas Chouc960b132010-04-20 12:49:52 +080048
49/*
50 * The SGDMA controller buffer descriptor allocates
51 * 64 bits for each address. To support ANSI C, the
52 * struct implementing a descriptor places 32-bits
53 * of padding directly above each address; each pad must
54 * be cleared when initializing a descriptor.
55 */
56
57/*
58 * Buffer Descriptor data structure
59 *
60 */
61struct alt_sgdma_descriptor {
Thomas Chou2cd0a522015-11-06 09:36:26 +080062 u32 source; /* the address of data to be read. */
63 u32 source_pad;
Thomas Chouc960b132010-04-20 12:49:52 +080064
Thomas Chou2cd0a522015-11-06 09:36:26 +080065 u32 destination; /* the address to write data */
66 u32 destination_pad;
Thomas Chouc960b132010-04-20 12:49:52 +080067
Thomas Chou2cd0a522015-11-06 09:36:26 +080068 u32 next; /* the next descriptor in the list. */
69 u32 next_pad;
Thomas Chouc960b132010-04-20 12:49:52 +080070
Thomas Chou2cd0a522015-11-06 09:36:26 +080071 u16 bytes_to_transfer; /* the number of bytes to transfer */
72 u8 read_burst;
73 u8 write_burst;
Thomas Chouc960b132010-04-20 12:49:52 +080074
Thomas Chou2cd0a522015-11-06 09:36:26 +080075 u16 actual_bytes_transferred;/* bytes transferred by DMA */
76 u8 descriptor_status;
77 u8 descriptor_control;
Thomas Chouc960b132010-04-20 12:49:52 +080078
79} __packed_1_;
80
81/* SG-DMA Control/Status Slave registers map */
82
83struct alt_sgdma_registers {
Thomas Chou2cd0a522015-11-06 09:36:26 +080084 u32 status;
85 u32 status_pad[3];
86 u32 control;
87 u32 control_pad[3];
88 u32 next_descriptor_pointer;
89 u32 descriptor_pad[3];
Thomas Chouc960b132010-04-20 12:49:52 +080090};
91
Thomas Choue3e87262015-11-09 14:36:29 +080092/* mSGDMA Stuff */
93
94/* mSGDMA extended descriptor format */
95struct msgdma_extended_desc {
96 u32 read_addr_lo; /* data buffer source address low bits */
97 u32 write_addr_lo; /* data buffer destination address low bits */
98 u32 len;
99 u32 burst_seq_num;
100 u32 stride;
101 u32 read_addr_hi; /* data buffer source address high bits */
102 u32 write_addr_hi; /* data buffer destination address high bits */
103 u32 control; /* characteristics of the transfer */
104};
105
106/* mSGDMA descriptor control field bit definitions */
107#define MSGDMA_DESC_CTL_GEN_SOP BIT(8)
108#define MSGDMA_DESC_CTL_GEN_EOP BIT(9)
109#define MSGDMA_DESC_CTL_END_ON_EOP BIT(12)
110#define MSGDMA_DESC_CTL_END_ON_LEN BIT(13)
111#define MSGDMA_DESC_CTL_GO BIT(31)
112
113/* Tx buffer control flags */
114#define MSGDMA_DESC_CTL_TX_SINGLE (MSGDMA_DESC_CTL_GEN_SOP | \
115 MSGDMA_DESC_CTL_GEN_EOP | \
116 MSGDMA_DESC_CTL_GO)
117
118#define MSGDMA_DESC_CTL_RX_SINGLE (MSGDMA_DESC_CTL_END_ON_EOP | \
119 MSGDMA_DESC_CTL_END_ON_LEN | \
120 MSGDMA_DESC_CTL_GO)
121
122/* mSGDMA extended descriptor stride definitions */
123#define MSGDMA_DESC_TX_STRIDE 0x00010001
124#define MSGDMA_DESC_RX_STRIDE 0x00010001
125
126/* mSGDMA dispatcher control and status register map */
127struct msgdma_csr {
128 u32 status; /* Read/Clear */
129 u32 control; /* Read/Write */
130 u32 rw_fill_level;
131 u32 resp_fill_level; /* bit 15:0 */
132 u32 rw_seq_num;
133 u32 pad[3]; /* reserved */
134};
135
136/* mSGDMA CSR status register bit definitions */
137#define MSGDMA_CSR_STAT_BUSY BIT(0)
138#define MSGDMA_CSR_STAT_RESETTING BIT(6)
139#define MSGDMA_CSR_STAT_MASK 0x3FF
140
141/* mSGDMA CSR control register bit definitions */
142#define MSGDMA_CSR_CTL_RESET BIT(1)
143
144/* mSGDMA response register map */
145struct msgdma_response {
146 u32 bytes_transferred;
147 u32 status;
148};
149
Thomas Chouc960b132010-04-20 12:49:52 +0800150/* TSE Stuff */
Thomas Chou4c8df1d2015-11-06 09:37:08 +0800151#define ALTERA_TSE_CMD_TX_ENA_MSK BIT(0)
152#define ALTERA_TSE_CMD_RX_ENA_MSK BIT(1)
153#define ALTERA_TSE_CMD_ETH_SPEED_MSK BIT(3)
154#define ALTERA_TSE_CMD_HD_ENA_MSK BIT(10)
155#define ALTERA_TSE_CMD_SW_RESET_MSK BIT(13)
156#define ALTERA_TSE_CMD_ENA_10_MSK BIT(25)
Thomas Chouc960b132010-04-20 12:49:52 +0800157
Thomas Chou96fa1e42015-10-22 15:29:11 +0800158#define ALT_TSE_SW_RESET_TIMEOUT (3 * CONFIG_SYS_HZ)
159#define ALT_TSE_SGDMA_BUSY_TIMEOUT (3 * CONFIG_SYS_HZ)
Thomas Chouc960b132010-04-20 12:49:52 +0800160
161/* MAC register Space */
162
163struct alt_tse_mac {
Thomas Chou2cd0a522015-11-06 09:36:26 +0800164 u32 megacore_revision;
165 u32 scratch_pad;
166 u32 command_config;
167 u32 mac_addr_0;
168 u32 mac_addr_1;
169 u32 max_frame_length;
170 u32 pause_quanta;
171 u32 rx_sel_empty_threshold;
172 u32 rx_sel_full_threshold;
173 u32 tx_sel_empty_threshold;
174 u32 tx_sel_full_threshold;
175 u32 rx_almost_empty_threshold;
176 u32 rx_almost_full_threshold;
177 u32 tx_almost_empty_threshold;
178 u32 tx_almost_full_threshold;
179 u32 mdio_phy0_addr;
180 u32 mdio_phy1_addr;
Thomas Chouc960b132010-04-20 12:49:52 +0800181
Thomas Chou2cd0a522015-11-06 09:36:26 +0800182 u32 reserved1[0x29];
Thomas Chouc960b132010-04-20 12:49:52 +0800183
184 /*FIFO control register. */
Thomas Chou2cd0a522015-11-06 09:36:26 +0800185 u32 tx_cmd_stat;
186 u32 rx_cmd_stat;
Thomas Chouc960b132010-04-20 12:49:52 +0800187
Thomas Chou2cd0a522015-11-06 09:36:26 +0800188 u32 reserved2[0x44];
Thomas Chouc960b132010-04-20 12:49:52 +0800189
190 /*Registers 0 to 31 within PHY device 0/1 */
Thomas Chou2cd0a522015-11-06 09:36:26 +0800191 u32 mdio_phy0[0x20];
192 u32 mdio_phy1[0x20];
Thomas Chouc960b132010-04-20 12:49:52 +0800193
194 /*4 Supplemental MAC Addresses */
Thomas Chou2cd0a522015-11-06 09:36:26 +0800195 u32 supp_mac_addr_0_0;
196 u32 supp_mac_addr_0_1;
197 u32 supp_mac_addr_1_0;
198 u32 supp_mac_addr_1_1;
199 u32 supp_mac_addr_2_0;
200 u32 supp_mac_addr_2_1;
201 u32 supp_mac_addr_3_0;
202 u32 supp_mac_addr_3_1;
Thomas Chouc960b132010-04-20 12:49:52 +0800203
Thomas Chou2cd0a522015-11-06 09:36:26 +0800204 u32 reserved3[0x38];
Thomas Chouc960b132010-04-20 12:49:52 +0800205};
206
Thomas Chou38fa4ac2015-11-09 11:02:15 +0800207struct tse_ops {
208 int (*send)(struct udevice *dev, void *packet, int length);
209 int (*recv)(struct udevice *dev, int flags, uchar **packetp);
210 int (*free_pkt)(struct udevice *dev, uchar *packet, int length);
211 void (*stop)(struct udevice *dev);
212};
213
Thomas Chouc960b132010-04-20 12:49:52 +0800214struct altera_tse_priv {
Thomas Chou96fa1e42015-10-22 15:29:11 +0800215 struct alt_tse_mac *mac_dev;
Thomas Chou38fa4ac2015-11-09 11:02:15 +0800216 void *sgdma_rx;
217 void *sgdma_tx;
Thomas Chou96fa1e42015-10-22 15:29:11 +0800218 unsigned int rx_fifo_depth;
219 unsigned int tx_fifo_depth;
Thomas Chou38fa4ac2015-11-09 11:02:15 +0800220 void *rx_desc;
221 void *tx_desc;
Thomas Choue3e87262015-11-09 14:36:29 +0800222 void *rx_resp;
Thomas Chou96fa1e42015-10-22 15:29:11 +0800223 unsigned char *rx_buf;
Thomas Chouc960b132010-04-20 12:49:52 +0800224 unsigned int phyaddr;
Thomas Chou96fa1e42015-10-22 15:29:11 +0800225 unsigned int interface;
226 struct phy_device *phydev;
227 struct mii_dev *bus;
Thomas Chou38fa4ac2015-11-09 11:02:15 +0800228 const struct tse_ops *ops;
229 int dma_type;
Thomas Chouc960b132010-04-20 12:49:52 +0800230};
231
Thomas Chouc960b132010-04-20 12:49:52 +0800232#endif /* _ALTERA_TSE_H_ */