Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
791 B
C
25 lines
791 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef _RTL83XX_H
|
|
#define _RTL83XX_H
|
|
|
|
struct realtek_interface_info {
|
|
int (*reg_read)(void *ctx, u32 reg, u32 *val);
|
|
int (*reg_write)(void *ctx, u32 reg, u32 val);
|
|
};
|
|
|
|
void rtl83xx_lock(void *ctx);
|
|
void rtl83xx_unlock(void *ctx);
|
|
int rtl83xx_setup_user_mdio(struct dsa_switch *ds);
|
|
struct realtek_priv *
|
|
rtl83xx_probe(struct device *dev,
|
|
const struct realtek_interface_info *interface_info);
|
|
int rtl83xx_register_switch(struct realtek_priv *priv);
|
|
void rtl83xx_unregister_switch(struct realtek_priv *priv);
|
|
void rtl83xx_shutdown(struct realtek_priv *priv);
|
|
void rtl83xx_remove(struct realtek_priv *priv);
|
|
void rtl83xx_reset_assert(struct realtek_priv *priv);
|
|
void rtl83xx_reset_deassert(struct realtek_priv *priv);
|
|
|
|
#endif /* _RTL83XX_H */
|