mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-30 03:57:32 +00:00

The 'dsa_tag_8021q_bridge_join' could be used as a generic implementation of the 'ds->ops->port_bridge_join()' function. However, it is necessary to synchronize their arguments. This patch also moves the 'tx_fwd_offload' flag configuration line into 'dsa_tag_8021q_bridge_join' body. Currently, every (sja1105) driver sets it, and the future vsc73xx implementation will also need it for simplification. Suggested-by: Vladimir Oltean <olteanv@gmail.com> Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com> Reviewed-by: Vladimir Oltean <olteanv@gmail.com> Link: https://patch.msgid.link/20240713211620.1125910-11-paweldembicki@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
38 lines
980 B
C
38 lines
980 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
* Copyright (c) 2019, Vladimir Oltean <olteanv@gmail.com>
|
|
*/
|
|
|
|
#ifndef _NET_DSA_8021Q_H
|
|
#define _NET_DSA_8021Q_H
|
|
|
|
#include <net/dsa.h>
|
|
#include <linux/types.h>
|
|
|
|
/* VBID is limited to three bits only and zero is reserved.
|
|
* Only 7 bridges can be enumerated.
|
|
*/
|
|
#define DSA_TAG_8021Q_MAX_NUM_BRIDGES 7
|
|
|
|
int dsa_tag_8021q_register(struct dsa_switch *ds, __be16 proto);
|
|
|
|
void dsa_tag_8021q_unregister(struct dsa_switch *ds);
|
|
|
|
int dsa_tag_8021q_bridge_join(struct dsa_switch *ds, int port,
|
|
struct dsa_bridge bridge, bool *tx_fwd_offload,
|
|
struct netlink_ext_ack *extack);
|
|
|
|
void dsa_tag_8021q_bridge_leave(struct dsa_switch *ds, int port,
|
|
struct dsa_bridge bridge);
|
|
|
|
u16 dsa_tag_8021q_bridge_vid(unsigned int bridge_num);
|
|
|
|
u16 dsa_tag_8021q_standalone_vid(const struct dsa_port *dp);
|
|
|
|
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 */
|