hc
2023-12-02 57e32c52610e6a560beda60bf33c48f9f42306d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// SPDX-License-Identifier: GPL-2.0
/*
 * DPAA2 Ethernet Switch declarations
 *
 * Copyright 2014-2016 Freescale Semiconductor Inc.
 * Copyright 2017-2018 NXP
 *
 */
 
#ifndef __ETHSW_H
#define __ETHSW_H
 
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/rtnetlink.h>
#include <linux/if_vlan.h>
#include <uapi/linux/if_bridge.h>
#include <net/switchdev.h>
#include <linux/if_bridge.h>
 
#include "dpsw.h"
 
/* Number of IRQs supported */
#define DPSW_IRQ_NUM    2
 
#define ETHSW_VLAN_MEMBER    1
#define ETHSW_VLAN_UNTAGGED    2
#define ETHSW_VLAN_PVID        4
#define ETHSW_VLAN_GLOBAL    8
 
/* Maximum Frame Length supported by HW (currently 10k) */
#define DPAA2_MFL        (10 * 1024)
#define ETHSW_MAX_FRAME_LENGTH    (DPAA2_MFL - VLAN_ETH_HLEN - ETH_FCS_LEN)
#define ETHSW_L2_MAX_FRM(mtu)    ((mtu) + VLAN_ETH_HLEN + ETH_FCS_LEN)
 
extern const struct ethtool_ops ethsw_port_ethtool_ops;
 
struct ethsw_core;
 
/* Per port private data */
struct ethsw_port_priv {
   struct net_device    *netdev;
   u16            idx;
   struct ethsw_core    *ethsw_data;
   u8            link_state;
   u8            stp_state;
   bool            flood;
 
   u8            vlans[VLAN_VID_MASK + 1];
   u16            pvid;
   struct net_device    *bridge_dev;
};
 
/* Switch data */
struct ethsw_core {
   struct device            *dev;
   struct fsl_mc_io        *mc_io;
   u16                dpsw_handle;
   struct dpsw_attr        sw_attr;
   int                dev_id;
   struct ethsw_port_priv        **ports;
 
   u8                vlans[VLAN_VID_MASK + 1];
   bool                learning;
};
 
#endif    /* __ETHSW_H */