32 lines
775 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0
* Copyright (c) 2019, Vladimir Oltean <olteanv@gmail.com>
*/
#ifndef _NET_DSA_8021Q_H
#define _NET_DSA_8021Q_H
2026-01-29 22:25:33 +08:00
#include <net/dsa.h>
2026-01-21 18:59:54 +08:00
#include <linux/types.h>
2026-01-29 22:25:33 +08:00
int dsa_tag_8021q_register(struct dsa_switch *ds, __be16 proto);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
void dsa_tag_8021q_unregister(struct dsa_switch *ds);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
int dsa_tag_8021q_bridge_join(struct dsa_switch *ds, int port,
struct dsa_bridge bridge);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
void dsa_tag_8021q_bridge_leave(struct dsa_switch *ds, int port,
struct dsa_bridge bridge);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
u16 dsa_tag_8021q_bridge_vid(unsigned int bridge_num);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
u16 dsa_tag_8021q_standalone_vid(const struct dsa_port *dp);
2026-01-21 18:59:54 +08:00
int dsa_8021q_rx_switch_id(u16 vid);
int dsa_8021q_rx_source_port(u16 vid);
bool vid_is_dsa_8021q(u16 vid);
#endif /* _NET_DSA_8021Q_H */