aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/typec
diff options
context:
space:
mode:
authorGene Chen <gene_chen@richtek.com>2022-08-05 15:17:08 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-08-19 11:05:12 +0200
commit3b77b27155647dda2edc7f347ecc3b2828978d52 (patch)
treea710f757e11e3b948d63cfa8fd7c66d87ad81c4e /drivers/usb/typec
parentdt-bindings usb: typec: rt1711h: Add binding for Richtek RT1711H (diff)
downloadlinux-dev-3b77b27155647dda2edc7f347ecc3b2828978d52.tar.xz
linux-dev-3b77b27155647dda2edc7f347ecc3b2828978d52.zip
usb: typec: tcpci_rt1711h: Fix vendor setting when set vconn
replace overwrite whole register with update bits Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Gene Chen <gene_chen@richtek.com> Link: https://lore.kernel.org/r/20220805071714.150882-3-gene.chen.richtek@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/typec')
-rw-r--r--drivers/usb/typec/tcpm/tcpci_rt1711h.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/usb/typec/tcpm/tcpci_rt1711h.c b/drivers/usb/typec/tcpm/tcpci_rt1711h.c
index 3291ca4948da..f2f1fb0d8bab 100644
--- a/drivers/usb/typec/tcpm/tcpci_rt1711h.c
+++ b/drivers/usb/typec/tcpm/tcpci_rt1711h.c
@@ -5,6 +5,7 @@
* Richtek RT1711H Type-C Chip Driver
*/
+#include <linux/bits.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/i2c.h>
@@ -23,6 +24,7 @@
#define RT1711H_RTCTRL8_SET(ck300, ship_off, auto_idle, tout) \
(((ck300) << 7) | ((ship_off) << 5) | \
((auto_idle) << 3) | ((tout) & 0x07))
+#define RT1711H_AUTOIDLEEN BIT(3)
#define RT1711H_RTCTRL11 0x9E
@@ -109,8 +111,8 @@ static int rt1711h_set_vconn(struct tcpci *tcpci, struct tcpci_data *tdata,
{
struct rt1711h_chip *chip = tdata_to_rt1711h(tdata);
- return rt1711h_write8(chip, RT1711H_RTCTRL8,
- RT1711H_RTCTRL8_SET(0, 1, !enable, 2));
+ return regmap_update_bits(chip->data.regmap, RT1711H_RTCTRL8,
+ RT1711H_AUTOIDLEEN, enable ? 0 : RT1711H_AUTOIDLEEN);
}
static int rt1711h_start_drp_toggling(struct tcpci *tcpci,