1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2 /* Copyright 2017-2019 NXP */
3 
4 #include <asm/unaligned.h>
5 #include <linux/mdio.h>
6 #include <linux/module.h>
7 #include <linux/fsl/enetc_mdio.h>
8 #include <linux/of_platform.h>
9 #include <linux/of_mdio.h>
10 #include <linux/of_net.h>
11 #include <linux/pcs-lynx.h>
12 #include "enetc_ierb.h"
13 #include "enetc_pf.h"
14 
15 #define ENETC_DRV_NAME_STR "ENETC PF driver"
16 
17 static void enetc_pf_get_primary_mac_addr(struct enetc_hw *hw, int si, u8 *addr)
18 {
19 	u32 upper = __raw_readl(hw->port + ENETC_PSIPMAR0(si));
20 	u16 lower = __raw_readw(hw->port + ENETC_PSIPMAR1(si));
21 
22 	put_unaligned_le32(upper, addr);
23 	put_unaligned_le16(lower, addr + 4);
24 }
25 
26 static void enetc_pf_set_primary_mac_addr(struct enetc_hw *hw, int si,
27 					  const u8 *addr)
28 {
29 	u32 upper = get_unaligned_le32(addr);
30 	u16 lower = get_unaligned_le16(addr + 4);
31 
32 	__raw_writel(upper, hw->port + ENETC_PSIPMAR0(si));
33 	__raw_writew(lower, hw->port + ENETC_PSIPMAR1(si));
34 }
35 
36 static int enetc_pf_set_mac_addr(struct net_device *ndev, void *addr)
37 {
38 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
39 	struct sockaddr *saddr = addr;
40 
41 	if (!is_valid_ether_addr(saddr->sa_data))
42 		return -EADDRNOTAVAIL;
43 
44 	eth_hw_addr_set(ndev, saddr->sa_data);
45 	enetc_pf_set_primary_mac_addr(&priv->si->hw, 0, saddr->sa_data);
46 
47 	return 0;
48 }
49 
50 static void enetc_set_vlan_promisc(struct enetc_hw *hw, char si_map)
51 {
52 	u32 val = enetc_port_rd(hw, ENETC_PSIPVMR);
53 
54 	val &= ~ENETC_PSIPVMR_SET_VP(ENETC_VLAN_PROMISC_MAP_ALL);
55 	enetc_port_wr(hw, ENETC_PSIPVMR, ENETC_PSIPVMR_SET_VP(si_map) | val);
56 }
57 
58 static void enetc_enable_si_vlan_promisc(struct enetc_pf *pf, int si_idx)
59 {
60 	pf->vlan_promisc_simap |= BIT(si_idx);
61 	enetc_set_vlan_promisc(&pf->si->hw, pf->vlan_promisc_simap);
62 }
63 
64 static void enetc_disable_si_vlan_promisc(struct enetc_pf *pf, int si_idx)
65 {
66 	pf->vlan_promisc_simap &= ~BIT(si_idx);
67 	enetc_set_vlan_promisc(&pf->si->hw, pf->vlan_promisc_simap);
68 }
69 
70 static void enetc_set_isol_vlan(struct enetc_hw *hw, int si, u16 vlan, u8 qos)
71 {
72 	u32 val = 0;
73 
74 	if (vlan)
75 		val = ENETC_PSIVLAN_EN | ENETC_PSIVLAN_SET_QOS(qos) | vlan;
76 
77 	enetc_port_wr(hw, ENETC_PSIVLANR(si), val);
78 }
79 
80 static int enetc_mac_addr_hash_idx(const u8 *addr)
81 {
82 	u64 fold = __swab64(ether_addr_to_u64(addr)) >> 16;
83 	u64 mask = 0;
84 	int res = 0;
85 	int i;
86 
87 	for (i = 0; i < 8; i++)
88 		mask |= BIT_ULL(i * 6);
89 
90 	for (i = 0; i < 6; i++)
91 		res |= (hweight64(fold & (mask << i)) & 0x1) << i;
92 
93 	return res;
94 }
95 
96 static void enetc_reset_mac_addr_filter(struct enetc_mac_filter *filter)
97 {
98 	filter->mac_addr_cnt = 0;
99 
100 	bitmap_zero(filter->mac_hash_table,
101 		    ENETC_MADDR_HASH_TBL_SZ);
102 }
103 
104 static void enetc_add_mac_addr_em_filter(struct enetc_mac_filter *filter,
105 					 const unsigned char *addr)
106 {
107 	/* add exact match addr */
108 	ether_addr_copy(filter->mac_addr, addr);
109 	filter->mac_addr_cnt++;
110 }
111 
112 static void enetc_add_mac_addr_ht_filter(struct enetc_mac_filter *filter,
113 					 const unsigned char *addr)
114 {
115 	int idx = enetc_mac_addr_hash_idx(addr);
116 
117 	/* add hash table entry */
118 	__set_bit(idx, filter->mac_hash_table);
119 	filter->mac_addr_cnt++;
120 }
121 
122 static void enetc_clear_mac_ht_flt(struct enetc_si *si, int si_idx, int type)
123 {
124 	bool err = si->errata & ENETC_ERR_UCMCSWP;
125 
126 	if (type == UC) {
127 		enetc_port_wr(&si->hw, ENETC_PSIUMHFR0(si_idx, err), 0);
128 		enetc_port_wr(&si->hw, ENETC_PSIUMHFR1(si_idx), 0);
129 	} else { /* MC */
130 		enetc_port_wr(&si->hw, ENETC_PSIMMHFR0(si_idx, err), 0);
131 		enetc_port_wr(&si->hw, ENETC_PSIMMHFR1(si_idx), 0);
132 	}
133 }
134 
135 static void enetc_set_mac_ht_flt(struct enetc_si *si, int si_idx, int type,
136 				 unsigned long hash)
137 {
138 	bool err = si->errata & ENETC_ERR_UCMCSWP;
139 
140 	if (type == UC) {
141 		enetc_port_wr(&si->hw, ENETC_PSIUMHFR0(si_idx, err),
142 			      lower_32_bits(hash));
143 		enetc_port_wr(&si->hw, ENETC_PSIUMHFR1(si_idx),
144 			      upper_32_bits(hash));
145 	} else { /* MC */
146 		enetc_port_wr(&si->hw, ENETC_PSIMMHFR0(si_idx, err),
147 			      lower_32_bits(hash));
148 		enetc_port_wr(&si->hw, ENETC_PSIMMHFR1(si_idx),
149 			      upper_32_bits(hash));
150 	}
151 }
152 
153 static void enetc_sync_mac_filters(struct enetc_pf *pf)
154 {
155 	struct enetc_mac_filter *f = pf->mac_filter;
156 	struct enetc_si *si = pf->si;
157 	int i, pos;
158 
159 	pos = EMETC_MAC_ADDR_FILT_RES;
160 
161 	for (i = 0; i < MADDR_TYPE; i++, f++) {
162 		bool em = (f->mac_addr_cnt == 1) && (i == UC);
163 		bool clear = !f->mac_addr_cnt;
164 
165 		if (clear) {
166 			if (i == UC)
167 				enetc_clear_mac_flt_entry(si, pos);
168 
169 			enetc_clear_mac_ht_flt(si, 0, i);
170 			continue;
171 		}
172 
173 		/* exact match filter */
174 		if (em) {
175 			int err;
176 
177 			enetc_clear_mac_ht_flt(si, 0, UC);
178 
179 			err = enetc_set_mac_flt_entry(si, pos, f->mac_addr,
180 						      BIT(0));
181 			if (!err)
182 				continue;
183 
184 			/* fallback to HT filtering */
185 			dev_warn(&si->pdev->dev, "fallback to HT filt (%d)\n",
186 				 err);
187 		}
188 
189 		/* hash table filter, clear EM filter for UC entries */
190 		if (i == UC)
191 			enetc_clear_mac_flt_entry(si, pos);
192 
193 		enetc_set_mac_ht_flt(si, 0, i, *f->mac_hash_table);
194 	}
195 }
196 
197 static void enetc_pf_set_rx_mode(struct net_device *ndev)
198 {
199 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
200 	struct enetc_pf *pf = enetc_si_priv(priv->si);
201 	struct enetc_hw *hw = &priv->si->hw;
202 	bool uprom = false, mprom = false;
203 	struct enetc_mac_filter *filter;
204 	struct netdev_hw_addr *ha;
205 	u32 psipmr = 0;
206 	bool em;
207 
208 	if (ndev->flags & IFF_PROMISC) {
209 		/* enable promisc mode for SI0 (PF) */
210 		psipmr = ENETC_PSIPMR_SET_UP(0) | ENETC_PSIPMR_SET_MP(0);
211 		uprom = true;
212 		mprom = true;
213 	} else if (ndev->flags & IFF_ALLMULTI) {
214 		/* enable multi cast promisc mode for SI0 (PF) */
215 		psipmr = ENETC_PSIPMR_SET_MP(0);
216 		mprom = true;
217 	}
218 
219 	/* first 2 filter entries belong to PF */
220 	if (!uprom) {
221 		/* Update unicast filters */
222 		filter = &pf->mac_filter[UC];
223 		enetc_reset_mac_addr_filter(filter);
224 
225 		em = (netdev_uc_count(ndev) == 1);
226 		netdev_for_each_uc_addr(ha, ndev) {
227 			if (em) {
228 				enetc_add_mac_addr_em_filter(filter, ha->addr);
229 				break;
230 			}
231 
232 			enetc_add_mac_addr_ht_filter(filter, ha->addr);
233 		}
234 	}
235 
236 	if (!mprom) {
237 		/* Update multicast filters */
238 		filter = &pf->mac_filter[MC];
239 		enetc_reset_mac_addr_filter(filter);
240 
241 		netdev_for_each_mc_addr(ha, ndev) {
242 			if (!is_multicast_ether_addr(ha->addr))
243 				continue;
244 
245 			enetc_add_mac_addr_ht_filter(filter, ha->addr);
246 		}
247 	}
248 
249 	if (!uprom || !mprom)
250 		/* update PF entries */
251 		enetc_sync_mac_filters(pf);
252 
253 	psipmr |= enetc_port_rd(hw, ENETC_PSIPMR) &
254 		  ~(ENETC_PSIPMR_SET_UP(0) | ENETC_PSIPMR_SET_MP(0));
255 	enetc_port_wr(hw, ENETC_PSIPMR, psipmr);
256 }
257 
258 static void enetc_set_vlan_ht_filter(struct enetc_hw *hw, int si_idx,
259 				     unsigned long hash)
260 {
261 	enetc_port_wr(hw, ENETC_PSIVHFR0(si_idx), lower_32_bits(hash));
262 	enetc_port_wr(hw, ENETC_PSIVHFR1(si_idx), upper_32_bits(hash));
263 }
264 
265 static int enetc_vid_hash_idx(unsigned int vid)
266 {
267 	int res = 0;
268 	int i;
269 
270 	for (i = 0; i < 6; i++)
271 		res |= (hweight8(vid & (BIT(i) | BIT(i + 6))) & 0x1) << i;
272 
273 	return res;
274 }
275 
276 static void enetc_sync_vlan_ht_filter(struct enetc_pf *pf, bool rehash)
277 {
278 	int i;
279 
280 	if (rehash) {
281 		bitmap_zero(pf->vlan_ht_filter, ENETC_VLAN_HT_SIZE);
282 
283 		for_each_set_bit(i, pf->active_vlans, VLAN_N_VID) {
284 			int hidx = enetc_vid_hash_idx(i);
285 
286 			__set_bit(hidx, pf->vlan_ht_filter);
287 		}
288 	}
289 
290 	enetc_set_vlan_ht_filter(&pf->si->hw, 0, *pf->vlan_ht_filter);
291 }
292 
293 static int enetc_vlan_rx_add_vid(struct net_device *ndev, __be16 prot, u16 vid)
294 {
295 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
296 	struct enetc_pf *pf = enetc_si_priv(priv->si);
297 	int idx;
298 
299 	__set_bit(vid, pf->active_vlans);
300 
301 	idx = enetc_vid_hash_idx(vid);
302 	if (!__test_and_set_bit(idx, pf->vlan_ht_filter))
303 		enetc_sync_vlan_ht_filter(pf, false);
304 
305 	return 0;
306 }
307 
308 static int enetc_vlan_rx_del_vid(struct net_device *ndev, __be16 prot, u16 vid)
309 {
310 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
311 	struct enetc_pf *pf = enetc_si_priv(priv->si);
312 
313 	__clear_bit(vid, pf->active_vlans);
314 	enetc_sync_vlan_ht_filter(pf, true);
315 
316 	return 0;
317 }
318 
319 static void enetc_set_loopback(struct net_device *ndev, bool en)
320 {
321 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
322 	struct enetc_si *si = priv->si;
323 	u32 reg;
324 
325 	reg = enetc_port_mac_rd(si, ENETC_PM0_IF_MODE);
326 	if (reg & ENETC_PM0_IFM_RG) {
327 		/* RGMII mode */
328 		reg = (reg & ~ENETC_PM0_IFM_RLP) |
329 		      (en ? ENETC_PM0_IFM_RLP : 0);
330 		enetc_port_mac_wr(si, ENETC_PM0_IF_MODE, reg);
331 	} else {
332 		/* assume SGMII mode */
333 		reg = enetc_port_mac_rd(si, ENETC_PM0_CMD_CFG);
334 		reg = (reg & ~ENETC_PM0_CMD_XGLP) |
335 		      (en ? ENETC_PM0_CMD_XGLP : 0);
336 		reg = (reg & ~ENETC_PM0_CMD_PHY_TX_EN) |
337 		      (en ? ENETC_PM0_CMD_PHY_TX_EN : 0);
338 		enetc_port_mac_wr(si, ENETC_PM0_CMD_CFG, reg);
339 	}
340 }
341 
342 static int enetc_pf_set_vf_mac(struct net_device *ndev, int vf, u8 *mac)
343 {
344 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
345 	struct enetc_pf *pf = enetc_si_priv(priv->si);
346 	struct enetc_vf_state *vf_state;
347 
348 	if (vf >= pf->total_vfs)
349 		return -EINVAL;
350 
351 	if (!is_valid_ether_addr(mac))
352 		return -EADDRNOTAVAIL;
353 
354 	vf_state = &pf->vf_state[vf];
355 	vf_state->flags |= ENETC_VF_FLAG_PF_SET_MAC;
356 	enetc_pf_set_primary_mac_addr(&priv->si->hw, vf + 1, mac);
357 	return 0;
358 }
359 
360 static int enetc_pf_set_vf_vlan(struct net_device *ndev, int vf, u16 vlan,
361 				u8 qos, __be16 proto)
362 {
363 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
364 	struct enetc_pf *pf = enetc_si_priv(priv->si);
365 
366 	if (priv->si->errata & ENETC_ERR_VLAN_ISOL)
367 		return -EOPNOTSUPP;
368 
369 	if (vf >= pf->total_vfs)
370 		return -EINVAL;
371 
372 	if (proto != htons(ETH_P_8021Q))
373 		/* only C-tags supported for now */
374 		return -EPROTONOSUPPORT;
375 
376 	enetc_set_isol_vlan(&priv->si->hw, vf + 1, vlan, qos);
377 	return 0;
378 }
379 
380 static int enetc_pf_set_vf_spoofchk(struct net_device *ndev, int vf, bool en)
381 {
382 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
383 	struct enetc_pf *pf = enetc_si_priv(priv->si);
384 	u32 cfgr;
385 
386 	if (vf >= pf->total_vfs)
387 		return -EINVAL;
388 
389 	cfgr = enetc_port_rd(&priv->si->hw, ENETC_PSICFGR0(vf + 1));
390 	cfgr = (cfgr & ~ENETC_PSICFGR0_ASE) | (en ? ENETC_PSICFGR0_ASE : 0);
391 	enetc_port_wr(&priv->si->hw, ENETC_PSICFGR0(vf + 1), cfgr);
392 
393 	return 0;
394 }
395 
396 static int enetc_setup_mac_address(struct device_node *np, struct enetc_pf *pf,
397 				   int si)
398 {
399 	struct device *dev = &pf->si->pdev->dev;
400 	struct enetc_hw *hw = &pf->si->hw;
401 	u8 mac_addr[ETH_ALEN] = { 0 };
402 	int err;
403 
404 	/* (1) try to get the MAC address from the device tree */
405 	if (np) {
406 		err = of_get_mac_address(np, mac_addr);
407 		if (err == -EPROBE_DEFER)
408 			return err;
409 	}
410 
411 	/* (2) bootloader supplied MAC address */
412 	if (is_zero_ether_addr(mac_addr))
413 		enetc_pf_get_primary_mac_addr(hw, si, mac_addr);
414 
415 	/* (3) choose a random one */
416 	if (is_zero_ether_addr(mac_addr)) {
417 		eth_random_addr(mac_addr);
418 		dev_info(dev, "no MAC address specified for SI%d, using %pM\n",
419 			 si, mac_addr);
420 	}
421 
422 	enetc_pf_set_primary_mac_addr(hw, si, mac_addr);
423 
424 	return 0;
425 }
426 
427 static int enetc_setup_mac_addresses(struct device_node *np,
428 				     struct enetc_pf *pf)
429 {
430 	int err, i;
431 
432 	/* The PF might take its MAC from the device tree */
433 	err = enetc_setup_mac_address(np, pf, 0);
434 	if (err)
435 		return err;
436 
437 	for (i = 0; i < pf->total_vfs; i++) {
438 		err = enetc_setup_mac_address(NULL, pf, i + 1);
439 		if (err)
440 			return err;
441 	}
442 
443 	return 0;
444 }
445 
446 static void enetc_port_assign_rfs_entries(struct enetc_si *si)
447 {
448 	struct enetc_pf *pf = enetc_si_priv(si);
449 	struct enetc_hw *hw = &si->hw;
450 	int num_entries, vf_entries, i;
451 	u32 val;
452 
453 	/* split RFS entries between functions */
454 	val = enetc_port_rd(hw, ENETC_PRFSCAPR);
455 	num_entries = ENETC_PRFSCAPR_GET_NUM_RFS(val);
456 	vf_entries = num_entries / (pf->total_vfs + 1);
457 
458 	for (i = 0; i < pf->total_vfs; i++)
459 		enetc_port_wr(hw, ENETC_PSIRFSCFGR(i + 1), vf_entries);
460 	enetc_port_wr(hw, ENETC_PSIRFSCFGR(0),
461 		      num_entries - vf_entries * pf->total_vfs);
462 
463 	/* enable RFS on port */
464 	enetc_port_wr(hw, ENETC_PRFSMR, ENETC_PRFSMR_RFSE);
465 }
466 
467 static void enetc_port_si_configure(struct enetc_si *si)
468 {
469 	struct enetc_pf *pf = enetc_si_priv(si);
470 	struct enetc_hw *hw = &si->hw;
471 	int num_rings, i;
472 	u32 val;
473 
474 	val = enetc_port_rd(hw, ENETC_PCAPR0);
475 	num_rings = min(ENETC_PCAPR0_RXBDR(val), ENETC_PCAPR0_TXBDR(val));
476 
477 	val = ENETC_PSICFGR0_SET_TXBDR(ENETC_PF_NUM_RINGS);
478 	val |= ENETC_PSICFGR0_SET_RXBDR(ENETC_PF_NUM_RINGS);
479 
480 	if (unlikely(num_rings < ENETC_PF_NUM_RINGS)) {
481 		val = ENETC_PSICFGR0_SET_TXBDR(num_rings);
482 		val |= ENETC_PSICFGR0_SET_RXBDR(num_rings);
483 
484 		dev_warn(&si->pdev->dev, "Found %d rings, expected %d!\n",
485 			 num_rings, ENETC_PF_NUM_RINGS);
486 
487 		num_rings = 0;
488 	}
489 
490 	/* Add default one-time settings for SI0 (PF) */
491 	val |= ENETC_PSICFGR0_SIVC(ENETC_VLAN_TYPE_C | ENETC_VLAN_TYPE_S);
492 
493 	enetc_port_wr(hw, ENETC_PSICFGR0(0), val);
494 
495 	if (num_rings)
496 		num_rings -= ENETC_PF_NUM_RINGS;
497 
498 	/* Configure the SIs for each available VF */
499 	val = ENETC_PSICFGR0_SIVC(ENETC_VLAN_TYPE_C | ENETC_VLAN_TYPE_S);
500 	val |= ENETC_PSICFGR0_VTE | ENETC_PSICFGR0_SIVIE;
501 
502 	if (num_rings) {
503 		num_rings /= pf->total_vfs;
504 		val |= ENETC_PSICFGR0_SET_TXBDR(num_rings);
505 		val |= ENETC_PSICFGR0_SET_RXBDR(num_rings);
506 	}
507 
508 	for (i = 0; i < pf->total_vfs; i++)
509 		enetc_port_wr(hw, ENETC_PSICFGR0(i + 1), val);
510 
511 	/* Port level VLAN settings */
512 	val = ENETC_PVCLCTR_OVTPIDL(ENETC_VLAN_TYPE_C | ENETC_VLAN_TYPE_S);
513 	enetc_port_wr(hw, ENETC_PVCLCTR, val);
514 	/* use outer tag for VLAN filtering */
515 	enetc_port_wr(hw, ENETC_PSIVLANFMR, ENETC_PSIVLANFMR_VS);
516 }
517 
518 void enetc_set_ptcmsdur(struct enetc_hw *hw, u32 *max_sdu)
519 {
520 	int tc;
521 
522 	for (tc = 0; tc < 8; tc++) {
523 		u32 val = ENETC_MAC_MAXFRM_SIZE;
524 
525 		if (max_sdu[tc])
526 			val = max_sdu[tc] + VLAN_ETH_HLEN;
527 
528 		enetc_port_wr(hw, ENETC_PTCMSDUR(tc), val);
529 	}
530 }
531 
532 void enetc_reset_ptcmsdur(struct enetc_hw *hw)
533 {
534 	int tc;
535 
536 	for (tc = 0; tc < 8; tc++)
537 		enetc_port_wr(hw, ENETC_PTCMSDUR(tc), ENETC_MAC_MAXFRM_SIZE);
538 }
539 
540 static void enetc_configure_port_mac(struct enetc_si *si)
541 {
542 	struct enetc_hw *hw = &si->hw;
543 
544 	enetc_port_mac_wr(si, ENETC_PM0_MAXFRM,
545 			  ENETC_SET_MAXFRM(ENETC_RX_MAXFRM_SIZE));
546 
547 	enetc_reset_ptcmsdur(hw);
548 
549 	enetc_port_mac_wr(si, ENETC_PM0_CMD_CFG, ENETC_PM0_CMD_PHY_TX_EN |
550 			  ENETC_PM0_CMD_TXP | ENETC_PM0_PROMISC);
551 
552 	/* On LS1028A, the MAC RX FIFO defaults to 2, which is too high
553 	 * and may lead to RX lock-up under traffic. Set it to 1 instead,
554 	 * as recommended by the hardware team.
555 	 */
556 	enetc_port_mac_wr(si, ENETC_PM0_RX_FIFO, ENETC_PM0_RX_FIFO_VAL);
557 }
558 
559 static void enetc_mac_config(struct enetc_si *si, phy_interface_t phy_mode)
560 {
561 	u32 val;
562 
563 	if (phy_interface_mode_is_rgmii(phy_mode)) {
564 		val = enetc_port_mac_rd(si, ENETC_PM0_IF_MODE);
565 		val &= ~(ENETC_PM0_IFM_EN_AUTO | ENETC_PM0_IFM_IFMODE_MASK);
566 		val |= ENETC_PM0_IFM_IFMODE_GMII | ENETC_PM0_IFM_RG;
567 		enetc_port_mac_wr(si, ENETC_PM0_IF_MODE, val);
568 	}
569 
570 	if (phy_mode == PHY_INTERFACE_MODE_USXGMII) {
571 		val = ENETC_PM0_IFM_FULL_DPX | ENETC_PM0_IFM_IFMODE_XGMII;
572 		enetc_port_mac_wr(si, ENETC_PM0_IF_MODE, val);
573 	}
574 }
575 
576 static void enetc_mac_enable(struct enetc_si *si, bool en)
577 {
578 	u32 val = enetc_port_mac_rd(si, ENETC_PM0_CMD_CFG);
579 
580 	val &= ~(ENETC_PM0_TX_EN | ENETC_PM0_RX_EN);
581 	val |= en ? (ENETC_PM0_TX_EN | ENETC_PM0_RX_EN) : 0;
582 
583 	enetc_port_mac_wr(si, ENETC_PM0_CMD_CFG, val);
584 }
585 
586 static void enetc_configure_port_pmac(struct enetc_hw *hw)
587 {
588 	u32 temp;
589 
590 	temp = enetc_port_rd(hw, ENETC_PFPMR);
591 	enetc_port_wr(hw, ENETC_PFPMR, temp | ENETC_PFPMR_PMACE);
592 
593 	temp = enetc_port_rd(hw, ENETC_MMCSR);
594 	enetc_port_wr(hw, ENETC_MMCSR, temp | ENETC_MMCSR_ME);
595 }
596 
597 static void enetc_configure_port(struct enetc_pf *pf)
598 {
599 	u8 hash_key[ENETC_RSSHASH_KEY_SIZE];
600 	struct enetc_hw *hw = &pf->si->hw;
601 
602 	enetc_configure_port_pmac(hw);
603 
604 	enetc_configure_port_mac(pf->si);
605 
606 	enetc_port_si_configure(pf->si);
607 
608 	/* set up hash key */
609 	get_random_bytes(hash_key, ENETC_RSSHASH_KEY_SIZE);
610 	enetc_set_rss_key(hw, hash_key);
611 
612 	/* split up RFS entries */
613 	enetc_port_assign_rfs_entries(pf->si);
614 
615 	/* enforce VLAN promisc mode for all SIs */
616 	pf->vlan_promisc_simap = ENETC_VLAN_PROMISC_MAP_ALL;
617 	enetc_set_vlan_promisc(hw, pf->vlan_promisc_simap);
618 
619 	enetc_port_wr(hw, ENETC_PSIPMR, 0);
620 
621 	/* enable port */
622 	enetc_port_wr(hw, ENETC_PMR, ENETC_PMR_EN);
623 }
624 
625 /* Messaging */
626 static u16 enetc_msg_pf_set_vf_primary_mac_addr(struct enetc_pf *pf,
627 						int vf_id)
628 {
629 	struct enetc_vf_state *vf_state = &pf->vf_state[vf_id];
630 	struct enetc_msg_swbd *msg = &pf->rxmsg[vf_id];
631 	struct enetc_msg_cmd_set_primary_mac *cmd;
632 	struct device *dev = &pf->si->pdev->dev;
633 	u16 cmd_id;
634 	char *addr;
635 
636 	cmd = (struct enetc_msg_cmd_set_primary_mac *)msg->vaddr;
637 	cmd_id = cmd->header.id;
638 	if (cmd_id != ENETC_MSG_CMD_MNG_ADD)
639 		return ENETC_MSG_CMD_STATUS_FAIL;
640 
641 	addr = cmd->mac.sa_data;
642 	if (vf_state->flags & ENETC_VF_FLAG_PF_SET_MAC)
643 		dev_warn(dev, "Attempt to override PF set mac addr for VF%d\n",
644 			 vf_id);
645 	else
646 		enetc_pf_set_primary_mac_addr(&pf->si->hw, vf_id + 1, addr);
647 
648 	return ENETC_MSG_CMD_STATUS_OK;
649 }
650 
651 void enetc_msg_handle_rxmsg(struct enetc_pf *pf, int vf_id, u16 *status)
652 {
653 	struct enetc_msg_swbd *msg = &pf->rxmsg[vf_id];
654 	struct device *dev = &pf->si->pdev->dev;
655 	struct enetc_msg_cmd_header *cmd_hdr;
656 	u16 cmd_type;
657 
658 	*status = ENETC_MSG_CMD_STATUS_OK;
659 	cmd_hdr = (struct enetc_msg_cmd_header *)msg->vaddr;
660 	cmd_type = cmd_hdr->type;
661 
662 	switch (cmd_type) {
663 	case ENETC_MSG_CMD_MNG_MAC:
664 		*status = enetc_msg_pf_set_vf_primary_mac_addr(pf, vf_id);
665 		break;
666 	default:
667 		dev_err(dev, "command not supported (cmd_type: 0x%x)\n",
668 			cmd_type);
669 	}
670 }
671 
672 #ifdef CONFIG_PCI_IOV
673 static int enetc_sriov_configure(struct pci_dev *pdev, int num_vfs)
674 {
675 	struct enetc_si *si = pci_get_drvdata(pdev);
676 	struct enetc_pf *pf = enetc_si_priv(si);
677 	int err;
678 
679 	if (!num_vfs) {
680 		enetc_msg_psi_free(pf);
681 		kfree(pf->vf_state);
682 		pf->num_vfs = 0;
683 		pci_disable_sriov(pdev);
684 	} else {
685 		pf->num_vfs = num_vfs;
686 
687 		pf->vf_state = kcalloc(num_vfs, sizeof(struct enetc_vf_state),
688 				       GFP_KERNEL);
689 		if (!pf->vf_state) {
690 			pf->num_vfs = 0;
691 			return -ENOMEM;
692 		}
693 
694 		err = enetc_msg_psi_init(pf);
695 		if (err) {
696 			dev_err(&pdev->dev, "enetc_msg_psi_init (%d)\n", err);
697 			goto err_msg_psi;
698 		}
699 
700 		err = pci_enable_sriov(pdev, num_vfs);
701 		if (err) {
702 			dev_err(&pdev->dev, "pci_enable_sriov err %d\n", err);
703 			goto err_en_sriov;
704 		}
705 	}
706 
707 	return num_vfs;
708 
709 err_en_sriov:
710 	enetc_msg_psi_free(pf);
711 err_msg_psi:
712 	kfree(pf->vf_state);
713 	pf->num_vfs = 0;
714 
715 	return err;
716 }
717 #else
718 #define enetc_sriov_configure(pdev, num_vfs)	(void)0
719 #endif
720 
721 static int enetc_pf_set_features(struct net_device *ndev,
722 				 netdev_features_t features)
723 {
724 	netdev_features_t changed = ndev->features ^ features;
725 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
726 	int err;
727 
728 	if (changed & NETIF_F_HW_TC) {
729 		err = enetc_set_psfp(ndev, !!(features & NETIF_F_HW_TC));
730 		if (err)
731 			return err;
732 	}
733 
734 	if (changed & NETIF_F_HW_VLAN_CTAG_FILTER) {
735 		struct enetc_pf *pf = enetc_si_priv(priv->si);
736 
737 		if (!!(features & NETIF_F_HW_VLAN_CTAG_FILTER))
738 			enetc_disable_si_vlan_promisc(pf, 0);
739 		else
740 			enetc_enable_si_vlan_promisc(pf, 0);
741 	}
742 
743 	if (changed & NETIF_F_LOOPBACK)
744 		enetc_set_loopback(ndev, !!(features & NETIF_F_LOOPBACK));
745 
746 	enetc_set_features(ndev, features);
747 
748 	return 0;
749 }
750 
751 static int enetc_pf_setup_tc(struct net_device *ndev, enum tc_setup_type type,
752 			     void *type_data)
753 {
754 	switch (type) {
755 	case TC_QUERY_CAPS:
756 		return enetc_qos_query_caps(ndev, type_data);
757 	case TC_SETUP_QDISC_MQPRIO:
758 		return enetc_setup_tc_mqprio(ndev, type_data);
759 	case TC_SETUP_QDISC_TAPRIO:
760 		return enetc_setup_tc_taprio(ndev, type_data);
761 	case TC_SETUP_QDISC_CBS:
762 		return enetc_setup_tc_cbs(ndev, type_data);
763 	case TC_SETUP_QDISC_ETF:
764 		return enetc_setup_tc_txtime(ndev, type_data);
765 	case TC_SETUP_BLOCK:
766 		return enetc_setup_tc_psfp(ndev, type_data);
767 	default:
768 		return -EOPNOTSUPP;
769 	}
770 }
771 
772 static const struct net_device_ops enetc_ndev_ops = {
773 	.ndo_open		= enetc_open,
774 	.ndo_stop		= enetc_close,
775 	.ndo_start_xmit		= enetc_xmit,
776 	.ndo_get_stats		= enetc_get_stats,
777 	.ndo_set_mac_address	= enetc_pf_set_mac_addr,
778 	.ndo_set_rx_mode	= enetc_pf_set_rx_mode,
779 	.ndo_vlan_rx_add_vid	= enetc_vlan_rx_add_vid,
780 	.ndo_vlan_rx_kill_vid	= enetc_vlan_rx_del_vid,
781 	.ndo_set_vf_mac		= enetc_pf_set_vf_mac,
782 	.ndo_set_vf_vlan	= enetc_pf_set_vf_vlan,
783 	.ndo_set_vf_spoofchk	= enetc_pf_set_vf_spoofchk,
784 	.ndo_set_features	= enetc_pf_set_features,
785 	.ndo_eth_ioctl		= enetc_ioctl,
786 	.ndo_setup_tc		= enetc_pf_setup_tc,
787 	.ndo_bpf		= enetc_setup_bpf,
788 	.ndo_xdp_xmit		= enetc_xdp_xmit,
789 };
790 
791 static void enetc_pf_netdev_setup(struct enetc_si *si, struct net_device *ndev,
792 				  const struct net_device_ops *ndev_ops)
793 {
794 	struct enetc_ndev_priv *priv = netdev_priv(ndev);
795 
796 	SET_NETDEV_DEV(ndev, &si->pdev->dev);
797 	priv->ndev = ndev;
798 	priv->si = si;
799 	priv->dev = &si->pdev->dev;
800 	si->ndev = ndev;
801 
802 	priv->msg_enable = (NETIF_MSG_WOL << 1) - 1;
803 	ndev->netdev_ops = ndev_ops;
804 	enetc_set_ethtool_ops(ndev);
805 	ndev->watchdog_timeo = 5 * HZ;
806 	ndev->max_mtu = ENETC_MAX_MTU;
807 
808 	ndev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
809 			    NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX |
810 			    NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_LOOPBACK |
811 			    NETIF_F_HW_CSUM | NETIF_F_TSO | NETIF_F_TSO6;
812 	ndev->features = NETIF_F_HIGHDMA | NETIF_F_SG | NETIF_F_RXCSUM |
813 			 NETIF_F_HW_VLAN_CTAG_TX |
814 			 NETIF_F_HW_VLAN_CTAG_RX |
815 			 NETIF_F_HW_CSUM | NETIF_F_TSO | NETIF_F_TSO6;
816 	ndev->vlan_features = NETIF_F_SG | NETIF_F_HW_CSUM |
817 			      NETIF_F_TSO | NETIF_F_TSO6;
818 
819 	if (si->num_rss)
820 		ndev->hw_features |= NETIF_F_RXHASH;
821 
822 	ndev->priv_flags |= IFF_UNICAST_FLT;
823 
824 	if (si->hw_features & ENETC_SI_F_PSFP && !enetc_psfp_enable(priv)) {
825 		priv->active_offloads |= ENETC_F_QCI;
826 		ndev->features |= NETIF_F_HW_TC;
827 		ndev->hw_features |= NETIF_F_HW_TC;
828 	}
829 
830 	/* pick up primary MAC address from SI */
831 	enetc_load_primary_mac_addr(&si->hw, ndev);
832 }
833 
834 static int enetc_mdio_probe(struct enetc_pf *pf, struct device_node *np)
835 {
836 	struct device *dev = &pf->si->pdev->dev;
837 	struct enetc_mdio_priv *mdio_priv;
838 	struct mii_bus *bus;
839 	int err;
840 
841 	bus = devm_mdiobus_alloc_size(dev, sizeof(*mdio_priv));
842 	if (!bus)
843 		return -ENOMEM;
844 
845 	bus->name = "Freescale ENETC MDIO Bus";
846 	bus->read = enetc_mdio_read_c22;
847 	bus->write = enetc_mdio_write_c22;
848 	bus->read_c45 = enetc_mdio_read_c45;
849 	bus->write_c45 = enetc_mdio_write_c45;
850 	bus->parent = dev;
851 	mdio_priv = bus->priv;
852 	mdio_priv->hw = &pf->si->hw;
853 	mdio_priv->mdio_base = ENETC_EMDIO_BASE;
854 	snprintf(bus->id, MII_BUS_ID_SIZE, "%s", dev_name(dev));
855 
856 	err = of_mdiobus_register(bus, np);
857 	if (err)
858 		return dev_err_probe(dev, err, "cannot register MDIO bus\n");
859 
860 	pf->mdio = bus;
861 
862 	return 0;
863 }
864 
865 static void enetc_mdio_remove(struct enetc_pf *pf)
866 {
867 	if (pf->mdio)
868 		mdiobus_unregister(pf->mdio);
869 }
870 
871 static int enetc_imdio_create(struct enetc_pf *pf)
872 {
873 	struct device *dev = &pf->si->pdev->dev;
874 	struct enetc_mdio_priv *mdio_priv;
875 	struct phylink_pcs *phylink_pcs;
876 	struct mdio_device *mdio_device;
877 	struct mii_bus *bus;
878 	int err;
879 
880 	bus = mdiobus_alloc_size(sizeof(*mdio_priv));
881 	if (!bus)
882 		return -ENOMEM;
883 
884 	bus->name = "Freescale ENETC internal MDIO Bus";
885 	bus->read = enetc_mdio_read_c22;
886 	bus->write = enetc_mdio_write_c22;
887 	bus->read_c45 = enetc_mdio_read_c45;
888 	bus->write_c45 = enetc_mdio_write_c45;
889 	bus->parent = dev;
890 	bus->phy_mask = ~0;
891 	mdio_priv = bus->priv;
892 	mdio_priv->hw = &pf->si->hw;
893 	mdio_priv->mdio_base = ENETC_PM_IMDIO_BASE;
894 	snprintf(bus->id, MII_BUS_ID_SIZE, "%s-imdio", dev_name(dev));
895 
896 	err = mdiobus_register(bus);
897 	if (err) {
898 		dev_err(dev, "cannot register internal MDIO bus (%d)\n", err);
899 		goto free_mdio_bus;
900 	}
901 
902 	mdio_device = mdio_device_create(bus, 0);
903 	if (IS_ERR(mdio_device)) {
904 		err = PTR_ERR(mdio_device);
905 		dev_err(dev, "cannot create mdio device (%d)\n", err);
906 		goto unregister_mdiobus;
907 	}
908 
909 	phylink_pcs = lynx_pcs_create(mdio_device);
910 	if (!phylink_pcs) {
911 		mdio_device_free(mdio_device);
912 		err = -ENOMEM;
913 		dev_err(dev, "cannot create lynx pcs (%d)\n", err);
914 		goto unregister_mdiobus;
915 	}
916 
917 	pf->imdio = bus;
918 	pf->pcs = phylink_pcs;
919 
920 	return 0;
921 
922 unregister_mdiobus:
923 	mdiobus_unregister(bus);
924 free_mdio_bus:
925 	mdiobus_free(bus);
926 	return err;
927 }
928 
929 static void enetc_imdio_remove(struct enetc_pf *pf)
930 {
931 	struct mdio_device *mdio_device;
932 
933 	if (pf->pcs) {
934 		mdio_device = lynx_get_mdio_device(pf->pcs);
935 		mdio_device_free(mdio_device);
936 		lynx_pcs_destroy(pf->pcs);
937 	}
938 	if (pf->imdio) {
939 		mdiobus_unregister(pf->imdio);
940 		mdiobus_free(pf->imdio);
941 	}
942 }
943 
944 static bool enetc_port_has_pcs(struct enetc_pf *pf)
945 {
946 	return (pf->if_mode == PHY_INTERFACE_MODE_SGMII ||
947 		pf->if_mode == PHY_INTERFACE_MODE_2500BASEX ||
948 		pf->if_mode == PHY_INTERFACE_MODE_USXGMII);
949 }
950 
951 static int enetc_mdiobus_create(struct enetc_pf *pf, struct device_node *node)
952 {
953 	struct device_node *mdio_np;
954 	int err;
955 
956 	mdio_np = of_get_child_by_name(node, "mdio");
957 	if (mdio_np) {
958 		err = enetc_mdio_probe(pf, mdio_np);
959 
960 		of_node_put(mdio_np);
961 		if (err)
962 			return err;
963 	}
964 
965 	if (enetc_port_has_pcs(pf)) {
966 		err = enetc_imdio_create(pf);
967 		if (err) {
968 			enetc_mdio_remove(pf);
969 			return err;
970 		}
971 	}
972 
973 	return 0;
974 }
975 
976 static void enetc_mdiobus_destroy(struct enetc_pf *pf)
977 {
978 	enetc_mdio_remove(pf);
979 	enetc_imdio_remove(pf);
980 }
981 
982 static struct phylink_pcs *
983 enetc_pl_mac_select_pcs(struct phylink_config *config, phy_interface_t iface)
984 {
985 	struct enetc_pf *pf = phylink_to_enetc_pf(config);
986 
987 	return pf->pcs;
988 }
989 
990 static void enetc_pl_mac_config(struct phylink_config *config,
991 				unsigned int mode,
992 				const struct phylink_link_state *state)
993 {
994 	struct enetc_pf *pf = phylink_to_enetc_pf(config);
995 
996 	enetc_mac_config(pf->si, state->interface);
997 }
998 
999 static void enetc_force_rgmii_mac(struct enetc_si *si, int speed, int duplex)
1000 {
1001 	u32 old_val, val;
1002 
1003 	old_val = val = enetc_port_mac_rd(si, ENETC_PM0_IF_MODE);
1004 
1005 	if (speed == SPEED_1000) {
1006 		val &= ~ENETC_PM0_IFM_SSP_MASK;
1007 		val |= ENETC_PM0_IFM_SSP_1000;
1008 	} else if (speed == SPEED_100) {
1009 		val &= ~ENETC_PM0_IFM_SSP_MASK;
1010 		val |= ENETC_PM0_IFM_SSP_100;
1011 	} else if (speed == SPEED_10) {
1012 		val &= ~ENETC_PM0_IFM_SSP_MASK;
1013 		val |= ENETC_PM0_IFM_SSP_10;
1014 	}
1015 
1016 	if (duplex == DUPLEX_FULL)
1017 		val |= ENETC_PM0_IFM_FULL_DPX;
1018 	else
1019 		val &= ~ENETC_PM0_IFM_FULL_DPX;
1020 
1021 	if (val == old_val)
1022 		return;
1023 
1024 	enetc_port_mac_wr(si, ENETC_PM0_IF_MODE, val);
1025 }
1026 
1027 static void enetc_pl_mac_link_up(struct phylink_config *config,
1028 				 struct phy_device *phy, unsigned int mode,
1029 				 phy_interface_t interface, int speed,
1030 				 int duplex, bool tx_pause, bool rx_pause)
1031 {
1032 	struct enetc_pf *pf = phylink_to_enetc_pf(config);
1033 	u32 pause_off_thresh = 0, pause_on_thresh = 0;
1034 	u32 init_quanta = 0, refresh_quanta = 0;
1035 	struct enetc_hw *hw = &pf->si->hw;
1036 	struct enetc_si *si = pf->si;
1037 	struct enetc_ndev_priv *priv;
1038 	u32 rbmr, cmd_cfg;
1039 	int idx;
1040 
1041 	priv = netdev_priv(pf->si->ndev);
1042 
1043 	if (pf->si->hw_features & ENETC_SI_F_QBV)
1044 		enetc_sched_speed_set(priv, speed);
1045 
1046 	if (!phylink_autoneg_inband(mode) &&
1047 	    phy_interface_mode_is_rgmii(interface))
1048 		enetc_force_rgmii_mac(si, speed, duplex);
1049 
1050 	/* Flow control */
1051 	for (idx = 0; idx < priv->num_rx_rings; idx++) {
1052 		rbmr = enetc_rxbdr_rd(hw, idx, ENETC_RBMR);
1053 
1054 		if (tx_pause)
1055 			rbmr |= ENETC_RBMR_CM;
1056 		else
1057 			rbmr &= ~ENETC_RBMR_CM;
1058 
1059 		enetc_rxbdr_wr(hw, idx, ENETC_RBMR, rbmr);
1060 	}
1061 
1062 	if (tx_pause) {
1063 		/* When the port first enters congestion, send a PAUSE request
1064 		 * with the maximum number of quanta. When the port exits
1065 		 * congestion, it will automatically send a PAUSE frame with
1066 		 * zero quanta.
1067 		 */
1068 		init_quanta = 0xffff;
1069 
1070 		/* Also, set up the refresh timer to send follow-up PAUSE
1071 		 * frames at half the quanta value, in case the congestion
1072 		 * condition persists.
1073 		 */
1074 		refresh_quanta = 0xffff / 2;
1075 
1076 		/* Start emitting PAUSE frames when 3 large frames (or more
1077 		 * smaller frames) have accumulated in the FIFO waiting to be
1078 		 * DMAed to the RX ring.
1079 		 */
1080 		pause_on_thresh = 3 * ENETC_MAC_MAXFRM_SIZE;
1081 		pause_off_thresh = 1 * ENETC_MAC_MAXFRM_SIZE;
1082 	}
1083 
1084 	enetc_port_mac_wr(si, ENETC_PM0_PAUSE_QUANTA, init_quanta);
1085 	enetc_port_mac_wr(si, ENETC_PM0_PAUSE_THRESH, refresh_quanta);
1086 	enetc_port_wr(hw, ENETC_PPAUONTR, pause_on_thresh);
1087 	enetc_port_wr(hw, ENETC_PPAUOFFTR, pause_off_thresh);
1088 
1089 	cmd_cfg = enetc_port_mac_rd(si, ENETC_PM0_CMD_CFG);
1090 
1091 	if (rx_pause)
1092 		cmd_cfg &= ~ENETC_PM0_PAUSE_IGN;
1093 	else
1094 		cmd_cfg |= ENETC_PM0_PAUSE_IGN;
1095 
1096 	enetc_port_mac_wr(si, ENETC_PM0_CMD_CFG, cmd_cfg);
1097 
1098 	enetc_mac_enable(si, true);
1099 }
1100 
1101 static void enetc_pl_mac_link_down(struct phylink_config *config,
1102 				   unsigned int mode,
1103 				   phy_interface_t interface)
1104 {
1105 	struct enetc_pf *pf = phylink_to_enetc_pf(config);
1106 
1107 	enetc_mac_enable(pf->si, false);
1108 }
1109 
1110 static const struct phylink_mac_ops enetc_mac_phylink_ops = {
1111 	.mac_select_pcs = enetc_pl_mac_select_pcs,
1112 	.mac_config = enetc_pl_mac_config,
1113 	.mac_link_up = enetc_pl_mac_link_up,
1114 	.mac_link_down = enetc_pl_mac_link_down,
1115 };
1116 
1117 static int enetc_phylink_create(struct enetc_ndev_priv *priv,
1118 				struct device_node *node)
1119 {
1120 	struct enetc_pf *pf = enetc_si_priv(priv->si);
1121 	struct phylink *phylink;
1122 	int err;
1123 
1124 	pf->phylink_config.dev = &priv->ndev->dev;
1125 	pf->phylink_config.type = PHYLINK_NETDEV;
1126 	pf->phylink_config.mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE |
1127 		MAC_10 | MAC_100 | MAC_1000 | MAC_2500FD;
1128 
1129 	__set_bit(PHY_INTERFACE_MODE_INTERNAL,
1130 		  pf->phylink_config.supported_interfaces);
1131 	__set_bit(PHY_INTERFACE_MODE_SGMII,
1132 		  pf->phylink_config.supported_interfaces);
1133 	__set_bit(PHY_INTERFACE_MODE_2500BASEX,
1134 		  pf->phylink_config.supported_interfaces);
1135 	__set_bit(PHY_INTERFACE_MODE_USXGMII,
1136 		  pf->phylink_config.supported_interfaces);
1137 	phy_interface_set_rgmii(pf->phylink_config.supported_interfaces);
1138 
1139 	phylink = phylink_create(&pf->phylink_config, of_fwnode_handle(node),
1140 				 pf->if_mode, &enetc_mac_phylink_ops);
1141 	if (IS_ERR(phylink)) {
1142 		err = PTR_ERR(phylink);
1143 		return err;
1144 	}
1145 
1146 	priv->phylink = phylink;
1147 
1148 	return 0;
1149 }
1150 
1151 static void enetc_phylink_destroy(struct enetc_ndev_priv *priv)
1152 {
1153 	phylink_destroy(priv->phylink);
1154 }
1155 
1156 /* Initialize the entire shared memory for the flow steering entries
1157  * of this port (PF + VFs)
1158  */
1159 static int enetc_init_port_rfs_memory(struct enetc_si *si)
1160 {
1161 	struct enetc_cmd_rfse rfse = {0};
1162 	struct enetc_hw *hw = &si->hw;
1163 	int num_rfs, i, err = 0;
1164 	u32 val;
1165 
1166 	val = enetc_port_rd(hw, ENETC_PRFSCAPR);
1167 	num_rfs = ENETC_PRFSCAPR_GET_NUM_RFS(val);
1168 
1169 	for (i = 0; i < num_rfs; i++) {
1170 		err = enetc_set_fs_entry(si, &rfse, i);
1171 		if (err)
1172 			break;
1173 	}
1174 
1175 	return err;
1176 }
1177 
1178 static int enetc_init_port_rss_memory(struct enetc_si *si)
1179 {
1180 	struct enetc_hw *hw = &si->hw;
1181 	int num_rss, err;
1182 	int *rss_table;
1183 	u32 val;
1184 
1185 	val = enetc_port_rd(hw, ENETC_PRSSCAPR);
1186 	num_rss = ENETC_PRSSCAPR_GET_NUM_RSS(val);
1187 	if (!num_rss)
1188 		return 0;
1189 
1190 	rss_table = kcalloc(num_rss, sizeof(*rss_table), GFP_KERNEL);
1191 	if (!rss_table)
1192 		return -ENOMEM;
1193 
1194 	err = enetc_set_rss_table(si, rss_table, num_rss);
1195 
1196 	kfree(rss_table);
1197 
1198 	return err;
1199 }
1200 
1201 static int enetc_pf_register_with_ierb(struct pci_dev *pdev)
1202 {
1203 	struct device_node *node = pdev->dev.of_node;
1204 	struct platform_device *ierb_pdev;
1205 	struct device_node *ierb_node;
1206 
1207 	/* Don't register with the IERB if the PF itself is disabled */
1208 	if (!node || !of_device_is_available(node))
1209 		return 0;
1210 
1211 	ierb_node = of_find_compatible_node(NULL, NULL,
1212 					    "fsl,ls1028a-enetc-ierb");
1213 	if (!ierb_node || !of_device_is_available(ierb_node))
1214 		return -ENODEV;
1215 
1216 	ierb_pdev = of_find_device_by_node(ierb_node);
1217 	of_node_put(ierb_node);
1218 
1219 	if (!ierb_pdev)
1220 		return -EPROBE_DEFER;
1221 
1222 	return enetc_ierb_register_pf(ierb_pdev, pdev);
1223 }
1224 
1225 static int enetc_pf_probe(struct pci_dev *pdev,
1226 			  const struct pci_device_id *ent)
1227 {
1228 	struct device_node *node = pdev->dev.of_node;
1229 	struct enetc_ndev_priv *priv;
1230 	struct net_device *ndev;
1231 	struct enetc_si *si;
1232 	struct enetc_pf *pf;
1233 	int err;
1234 
1235 	err = enetc_pf_register_with_ierb(pdev);
1236 	if (err == -EPROBE_DEFER)
1237 		return err;
1238 	if (err)
1239 		dev_warn(&pdev->dev,
1240 			 "Could not register with IERB driver: %pe, please update the device tree\n",
1241 			 ERR_PTR(err));
1242 
1243 	err = enetc_pci_probe(pdev, KBUILD_MODNAME, sizeof(*pf));
1244 	if (err)
1245 		return dev_err_probe(&pdev->dev, err, "PCI probing failed\n");
1246 
1247 	si = pci_get_drvdata(pdev);
1248 	if (!si->hw.port || !si->hw.global) {
1249 		err = -ENODEV;
1250 		dev_err(&pdev->dev, "could not map PF space, probing a VF?\n");
1251 		goto err_map_pf_space;
1252 	}
1253 
1254 	err = enetc_setup_cbdr(&pdev->dev, &si->hw, ENETC_CBDR_DEFAULT_SIZE,
1255 			       &si->cbd_ring);
1256 	if (err)
1257 		goto err_setup_cbdr;
1258 
1259 	err = enetc_init_port_rfs_memory(si);
1260 	if (err) {
1261 		dev_err(&pdev->dev, "Failed to initialize RFS memory\n");
1262 		goto err_init_port_rfs;
1263 	}
1264 
1265 	err = enetc_init_port_rss_memory(si);
1266 	if (err) {
1267 		dev_err(&pdev->dev, "Failed to initialize RSS memory\n");
1268 		goto err_init_port_rss;
1269 	}
1270 
1271 	if (node && !of_device_is_available(node)) {
1272 		dev_info(&pdev->dev, "device is disabled, skipping\n");
1273 		err = -ENODEV;
1274 		goto err_device_disabled;
1275 	}
1276 
1277 	pf = enetc_si_priv(si);
1278 	pf->si = si;
1279 	pf->total_vfs = pci_sriov_get_totalvfs(pdev);
1280 
1281 	err = enetc_setup_mac_addresses(node, pf);
1282 	if (err)
1283 		goto err_setup_mac_addresses;
1284 
1285 	enetc_configure_port(pf);
1286 
1287 	enetc_get_si_caps(si);
1288 
1289 	ndev = alloc_etherdev_mq(sizeof(*priv), ENETC_MAX_NUM_TXQS);
1290 	if (!ndev) {
1291 		err = -ENOMEM;
1292 		dev_err(&pdev->dev, "netdev creation failed\n");
1293 		goto err_alloc_netdev;
1294 	}
1295 
1296 	enetc_pf_netdev_setup(si, ndev, &enetc_ndev_ops);
1297 
1298 	priv = netdev_priv(ndev);
1299 
1300 	enetc_init_si_rings_params(priv);
1301 
1302 	err = enetc_alloc_si_resources(priv);
1303 	if (err) {
1304 		dev_err(&pdev->dev, "SI resource alloc failed\n");
1305 		goto err_alloc_si_res;
1306 	}
1307 
1308 	err = enetc_configure_si(priv);
1309 	if (err) {
1310 		dev_err(&pdev->dev, "Failed to configure SI\n");
1311 		goto err_config_si;
1312 	}
1313 
1314 	err = enetc_alloc_msix(priv);
1315 	if (err) {
1316 		dev_err(&pdev->dev, "MSIX alloc failed\n");
1317 		goto err_alloc_msix;
1318 	}
1319 
1320 	err = of_get_phy_mode(node, &pf->if_mode);
1321 	if (err) {
1322 		dev_err(&pdev->dev, "Failed to read PHY mode\n");
1323 		goto err_phy_mode;
1324 	}
1325 
1326 	err = enetc_mdiobus_create(pf, node);
1327 	if (err)
1328 		goto err_mdiobus_create;
1329 
1330 	err = enetc_phylink_create(priv, node);
1331 	if (err)
1332 		goto err_phylink_create;
1333 
1334 	err = register_netdev(ndev);
1335 	if (err)
1336 		goto err_reg_netdev;
1337 
1338 	return 0;
1339 
1340 err_reg_netdev:
1341 	enetc_phylink_destroy(priv);
1342 err_phylink_create:
1343 	enetc_mdiobus_destroy(pf);
1344 err_mdiobus_create:
1345 err_phy_mode:
1346 	enetc_free_msix(priv);
1347 err_config_si:
1348 err_alloc_msix:
1349 	enetc_free_si_resources(priv);
1350 err_alloc_si_res:
1351 	si->ndev = NULL;
1352 	free_netdev(ndev);
1353 err_alloc_netdev:
1354 err_init_port_rss:
1355 err_init_port_rfs:
1356 err_device_disabled:
1357 err_setup_mac_addresses:
1358 	enetc_teardown_cbdr(&si->cbd_ring);
1359 err_setup_cbdr:
1360 err_map_pf_space:
1361 	enetc_pci_remove(pdev);
1362 
1363 	return err;
1364 }
1365 
1366 static void enetc_pf_remove(struct pci_dev *pdev)
1367 {
1368 	struct enetc_si *si = pci_get_drvdata(pdev);
1369 	struct enetc_pf *pf = enetc_si_priv(si);
1370 	struct enetc_ndev_priv *priv;
1371 
1372 	priv = netdev_priv(si->ndev);
1373 
1374 	if (pf->num_vfs)
1375 		enetc_sriov_configure(pdev, 0);
1376 
1377 	unregister_netdev(si->ndev);
1378 
1379 	enetc_phylink_destroy(priv);
1380 	enetc_mdiobus_destroy(pf);
1381 
1382 	enetc_free_msix(priv);
1383 
1384 	enetc_free_si_resources(priv);
1385 	enetc_teardown_cbdr(&si->cbd_ring);
1386 
1387 	free_netdev(si->ndev);
1388 
1389 	enetc_pci_remove(pdev);
1390 }
1391 
1392 static const struct pci_device_id enetc_pf_id_table[] = {
1393 	{ PCI_DEVICE(PCI_VENDOR_ID_FREESCALE, ENETC_DEV_ID_PF) },
1394 	{ 0, } /* End of table. */
1395 };
1396 MODULE_DEVICE_TABLE(pci, enetc_pf_id_table);
1397 
1398 static struct pci_driver enetc_pf_driver = {
1399 	.name = KBUILD_MODNAME,
1400 	.id_table = enetc_pf_id_table,
1401 	.probe = enetc_pf_probe,
1402 	.remove = enetc_pf_remove,
1403 #ifdef CONFIG_PCI_IOV
1404 	.sriov_configure = enetc_sriov_configure,
1405 #endif
1406 };
1407 module_pci_driver(enetc_pf_driver);
1408 
1409 MODULE_DESCRIPTION(ENETC_DRV_NAME_STR);
1410 MODULE_LICENSE("Dual BSD/GPL");
1411