1 // SPDX-License-Identifier: GPL-2.0-only
2 /* 10G controller driver for Samsung SoCs
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * Author: Siva Reddy Kallam <siva.kallam@samsung.com>
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/export.h>
14 #include <linux/netdevice.h>
15 #include <linux/phy.h>
17 #include "sxgbe_common.h"
18 #include "sxgbe_reg.h"
20 /* MAC core initialization */
21 static void sxgbe_core_init(void __iomem
*ioaddr
)
25 /* TX configuration */
26 regval
= readl(ioaddr
+ SXGBE_CORE_TX_CONFIG_REG
);
27 /* Other configurable parameters IFP, IPG, ISR, ISM
28 * needs to be set if needed
30 regval
|= SXGBE_TX_JABBER_DISABLE
;
31 writel(regval
, ioaddr
+ SXGBE_CORE_TX_CONFIG_REG
);
33 /* RX configuration */
34 regval
= readl(ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
35 /* Other configurable parameters CST, SPEN, USP, GPSLCE
36 * WD, LM, S2KP, HDSMS, GPSL, ELEN, ARPEN needs to be
39 regval
|= SXGBE_RX_JUMBPKT_ENABLE
| SXGBE_RX_ACS_ENABLE
;
40 writel(regval
, ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
43 /* Dump MAC registers */
44 static void sxgbe_core_dump_regs(void __iomem
*ioaddr
)
48 static int sxgbe_get_lpi_status(void __iomem
*ioaddr
, const u32 irq_status
)
53 /* Reading this register shall clear all the LPI status bits */
54 lpi_status
= readl(ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
56 if (lpi_status
& LPI_CTRL_STATUS_TLPIEN
)
57 status
|= TX_ENTRY_LPI_MODE
;
58 if (lpi_status
& LPI_CTRL_STATUS_TLPIEX
)
59 status
|= TX_EXIT_LPI_MODE
;
60 if (lpi_status
& LPI_CTRL_STATUS_RLPIEN
)
61 status
|= RX_ENTRY_LPI_MODE
;
62 if (lpi_status
& LPI_CTRL_STATUS_RLPIEX
)
63 status
|= RX_EXIT_LPI_MODE
;
68 /* Handle extra events on specific interrupts hw dependent */
69 static int sxgbe_core_host_irq_status(void __iomem
*ioaddr
,
70 struct sxgbe_extra_stats
*x
)
72 int irq_status
, status
= 0;
74 irq_status
= readl(ioaddr
+ SXGBE_CORE_INT_STATUS_REG
);
76 if (unlikely(irq_status
& LPI_INT_STATUS
))
77 status
|= sxgbe_get_lpi_status(ioaddr
, irq_status
);
82 /* Set power management mode (e.g. magic frame) */
83 static void sxgbe_core_pmt(void __iomem
*ioaddr
, unsigned long mode
)
87 /* Set/Get Unicast MAC addresses */
88 static void sxgbe_core_set_umac_addr(void __iomem
*ioaddr
,
89 const unsigned char *addr
,
92 u32 high_word
, low_word
;
94 high_word
= (addr
[5] << 8) | (addr
[4]);
95 low_word
= (addr
[3] << 24) | (addr
[2] << 16) |
96 (addr
[1] << 8) | (addr
[0]);
97 writel(high_word
, ioaddr
+ SXGBE_CORE_ADD_HIGHOFFSET(reg_n
));
98 writel(low_word
, ioaddr
+ SXGBE_CORE_ADD_LOWOFFSET(reg_n
));
101 static void sxgbe_core_get_umac_addr(void __iomem
*ioaddr
, unsigned char *addr
,
104 u32 high_word
, low_word
;
106 high_word
= readl(ioaddr
+ SXGBE_CORE_ADD_HIGHOFFSET(reg_n
));
107 low_word
= readl(ioaddr
+ SXGBE_CORE_ADD_LOWOFFSET(reg_n
));
109 /* extract and assign address */
110 addr
[5] = (high_word
& 0x0000FF00) >> 8;
111 addr
[4] = (high_word
& 0x000000FF);
112 addr
[3] = (low_word
& 0xFF000000) >> 24;
113 addr
[2] = (low_word
& 0x00FF0000) >> 16;
114 addr
[1] = (low_word
& 0x0000FF00) >> 8;
115 addr
[0] = (low_word
& 0x000000FF);
118 static void sxgbe_enable_tx(void __iomem
*ioaddr
, bool enable
)
122 tx_config
= readl(ioaddr
+ SXGBE_CORE_TX_CONFIG_REG
);
123 tx_config
&= ~SXGBE_TX_ENABLE
;
126 tx_config
|= SXGBE_TX_ENABLE
;
127 writel(tx_config
, ioaddr
+ SXGBE_CORE_TX_CONFIG_REG
);
130 static void sxgbe_enable_rx(void __iomem
*ioaddr
, bool enable
)
134 rx_config
= readl(ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
135 rx_config
&= ~SXGBE_RX_ENABLE
;
138 rx_config
|= SXGBE_RX_ENABLE
;
139 writel(rx_config
, ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
142 static int sxgbe_get_controller_version(void __iomem
*ioaddr
)
144 return readl(ioaddr
+ SXGBE_CORE_VERSION_REG
);
147 /* If supported then get the optional core features */
148 static unsigned int sxgbe_get_hw_feature(void __iomem
*ioaddr
,
149 unsigned char feature_index
)
151 return readl(ioaddr
+ (SXGBE_CORE_HW_FEA_REG(feature_index
)));
154 static void sxgbe_core_set_speed(void __iomem
*ioaddr
, unsigned char speed
)
156 u32 tx_cfg
= readl(ioaddr
+ SXGBE_CORE_TX_CONFIG_REG
);
158 /* clear the speed bits */
159 tx_cfg
&= ~0x60000000;
160 tx_cfg
|= (speed
<< SXGBE_SPEED_LSHIFT
);
163 writel(tx_cfg
, ioaddr
+ SXGBE_CORE_TX_CONFIG_REG
);
166 static void sxgbe_core_enable_rxqueue(void __iomem
*ioaddr
, int queue_num
)
170 reg_val
= readl(ioaddr
+ SXGBE_CORE_RX_CTL0_REG
);
171 reg_val
&= ~(SXGBE_CORE_RXQ_ENABLE_MASK
<< queue_num
);
172 reg_val
|= SXGBE_CORE_RXQ_ENABLE
;
173 writel(reg_val
, ioaddr
+ SXGBE_CORE_RX_CTL0_REG
);
176 static void sxgbe_core_disable_rxqueue(void __iomem
*ioaddr
, int queue_num
)
180 reg_val
= readl(ioaddr
+ SXGBE_CORE_RX_CTL0_REG
);
181 reg_val
&= ~(SXGBE_CORE_RXQ_ENABLE_MASK
<< queue_num
);
182 reg_val
|= SXGBE_CORE_RXQ_DISABLE
;
183 writel(reg_val
, ioaddr
+ SXGBE_CORE_RX_CTL0_REG
);
186 static void sxgbe_set_eee_mode(void __iomem
*ioaddr
)
190 /* Enable the LPI mode for transmit path with Tx automate bit set.
191 * When Tx Automate bit is set, MAC internally handles the entry
192 * to LPI mode after all outstanding and pending packets are
195 ctrl
= readl(ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
196 ctrl
|= LPI_CTRL_STATUS_LPIEN
| LPI_CTRL_STATUS_TXA
;
197 writel(ctrl
, ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
200 static void sxgbe_reset_eee_mode(void __iomem
*ioaddr
)
204 ctrl
= readl(ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
205 ctrl
&= ~(LPI_CTRL_STATUS_LPIEN
| LPI_CTRL_STATUS_TXA
);
206 writel(ctrl
, ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
209 static void sxgbe_set_eee_pls(void __iomem
*ioaddr
, const int link
)
213 ctrl
= readl(ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
215 /* If the PHY link status is UP then set PLS */
217 ctrl
|= LPI_CTRL_STATUS_PLS
;
219 ctrl
&= ~LPI_CTRL_STATUS_PLS
;
221 writel(ctrl
, ioaddr
+ SXGBE_CORE_LPI_CTRL_STATUS
);
224 static void sxgbe_set_eee_timer(void __iomem
*ioaddr
,
225 const int ls
, const int tw
)
227 int value
= ((tw
& 0xffff)) | ((ls
& 0x7ff) << 16);
229 /* Program the timers in the LPI timer control register:
230 * LS: minimum time (ms) for which the link
231 * status from PHY should be ok before transmitting
233 * TW: minimum time (us) for which the core waits
234 * after it has stopped transmitting the LPI pattern.
236 writel(value
, ioaddr
+ SXGBE_CORE_LPI_TIMER_CTRL
);
239 static void sxgbe_enable_rx_csum(void __iomem
*ioaddr
)
243 ctrl
= readl(ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
244 ctrl
|= SXGBE_RX_CSUMOFFLOAD_ENABLE
;
245 writel(ctrl
, ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
248 static void sxgbe_disable_rx_csum(void __iomem
*ioaddr
)
252 ctrl
= readl(ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
253 ctrl
&= ~SXGBE_RX_CSUMOFFLOAD_ENABLE
;
254 writel(ctrl
, ioaddr
+ SXGBE_CORE_RX_CONFIG_REG
);
257 static const struct sxgbe_core_ops core_ops
= {
258 .core_init
= sxgbe_core_init
,
259 .dump_regs
= sxgbe_core_dump_regs
,
260 .host_irq_status
= sxgbe_core_host_irq_status
,
261 .pmt
= sxgbe_core_pmt
,
262 .set_umac_addr
= sxgbe_core_set_umac_addr
,
263 .get_umac_addr
= sxgbe_core_get_umac_addr
,
264 .enable_rx
= sxgbe_enable_rx
,
265 .enable_tx
= sxgbe_enable_tx
,
266 .get_controller_version
= sxgbe_get_controller_version
,
267 .get_hw_feature
= sxgbe_get_hw_feature
,
268 .set_speed
= sxgbe_core_set_speed
,
269 .set_eee_mode
= sxgbe_set_eee_mode
,
270 .reset_eee_mode
= sxgbe_reset_eee_mode
,
271 .set_eee_timer
= sxgbe_set_eee_timer
,
272 .set_eee_pls
= sxgbe_set_eee_pls
,
273 .enable_rx_csum
= sxgbe_enable_rx_csum
,
274 .disable_rx_csum
= sxgbe_disable_rx_csum
,
275 .enable_rxqueue
= sxgbe_core_enable_rxqueue
,
276 .disable_rxqueue
= sxgbe_core_disable_rxqueue
,
279 const struct sxgbe_core_ops
*sxgbe_get_core_ops(void)