]> Git Repo - linux.git/blob - include/linux/dsa/sja1105.h
Revert "Merge branch 'vmwgfx-next' of git://people.freedesktop.org/~thomash/linux...
[linux.git] / include / linux / dsa / sja1105.h
1 /* SPDX-License-Identifier: GPL-2.0
2  * Copyright (c) 2019, Vladimir Oltean <[email protected]>
3  */
4
5 /* Included by drivers/net/dsa/sja1105/sja1105.h and net/dsa/tag_sja1105.c */
6
7 #ifndef _NET_DSA_SJA1105_H
8 #define _NET_DSA_SJA1105_H
9
10 #include <linux/skbuff.h>
11 #include <linux/etherdevice.h>
12 #include <net/dsa.h>
13
14 #define ETH_P_SJA1105                           ETH_P_DSA_8021Q
15
16 /* IEEE 802.3 Annex 57A: Slow Protocols PDUs (01:80:C2:xx:xx:xx) */
17 #define SJA1105_LINKLOCAL_FILTER_A              0x0180C2000000ull
18 #define SJA1105_LINKLOCAL_FILTER_A_MASK         0xFFFFFF000000ull
19 /* IEEE 1588 Annex F: Transport of PTP over Ethernet (01:1B:19:xx:xx:xx) */
20 #define SJA1105_LINKLOCAL_FILTER_B              0x011B19000000ull
21 #define SJA1105_LINKLOCAL_FILTER_B_MASK         0xFFFFFF000000ull
22
23 struct sja1105_port {
24         struct dsa_port *dp;
25         int mgmt_slot;
26 };
27
28 #endif /* _NET_DSA_SJA1105_H */
This page took 0.033113 seconds and 4 git commands to generate.