1 --- a/drivers/net/ethernet/mediatek/Kconfig
2 +++ b/drivers/net/ethernet/mediatek/Kconfig
3 @@ -15,4 +15,8 @@ config NET_MEDIATEK_SOC
4 This driver supports the gigabit ethernet MACs in the
7 +config NET_MEDIATEK_OFFLOAD
8 + def_bool NET_MEDIATEK_SOC
9 + depends on NET_MEDIATEK_SOC
11 endif #NET_VENDOR_MEDIATEK
12 --- a/drivers/net/ethernet/mediatek/Makefile
13 +++ b/drivers/net/ethernet/mediatek/Makefile
16 obj-$(CONFIG_NET_MEDIATEK_SOC) += mtk_eth.o
17 mtk_eth-y := mtk_eth_soc.o mtk_sgmii.o mtk_eth_path.o
18 +mtk_eth-$(CONFIG_NET_MEDIATEK_OFFLOAD) += mtk_offload.o mtk_debugfs.o
20 +++ b/drivers/net/ethernet/mediatek/mtk_debugfs.c
22 +/* This program is free software; you can redistribute it and/or modify
23 + * it under the terms of the GNU General Public License as published by
24 + * the Free Software Foundation; version 2 of the License
26 + * This program is distributed in the hope that it will be useful,
27 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 + * GNU General Public License for more details.
31 + * Copyright (C) 2014-2016 Sean Wang <sean.wang@mediatek.com>
32 + * Copyright (C) 2016-2017 John Crispin <blogic@openwrt.org>
35 +#include "mtk_offload.h"
37 +static const char *mtk_foe_entry_state_str[] = {
44 +static const char *mtk_foe_packet_type_str[] = {
56 +#define IS_IPV4_HNAPT(x) (((x)->bfib1.pkt_type == IPV4_HNAPT) ? 1: 0)
57 +struct mtk_eth *_eth;
58 +#define es(entry) (mtk_foe_entry_state_str[entry->bfib1.state])
59 +//#define ei(entry, end) (MTK_PPE_TBL_SZ - (int)(end - entry))
60 +#define ei(entry, end) (MTK_PPE_ENTRY_CNT - (int)(end - entry))
61 +#define pt(entry) (mtk_foe_packet_type_str[entry->ipv4_hnapt.bfib1.pkt_type])
63 +static int mtk_ppe_debugfs_foe_show(struct seq_file *m, void *private)
65 + struct mtk_eth *eth = _eth;
66 + struct mtk_foe_entry *entry, *end;
69 + entry = eth->foe_table;
70 + end = eth->foe_table + MTK_PPE_ENTRY_CNT;
72 + while (entry < end) {
73 + if (!entry->bfib1.state) {
75 + } else if (IS_IPV4_HNAPT(entry)) {
76 + __be32 saddr = htonl(entry->ipv4_hnapt.sip);
77 + __be32 daddr = htonl(entry->ipv4_hnapt.dip);
78 + __be32 nsaddr = htonl(entry->ipv4_hnapt.new_sip);
79 + __be32 ndaddr = htonl(entry->ipv4_hnapt.new_dip);
80 + unsigned char h_dest[ETH_ALEN];
81 + unsigned char h_source[ETH_ALEN];
83 + *((u32*) h_source) = swab32(entry->ipv4_hnapt.smac_hi);
84 + *((u16*) &h_source[4]) = swab16(entry->ipv4_hnapt.smac_lo);
85 + *((u32*) h_dest) = swab32(entry->ipv4_hnapt.dmac_hi);
86 + *((u16*) &h_dest[4]) = swab16(entry->ipv4_hnapt.dmac_lo);
88 + "(%x)0x%05x|state=%s|type=%s|"
89 + "%pI4:%d->%pI4:%d=>%pI4:%d->%pI4:%d|%pM=>%pM|"
90 + "etype=0x%04x|info1=0x%x|info2=0x%x|"
91 + "vlan1=%d|vlan2=%d\n",
93 + ei(entry, end), es(entry), pt(entry),
94 + &saddr, entry->ipv4_hnapt.sport,
95 + &daddr, entry->ipv4_hnapt.dport,
96 + &nsaddr, entry->ipv4_hnapt.new_sport,
97 + &ndaddr, entry->ipv4_hnapt.new_dport, h_source,
98 + h_dest, ntohs(entry->ipv4_hnapt.etype),
99 + entry->ipv4_hnapt.info_blk1,
100 + entry->ipv4_hnapt.info_blk2,
101 + entry->ipv4_hnapt.vlan1,
102 + entry->ipv4_hnapt.vlan2);
104 + seq_printf(m, "0x%05x state=%s\n",
105 + ei(entry, end), es(entry));
113 +static int mtk_ppe_debugfs_foe_open(struct inode *inode, struct file *file)
115 + return single_open(file, mtk_ppe_debugfs_foe_show, file->private_data);
118 +static const struct file_operations mtk_ppe_debugfs_foe_fops = {
119 + .open = mtk_ppe_debugfs_foe_open,
121 + .llseek = seq_lseek,
122 + .release = single_release,
125 +int mtk_ppe_debugfs_init(struct mtk_eth *eth)
127 + struct dentry *root;
131 + root = debugfs_create_dir("mtk_ppe", NULL);
135 + debugfs_create_file("all_entry", S_IRUGO, root, eth, &mtk_ppe_debugfs_foe_fops);
139 --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
140 +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
142 #include <linux/interrupt.h>
143 #include <linux/pinctrl/devinfo.h>
144 #include <linux/phylink.h>
145 +#include <linux/netfilter.h>
146 +#include <net/netfilter/nf_flow_table.h>
148 #include "mtk_eth_soc.h"
150 @@ -1320,8 +1322,16 @@ static int mtk_poll_rx(struct napi_struc
151 (trxd.rxd2 & RX_DMA_VTAG))
152 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
153 RX_DMA_VID(trxd.rxd3));
154 - skb_record_rx_queue(skb, 0);
155 - napi_gro_receive(napi, skb);
156 +#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
157 + if (mtk_offload_check_rx(eth, skb, trxd.rxd4) == 0) {
159 + skb_record_rx_queue(skb, 0);
160 + napi_gro_receive(napi, skb);
161 +#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
163 + dev_kfree_skb(skb);
168 ring->data[idx] = new_data;
169 @@ -2255,6 +2265,9 @@ static int mtk_open(struct net_device *d
170 mtk_tx_irq_enable(eth, MTK_TX_DONE_INT);
171 mtk_rx_irq_enable(eth, MTK_RX_DONE_INT);
172 refcount_set(ð->dma_refcnt, 1);
173 +#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
174 + mtk_ppe_probe(eth);
178 refcount_inc(ð->dma_refcnt);
179 @@ -2316,6 +2329,9 @@ static int mtk_stop(struct net_device *d
183 +#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
184 + mtk_ppe_remove(eth);
189 @@ -2829,6 +2845,27 @@ static int mtk_set_rxnfc(struct net_devi
193 +#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
195 +mtk_flow_offload(enum flow_offload_type type, struct flow_offload *flow,
196 + struct flow_offload_hw_path *src,
197 + struct flow_offload_hw_path *dest)
199 + struct mtk_mac *mac = netdev_priv(src->dev);
200 + struct mtk_eth *eth = mac->hw;
202 + if (!eth->soc->offload_version)
205 + if (src->dev->base_addr != dest->dev->base_addr)
208 + mac = netdev_priv(src->dev);
210 + return mtk_flow_offload_add(eth, type, flow, src, dest);
214 static const struct ethtool_ops mtk_ethtool_ops = {
215 .get_link_ksettings = mtk_get_link_ksettings,
216 .set_link_ksettings = mtk_set_link_ksettings,
217 @@ -2860,6 +2897,9 @@ static const struct net_device_ops mtk_n
218 #ifdef CONFIG_NET_POLL_CONTROLLER
219 .ndo_poll_controller = mtk_poll_controller,
221 +#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
222 + .ndo_flow_offload = mtk_flow_offload,
226 static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
227 @@ -3202,6 +3242,7 @@ static const struct mtk_soc_data mt7622_
228 .hw_features = MTK_HW_FEATURES,
229 .required_clks = MT7622_CLKS_BITMAP,
230 .required_pctl = false,
231 + .offload_version = MTK_OFFLOAD_V2,
234 static const struct mtk_soc_data mt7623_data = {
235 --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.h
236 +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.h
237 @@ -787,6 +787,13 @@ enum mkt_eth_capabilities {
238 MTK_MUX_U3_GMAC2_TO_QPHY | \
239 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA)
241 +enum mtk_flow_offload_version {
242 + MTK_OFFLOAD_NONE = 0,
248 /* struct mtk_eth_data - This is the structure holding all differences
249 * among various plaforms
250 * @ana_rgc3: The offset for register ANA_RGC3 related to
251 @@ -804,6 +811,7 @@ struct mtk_soc_data {
254 netdev_features_t hw_features;
255 + enum mtk_flow_offload_version offload_version;
258 /* currently no SoC has more than 2 macs */
259 @@ -829,6 +837,23 @@ struct mtk_sgmii {
271 +} __packed __aligned(4);
273 +struct hnat_accounting {
280 /* struct mtk_eth - This is the main datasructure for holding the state
282 * @dev: The device pointer
283 @@ -914,6 +939,16 @@ struct mtk_eth {
284 u32 tx_int_status_reg;
288 + struct reset_control *rst_ppe;
289 + struct mtk_foe_entry *foe_table;
290 + dma_addr_t foe_table_phys;
291 + struct flow_offload __rcu **foe_flow_table;
293 + struct mib_entry *foe_mib_cpu;
294 + dma_addr_t foe_mib_dev;
295 + struct hnat_accounting *acct;
296 + bool per_flow_accounting;
299 /* struct mtk_mac - the structure that holds the info about the MACs of the
300 @@ -946,6 +981,7 @@ void mtk_stats_update_mac(struct mtk_mac
302 void mtk_w32(struct mtk_eth *eth, u32 val, unsigned reg);
303 u32 mtk_r32(struct mtk_eth *eth, unsigned reg);
304 +u32 mtk_m32(struct mtk_eth *eth, u32 mask, u32 set, unsigned reg);
306 int mtk_sgmii_init(struct mtk_sgmii *ss, struct device_node *np,
308 @@ -958,4 +994,13 @@ int mtk_gmac_sgmii_path_setup(struct mtk
309 int mtk_gmac_gephy_path_setup(struct mtk_eth *eth, int mac_id);
310 int mtk_gmac_rgmii_path_setup(struct mtk_eth *eth, int mac_id);
312 +int mtk_ppe_probe(struct mtk_eth *eth);
313 +void mtk_ppe_remove(struct mtk_eth *eth);
314 +int mtk_flow_offload_add(struct mtk_eth *eth,
315 + enum flow_offload_type type,
316 + struct flow_offload *flow,
317 + struct flow_offload_hw_path *src,
318 + struct flow_offload_hw_path *dest);
319 +int mtk_offload_check_rx(struct mtk_eth *eth, struct sk_buff *skb, u32 rxd4);
321 #endif /* MTK_ETH_H */
323 +++ b/drivers/net/ethernet/mediatek/mtk_offload.c
325 +/* This program is free software; you can redistribute it and/or modify
326 + * it under the terms of the GNU General Public License as published by
327 + * the Free Software Foundation; version 2 of the License
329 + * This program is distributed in the hope that it will be useful,
330 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
331 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
332 + * GNU General Public License for more details.
334 + * Copyright (C) 2018 John Crispin <john@phrozen.org>
337 +#include "mtk_offload.h"
344 +#define IPV4_HNAPT 0
348 +mtk_flow_hash_v4(struct flow_offload_tuple *tuple)
350 + u32 ports = ntohs(tuple->src_port) << 16 | ntohs(tuple->dst_port);
351 + u32 src = ntohl(tuple->dst_v4.s_addr);
352 + u32 dst = ntohl(tuple->src_v4.s_addr);
353 + u32 hash = (ports & src) | ((~ports) & dst);
354 + u32 hash_23_0 = hash & 0xffffff;
355 + u32 hash_31_24 = hash & 0xff000000;
357 + hash = ports ^ src ^ dst ^ ((hash_23_0 << 8) | (hash_31_24 >> 24));
358 + hash = ((hash & 0xffff0000) >> 16 ) ^ (hash & 0xfffff);
366 +mtk_foe_prepare_v4(struct mtk_foe_entry *entry,
367 + struct flow_offload_tuple *tuple,
368 + struct flow_offload_tuple *dest_tuple,
369 + struct flow_offload_hw_path *src,
370 + struct flow_offload_hw_path *dest)
372 + int is_mcast = !!is_multicast_ether_addr(dest->eth_dest);
374 + if (tuple->l4proto == IPPROTO_UDP)
375 + entry->ipv4_hnapt.bfib1.udp = 1;
377 + entry->ipv4_hnapt.etype = htons(ETH_P_IP);
378 + entry->ipv4_hnapt.bfib1.pkt_type = IPV4_HNAPT;
379 + entry->ipv4_hnapt.iblk2.fqos = 0;
380 + entry->ipv4_hnapt.bfib1.ttl = 1;
381 + entry->ipv4_hnapt.bfib1.cah = 1;
382 + entry->ipv4_hnapt.bfib1.ka = 1;
383 + entry->ipv4_hnapt.iblk2.mcast = is_mcast;
384 + entry->ipv4_hnapt.iblk2.dscp = 0;
385 + entry->ipv4_hnapt.iblk2.port_mg = 0x3f;
386 + entry->ipv4_hnapt.iblk2.port_ag = 0x1f;
387 +#ifdef CONFIG_NET_MEDIATEK_HW_QOS
388 + entry->ipv4_hnapt.iblk2.qid = 1;
389 + entry->ipv4_hnapt.iblk2.fqos = 1;
391 +#ifdef CONFIG_RALINK
392 + entry->ipv4_hnapt.iblk2.dp = 1;
393 + if ((dest->flags & FLOW_OFFLOAD_PATH_VLAN) && (dest->vlan_id > 1))
394 + entry->ipv4_hnapt.iblk2.qid += 8;
396 + entry->ipv4_hnapt.iblk2.dp = (dest->dev->name[3] - '0') + 1;
399 + entry->ipv4_hnapt.sip = ntohl(tuple->src_v4.s_addr);
400 + entry->ipv4_hnapt.dip = ntohl(tuple->dst_v4.s_addr);
401 + entry->ipv4_hnapt.sport = ntohs(tuple->src_port);
402 + entry->ipv4_hnapt.dport = ntohs(tuple->dst_port);
404 + entry->ipv4_hnapt.new_sip = ntohl(dest_tuple->dst_v4.s_addr);
405 + entry->ipv4_hnapt.new_dip = ntohl(dest_tuple->src_v4.s_addr);
406 + entry->ipv4_hnapt.new_sport = ntohs(dest_tuple->dst_port);
407 + entry->ipv4_hnapt.new_dport = ntohs(dest_tuple->src_port);
409 + entry->bfib1.state = BIND;
411 + if (dest->flags & FLOW_OFFLOAD_PATH_PPPOE) {
412 + entry->bfib1.psn = 1;
413 + entry->ipv4_hnapt.etype = htons(ETH_P_PPP_SES);
414 + entry->ipv4_hnapt.pppoe_id = dest->pppoe_sid;
417 + if (dest->flags & FLOW_OFFLOAD_PATH_VLAN) {
418 + entry->ipv4_hnapt.vlan1 = dest->vlan_id;
419 + entry->bfib1.vlan_layer = 1;
421 + switch (dest->vlan_proto) {
422 + case htons(ETH_P_8021Q):
423 + entry->ipv4_hnapt.bfib1.vpm = 1;
425 + case htons(ETH_P_8021AD):
426 + entry->ipv4_hnapt.bfib1.vpm = 2;
437 +mtk_foe_set_mac(struct mtk_foe_entry *entry, u8 *smac, u8 *dmac)
439 + entry->ipv4_hnapt.dmac_hi = swab32(*((u32*) dmac));
440 + entry->ipv4_hnapt.dmac_lo = swab16(*((u16*) &dmac[4]));
441 + entry->ipv4_hnapt.smac_hi = swab32(*((u32*) smac));
442 + entry->ipv4_hnapt.smac_lo = swab16(*((u16*) &smac[4]));
446 +mtk_check_entry_available(struct mtk_eth *eth, u32 hash)
448 + struct mtk_foe_entry entry = ((struct mtk_foe_entry *)eth->foe_table)[hash];
450 + return (entry.bfib1.state == BIND)? 0:1;
454 +mtk_foe_write(struct mtk_eth *eth, u32 hash,
455 + struct mtk_foe_entry *entry)
457 + struct mtk_foe_entry *table = (struct mtk_foe_entry *)eth->foe_table;
459 + memcpy(&table[hash], entry, sizeof(*entry));
462 +int mtk_flow_offload_add(struct mtk_eth *eth,
463 + enum flow_offload_type type,
464 + struct flow_offload *flow,
465 + struct flow_offload_hw_path *src,
466 + struct flow_offload_hw_path *dest)
468 + struct flow_offload_tuple *otuple = &flow->tuplehash[FLOW_OFFLOAD_DIR_ORIGINAL].tuple;
469 + struct flow_offload_tuple *rtuple = &flow->tuplehash[FLOW_OFFLOAD_DIR_REPLY].tuple;
470 + u32 time_stamp = mtk_r32(eth, 0x0010) & (0x7fff);
472 + struct mtk_foe_entry orig = {
473 + .bfib1.time_stamp = time_stamp,
476 + struct mtk_foe_entry reply = {
477 + .bfib1.time_stamp = time_stamp,
481 + if (otuple->l4proto != IPPROTO_TCP && otuple->l4proto != IPPROTO_UDP)
484 + if (type == FLOW_OFFLOAD_DEL) {
490 + switch (otuple->l3proto) {
492 + if (mtk_foe_prepare_v4(&orig, otuple, rtuple, src, dest) ||
493 + mtk_foe_prepare_v4(&reply, rtuple, otuple, dest, src))
496 + ohash = mtk_flow_hash_v4(otuple);
497 + rhash = mtk_flow_hash_v4(rtuple);
507 + /* Two-way hash: when hash collision occurs, the hash value will be shifted to the next position. */
508 + if (!mtk_check_entry_available(eth, ohash)){
509 + if (!mtk_check_entry_available(eth, ohash + 1))
513 + if (!mtk_check_entry_available(eth, rhash)){
514 + if (!mtk_check_entry_available(eth, rhash + 1))
519 + mtk_foe_set_mac(&orig, dest->eth_src, dest->eth_dest);
520 + mtk_foe_set_mac(&reply, src->eth_src, src->eth_dest);
521 + mtk_foe_write(eth, ohash, &orig);
522 + mtk_foe_write(eth, rhash, &reply);
523 + rcu_assign_pointer(eth->foe_flow_table[ohash], flow);
524 + rcu_assign_pointer(eth->foe_flow_table[rhash], flow);
529 +#ifdef CONFIG_NET_MEDIATEK_HW_QOS
531 +#define QDMA_TX_SCH_TX 0x1a14
533 +static void mtk_ppe_scheduler(struct mtk_eth *eth, int id, u32 rate)
535 + int exp = 0, shift = 0;
536 + u32 reg = mtk_r32(eth, QDMA_TX_SCH_TX);
542 + while (rate > 127) {
547 + val |= (rate & 0x7f) << 4;
551 + reg &= ~(0xffff << shift);
552 + reg |= val << shift;
553 + mtk_w32(eth, val, QDMA_TX_SCH_TX);
556 +#define QTX_CFG(x) (0x1800 + (x * 0x10))
557 +#define QTX_SCH(x) (0x1804 + (x * 0x10))
559 +static void mtk_ppe_queue(struct mtk_eth *eth, int id, int sched, int weight, int resv, u32 min_rate, u32 max_rate)
561 + int max_exp = 0, min_exp = 0;
567 + reg = mtk_r32(eth, QTX_SCH(id));
579 + while (max_rate > 127) {
584 + while (min_rate > 127) {
589 + reg |= (min_rate & 0x7f) << 20;
590 + reg |= (min_exp & 0xf) << 16;
591 + reg |= (weight & 0xf) << 12;
592 + reg |= (max_rate & 0x7f) << 4;
593 + reg |= max_exp & 0xf;
594 + mtk_w32(eth, reg, QTX_SCH(id));
597 + reg = mtk_r32(eth, QTX_CFG(id));
599 + reg |= (resv << 8) | resv;
600 + mtk_w32(eth, reg, QTX_CFG(id));
604 +static int mtk_init_foe_table(struct mtk_eth *eth)
606 + if (eth->foe_table)
609 + eth->foe_flow_table = devm_kcalloc(eth->dev, MTK_PPE_ENTRY_CNT,
610 + sizeof(*eth->foe_flow_table),
612 + if (!eth->foe_flow_table)
615 + /* map the FOE table */
616 + eth->foe_table = dmam_alloc_coherent(eth->dev, MTK_PPE_TBL_SZ,
617 + ð->foe_table_phys, GFP_KERNEL);
618 + if (!eth->foe_table) {
619 + dev_err(eth->dev, "failed to allocate foe table\n");
620 + kfree(eth->foe_flow_table);
628 +static int mtk_ppe_start(struct mtk_eth *eth)
631 + u32 foe_etry_num = MTK_PPE_ENTRY_CNT;
635 + ret = mtk_init_foe_table(eth);
639 + /* tell the PPE about the tables base address */
640 + mtk_w32(eth, eth->foe_table_phys, MTK_REG_PPE_TB_BASE);
642 + /* flush the table */
643 + memset(eth->foe_table, 0, MTK_PPE_TBL_SZ);
645 + eth->per_flow_accounting = false; //true;
647 + if (eth->per_flow_accounting) {
648 + foe_mib_tb_sz = foe_etry_num * sizeof(struct mib_entry);
649 + eth->foe_mib_cpu = dma_alloc_coherent(eth->dev, foe_mib_tb_sz,
650 + ð->foe_mib_dev, GFP_KERNEL);
651 + if (!eth->foe_mib_cpu)
653 + mtk_w32(eth, eth->foe_mib_dev, MTK_REG_PPE_MIB_TB_BASE);
654 + memset(eth->foe_mib_cpu, 0, foe_mib_tb_sz);
657 + kzalloc(foe_etry_num * sizeof(struct hnat_accounting),
663 + /* setup hashing */
665 + MTK_PPE_TB_CFG_HASH_MODE_MASK | MTK_PPE_TB_CFG_TBL_SZ_MASK,
666 + MTK_PPE_TB_CFG_HASH_MODE1 | MTK_PPE_TB_CFG_TBL_SZ_4K,
667 + MTK_REG_PPE_TB_CFG);
669 + /* set the default hashing seed */
670 + mtk_w32(eth, MTK_PPE_HASH_SEED, MTK_REG_PPE_HASH_SEED);
672 + /* each foe entry is 80bytes and is setup by cpu forwarding*/
673 + mtk_m32(eth, MTK_PPE_CAH_CTRL_X_MODE | MTK_PPE_TB_CFG_ENTRY_SZ_MASK |
674 + MTK_PPE_TB_CFG_SMA_MASK,
675 + MTK_PPE_TB_CFG_ENTRY_SZ_64B | MTK_PPE_TB_CFG_SMA_FWD_CPU,
676 + MTK_REG_PPE_TB_CFG);
679 + //writel(0xFFFFFFFF, host->ppe_base + PPE_IP_PROT_CHK);
680 + mtk_w32(eth, 0xFFFFFFFF, MTK_REG_PPE_IP_PROT_CHK);
682 + /* setup caching */
683 + // cr_set_field(host->ppe_base + PPE_CAH_CTRL, CAH_X_MODE, 1);
684 + mtk_m32(eth, 1, MTK_PPE_CAH_CTRL_X_MODE, MTK_REG_PPE_CAH_CTRL);
685 + // cr_set_field(host->ppe_base + PPE_CAH_CTRL, CAH_X_MODE, 0);
686 + mtk_m32(eth, 0, MTK_PPE_CAH_CTRL_X_MODE, MTK_REG_PPE_CAH_CTRL);
687 + // cr_set_field(host->ppe_base + PPE_CAH_CTRL, CAH_EN, 1);
688 + mtk_m32(eth, MTK_PPE_CAH_CTRL_X_MODE, MTK_PPE_CAH_CTRL_EN,
689 + MTK_REG_PPE_CAH_CTRL);
692 + /* cr_set_bits(host->ppe_base + PPE_FLOW_CFG,
693 + BIT_UDP_IP4F_NAT_EN | BIT_IPV4_NAT_EN | BIT_IPV4_NAPT_EN |
694 + BIT_IPV4_NAT_FRAG_EN | BIT_IPV4_HASH_GREK |
695 + BIT_IPV4_DSL_EN | BIT_IPV6_6RD_EN |
696 + BIT_IPV6_3T_ROUTE_EN | BIT_IPV6_5T_ROUTE_EN); */
697 + mtk_m32(eth, 0, MTK_PPE_FLOW_CFG_IPV4_NAT_FRAG_EN |
698 + MTK_PPE_FLOW_CFG_IPV4_NAPT_EN | MTK_PPE_FLOW_CFG_IPV4_NAT_EN |
699 + MTK_PPE_FLOW_CFG_IPV4_GREK_EN,
700 + MTK_REG_PPE_FLOW_CFG);
702 + mtk_w32(eth, 0x000a7780, MTK_REG_PPE_FLOW_CFG);
704 + /* setup flow entry un/bind aging */
705 + // cr_set_field(host->ppe_base + PPE_TB_CFG, NTU_AGE, 1);
706 + // cr_set_field(host->ppe_base + PPE_TB_CFG, UNBD_AGE, 1);
707 + // cr_set_field(host->ppe_base + PPE_TB_CFG, TCP_AGE, 1);
708 + // cr_set_field(host->ppe_base + PPE_TB_CFG, UDP_AGE, 1);
709 + // cr_set_field(host->ppe_base + PPE_TB_CFG, FIN_AGE, 1);
711 + MTK_PPE_TB_CFG_UNBD_AGE | MTK_PPE_TB_CFG_NTU_AGE |
712 + MTK_PPE_TB_CFG_FIN_AGE | MTK_PPE_TB_CFG_UDP_AGE |
713 + MTK_PPE_TB_CFG_TCP_AGE,
714 + MTK_REG_PPE_TB_CFG);
716 + // cr_set_field(host->ppe_base + PPE_UNB_AGE, UNB_MNP, 1000);
717 + // cr_set_field(host->ppe_base + PPE_UNB_AGE, UNB_DLTA, 3);
718 + mtk_m32(eth, MTK_PPE_UNB_AGE_MNP_MASK | MTK_PPE_UNB_AGE_DLTA_MASK,
719 + MTK_PPE_UNB_AGE_MNP | MTK_PPE_UNB_AGE_DLTA,
720 + MTK_REG_PPE_UNB_AGE);
722 + // cr_set_field(host->ppe_base + PPE_BND_AGE_0, UDP_DLTA, 12);
723 + // cr_set_field(host->ppe_base + PPE_BND_AGE_0, NTU_DLTA, 1);
724 + mtk_m32(eth, MTK_PPE_BND_AGE0_NTU_DLTA_MASK |
725 + MTK_PPE_BND_AGE0_UDP_DLTA_MASK,
726 + MTK_PPE_BND_AGE0_NTU_DLTA | MTK_PPE_BND_AGE0_UDP_DLTA,
727 + MTK_REG_PPE_BND_AGE0);
728 + mtk_w32(eth, 0x0001000c, MTK_REG_PPE_BND_AGE0);
730 + // cr_set_field(host->ppe_base + PPE_BND_AGE_1, FIN_DLTA, 1);
731 + // cr_set_field(host->ppe_base + PPE_BND_AGE_1, TCP_DLTA, 7);
732 + mtk_m32(eth, MTK_PPE_BND_AGE1_FIN_DLTA_MASK |
733 + MTK_PPE_BND_AGE1_TCP_DLTA_MASK,
734 + MTK_PPE_BND_AGE1_FIN_DLTA | MTK_PPE_BND_AGE1_TCP_DLTA,
735 + MTK_REG_PPE_BND_AGE1);
736 + mtk_w32(eth, 0x00010007, MTK_REG_PPE_BND_AGE1);
738 + /* setup flow entry keep alive */
739 + // cr_set_field(host->ppe_base + PPE_TB_CFG, SCAN_MODE, 2);
740 + // cr_set_field(host->ppe_base + PPE_TB_CFG, KA_CFG, 3);
741 + mtk_m32(eth, MTK_PPE_TB_CFG_KA_MASK | MTK_PPE_TB_CFG_SCAN_MODE_MASK,
742 + MTK_PPE_TB_CFG_KA | MTK_PPE_TB_CFG_SCAN_MODE,
743 + MTK_REG_PPE_TB_CFG);
744 + // cr_set_field(host->ppe_base + PPE_KA, KA_T, 1);
745 + // cr_set_field(host->ppe_base + PPE_KA, TCP_KA, 1);
746 + // cr_set_field(host->ppe_base + PPE_KA, UDP_KA, 1);
747 + mtk_w32(eth, MTK_PPE_KA_UDP | MTK_PPE_KA_TCP | MTK_PPE_KA_T, MTK_REG_PPE_KA);
749 + /* setup flow entry rate limit */
750 + mtk_w32(eth, (0x3fff << 16) | 0x3fff, MTK_REG_PPE_BIND_LMT_0);
751 + mtk_w32(eth, 0x2000000 | MTK_PPE_NTU_KA | 0x3fff, MTK_REG_PPE_BIND_LMT_1);
752 + /* 30 packets per second */
753 + mtk_m32(eth, MTK_PPE_BNDR_RATE_MASK, 0x1e, MTK_REG_PPE_BNDR);
755 + /* enable the PPE */
756 + mtk_m32(eth, 0, MTK_PPE_GLO_CFG_EN, MTK_REG_PPE_GLO_CFG);
758 + /* set the default forwarding port to PDMA */
759 + mtk_w32(eth, 0x0, MTK_REG_PPE_DFT_CPORT);
761 + /* disallow packets with TTL=0 */
762 + mtk_m32(eth, 0, MTK_PPE_GLO_CFG_TTL0_DROP, MTK_REG_PPE_GLO_CFG);
764 + /*enable ppe mib counter*/
765 + if (eth->per_flow_accounting) {
766 + mtk_w32(eth, 0x3, MTK_REG_PPE_MIB_CFG);
767 + mtk_w32(eth, 0x3, MTK_REG_PPE_MIB_CAH_CTRL);
770 + /* send all traffic from gmac to the ppe */
771 + mtk_m32(eth, 0xffff, 0x4444, MTK_GDMA_FWD_CFG(0));
772 + mtk_m32(eth, 0xffff, 0x4444, MTK_GDMA_FWD_CFG(1));
774 + mtk_w32(eth, 0x00027fb4, MTK_REG_PPE_TB_CFG);
776 + dev_info(eth->dev, "PPE started\n");
778 +#ifdef CONFIG_NET_MEDIATEK_HW_QOS
779 + mtk_ppe_scheduler(eth, 0, 500000);
780 + mtk_ppe_scheduler(eth, 1, 500000);
781 + mtk_ppe_queue(eth, 0, 0, 7, 32, 250000, 0);
782 + mtk_ppe_queue(eth, 1, 0, 7, 32, 250000, 0);
783 + mtk_ppe_queue(eth, 8, 1, 7, 32, 250000, 0);
784 + mtk_ppe_queue(eth, 9, 1, 7, 32, 250000, 0);
790 +static int mtk_ppe_busy_wait(struct mtk_eth *eth)
792 + unsigned long t_start = jiffies;
796 + r = mtk_r32(eth, MTK_REG_PPE_GLO_CFG);
797 + if (!(r & MTK_PPE_GLO_CFG_BUSY))
799 + if (time_after(jiffies, t_start + HZ))
801 + usleep_range(10, 20);
804 + dev_err(eth->dev, "ppe: table busy timeout - resetting\n");
805 + reset_control_reset(eth->rst_ppe);
810 +static int mtk_ppe_stop(struct mtk_eth *eth)
812 + u32 r1 = 0, r2 = 0;
815 + /* discard all traffic while we disable the PPE */
816 + mtk_m32(eth, 0xffff, 0x7777, MTK_GDMA_FWD_CFG(0));
817 + mtk_m32(eth, 0xffff, 0x7777, MTK_GDMA_FWD_CFG(1));
819 + if (mtk_ppe_busy_wait(eth))
822 + /* invalidate all flow table entries */
823 + for (i = 0; i < MTK_PPE_ENTRY_CNT; i++)
824 + eth->foe_table[i].bfib1.state = FOE_STATE_INVALID;
826 + /* disable caching */
827 + mtk_m32(eth, 0, MTK_PPE_CAH_CTRL_X_MODE, MTK_REG_PPE_CAH_CTRL);
828 + mtk_m32(eth, MTK_PPE_CAH_CTRL_X_MODE | MTK_PPE_CAH_CTRL_EN, 0,
829 + MTK_REG_PPE_CAH_CTRL);
831 + /* flush cache has to be ahead of hnat diable --*/
832 + mtk_m32(eth, MTK_PPE_GLO_CFG_EN, 0, MTK_REG_PPE_GLO_CFG);
836 + MTK_PPE_FLOW_CFG_IPV4_NAT_FRAG_EN |
837 + MTK_PPE_FLOW_CFG_IPV4_NAPT_EN | MTK_PPE_FLOW_CFG_IPV4_NAT_EN |
838 + MTK_PPE_FLOW_CFG_FUC_FOE | MTK_PPE_FLOW_CFG_FMC_FOE,
839 + 0, MTK_REG_PPE_FLOW_CFG);
841 + /* disable FOE aging */
843 + MTK_PPE_TB_CFG_FIN_AGE | MTK_PPE_TB_CFG_UDP_AGE |
844 + MTK_PPE_TB_CFG_TCP_AGE | MTK_PPE_TB_CFG_UNBD_AGE |
845 + MTK_PPE_TB_CFG_NTU_AGE, MTK_REG_PPE_TB_CFG);
847 + r1 = mtk_r32(eth, 0x100);
848 + r2 = mtk_r32(eth, 0x10c);
850 + dev_info(eth->dev, "0x100 = 0x%x, 0x10c = 0x%x\n", r1, r2);
852 + if (((r1 & 0xff00) >> 0x8) >= (r1 & 0xff) ||
853 + ((r1 & 0xff00) >> 0x8) >= (r2 & 0xff)) {
854 + dev_info(eth->dev, "reset pse\n");
855 + mtk_w32(eth, 0x1, 0x4);
858 + /* set the foe entry base address to 0 */
859 + mtk_w32(eth, 0, MTK_REG_PPE_TB_BASE);
861 + if (mtk_ppe_busy_wait(eth))
864 + /* send all traffic back to the DMA engine */
865 + mtk_m32(eth, 0xffff, 0x0, MTK_GDMA_FWD_CFG(0));
866 + mtk_m32(eth, 0xffff, 0x0, MTK_GDMA_FWD_CFG(1));
870 +static void mtk_offload_keepalive(struct mtk_eth *eth, unsigned int hash)
872 + struct flow_offload *flow;
875 + flow = rcu_dereference(eth->foe_flow_table[hash]);
877 + flow->timeout = jiffies + 30 * HZ;
881 +int mtk_offload_check_rx(struct mtk_eth *eth, struct sk_buff *skb, u32 rxd4)
885 + switch (FIELD_GET(MTK_RXD4_CPU_REASON, rxd4)) {
886 + case MTK_CPU_REASON_KEEPALIVE_UC_OLD_HDR:
887 + case MTK_CPU_REASON_KEEPALIVE_MC_NEW_HDR:
888 + case MTK_CPU_REASON_KEEPALIVE_DUP_OLD_HDR:
889 + hash = FIELD_GET(MTK_RXD4_FOE_ENTRY, rxd4);
890 + mtk_offload_keepalive(eth, hash);
892 + case MTK_CPU_REASON_PACKET_SAMPLING:
899 +int mtk_ppe_probe(struct mtk_eth *eth)
903 + err = mtk_ppe_start(eth);
907 + err = mtk_ppe_debugfs_init(eth);
914 +void mtk_ppe_remove(struct mtk_eth *eth)
919 +++ b/drivers/net/ethernet/mediatek/mtk_offload.h
921 +/* This program is free software; you can redistribute it and/or modify
922 + * it under the terms of the GNU General Public License as published by
923 + * the Free Software Foundation; version 2 of the License
925 + * This program is distributed in the hope that it will be useful,
926 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
927 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
928 + * GNU General Public License for more details.
930 + * Copyright (C) 2014-2016 Sean Wang <sean.wang@mediatek.com>
931 + * Copyright (C) 2016-2017 John Crispin <blogic@openwrt.org>
934 +#include <linux/dma-mapping.h>
935 +#include <linux/delay.h>
936 +#include <linux/if.h>
937 +#include <linux/io.h>
938 +#include <linux/module.h>
939 +#include <linux/of_device.h>
940 +#include <linux/platform_device.h>
941 +#include <linux/reset.h>
942 +#include <linux/netfilter.h>
943 +#include <linux/netdevice.h>
944 +#include <net/netfilter/nf_flow_table.h>
945 +#include <linux/debugfs.h>
946 +#include <linux/etherdevice.h>
947 +#include <linux/bitfield.h>
949 +#include "mtk_eth_soc.h"
951 +#ifdef CONFIG_RALINK
953 +#define mtk_eth fe_priv
954 +#define MTK_GDMA_FWD_CFG(x) (0x500 + (x * 0x1000))
955 +#define mtk_m32 fe_m32
958 +mtk_r32(struct mtk_eth *eth, u32 reg)
960 + return fe_r32(reg);
964 +mtk_w32(struct mtk_eth *eth, u32 val, u32 reg)
970 +#define MTK_REG_PPE_GLO_CFG 0xe00
971 +#define MTK_PPE_GLO_CFG_BUSY BIT(31)
972 +#define MTK_PPE_GLO_CFG_TTL0_DROP BIT(4)
973 +#define MTK_PPE_GLO_CFG_EN BIT(0)
975 +#define MTK_REG_PPE_FLOW_CFG 0xe04
976 +#define MTK_PPE_FLOW_CFG_IPV4_GREK_EN BIT(19)
977 +#define MTK_PPE_FLOW_CFG_IPV4_NAT_FRAG_EN BIT(17)
978 +#define MTK_PPE_FLOW_CFG_IPV4_NAPT_EN BIT(13)
979 +#define MTK_PPE_FLOW_CFG_IPV4_NAT_EN BIT(12)
980 +#define MTK_PPE_FLOW_CFG_FUC_FOE BIT(2)
981 +#define MTK_PPE_FLOW_CFG_FMC_FOE BIT(1)
983 +#define MTK_REG_PPE_IP_PROT_CHK 0xe08
985 +#define MTK_REG_PPE_TB_BASE 0xe20
987 +#define MTK_REG_PPE_BNDR 0xe28
988 +#define MTK_PPE_BNDR_RATE_MASK 0xffff
990 +#define MTK_REG_PPE_BIND_LMT_0 0xe2C
992 +#define MTK_REG_PPE_BIND_LMT_1 0xe30
993 +#define MTK_PPE_NTU_KA BIT(16)
995 +#define MTK_REG_PPE_KA 0xe34
996 +#define MTK_PPE_KA_T BIT(0)
997 +#define MTK_PPE_KA_TCP BIT(16)
998 +#define MTK_PPE_KA_UDP BIT(24)
1000 +#define MTK_REG_PPE_UNB_AGE 0xe38
1001 +#define MTK_PPE_UNB_AGE_MNP_MASK (0xffff << 16)
1002 +#define MTK_PPE_UNB_AGE_MNP (1000 << 16)
1003 +#define MTK_PPE_UNB_AGE_DLTA_MASK 0xff
1004 +#define MTK_PPE_UNB_AGE_DLTA 3
1006 +#define MTK_REG_PPE_BND_AGE0 0xe3c
1007 +#define MTK_PPE_BND_AGE0_NTU_DLTA_MASK (0xffff << 16)
1008 +#define MTK_PPE_BND_AGE0_NTU_DLTA (5 << 16)
1009 +#define MTK_PPE_BND_AGE0_UDP_DLTA_MASK 0xffff
1010 +#define MTK_PPE_BND_AGE0_UDP_DLTA 5
1012 +#define MTK_REG_PPE_BND_AGE1 0xe40
1013 +#define MTK_PPE_BND_AGE1_FIN_DLTA_MASK (0xffff << 16)
1014 +#define MTK_PPE_BND_AGE1_FIN_DLTA (5 << 16)
1015 +#define MTK_PPE_BND_AGE1_TCP_DLTA_MASK 0xffff
1016 +#define MTK_PPE_BND_AGE1_TCP_DLTA 5
1018 +#define MTK_REG_PPE_DFT_CPORT 0xe48
1020 +#define MTK_REG_PPE_TB_CFG 0xe1c
1021 +#define MTK_PPE_TB_CFG_X_MODE_MASK (3 << 18)
1022 +#define MTK_PPE_TB_CFG_HASH_MODE1 BIT(14)
1023 +#define MTK_PPE_TB_CFG_HASH_MODE_MASK (0x3 << 14)
1024 +#define MTK_PPE_TB_CFG_KA (3 << 12)
1025 +#define MTK_PPE_TB_CFG_KA_MASK (0x3 << 12)
1026 +#define MTK_PPE_TB_CFG_SCAN_MODE (2 << 16)
1027 +#define MTK_PPE_TB_CFG_SCAN_MODE_MASK (0x3 << 16)
1028 +#define MTK_PPE_TB_CFG_FIN_AGE BIT(11)
1029 +#define MTK_PPE_TB_CFG_UDP_AGE BIT(10)
1030 +#define MTK_PPE_TB_CFG_TCP_AGE BIT(9)
1031 +#define MTK_PPE_TB_CFG_UNBD_AGE BIT(8)
1032 +#define MTK_PPE_TB_CFG_NTU_AGE BIT(7)
1033 +#define MTK_PPE_TB_CFG_SMA_FWD_CPU (0x3 << 4)
1034 +#define MTK_PPE_TB_CFG_SMA_MASK (0x3 << 4)
1035 +#define MTK_PPE_TB_CFG_ENTRY_SZ_64B 0
1036 +#define MTK_PPE_TB_CFG_ENTRY_SZ_80B 1
1037 +#define MTK_PPE_TB_CFG_ENTRY_SZ_MASK BIT(3)
1038 +#define MTK_PPE_TB_CFG_TBL_SZ_4K 4
1039 +#define MTK_PPE_TB_CFG_TBL_SZ_MASK 0x7
1041 +#define MTK_REG_PPE_HASH_SEED 0xe44
1042 +#define MTK_PPE_HASH_SEED 0x12345678
1045 +#define MTK_REG_PPE_CAH_CTRL 0xf20
1046 +#define MTK_PPE_CAH_CTRL_X_MODE BIT(9)
1047 +#define MTK_PPE_CAH_CTRL_EN BIT(0)
1049 +#define MTK_REG_PPE_MIB_CFG 0xf34
1050 +#define MTK_REG_PPE_MIB_TB_BASE 0xf38
1051 +#define MTK_REG_PPE_MIB_CAH_CTRL 0Xf50
1054 +struct mtk_foe_unbind_info_blk {
1056 + u32 pcnt:16; /* packet count */
1061 + u32 sta:1; /* static entry */
1062 +} __attribute__ ((packed));
1064 +struct mtk_foe_bind_info_blk {
1065 + u32 time_stamp:15;
1066 + u32 ka:1; /* keep alive */
1068 + u32 psn:1; /* egress packet has PPPoE session */
1069 +#ifdef CONFIG_RALINK
1070 + u32 vpm:2; /* 0:ethertype remark, 1:0x8100(CR default) */
1072 + u32 vpm:1; /* 0:ethertype remark, 1:0x8100(CR default) */
1073 + u32 ps:1; /* packet sampling */
1075 + u32 cah:1; /* cacheable flag */
1076 + u32 rmt:1; /* remove tunnel ip header (6rd/dslite only) */
1081 + u32 sta:1; /* static entry */
1082 +} __attribute__ ((packed));
1084 +struct mtk_foe_info_blk2 {
1085 + u32 qid:4; /* QID in Qos Port */
1086 + u32 fqos:1; /* force to PSE QoS port */
1087 + u32 dp:3; /* force to PSE port x
1088 + 0:PSE,1:GSW, 2:GMAC,4:PPE,5:QDMA,7=DROP */
1089 + u32 mcast:1; /* multicast this packet to CPU */
1090 + u32 pcpl:1; /* OSBN */
1091 + u32 mlen:1; /* 0:post 1:pre packet length in meter */
1092 + u32 alen:1; /* 0:post 1:pre packet length in accounting */
1093 + u32 port_mg:6; /* port meter group */
1094 + u32 port_ag:6; /* port account group */
1095 + u32 dscp:8; /* DSCP value */
1096 +} __attribute__ ((packed));
1098 +/* info blk2 for WHNAT */
1099 +struct hnat_info_blk2_whnat {
1100 + u32 qid : 4; /* QID[3:0] in Qos Port */
1101 + u32 fqos : 1; /* force to PSE QoS port */
1102 + u32 dp : 3; /* force to PSE port x
1103 + * 0:PSE,1:GSW, 2:GMAC,4:PPE,5:QDMA,7=DROP
1105 + u32 mcast : 1; /* multicast this packet to CPU */
1106 + u32 pcpl : 1; /* OSBN */
1107 + u32 mibf : 1; /* 0:off 1:on PPE MIB counter */
1108 + u32 alen : 1; /* 0:post 1:pre packet length in accounting */
1109 + u32 qid2 : 2; /* QID[5:4] in Qos Port */
1111 + u32 wdmaid : 1; /* 0:to pcie0 dev 1:to pcie1 dev */
1112 + u32 winfoi : 1; /* 0:off 1:on Wi-Fi hwnat support */
1113 + u32 port_ag : 6; /* port account group */
1114 + u32 dscp : 8; /* DSCP value */
1115 +} __attribute__ ((packed));
1117 +struct hnat_winfo {
1118 + u32 bssid : 6; /* WiFi Bssidx */
1119 + u32 wcid : 8; /* WiFi wtable Idx */
1120 + u32 rxid : 2; /* WiFi Ring idx */
1121 +} __attribute__ ((packed));
1123 +struct mtk_foe_ipv4_hnapt {
1125 + struct mtk_foe_bind_info_blk bfib1;
1126 + struct mtk_foe_unbind_info_blk udib1;
1134 + struct mtk_foe_info_blk2 iblk2;
1135 + struct hnat_info_blk2_whnat iblk2w;
1145 + u32 act_dp:6; /* UDF */
1150 + struct hnat_winfo winfo;
1157 +} __attribute__ ((packed));
1159 +struct mtk_foe_entry {
1161 + struct mtk_foe_unbind_info_blk udib1;
1162 + struct mtk_foe_bind_info_blk bfib1;
1163 + struct mtk_foe_ipv4_hnapt ipv4_hnapt;
1167 +enum mtk_foe_entry_state {
1168 + FOE_STATE_INVALID = 0,
1169 + FOE_STATE_UNBIND = 1,
1170 + FOE_STATE_BIND = 2,
1175 +#define MTK_RXD4_FOE_ENTRY GENMASK(13, 0)
1176 +#define MTK_RXD4_CPU_REASON GENMASK(18, 14)
1177 +#define MTK_RXD4_SRC_PORT GENMASK(21, 19)
1178 +#define MTK_RXD4_ALG GENMASK(31, 22)
1180 +enum mtk_foe_cpu_reason {
1181 + MTK_CPU_REASON_TTL_EXCEEDED = 0x02,
1182 + MTK_CPU_REASON_OPTION_HEADER = 0x03,
1183 + MTK_CPU_REASON_NO_FLOW = 0x07,
1184 + MTK_CPU_REASON_IPV4_FRAG = 0x08,
1185 + MTK_CPU_REASON_IPV4_DSLITE_FRAG = 0x09,
1186 + MTK_CPU_REASON_IPV4_DSLITE_NO_TCP_UDP = 0x0a,
1187 + MTK_CPU_REASON_IPV6_6RD_NO_TCP_UDP = 0x0b,
1188 + MTK_CPU_REASON_TCP_FIN_SYN_RST = 0x0c,
1189 + MTK_CPU_REASON_UN_HIT = 0x0d,
1190 + MTK_CPU_REASON_HIT_UNBIND = 0x0e,
1191 + MTK_CPU_REASON_HIT_UNBIND_RATE_REACHED = 0x0f,
1192 + MTK_CPU_REASON_HIT_BIND_TCP_FIN = 0x10,
1193 + MTK_CPU_REASON_HIT_TTL_1 = 0x11,
1194 + MTK_CPU_REASON_HIT_BIND_VLAN_VIOLATION = 0x12,
1195 + MTK_CPU_REASON_KEEPALIVE_UC_OLD_HDR = 0x13,
1196 + MTK_CPU_REASON_KEEPALIVE_MC_NEW_HDR = 0x14,
1197 + MTK_CPU_REASON_KEEPALIVE_DUP_OLD_HDR = 0x15,
1198 + MTK_CPU_REASON_HIT_BIND_FORCE_CPU = 0x16,
1199 + MTK_CPU_REASON_TUNNEL_OPTION_HEADER = 0x17,
1200 + MTK_CPU_REASON_MULTICAST_TO_CPU = 0x18,
1201 + MTK_CPU_REASON_MULTICAST_TO_GMAC1_CPU = 0x19,
1202 + MTK_CPU_REASON_HIT_PRE_BIND = 0x1a,
1203 + MTK_CPU_REASON_PACKET_SAMPLING = 0x1b,
1204 + MTK_CPU_REASON_EXCEED_MTU = 0x1c,
1205 + MTK_CPU_REASON_PPE_BYPASS = 0x1e,
1206 + MTK_CPU_REASON_INVALID = 0x1f,
1210 +/* our table size is 4K */
1211 +#define MTK_PPE_ENTRY_CNT 0x4000
1212 +#define MTK_PPE_TBL_SZ \
1213 + (MTK_PPE_ENTRY_CNT * sizeof(struct mtk_foe_entry))
1215 +int mtk_ppe_debugfs_init(struct mtk_eth *eth);