{}
 };
 
+static const struct dmi_system_id no_touchpad_switch_list[] = {
+       {
+       .ident = "Lenovo Yoga 3 Pro 1370",
+       .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+               DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo YOGA 3"),
+               },
+       },
+       {
+       .ident = "ZhaoYang K4e-IML",
+       .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+               DMI_MATCH(DMI_PRODUCT_VERSION, "ZhaoYang K4e-IML"),
+               },
+       },
+       {}
+};
+
 static void ideapad_check_features(struct ideapad_private *priv)
 {
        acpi_handle handle = priv->adev->handle;
        priv->features.hw_rfkill_switch = dmi_check_system(hw_rfkill_list);
 
        /* Most ideapads with ELAN0634 touchpad don't use EC touchpad switch */
-       priv->features.touchpad_ctrl_via_ec = !acpi_dev_present("ELAN0634", NULL, -1);
+       if (acpi_dev_present("ELAN0634", NULL, -1))
+               priv->features.touchpad_ctrl_via_ec = 0;
+       else if (dmi_check_system(no_touchpad_switch_list))
+               priv->features.touchpad_ctrl_via_ec = 0;
+       else
+               priv->features.touchpad_ctrl_via_ec = 1;
 
        if (!read_ec_data(handle, VPCCMD_R_FAN, &val))
                priv->features.fan_mode = true;