|
@@ -2166,6 +2166,7 @@ static int rtl8153_enable(struct r8152 *tp)
|
|
if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
+ usb_disable_lpm(tp->udev);
|
|
set_tx_qlen(tp);
|
|
set_tx_qlen(tp);
|
|
rtl_set_eee_plus(tp);
|
|
rtl_set_eee_plus(tp);
|
|
r8153_set_rx_early_timeout(tp);
|
|
r8153_set_rx_early_timeout(tp);
|
|
@@ -2337,11 +2338,54 @@ static void __rtl_set_wol(struct r8152 *tp, u32 wolopts)
|
|
device_set_wakeup_enable(&tp->udev->dev, false);
|
|
device_set_wakeup_enable(&tp->udev->dev, false);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static void r8153_u1u2en(struct r8152 *tp, bool enable)
|
|
|
|
+{
|
|
|
|
+ u8 u1u2[8];
|
|
|
|
+
|
|
|
|
+ if (enable)
|
|
|
|
+ memset(u1u2, 0xff, sizeof(u1u2));
|
|
|
|
+ else
|
|
|
|
+ memset(u1u2, 0x00, sizeof(u1u2));
|
|
|
|
+
|
|
|
|
+ usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void r8153_u2p3en(struct r8152 *tp, bool enable)
|
|
|
|
+{
|
|
|
|
+ u32 ocp_data;
|
|
|
|
+
|
|
|
|
+ ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
|
|
|
|
+ if (enable && tp->version != RTL_VER_03 && tp->version != RTL_VER_04)
|
|
|
|
+ ocp_data |= U2P3_ENABLE;
|
|
|
|
+ else
|
|
|
|
+ ocp_data &= ~U2P3_ENABLE;
|
|
|
|
+ ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void r8153_power_cut_en(struct r8152 *tp, bool enable)
|
|
|
|
+{
|
|
|
|
+ u32 ocp_data;
|
|
|
|
+
|
|
|
|
+ ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
|
|
|
|
+ if (enable)
|
|
|
|
+ ocp_data |= PWR_EN | PHASE2_EN;
|
|
|
|
+ else
|
|
|
|
+ ocp_data &= ~(PWR_EN | PHASE2_EN);
|
|
|
|
+ ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
|
|
|
|
+
|
|
|
|
+ ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
|
|
|
|
+ ocp_data &= ~PCUT_STATUS;
|
|
|
|
+ ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
|
|
|
|
+}
|
|
|
|
+
|
|
static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
|
|
static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
|
|
{
|
|
{
|
|
if (enable) {
|
|
if (enable) {
|
|
u32 ocp_data;
|
|
u32 ocp_data;
|
|
|
|
|
|
|
|
+ r8153_u1u2en(tp, false);
|
|
|
|
+ r8153_u2p3en(tp, false);
|
|
|
|
+
|
|
__rtl_set_wol(tp, WAKE_ANY);
|
|
__rtl_set_wol(tp, WAKE_ANY);
|
|
|
|
|
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
|
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
|
|
@@ -2353,6 +2397,8 @@ static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
|
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
|
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
|
|
} else {
|
|
} else {
|
|
__rtl_set_wol(tp, tp->saved_wolopts);
|
|
__rtl_set_wol(tp, tp->saved_wolopts);
|
|
|
|
+ r8153_u2p3en(tp, true);
|
|
|
|
+ r8153_u1u2en(tp, true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -2599,46 +2645,6 @@ static void r8153_hw_phy_cfg(struct r8152 *tp)
|
|
set_bit(PHY_RESET, &tp->flags);
|
|
set_bit(PHY_RESET, &tp->flags);
|
|
}
|
|
}
|
|
|
|
|
|
-static void r8153_u1u2en(struct r8152 *tp, bool enable)
|
|
|
|
-{
|
|
|
|
- u8 u1u2[8];
|
|
|
|
-
|
|
|
|
- if (enable)
|
|
|
|
- memset(u1u2, 0xff, sizeof(u1u2));
|
|
|
|
- else
|
|
|
|
- memset(u1u2, 0x00, sizeof(u1u2));
|
|
|
|
-
|
|
|
|
- usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static void r8153_u2p3en(struct r8152 *tp, bool enable)
|
|
|
|
-{
|
|
|
|
- u32 ocp_data;
|
|
|
|
-
|
|
|
|
- ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL);
|
|
|
|
- if (enable)
|
|
|
|
- ocp_data |= U2P3_ENABLE;
|
|
|
|
- else
|
|
|
|
- ocp_data &= ~U2P3_ENABLE;
|
|
|
|
- ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static void r8153_power_cut_en(struct r8152 *tp, bool enable)
|
|
|
|
-{
|
|
|
|
- u32 ocp_data;
|
|
|
|
-
|
|
|
|
- ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT);
|
|
|
|
- if (enable)
|
|
|
|
- ocp_data |= PWR_EN | PHASE2_EN;
|
|
|
|
- else
|
|
|
|
- ocp_data &= ~(PWR_EN | PHASE2_EN);
|
|
|
|
- ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data);
|
|
|
|
-
|
|
|
|
- ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0);
|
|
|
|
- ocp_data &= ~PCUT_STATUS;
|
|
|
|
- ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static void r8153_first_init(struct r8152 *tp)
|
|
static void r8153_first_init(struct r8152 *tp)
|
|
{
|
|
{
|
|
u32 ocp_data;
|
|
u32 ocp_data;
|
|
@@ -2781,6 +2787,7 @@ static void rtl8153_disable(struct r8152 *tp)
|
|
r8153_disable_aldps(tp);
|
|
r8153_disable_aldps(tp);
|
|
rtl_disable(tp);
|
|
rtl_disable(tp);
|
|
r8153_enable_aldps(tp);
|
|
r8153_enable_aldps(tp);
|
|
|
|
+ usb_enable_lpm(tp->udev);
|
|
}
|
|
}
|
|
|
|
|
|
static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u16 speed, u8 duplex)
|
|
static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u16 speed, u8 duplex)
|
|
@@ -2901,9 +2908,13 @@ static void rtl8153_up(struct r8152 *tp)
|
|
if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
+ r8153_u1u2en(tp, false);
|
|
r8153_disable_aldps(tp);
|
|
r8153_disable_aldps(tp);
|
|
r8153_first_init(tp);
|
|
r8153_first_init(tp);
|
|
r8153_enable_aldps(tp);
|
|
r8153_enable_aldps(tp);
|
|
|
|
+ r8153_u2p3en(tp, true);
|
|
|
|
+ r8153_u1u2en(tp, true);
|
|
|
|
+ usb_enable_lpm(tp->udev);
|
|
}
|
|
}
|
|
|
|
|
|
static void rtl8153_down(struct r8152 *tp)
|
|
static void rtl8153_down(struct r8152 *tp)
|
|
@@ -2914,6 +2925,7 @@ static void rtl8153_down(struct r8152 *tp)
|
|
}
|
|
}
|
|
|
|
|
|
r8153_u1u2en(tp, false);
|
|
r8153_u1u2en(tp, false);
|
|
|
|
+ r8153_u2p3en(tp, false);
|
|
r8153_power_cut_en(tp, false);
|
|
r8153_power_cut_en(tp, false);
|
|
r8153_disable_aldps(tp);
|
|
r8153_disable_aldps(tp);
|
|
r8153_enter_oob(tp);
|
|
r8153_enter_oob(tp);
|
|
@@ -3252,6 +3264,7 @@ static void r8153_init(struct r8152 *tp)
|
|
msleep(20);
|
|
msleep(20);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ usb_disable_lpm(tp->udev);
|
|
r8153_u2p3en(tp, false);
|
|
r8153_u2p3en(tp, false);
|
|
|
|
|
|
if (tp->version == RTL_VER_04) {
|
|
if (tp->version == RTL_VER_04) {
|
|
@@ -3319,6 +3332,7 @@ static void r8153_init(struct r8152 *tp)
|
|
r8153_enable_aldps(tp);
|
|
r8153_enable_aldps(tp);
|
|
r8152b_enable_fc(tp);
|
|
r8152b_enable_fc(tp);
|
|
rtl_tally_reset(tp);
|
|
rtl_tally_reset(tp);
|
|
|
|
+ r8153_u2p3en(tp, true);
|
|
}
|
|
}
|
|
|
|
|
|
static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
|
|
static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
|