mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 10:08:59 +00:00
8f3b176e86
The interface mode number of RGMII_33V is 7 on RTL8367, but it's 9 on RTL8367B. the external interface modes for RTL8367 are follows: - 0, Disabled - 1, RGMII - 2, MII_MAC - 3, MII_PHY - 4, TMII_MAC - 5, TMII_PHY - 6, GMII - 7, RGMII_33V the external interface modes for RTL8367B are follows: - 0, Disabled - 1, RGMII - 2, MII_MAC - 3, MII_PHY - 4, TMII_MAC - 5, TMII_PHY - 6, GMII - 7, RMII_MAC - 8, RMII_PHY - 9, RGMII_33V But the driver in U-Boot of RT-N56U GPL tar blocks using RGMII_33V (9) mode and it seems to be unsupported on RTL8367B, so drop it from switch-case in rtl8367b_extif_set_mode. ref (RTL8367): - TL-WR2453ND v1 ref (RTL8367B): - ASUS RT-N56U - TP-Link Archer C2 v1 Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
64 lines
1.4 KiB
C
64 lines
1.4 KiB
C
/*
|
|
* Platform data definition for the Realtek RTL8367 ethernet switch driver
|
|
*
|
|
* Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _RTL8367_H
|
|
#define _RTL8367_H
|
|
|
|
#define RTL8367_DRIVER_NAME "rtl8367"
|
|
#define RTL8367B_DRIVER_NAME "rtl8367b"
|
|
|
|
enum rtl8367_port_speed {
|
|
RTL8367_PORT_SPEED_10 = 0,
|
|
RTL8367_PORT_SPEED_100,
|
|
RTL8367_PORT_SPEED_1000,
|
|
};
|
|
|
|
struct rtl8367_port_ability {
|
|
int force_mode;
|
|
int nway;
|
|
int txpause;
|
|
int rxpause;
|
|
int link;
|
|
int duplex;
|
|
enum rtl8367_port_speed speed;
|
|
};
|
|
|
|
enum rtl8367_extif_mode {
|
|
RTL8367_EXTIF_MODE_DISABLED = 0,
|
|
RTL8367_EXTIF_MODE_RGMII,
|
|
RTL8367_EXTIF_MODE_MII_MAC,
|
|
RTL8367_EXTIF_MODE_MII_PHY,
|
|
RTL8367_EXTIF_MODE_TMII_MAC,
|
|
RTL8367_EXTIF_MODE_TMII_PHY,
|
|
RTL8367_EXTIF_MODE_GMII,
|
|
RTL8367_EXTIF_MODE_RGMII_33V,
|
|
RTL8367B_EXTIF_MODE_RMII_MAC = 7,
|
|
RTL8367B_EXTIF_MODE_RMII_PHY,
|
|
RTL8367B_EXTIF_MODE_RGMII_33V,
|
|
};
|
|
|
|
struct rtl8367_extif_config {
|
|
unsigned int txdelay;
|
|
unsigned int rxdelay;
|
|
enum rtl8367_extif_mode mode;
|
|
struct rtl8367_port_ability ability;
|
|
};
|
|
|
|
struct rtl8367_platform_data {
|
|
unsigned gpio_sda;
|
|
unsigned gpio_sck;
|
|
void (*hw_reset)(bool active);
|
|
|
|
struct rtl8367_extif_config *extif0_cfg;
|
|
struct rtl8367_extif_config *extif1_cfg;
|
|
};
|
|
|
|
#endif /* _RTL8367_H */
|