All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Introduce PMIC based USB type C detection
@ 2020-06-09 20:58 Wesley Cheng
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-09 20:58 UTC (permalink / raw)
  To: heikki.krogerus, gregkh, mark.rutland, robh+dt, agross, bjorn.andersson
  Cc: linux-kernel, linux-arm-msm, devicetree, linux-usb, jackp,
	bryan.odonoghue, Wesley Cheng

Add the required drivers for implementing type C orientation and role
detection using the Qualcomm PMIC.  Currently, PMICs such as the PM8150B
have an integrated type C block, which can be utilized for this.  This
series adds the dt-binding, PMIC type C driver, and DTS nodes.

The PMIC type C driver will register itself as a type C port w/ a
registered type C switch for orientation, and will fetch a USB role switch
handle for the role notifications.  It will also have the ability to enable
the VBUS output to any connected devices based on if the device is behaving
as a UFP or DFP.

Wesley Cheng (3):
  usb: typec: Add QCOM PMIC typec detection driver
  dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding
  arm64: boot: dts: qcom: pm8150b: Add node for USB type C block

 .../devicetree/bindings/usb/qcom,pmic-typec.yaml   | 118 +++++++++
 arch/arm64/boot/dts/qcom/pm8150b.dtsi              |   7 +
 drivers/usb/typec/Kconfig                          |  11 +
 drivers/usb/typec/Makefile                         |   1 +
 drivers/usb/typec/qcom-pmic-typec.c                | 278 +++++++++++++++++++++
 5 files changed, 415 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml
 create mode 100644 drivers/usb/typec/qcom-pmic-typec.c

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-09 20:58 [PATCH 0/3] Introduce PMIC based USB type C detection Wesley Cheng
@ 2020-06-09 20:58 ` Wesley Cheng
  2020-06-09 21:20   ` Randy Dunlap
                     ` (3 more replies)
  2020-06-09 20:58 ` [PATCH 2/3] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding Wesley Cheng
  2020-06-09 20:58 ` [PATCH 3/3] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block Wesley Cheng
  2 siblings, 4 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-09 20:58 UTC (permalink / raw)
  To: heikki.krogerus, gregkh, mark.rutland, robh+dt, agross, bjorn.andersson
  Cc: linux-kernel, linux-arm-msm, devicetree, linux-usb, jackp,
	bryan.odonoghue, Wesley Cheng

The QCOM SPMI typec driver handles the role and orientation detection, and
notifies client drivers using the USB role switch framework.   It registers
as a typec port, so orientation can be communicated using the typec switch
APIs.  The driver also registers the VBUS output regulator, so client
drivers can enable the VBUS source when acting as a source/host.

Signed-off-by: Wesley Cheng <wcheng@codeaurora.org>
---
 drivers/usb/typec/Kconfig           |  11 ++
 drivers/usb/typec/Makefile          |   1 +
 drivers/usb/typec/qcom-pmic-typec.c | 278 ++++++++++++++++++++++++++++++++++++
 3 files changed, 290 insertions(+)
 create mode 100644 drivers/usb/typec/qcom-pmic-typec.c

diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig
index 559dd06..8de2520 100644
--- a/drivers/usb/typec/Kconfig
+++ b/drivers/usb/typec/Kconfig
@@ -73,6 +73,17 @@ config TYPEC_TPS6598X
 	  If you choose to build this driver as a dynamically linked module, the
 	  module will be called tps6598x.ko.
 
+config TYPEC_QCOM_PMIC
+	tristate "Qualcomm PMIC USB typec driver"
+	depends on ARCH_QCOM
+	help
+	  Driver for supporting role switch over the Qualcomm PMIC.  This will
+	  handle the type C role and orientation detection reported by the QCOM
+	  PMIC if the PMIC has the capability to handle type C detection.
+
+	  It will also enable the VBUS output to connected devices when a
+	  DFP connection is made.
+
 source "drivers/usb/typec/mux/Kconfig"
 
 source "drivers/usb/typec/altmodes/Kconfig"
diff --git a/drivers/usb/typec/Makefile b/drivers/usb/typec/Makefile
index 7753a5c3..cceffd9 100644
--- a/drivers/usb/typec/Makefile
+++ b/drivers/usb/typec/Makefile
@@ -6,4 +6,5 @@ obj-$(CONFIG_TYPEC_TCPM)	+= tcpm/
 obj-$(CONFIG_TYPEC_UCSI)	+= ucsi/
 obj-$(CONFIG_TYPEC_HD3SS3220)	+= hd3ss3220.o
 obj-$(CONFIG_TYPEC_TPS6598X)	+= tps6598x.o
+obj-$(CONFIG_TYPEC_QCOM_PMIC)	+= qcom-pmic-typec.o
 obj-$(CONFIG_TYPEC)		+= mux/
diff --git a/drivers/usb/typec/qcom-pmic-typec.c b/drivers/usb/typec/qcom-pmic-typec.c
new file mode 100644
index 0000000..ce6319c
--- /dev/null
+++ b/drivers/usb/typec/qcom-pmic-typec.c
@@ -0,0 +1,278 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ */
+
+#include <linux/err.h>
+#include <linux/regmap.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <linux/interrupt.h>
+#include <linux/of_irq.h>
+#include <linux/platform_device.h>
+#include <linux/of_device.h>
+#include <linux/usb/role.h>
+#include <linux/usb/typec_mux.h>
+#include <linux/workqueue.h>
+#include <linux/regulator/consumer.h>
+#include <linux/regulator/driver.h>
+#include <linux/regulator/machine.h>
+
+#define DCDC_BASE			0x1100
+#define CMD_OTG				(DCDC_BASE + 0x40)
+#define OTG_EN				BIT(0)
+#define OTG_CFG				(DCDC_BASE + 0x53)
+#define OTG_EN_SRC_CFG			BIT(1)
+
+#define USB_BASE			0x1300
+#define TYPE_C_CFG_REG			(USB_BASE + 0x58)
+#define BC12_START_ON_CC		BIT(7)
+
+#define TYPEC_BASE			0x1500
+#define TYPEC_MISC_STATUS		(TYPEC_BASE + 0xb)
+#define CC_ATTACHED			BIT(0)
+#define CC_ORIENTATION			BIT(1)
+#define SNK_SRC_MODE			BIT(6)
+#define TYPEC_MODE_CFG			(TYPEC_BASE + 0x44)
+#define TYPEC_DISABLE_CMD		BIT(0)
+#define EN_SNK_ONLY			BIT(1)
+#define EN_SRC_ONLY			BIT(2)
+#define EN_TRY_SNK			BIT(4)
+#define TYPEC_VCONN_CONTROL		(TYPEC_BASE + 0x46)
+#define VCONN_EN_SRC			BIT(0)
+#define VCONN_EN_VAL			BIT(1)
+#define TYPEC_EXIT_STATE_CFG		(TYPEC_BASE + 0x50)
+#define SEL_SRC_UPPER_REF		BIT(2)
+#define TYPEC_INTR_EN_CFG_1		(TYPEC_BASE + 0x5e)
+#define TYPEC_INTR_EN_CFG_1_MASK	GENMASK(0, 7)
+
+struct qcom_pmic_typec {
+	struct device		*dev;
+	struct fwnode_handle	*fwnode;
+	struct regmap		*regmap;
+	struct work_struct	bh_work;
+
+	struct typec_capability *cap;
+	struct typec_port	*port;
+	struct usb_role_switch *role_sw;
+
+	struct regulator_desc usb_vbus_rdesc;
+	struct regulator_dev *usb_vbus_reg;
+};
+
+static int qcom_pmic_typec_vbus_enable(struct qcom_pmic_typec *qcom_usb)
+{
+	int rc;
+
+	rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, OTG_EN);
+	if (rc)
+		dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
+
+	return rc;
+}
+
+static int qcom_pmic_typec_vbus_disable(struct qcom_pmic_typec *qcom_usb)
+{
+	int rc;
+
+	rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, 0);
+	if (rc)
+		dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
+
+	return rc;
+}
+
+void qcom_pmic_typec_bh_work(struct work_struct *w)
+{
+	struct qcom_pmic_typec *qcom_usb = container_of(w,
+							struct qcom_pmic_typec,
+							bh_work);
+	enum typec_orientation orientation;
+	enum usb_role role;
+	unsigned int stat;
+
+	regmap_read(qcom_usb->regmap, TYPEC_MISC_STATUS, &stat);
+
+	if (stat & CC_ATTACHED) {
+		orientation = ((stat & CC_ORIENTATION) >> 1) ?
+				TYPEC_ORIENTATION_REVERSE :
+				TYPEC_ORIENTATION_NORMAL;
+		typec_set_orientation(qcom_usb->port, orientation);
+
+		role = (stat & SNK_SRC_MODE) ? USB_ROLE_HOST : USB_ROLE_DEVICE;
+		if (role == USB_ROLE_HOST)
+			qcom_pmic_typec_vbus_enable(qcom_usb);
+		else
+			qcom_pmic_typec_vbus_disable(qcom_usb);
+
+		usb_role_switch_set_role(qcom_usb->role_sw, role);
+	} else {
+		usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
+		qcom_pmic_typec_vbus_disable(qcom_usb);
+	}
+}
+
+irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
+{
+	struct qcom_pmic_typec *qcom_usb = _qcom_usb;
+
+	queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
+
+	return IRQ_HANDLED;
+}
+
+static void qcom_pmic_typec_typec_hw_init(struct qcom_pmic_typec *qcom_usb)
+{
+	u8 mode;
+
+	regmap_update_bits(qcom_usb->regmap, TYPE_C_CFG_REG, BC12_START_ON_CC,
+			   0);
+	regmap_update_bits(qcom_usb->regmap, TYPEC_INTR_EN_CFG_1,
+			   TYPEC_INTR_EN_CFG_1_MASK, 0);
+
+	if (qcom_usb->cap->type != TYPEC_PORT_DRP)
+		mode = (qcom_usb->cap->type == TYPEC_PORT_SNK) ?
+					EN_SNK_ONLY : EN_SRC_ONLY;
+	else
+		mode = EN_TRY_SNK;
+	regmap_update_bits(qcom_usb->regmap, TYPEC_MODE_CFG,
+			   EN_SNK_ONLY | EN_TRY_SNK | EN_SRC_ONLY, mode);
+
+	regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
+			   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
+	regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
+			   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
+	regmap_update_bits(qcom_usb->regmap, TYPEC_EXIT_STATE_CFG,
+			   SEL_SRC_UPPER_REF, SEL_SRC_UPPER_REF);
+	regmap_update_bits(qcom_usb->regmap, OTG_CFG, OTG_EN_SRC_CFG,
+			   OTG_EN_SRC_CFG);
+}
+
+static int qcom_pmic_typec_probe(struct platform_device *pdev)
+{
+	struct device *dev = &pdev->dev;
+	struct qcom_pmic_typec *qcom_usb;
+	struct typec_capability *cap;
+	const char *buf;
+	int ret, irq, role;
+
+	qcom_usb = kzalloc(sizeof(*qcom_usb), GFP_KERNEL);
+	if (!qcom_usb)
+		return -ENOMEM;
+
+	qcom_usb->dev = dev;
+
+	qcom_usb->regmap = dev_get_regmap(dev->parent, NULL);
+	if (!qcom_usb->regmap) {
+		dev_err(dev, "Failed to get regmap\n");
+		return -EINVAL;
+	}
+
+	irq = platform_get_irq(pdev, 0);
+	if (irq < 0) {
+		dev_err(dev, "Failed to get CC irq\n");
+		return -EINVAL;
+	}
+
+	ret = devm_request_irq(qcom_usb->dev, irq, qcom_pmic_typec_interrupt,
+			       IRQF_SHARED, "qcom-pmic-typec", qcom_usb);
+	if (ret) {
+		dev_err(&pdev->dev, "Could not request IRQ\n");
+		return ret;
+	}
+
+	qcom_usb->fwnode = device_get_named_child_node(dev, "connector");
+	if (!qcom_usb->fwnode)
+		return -EINVAL;
+
+	cap = kzalloc(sizeof(*cap), GFP_KERNEL);
+	if (!cap) {
+		ret = -ENOMEM;
+		goto err_put_node;
+	}
+
+	ret = fwnode_property_read_string(qcom_usb->fwnode, "power-role", &buf);
+	if (!ret)
+		role = typec_find_port_power_role(buf);
+	else
+		role = TYPEC_PORT_SNK;
+	cap->type = role;
+
+	ret = fwnode_property_read_string(qcom_usb->fwnode, "data-role", &buf);
+	if (!ret)
+		role = typec_find_port_data_role(buf);
+	else
+		role = TYPEC_PORT_UFP;
+	cap->data = role;
+
+	cap->prefer_role = -1;
+	cap->fwnode = qcom_usb->fwnode;
+	qcom_usb->port = typec_register_port(dev, cap);
+	if (IS_ERR(qcom_usb->port)) {
+		dev_err(dev, "Failed to register type c port %d\n",
+			IS_ERR(qcom_usb->port));
+		ret = PTR_ERR(qcom_usb->port);
+		goto err_put_node;
+	}
+
+	qcom_usb->cap = cap;
+
+	qcom_usb->role_sw = fwnode_usb_role_switch_get(qcom_usb->fwnode);
+	if (IS_ERR(qcom_usb->role_sw)) {
+		if (PTR_ERR(qcom_usb->role_sw) != -EPROBE_DEFER)
+			dev_err(dev, "failed to get role switch\n");
+		ret = PTR_ERR(qcom_usb->role_sw);
+		goto err_typec_port;
+	}
+
+	INIT_WORK(&qcom_usb->bh_work, qcom_pmic_typec_bh_work);
+	platform_set_drvdata(pdev, qcom_usb);
+	qcom_pmic_typec_typec_hw_init(qcom_usb);
+
+	queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
+
+	return 0;
+
+err_typec_port:
+	typec_unregister_port(qcom_usb->port);
+err_put_node:
+	fwnode_handle_put(qcom_usb->fwnode);
+
+	return ret;
+}
+
+static int qcom_pmic_typec_remove(struct platform_device *pdev)
+{
+	struct qcom_pmic_typec *qcom_usb = platform_get_drvdata(pdev);
+
+	cancel_work_sync(&qcom_usb->bh_work);
+	usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
+	qcom_pmic_typec_vbus_disable(qcom_usb);
+
+	typec_unregister_port(qcom_usb->port);
+	usb_role_switch_put(qcom_usb->role_sw);
+	fwnode_handle_put(qcom_usb->fwnode);
+
+	return 0;
+}
+
+static const struct of_device_id qcom_pmic_typec_table[] = {
+	{ .compatible = "qcom,pm8150b-usb-typec" },
+	{ },
+};
+MODULE_DEVICE_TABLE(of, qcom_pmic_typec_table);
+
+static struct platform_driver qcom_pmic_typec = {
+	.driver = {
+		.name = "qcom,pmic-typec",
+		.of_match_table = qcom_pmic_typec_table,
+	},
+	.probe = qcom_pmic_typec_probe,
+	.remove = qcom_pmic_typec_remove,
+};
+
+module_platform_driver(qcom_pmic_typec);
+
+MODULE_DESCRIPTION("QCOM PMIC USB type C driver");
+MODULE_LICENSE("GPL v2");
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 2/3] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding
  2020-06-09 20:58 [PATCH 0/3] Introduce PMIC based USB type C detection Wesley Cheng
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
@ 2020-06-09 20:58 ` Wesley Cheng
  2020-06-09 20:58 ` [PATCH 3/3] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block Wesley Cheng
  2 siblings, 0 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-09 20:58 UTC (permalink / raw)
  To: heikki.krogerus, gregkh, mark.rutland, robh+dt, agross, bjorn.andersson
  Cc: linux-kernel, linux-arm-msm, devicetree, linux-usb, jackp,
	bryan.odonoghue, Wesley Cheng

Introduce the dt-binding for enabling USB type C orientation and role
detection using the PM8150B.  The driver will be responsible for receiving
the interrupt at a state change on the CC lines, reading the orientation/role,
and communicating this information to the remote clients, which can include
a role switch node and a type C switch.

Signed-off-by: Wesley Cheng <wcheng@codeaurora.org>
---
 .../devicetree/bindings/usb/qcom,pmic-typec.yaml   | 118 +++++++++++++++++++++
 1 file changed, 118 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml

diff --git a/Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml b/Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml
new file mode 100644
index 0000000..34058fb
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml
@@ -0,0 +1,118 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: "http://devicetree.org/schemas/usb/qcom,pmic-typec.yaml#"
+$schema: "http://devicetree.org/meta-schemas/core.yaml#"
+
+title: Qualcomm PMIC based USB type C Detection Driver
+
+maintainers:
+  - Wesley Cheng <wcheng@codeaurora.org>
+
+description: |
+  Qualcomm PMIC Type C Detect
+
+properties:
+  compatible:
+    enum:
+      - qcom,pm8150b-usb-typec
+
+  reg:
+    maxItems: 1
+    description: Type C base address
+
+  interrupts:
+    maxItems: 1
+    description: CC change interrupt from PMIC
+
+  connector:
+    description: Connector type for remote endpoints
+    type: object
+
+    properties:
+      compatible:
+        enum:
+          - usb-c-connector
+
+      power-role:
+       enum:
+         - dual
+         - source
+         - sink
+
+      data-role:
+        enum:
+          - dual
+          - host
+          - device
+
+      port:
+        description: Remote endpoint connections
+        type: object
+
+        properties:
+          endpoint@0:
+            description: Connection to USB type C mux node
+            type: object
+
+            properties:
+              remote-endpoint:
+                maxItems: 1
+                description: Node reference to the type C mux
+
+          endpoint@1:
+            description: Connection to role switch node
+            type: object
+
+            properties:
+              remote-endpoint:
+                maxItems: 1
+                description: Node reference to the role switch node
+
+    required:
+      - compatible
+
+required:
+  - compatible
+  - interrupts
+  - connector
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/interrupt-controller/irq.h>
+    pm8150b {
+        #address-cells = <1>;
+        #size-cells = <0>;
+        qcom,typec@1500 {
+            compatible = "qcom,pm8150b-usb-typec";
+            reg = <0x1500>;
+            interrupts =
+                <0x2 0x15 0x5 IRQ_TYPE_EDGE_RISING>;
+
+            connector {
+                compatible = "usb-c-connector";
+                power-role = "dual";
+                data-role = "dual";
+                port {
+                    #address-cells = <1>;
+                    #size-cells = <0>;
+                    usb3_data_ss: endpoint@0 {
+                        reg = <0>;
+                        remote-endpoint =
+                                <&qmp_ss_mux>;
+                    };
+
+                    usb3_role: endpoint@1 {
+
+                        reg = <1>;
+                        remote-endpoint =
+                                <&dwc3_drd_switch>;
+                    };
+                };
+            };
+        };
+    };
+...
+
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 3/3] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block
  2020-06-09 20:58 [PATCH 0/3] Introduce PMIC based USB type C detection Wesley Cheng
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
  2020-06-09 20:58 ` [PATCH 2/3] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding Wesley Cheng
@ 2020-06-09 20:58 ` Wesley Cheng
  2 siblings, 0 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-09 20:58 UTC (permalink / raw)
  To: heikki.krogerus, gregkh, mark.rutland, robh+dt, agross, bjorn.andersson
  Cc: linux-kernel, linux-arm-msm, devicetree, linux-usb, jackp,
	bryan.odonoghue, Wesley Cheng

The PM8150B has a dedicated USB type C block, which can be used for type C
orientation and role detection.  Create the reference node to this type C
block for further use.

Signed-off-by: Wesley Cheng <wcheng@codeaurora.org>
---
 arch/arm64/boot/dts/qcom/pm8150b.dtsi | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/pm8150b.dtsi b/arch/arm64/boot/dts/qcom/pm8150b.dtsi
index 40b5d75..7364d6b 100644
--- a/arch/arm64/boot/dts/qcom/pm8150b.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8150b.dtsi
@@ -22,6 +22,13 @@
 			status = "disabled";
 		};
 
+		qcom,typec@1500 {
+			compatible = "qcom,pm8150b-usb-typec";
+			reg = <0x1500>;
+			interrupts =
+				<0x2 0x15 0x5 IRQ_TYPE_EDGE_RISING>;
+		};
+
 		adc@3100 {
 			compatible = "qcom,spmi-adc5";
 			reg = <0x3100>;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
@ 2020-06-09 21:20   ` Randy Dunlap
  2020-06-12  4:15     ` Wesley Cheng
  2020-06-10  1:20   ` Jack Pham
                     ` (2 subsequent siblings)
  3 siblings, 1 reply; 13+ messages in thread
From: Randy Dunlap @ 2020-06-09 21:20 UTC (permalink / raw)
  To: Wesley Cheng, heikki.krogerus, gregkh, mark.rutland, robh+dt,
	agross, bjorn.andersson
  Cc: linux-kernel, linux-arm-msm, devicetree, linux-usb, jackp,
	bryan.odonoghue

On 6/9/20 1:58 PM, Wesley Cheng wrote:
> diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig
> index 559dd06..8de2520 100644
> --- a/drivers/usb/typec/Kconfig
> +++ b/drivers/usb/typec/Kconfig
> @@ -73,6 +73,17 @@ config TYPEC_TPS6598X
>  	  If you choose to build this driver as a dynamically linked module, the
>  	  module will be called tps6598x.ko.
> 

Hi,
Please spell "Type-C" like all of the other drivers do.

> +config TYPEC_QCOM_PMIC
> +	tristate "Qualcomm PMIC USB typec driver"
> +	depends on ARCH_QCOM
> +	help
> +	  Driver for supporting role switch over the Qualcomm PMIC.  This will
> +	  handle the type C role and orientation detection reported by the QCOM
> +	  PMIC if the PMIC has the capability to handle type C detection.
> +
> +	  It will also enable the VBUS output to connected devices when a
> +	  DFP connection is made.
> +
>  source "drivers/usb/typec/mux/Kconfig"
>  
>  source "drivers/usb/typec/altmodes/Kconfig"


-- 
~Randy


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
  2020-06-09 21:20   ` Randy Dunlap
@ 2020-06-10  1:20   ` Jack Pham
  2020-06-10 19:37     ` Bjorn Andersson
  2020-06-10  1:25     ` kernel test robot
  2020-06-10  2:27   ` Jun Li
  3 siblings, 1 reply; 13+ messages in thread
From: Jack Pham @ 2020-06-10  1:20 UTC (permalink / raw)
  To: Wesley Cheng
  Cc: heikki.krogerus, gregkh, mark.rutland, robh+dt, agross,
	bjorn.andersson, linux-kernel, linux-arm-msm, devicetree,
	linux-usb, bryan.odonoghue

Hi Wesley,

On Tue, Jun 09, 2020 at 01:58:49PM -0700, Wesley Cheng wrote:
> The QCOM SPMI typec driver handles the role and orientation detection, and
> notifies client drivers using the USB role switch framework.   It registers
> as a typec port, so orientation can be communicated using the typec switch
> APIs.  The driver also registers the VBUS output regulator, so client

Doesn't look like it.. As we discussed in earlier revisions we decided
to drop the regulator.

> drivers can enable the VBUS source when acting as a source/host.
> 
> Signed-off-by: Wesley Cheng <wcheng@codeaurora.org>
> ---
>  drivers/usb/typec/Kconfig           |  11 ++
>  drivers/usb/typec/Makefile          |   1 +
>  drivers/usb/typec/qcom-pmic-typec.c | 278 ++++++++++++++++++++++++++++++++++++
>  3 files changed, 290 insertions(+)
>  create mode 100644 drivers/usb/typec/qcom-pmic-typec.c
> 
> diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig
> index 559dd06..8de2520 100644
> --- a/drivers/usb/typec/Kconfig
> +++ b/drivers/usb/typec/Kconfig
> @@ -73,6 +73,17 @@ config TYPEC_TPS6598X
>  	  If you choose to build this driver as a dynamically linked module, the
>  	  module will be called tps6598x.ko.
>  
> +config TYPEC_QCOM_PMIC
> +	tristate "Qualcomm PMIC USB typec driver"
> +	depends on ARCH_QCOM
> +	help
> +	  Driver for supporting role switch over the Qualcomm PMIC.  This will
> +	  handle the type C role and orientation detection reported by the QCOM
> +	  PMIC if the PMIC has the capability to handle type C detection.
> +
> +	  It will also enable the VBUS output to connected devices when a
> +	  DFP connection is made.
> +
>  source "drivers/usb/typec/mux/Kconfig"
>  
>  source "drivers/usb/typec/altmodes/Kconfig"
> diff --git a/drivers/usb/typec/Makefile b/drivers/usb/typec/Makefile
> index 7753a5c3..cceffd9 100644
> --- a/drivers/usb/typec/Makefile
> +++ b/drivers/usb/typec/Makefile
> @@ -6,4 +6,5 @@ obj-$(CONFIG_TYPEC_TCPM)	+= tcpm/
>  obj-$(CONFIG_TYPEC_UCSI)	+= ucsi/
>  obj-$(CONFIG_TYPEC_HD3SS3220)	+= hd3ss3220.o
>  obj-$(CONFIG_TYPEC_TPS6598X)	+= tps6598x.o
> +obj-$(CONFIG_TYPEC_QCOM_PMIC)	+= qcom-pmic-typec.o
>  obj-$(CONFIG_TYPEC)		+= mux/
> diff --git a/drivers/usb/typec/qcom-pmic-typec.c b/drivers/usb/typec/qcom-pmic-typec.c
> new file mode 100644
> index 0000000..ce6319c
> --- /dev/null
> +++ b/drivers/usb/typec/qcom-pmic-typec.c
> @@ -0,0 +1,278 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Copyright (c) 2020, The Linux Foundation. All rights reserved.
> + */
> +
> +#include <linux/err.h>
> +#include <linux/regmap.h>
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/slab.h>
> +#include <linux/interrupt.h>
> +#include <linux/of_irq.h>
> +#include <linux/platform_device.h>
> +#include <linux/of_device.h>
> +#include <linux/usb/role.h>
> +#include <linux/usb/typec_mux.h>
> +#include <linux/workqueue.h>
> +#include <linux/regulator/consumer.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/regulator/machine.h>
> +
> +#define DCDC_BASE			0x1100

along with USB_BASE @ 0x1300, is it ok to allow this driver to access
registers outside of its 'reg' base (0x1500 according to the DT
bindings)?

> +#define CMD_OTG				(DCDC_BASE + 0x40)
> +#define OTG_EN				BIT(0)
> +#define OTG_CFG				(DCDC_BASE + 0x53)
> +#define OTG_EN_SRC_CFG			BIT(1)
> +
> +#define USB_BASE			0x1300
> +#define TYPE_C_CFG_REG			(USB_BASE + 0x58)
> +#define BC12_START_ON_CC		BIT(7)
> +
> +#define TYPEC_BASE			0x1500
> +#define TYPEC_MISC_STATUS		(TYPEC_BASE + 0xb)
> +#define CC_ATTACHED			BIT(0)
> +#define CC_ORIENTATION			BIT(1)
> +#define SNK_SRC_MODE			BIT(6)
> +#define TYPEC_MODE_CFG			(TYPEC_BASE + 0x44)
> +#define TYPEC_DISABLE_CMD		BIT(0)
> +#define EN_SNK_ONLY			BIT(1)
> +#define EN_SRC_ONLY			BIT(2)
> +#define EN_TRY_SNK			BIT(4)
> +#define TYPEC_VCONN_CONTROL		(TYPEC_BASE + 0x46)
> +#define VCONN_EN_SRC			BIT(0)
> +#define VCONN_EN_VAL			BIT(1)
> +#define TYPEC_EXIT_STATE_CFG		(TYPEC_BASE + 0x50)
> +#define SEL_SRC_UPPER_REF		BIT(2)
> +#define TYPEC_INTR_EN_CFG_1		(TYPEC_BASE + 0x5e)
> +#define TYPEC_INTR_EN_CFG_1_MASK	GENMASK(0, 7)
> +
> +struct qcom_pmic_typec {
> +	struct device		*dev;
> +	struct fwnode_handle	*fwnode;
> +	struct regmap		*regmap;
> +	struct work_struct	bh_work;
> +
> +	struct typec_capability *cap;
> +	struct typec_port	*port;
> +	struct usb_role_switch *role_sw;
> +
> +	struct regulator_desc usb_vbus_rdesc;
> +	struct regulator_dev *usb_vbus_reg;

These aren't used...leftovers from earlier revisions?

> +};
> +
> +static int qcom_pmic_typec_vbus_enable(struct qcom_pmic_typec *qcom_usb)
> +{
> +	int rc;
> +
> +	rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, OTG_EN);
> +	if (rc)
> +		dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
> +
> +	return rc;
> +}
> +
> +static int qcom_pmic_typec_vbus_disable(struct qcom_pmic_typec *qcom_usb)
> +{
> +	int rc;
> +
> +	rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, 0);
> +	if (rc)
> +		dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
> +
> +	return rc;
> +}
> +
> +void qcom_pmic_typec_bh_work(struct work_struct *w)
> +{
> +	struct qcom_pmic_typec *qcom_usb = container_of(w,
> +							struct qcom_pmic_typec,
> +							bh_work);
> +	enum typec_orientation orientation;
> +	enum usb_role role;
> +	unsigned int stat;
> +
> +	regmap_read(qcom_usb->regmap, TYPEC_MISC_STATUS, &stat);
> +
> +	if (stat & CC_ATTACHED) {
> +		orientation = ((stat & CC_ORIENTATION) >> 1) ?
> +				TYPEC_ORIENTATION_REVERSE :
> +				TYPEC_ORIENTATION_NORMAL;
> +		typec_set_orientation(qcom_usb->port, orientation);
> +
> +		role = (stat & SNK_SRC_MODE) ? USB_ROLE_HOST : USB_ROLE_DEVICE;
> +		if (role == USB_ROLE_HOST)
> +			qcom_pmic_typec_vbus_enable(qcom_usb);
> +		else
> +			qcom_pmic_typec_vbus_disable(qcom_usb);
> +
> +		usb_role_switch_set_role(qcom_usb->role_sw, role);
> +	} else {
> +		usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
> +		qcom_pmic_typec_vbus_disable(qcom_usb);
> +	}
> +}
> +
> +irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
> +{
> +	struct qcom_pmic_typec *qcom_usb = _qcom_usb;
> +
> +	queue_work(system_power_efficient_wq, &qcom_usb->bh_work);

Do we really need a workqueue function here or would a threaded IRQ
handler work?

> +
> +	return IRQ_HANDLED;
> +}
> +
> +static void qcom_pmic_typec_typec_hw_init(struct qcom_pmic_typec *qcom_usb)
> +{
> +	u8 mode;
> +
> +	regmap_update_bits(qcom_usb->regmap, TYPE_C_CFG_REG, BC12_START_ON_CC,
> +			   0);
> +	regmap_update_bits(qcom_usb->regmap, TYPEC_INTR_EN_CFG_1,
> +			   TYPEC_INTR_EN_CFG_1_MASK, 0);
> +
> +	if (qcom_usb->cap->type != TYPEC_PORT_DRP)
> +		mode = (qcom_usb->cap->type == TYPEC_PORT_SNK) ?
> +					EN_SNK_ONLY : EN_SRC_ONLY;
> +	else
> +		mode = EN_TRY_SNK;
> +	regmap_update_bits(qcom_usb->regmap, TYPEC_MODE_CFG,
> +			   EN_SNK_ONLY | EN_TRY_SNK | EN_SRC_ONLY, mode);

HW also has an EN_TRY_SRC bit too. Would these EN_TRY_{SRC,SNK} bits
happen to be compatible with the struct typec's try_role() at all?

> +
> +	regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
> +			   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
> +	regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
> +			   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);

duplicated?

> +	regmap_update_bits(qcom_usb->regmap, TYPEC_EXIT_STATE_CFG,
> +			   SEL_SRC_UPPER_REF, SEL_SRC_UPPER_REF);
> +	regmap_update_bits(qcom_usb->regmap, OTG_CFG, OTG_EN_SRC_CFG,
> +			   OTG_EN_SRC_CFG);

I thought setting this OTG_EN_SRC_CFG bit makes the VBUS boost
controlled by HW, thereby negating the need for
qcom_pmic_typec_vbus_enable/disable ?

Thanks,
Jack

> +}
> +
> +static int qcom_pmic_typec_probe(struct platform_device *pdev)
> +{
> +	struct device *dev = &pdev->dev;
> +	struct qcom_pmic_typec *qcom_usb;
> +	struct typec_capability *cap;
> +	const char *buf;
> +	int ret, irq, role;
> +
> +	qcom_usb = kzalloc(sizeof(*qcom_usb), GFP_KERNEL);
> +	if (!qcom_usb)
> +		return -ENOMEM;
> +
> +	qcom_usb->dev = dev;
> +
> +	qcom_usb->regmap = dev_get_regmap(dev->parent, NULL);
> +	if (!qcom_usb->regmap) {
> +		dev_err(dev, "Failed to get regmap\n");
> +		return -EINVAL;
> +	}
> +
> +	irq = platform_get_irq(pdev, 0);
> +	if (irq < 0) {
> +		dev_err(dev, "Failed to get CC irq\n");
> +		return -EINVAL;
> +	}
> +
> +	ret = devm_request_irq(qcom_usb->dev, irq, qcom_pmic_typec_interrupt,
> +			       IRQF_SHARED, "qcom-pmic-typec", qcom_usb);
> +	if (ret) {
> +		dev_err(&pdev->dev, "Could not request IRQ\n");
> +		return ret;
> +	}
> +
> +	qcom_usb->fwnode = device_get_named_child_node(dev, "connector");
> +	if (!qcom_usb->fwnode)
> +		return -EINVAL;
> +
> +	cap = kzalloc(sizeof(*cap), GFP_KERNEL);
> +	if (!cap) {
> +		ret = -ENOMEM;
> +		goto err_put_node;
> +	}
> +
> +	ret = fwnode_property_read_string(qcom_usb->fwnode, "power-role", &buf);
> +	if (!ret)
> +		role = typec_find_port_power_role(buf);
> +	else
> +		role = TYPEC_PORT_SNK;
> +	cap->type = role;
> +
> +	ret = fwnode_property_read_string(qcom_usb->fwnode, "data-role", &buf);
> +	if (!ret)
> +		role = typec_find_port_data_role(buf);
> +	else
> +		role = TYPEC_PORT_UFP;
> +	cap->data = role;
> +
> +	cap->prefer_role = -1;
> +	cap->fwnode = qcom_usb->fwnode;
> +	qcom_usb->port = typec_register_port(dev, cap);
> +	if (IS_ERR(qcom_usb->port)) {
> +		dev_err(dev, "Failed to register type c port %d\n",
> +			IS_ERR(qcom_usb->port));
> +		ret = PTR_ERR(qcom_usb->port);
> +		goto err_put_node;
> +	}
> +
> +	qcom_usb->cap = cap;
> +
> +	qcom_usb->role_sw = fwnode_usb_role_switch_get(qcom_usb->fwnode);
> +	if (IS_ERR(qcom_usb->role_sw)) {
> +		if (PTR_ERR(qcom_usb->role_sw) != -EPROBE_DEFER)
> +			dev_err(dev, "failed to get role switch\n");
> +		ret = PTR_ERR(qcom_usb->role_sw);
> +		goto err_typec_port;
> +	}
> +
> +	INIT_WORK(&qcom_usb->bh_work, qcom_pmic_typec_bh_work);
> +	platform_set_drvdata(pdev, qcom_usb);
> +	qcom_pmic_typec_typec_hw_init(qcom_usb);
> +
> +	queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
> +
> +	return 0;
> +
> +err_typec_port:
> +	typec_unregister_port(qcom_usb->port);
> +err_put_node:
> +	fwnode_handle_put(qcom_usb->fwnode);
> +
> +	return ret;
> +}
> +
> +static int qcom_pmic_typec_remove(struct platform_device *pdev)
> +{
> +	struct qcom_pmic_typec *qcom_usb = platform_get_drvdata(pdev);
> +
> +	cancel_work_sync(&qcom_usb->bh_work);
> +	usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
> +	qcom_pmic_typec_vbus_disable(qcom_usb);
> +
> +	typec_unregister_port(qcom_usb->port);
> +	usb_role_switch_put(qcom_usb->role_sw);
> +	fwnode_handle_put(qcom_usb->fwnode);
> +
> +	return 0;
> +}
> +
> +static const struct of_device_id qcom_pmic_typec_table[] = {
> +	{ .compatible = "qcom,pm8150b-usb-typec" },
> +	{ },
> +};
> +MODULE_DEVICE_TABLE(of, qcom_pmic_typec_table);
> +
> +static struct platform_driver qcom_pmic_typec = {
> +	.driver = {
> +		.name = "qcom,pmic-typec",
> +		.of_match_table = qcom_pmic_typec_table,
> +	},
> +	.probe = qcom_pmic_typec_probe,
> +	.remove = qcom_pmic_typec_remove,
> +};
> +
> +module_platform_driver(qcom_pmic_typec);
> +
> +MODULE_DESCRIPTION("QCOM PMIC USB type C driver");
> +MODULE_LICENSE("GPL v2");
-- 
The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
@ 2020-06-10  1:25     ` kernel test robot
  2020-06-10  1:20   ` Jack Pham
                       ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: kernel test robot @ 2020-06-10  1:25 UTC (permalink / raw)
  To: Wesley Cheng, heikki.krogerus, gregkh, mark.rutland, robh+dt,
	agross, bjorn.andersson
  Cc: kbuild-all, linux-kernel, linux-arm-msm, devicetree, linux-usb

[-- Attachment #1: Type: text/plain, Size: 7277 bytes --]

Hi Wesley,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on usb/usb-testing]
[also build test ERROR on robh/for-next v5.7 next-20200609]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Wesley-Cheng/Introduce-PMIC-based-USB-type-C-detection/20200610-050045
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
config: arm-allyesconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All error/warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/usb/typec/qcom-pmic-typec.c:86:6: warning: no previous prototype for 'qcom_pmic_typec_bh_work' [-Wmissing-prototypes]
86 | void qcom_pmic_typec_bh_work(struct work_struct *w)
|      ^~~~~~~~~~~~~~~~~~~~~~~
>> drivers/usb/typec/qcom-pmic-typec.c:116:13: warning: no previous prototype for 'qcom_pmic_typec_interrupt' [-Wmissing-prototypes]
116 | irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
|             ^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from drivers/usb/typec/qcom-pmic-typec.c:7:
drivers/usb/typec/qcom-pmic-typec.c: In function 'qcom_pmic_typec_typec_hw_init':
>> include/linux/build_bug.h:16:51: error: negative width in bit-field '<anonymous>'
16 | #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
|                                                   ^
include/linux/regmap.h:84:36: note: in definition of macro 'regmap_update_bits'
84 |  regmap_update_bits_base(map, reg, mask, val, NULL, false, false)
|                                    ^~~~
include/linux/bits.h:25:3: note: in expansion of macro 'BUILD_BUG_ON_ZERO'
25 |  (BUILD_BUG_ON_ZERO(__builtin_choose_expr(          |   ^~~~~~~~~~~~~~~~~
include/linux/bits.h:39:3: note: in expansion of macro 'GENMASK_INPUT_CHECK'
39 |  (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))
|   ^~~~~~~~~~~~~~~~~~~
>> drivers/usb/typec/qcom-pmic-typec.c:48:34: note: in expansion of macro 'GENMASK'
48 | #define TYPEC_INTR_EN_CFG_1_MASK GENMASK(0, 7)
|                                  ^~~~~~~
>> drivers/usb/typec/qcom-pmic-typec.c:132:7: note: in expansion of macro 'TYPEC_INTR_EN_CFG_1_MASK'
132 |       TYPEC_INTR_EN_CFG_1_MASK, 0);
|       ^~~~~~~~~~~~~~~~~~~~~~~~

vim +/qcom_pmic_typec_bh_work +86 drivers/usb/typec/qcom-pmic-typec.c

    31	
    32	#define TYPEC_BASE			0x1500
    33	#define TYPEC_MISC_STATUS		(TYPEC_BASE + 0xb)
    34	#define CC_ATTACHED			BIT(0)
    35	#define CC_ORIENTATION			BIT(1)
    36	#define SNK_SRC_MODE			BIT(6)
    37	#define TYPEC_MODE_CFG			(TYPEC_BASE + 0x44)
    38	#define TYPEC_DISABLE_CMD		BIT(0)
    39	#define EN_SNK_ONLY			BIT(1)
    40	#define EN_SRC_ONLY			BIT(2)
    41	#define EN_TRY_SNK			BIT(4)
    42	#define TYPEC_VCONN_CONTROL		(TYPEC_BASE + 0x46)
    43	#define VCONN_EN_SRC			BIT(0)
    44	#define VCONN_EN_VAL			BIT(1)
    45	#define TYPEC_EXIT_STATE_CFG		(TYPEC_BASE + 0x50)
    46	#define SEL_SRC_UPPER_REF		BIT(2)
    47	#define TYPEC_INTR_EN_CFG_1		(TYPEC_BASE + 0x5e)
  > 48	#define TYPEC_INTR_EN_CFG_1_MASK	GENMASK(0, 7)
    49	
    50	struct qcom_pmic_typec {
    51		struct device		*dev;
    52		struct fwnode_handle	*fwnode;
    53		struct regmap		*regmap;
    54		struct work_struct	bh_work;
    55	
    56		struct typec_capability *cap;
    57		struct typec_port	*port;
    58		struct usb_role_switch *role_sw;
    59	
    60		struct regulator_desc usb_vbus_rdesc;
    61		struct regulator_dev *usb_vbus_reg;
    62	};
    63	
    64	static int qcom_pmic_typec_vbus_enable(struct qcom_pmic_typec *qcom_usb)
    65	{
    66		int rc;
    67	
    68		rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, OTG_EN);
    69		if (rc)
    70			dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
    71	
    72		return rc;
    73	}
    74	
    75	static int qcom_pmic_typec_vbus_disable(struct qcom_pmic_typec *qcom_usb)
    76	{
    77		int rc;
    78	
    79		rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, 0);
    80		if (rc)
    81			dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
    82	
    83		return rc;
    84	}
    85	
  > 86	void qcom_pmic_typec_bh_work(struct work_struct *w)
    87	{
    88		struct qcom_pmic_typec *qcom_usb = container_of(w,
    89								struct qcom_pmic_typec,
    90								bh_work);
    91		enum typec_orientation orientation;
    92		enum usb_role role;
    93		unsigned int stat;
    94	
    95		regmap_read(qcom_usb->regmap, TYPEC_MISC_STATUS, &stat);
    96	
    97		if (stat & CC_ATTACHED) {
    98			orientation = ((stat & CC_ORIENTATION) >> 1) ?
    99					TYPEC_ORIENTATION_REVERSE :
   100					TYPEC_ORIENTATION_NORMAL;
   101			typec_set_orientation(qcom_usb->port, orientation);
   102	
   103			role = (stat & SNK_SRC_MODE) ? USB_ROLE_HOST : USB_ROLE_DEVICE;
   104			if (role == USB_ROLE_HOST)
   105				qcom_pmic_typec_vbus_enable(qcom_usb);
   106			else
   107				qcom_pmic_typec_vbus_disable(qcom_usb);
   108	
   109			usb_role_switch_set_role(qcom_usb->role_sw, role);
   110		} else {
   111			usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
   112			qcom_pmic_typec_vbus_disable(qcom_usb);
   113		}
   114	}
   115	
 > 116	irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
   117	{
   118		struct qcom_pmic_typec *qcom_usb = _qcom_usb;
   119	
   120		queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
   121	
   122		return IRQ_HANDLED;
   123	}
   124	
   125	static void qcom_pmic_typec_typec_hw_init(struct qcom_pmic_typec *qcom_usb)
   126	{
   127		u8 mode;
   128	
   129		regmap_update_bits(qcom_usb->regmap, TYPE_C_CFG_REG, BC12_START_ON_CC,
   130				   0);
   131		regmap_update_bits(qcom_usb->regmap, TYPEC_INTR_EN_CFG_1,
 > 132				   TYPEC_INTR_EN_CFG_1_MASK, 0);
   133	
   134		if (qcom_usb->cap->type != TYPEC_PORT_DRP)
   135			mode = (qcom_usb->cap->type == TYPEC_PORT_SNK) ?
   136						EN_SNK_ONLY : EN_SRC_ONLY;
   137		else
   138			mode = EN_TRY_SNK;
   139		regmap_update_bits(qcom_usb->regmap, TYPEC_MODE_CFG,
   140				   EN_SNK_ONLY | EN_TRY_SNK | EN_SRC_ONLY, mode);
   141	
   142		regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
   143				   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
   144		regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
   145				   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
   146		regmap_update_bits(qcom_usb->regmap, TYPEC_EXIT_STATE_CFG,
   147				   SEL_SRC_UPPER_REF, SEL_SRC_UPPER_REF);
   148		regmap_update_bits(qcom_usb->regmap, OTG_CFG, OTG_EN_SRC_CFG,
   149				   OTG_EN_SRC_CFG);
   150	}
   151	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 74956 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
@ 2020-06-10  1:25     ` kernel test robot
  0 siblings, 0 replies; 13+ messages in thread
From: kernel test robot @ 2020-06-10  1:25 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 7457 bytes --]

Hi Wesley,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on usb/usb-testing]
[also build test ERROR on robh/for-next v5.7 next-20200609]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Wesley-Cheng/Introduce-PMIC-based-USB-type-C-detection/20200610-050045
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
config: arm-allyesconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All error/warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/usb/typec/qcom-pmic-typec.c:86:6: warning: no previous prototype for 'qcom_pmic_typec_bh_work' [-Wmissing-prototypes]
86 | void qcom_pmic_typec_bh_work(struct work_struct *w)
|      ^~~~~~~~~~~~~~~~~~~~~~~
>> drivers/usb/typec/qcom-pmic-typec.c:116:13: warning: no previous prototype for 'qcom_pmic_typec_interrupt' [-Wmissing-prototypes]
116 | irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
|             ^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from drivers/usb/typec/qcom-pmic-typec.c:7:
drivers/usb/typec/qcom-pmic-typec.c: In function 'qcom_pmic_typec_typec_hw_init':
>> include/linux/build_bug.h:16:51: error: negative width in bit-field '<anonymous>'
16 | #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
|                                                   ^
include/linux/regmap.h:84:36: note: in definition of macro 'regmap_update_bits'
84 |  regmap_update_bits_base(map, reg, mask, val, NULL, false, false)
|                                    ^~~~
include/linux/bits.h:25:3: note: in expansion of macro 'BUILD_BUG_ON_ZERO'
25 |  (BUILD_BUG_ON_ZERO(__builtin_choose_expr(          |   ^~~~~~~~~~~~~~~~~
include/linux/bits.h:39:3: note: in expansion of macro 'GENMASK_INPUT_CHECK'
39 |  (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))
|   ^~~~~~~~~~~~~~~~~~~
>> drivers/usb/typec/qcom-pmic-typec.c:48:34: note: in expansion of macro 'GENMASK'
48 | #define TYPEC_INTR_EN_CFG_1_MASK GENMASK(0, 7)
|                                  ^~~~~~~
>> drivers/usb/typec/qcom-pmic-typec.c:132:7: note: in expansion of macro 'TYPEC_INTR_EN_CFG_1_MASK'
132 |       TYPEC_INTR_EN_CFG_1_MASK, 0);
|       ^~~~~~~~~~~~~~~~~~~~~~~~

vim +/qcom_pmic_typec_bh_work +86 drivers/usb/typec/qcom-pmic-typec.c

    31	
    32	#define TYPEC_BASE			0x1500
    33	#define TYPEC_MISC_STATUS		(TYPEC_BASE + 0xb)
    34	#define CC_ATTACHED			BIT(0)
    35	#define CC_ORIENTATION			BIT(1)
    36	#define SNK_SRC_MODE			BIT(6)
    37	#define TYPEC_MODE_CFG			(TYPEC_BASE + 0x44)
    38	#define TYPEC_DISABLE_CMD		BIT(0)
    39	#define EN_SNK_ONLY			BIT(1)
    40	#define EN_SRC_ONLY			BIT(2)
    41	#define EN_TRY_SNK			BIT(4)
    42	#define TYPEC_VCONN_CONTROL		(TYPEC_BASE + 0x46)
    43	#define VCONN_EN_SRC			BIT(0)
    44	#define VCONN_EN_VAL			BIT(1)
    45	#define TYPEC_EXIT_STATE_CFG		(TYPEC_BASE + 0x50)
    46	#define SEL_SRC_UPPER_REF		BIT(2)
    47	#define TYPEC_INTR_EN_CFG_1		(TYPEC_BASE + 0x5e)
  > 48	#define TYPEC_INTR_EN_CFG_1_MASK	GENMASK(0, 7)
    49	
    50	struct qcom_pmic_typec {
    51		struct device		*dev;
    52		struct fwnode_handle	*fwnode;
    53		struct regmap		*regmap;
    54		struct work_struct	bh_work;
    55	
    56		struct typec_capability *cap;
    57		struct typec_port	*port;
    58		struct usb_role_switch *role_sw;
    59	
    60		struct regulator_desc usb_vbus_rdesc;
    61		struct regulator_dev *usb_vbus_reg;
    62	};
    63	
    64	static int qcom_pmic_typec_vbus_enable(struct qcom_pmic_typec *qcom_usb)
    65	{
    66		int rc;
    67	
    68		rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, OTG_EN);
    69		if (rc)
    70			dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
    71	
    72		return rc;
    73	}
    74	
    75	static int qcom_pmic_typec_vbus_disable(struct qcom_pmic_typec *qcom_usb)
    76	{
    77		int rc;
    78	
    79		rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, 0);
    80		if (rc)
    81			dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
    82	
    83		return rc;
    84	}
    85	
  > 86	void qcom_pmic_typec_bh_work(struct work_struct *w)
    87	{
    88		struct qcom_pmic_typec *qcom_usb = container_of(w,
    89								struct qcom_pmic_typec,
    90								bh_work);
    91		enum typec_orientation orientation;
    92		enum usb_role role;
    93		unsigned int stat;
    94	
    95		regmap_read(qcom_usb->regmap, TYPEC_MISC_STATUS, &stat);
    96	
    97		if (stat & CC_ATTACHED) {
    98			orientation = ((stat & CC_ORIENTATION) >> 1) ?
    99					TYPEC_ORIENTATION_REVERSE :
   100					TYPEC_ORIENTATION_NORMAL;
   101			typec_set_orientation(qcom_usb->port, orientation);
   102	
   103			role = (stat & SNK_SRC_MODE) ? USB_ROLE_HOST : USB_ROLE_DEVICE;
   104			if (role == USB_ROLE_HOST)
   105				qcom_pmic_typec_vbus_enable(qcom_usb);
   106			else
   107				qcom_pmic_typec_vbus_disable(qcom_usb);
   108	
   109			usb_role_switch_set_role(qcom_usb->role_sw, role);
   110		} else {
   111			usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
   112			qcom_pmic_typec_vbus_disable(qcom_usb);
   113		}
   114	}
   115	
 > 116	irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
   117	{
   118		struct qcom_pmic_typec *qcom_usb = _qcom_usb;
   119	
   120		queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
   121	
   122		return IRQ_HANDLED;
   123	}
   124	
   125	static void qcom_pmic_typec_typec_hw_init(struct qcom_pmic_typec *qcom_usb)
   126	{
   127		u8 mode;
   128	
   129		regmap_update_bits(qcom_usb->regmap, TYPE_C_CFG_REG, BC12_START_ON_CC,
   130				   0);
   131		regmap_update_bits(qcom_usb->regmap, TYPEC_INTR_EN_CFG_1,
 > 132				   TYPEC_INTR_EN_CFG_1_MASK, 0);
   133	
   134		if (qcom_usb->cap->type != TYPEC_PORT_DRP)
   135			mode = (qcom_usb->cap->type == TYPEC_PORT_SNK) ?
   136						EN_SNK_ONLY : EN_SRC_ONLY;
   137		else
   138			mode = EN_TRY_SNK;
   139		regmap_update_bits(qcom_usb->regmap, TYPEC_MODE_CFG,
   140				   EN_SNK_ONLY | EN_TRY_SNK | EN_SRC_ONLY, mode);
   141	
   142		regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
   143				   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
   144		regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
   145				   VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
   146		regmap_update_bits(qcom_usb->regmap, TYPEC_EXIT_STATE_CFG,
   147				   SEL_SRC_UPPER_REF, SEL_SRC_UPPER_REF);
   148		regmap_update_bits(qcom_usb->regmap, OTG_CFG, OTG_EN_SRC_CFG,
   149				   OTG_EN_SRC_CFG);
   150	}
   151	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 74956 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
                     ` (2 preceding siblings ...)
  2020-06-10  1:25     ` kernel test robot
@ 2020-06-10  2:27   ` Jun Li
  2020-06-12  4:17     ` Wesley Cheng
  3 siblings, 1 reply; 13+ messages in thread
From: Jun Li @ 2020-06-10  2:27 UTC (permalink / raw)
  To: Wesley Cheng
  Cc: Heikki Krogerus, Greg Kroah-Hartman, Mark Rutland, Rob Herring,
	agross, bjorn.andersson, lkml, linux-arm-msm,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux USB List, Jack Pham, bryan.odonoghue

Hi,
Wesley Cheng <wcheng@codeaurora.org> 于2020年6月10日周三 上午5:00写道:
>
> The QCOM SPMI typec driver handles the role and orientation detection, and
> notifies client drivers using the USB role switch framework.   It registers
> as a typec port, so orientation can be communicated using the typec switch
> APIs.  The driver also registers the VBUS output regulator, so client
> drivers can enable the VBUS source when acting as a source/host.
>
> Signed-off-by: Wesley Cheng <wcheng@codeaurora.org>
> ---
>  drivers/usb/typec/Kconfig           |  11 ++
>  drivers/usb/typec/Makefile          |   1 +
>  drivers/usb/typec/qcom-pmic-typec.c | 278 ++++++++++++++++++++++++++++++++++++
>  3 files changed, 290 insertions(+)
>  create mode 100644 drivers/usb/typec/qcom-pmic-typec.c
>
> diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig
> index 559dd06..8de2520 100644
> --- a/drivers/usb/typec/Kconfig
> +++ b/drivers/usb/typec/Kconfig
> @@ -73,6 +73,17 @@ config TYPEC_TPS6598X
>           If you choose to build this driver as a dynamically linked module, the
>           module will be called tps6598x.ko.
>
> +config TYPEC_QCOM_PMIC
> +       tristate "Qualcomm PMIC USB typec driver"
> +       depends on ARCH_QCOM
> +       help
> +         Driver for supporting role switch over the Qualcomm PMIC.  This will
> +         handle the type C role and orientation detection reported by the QCOM
> +         PMIC if the PMIC has the capability to handle type C detection.
> +
> +         It will also enable the VBUS output to connected devices when a
> +         DFP connection is made.
> +
>  source "drivers/usb/typec/mux/Kconfig"
>
>  source "drivers/usb/typec/altmodes/Kconfig"
> diff --git a/drivers/usb/typec/Makefile b/drivers/usb/typec/Makefile
> index 7753a5c3..cceffd9 100644
> --- a/drivers/usb/typec/Makefile
> +++ b/drivers/usb/typec/Makefile
> @@ -6,4 +6,5 @@ obj-$(CONFIG_TYPEC_TCPM)        += tcpm/
>  obj-$(CONFIG_TYPEC_UCSI)       += ucsi/
>  obj-$(CONFIG_TYPEC_HD3SS3220)  += hd3ss3220.o
>  obj-$(CONFIG_TYPEC_TPS6598X)   += tps6598x.o
> +obj-$(CONFIG_TYPEC_QCOM_PMIC)  += qcom-pmic-typec.o
>  obj-$(CONFIG_TYPEC)            += mux/
> diff --git a/drivers/usb/typec/qcom-pmic-typec.c b/drivers/usb/typec/qcom-pmic-typec.c
> new file mode 100644
> index 0000000..ce6319c
> --- /dev/null
> +++ b/drivers/usb/typec/qcom-pmic-typec.c
> @@ -0,0 +1,278 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Copyright (c) 2020, The Linux Foundation. All rights reserved.
> + */
> +
> +#include <linux/err.h>
> +#include <linux/regmap.h>
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/slab.h>
> +#include <linux/interrupt.h>
> +#include <linux/of_irq.h>
> +#include <linux/platform_device.h>
> +#include <linux/of_device.h>
> +#include <linux/usb/role.h>
> +#include <linux/usb/typec_mux.h>
> +#include <linux/workqueue.h>
> +#include <linux/regulator/consumer.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/regulator/machine.h>
> +
> +#define DCDC_BASE                      0x1100
> +#define CMD_OTG                                (DCDC_BASE + 0x40)
> +#define OTG_EN                         BIT(0)
> +#define OTG_CFG                                (DCDC_BASE + 0x53)
> +#define OTG_EN_SRC_CFG                 BIT(1)
> +
> +#define USB_BASE                       0x1300
> +#define TYPE_C_CFG_REG                 (USB_BASE + 0x58)
> +#define BC12_START_ON_CC               BIT(7)
> +
> +#define TYPEC_BASE                     0x1500
> +#define TYPEC_MISC_STATUS              (TYPEC_BASE + 0xb)
> +#define CC_ATTACHED                    BIT(0)
> +#define CC_ORIENTATION                 BIT(1)
> +#define SNK_SRC_MODE                   BIT(6)
> +#define TYPEC_MODE_CFG                 (TYPEC_BASE + 0x44)
> +#define TYPEC_DISABLE_CMD              BIT(0)
> +#define EN_SNK_ONLY                    BIT(1)
> +#define EN_SRC_ONLY                    BIT(2)
> +#define EN_TRY_SNK                     BIT(4)
> +#define TYPEC_VCONN_CONTROL            (TYPEC_BASE + 0x46)
> +#define VCONN_EN_SRC                   BIT(0)
> +#define VCONN_EN_VAL                   BIT(1)
> +#define TYPEC_EXIT_STATE_CFG           (TYPEC_BASE + 0x50)
> +#define SEL_SRC_UPPER_REF              BIT(2)
> +#define TYPEC_INTR_EN_CFG_1            (TYPEC_BASE + 0x5e)
> +#define TYPEC_INTR_EN_CFG_1_MASK       GENMASK(0, 7)
> +
> +struct qcom_pmic_typec {
> +       struct device           *dev;
> +       struct fwnode_handle    *fwnode;
> +       struct regmap           *regmap;
> +       struct work_struct      bh_work;
> +
> +       struct typec_capability *cap;
> +       struct typec_port       *port;
> +       struct usb_role_switch *role_sw;
> +
> +       struct regulator_desc usb_vbus_rdesc;
> +       struct regulator_dev *usb_vbus_reg;
> +};
> +
> +static int qcom_pmic_typec_vbus_enable(struct qcom_pmic_typec *qcom_usb)
> +{
> +       int rc;
> +
> +       rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, OTG_EN);
> +       if (rc)
> +               dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
> +
> +       return rc;
> +}
> +
> +static int qcom_pmic_typec_vbus_disable(struct qcom_pmic_typec *qcom_usb)
> +{
> +       int rc;
> +
> +       rc = regmap_update_bits(qcom_usb->regmap, CMD_OTG, OTG_EN, 0);
> +       if (rc)
> +               dev_err(qcom_usb->dev, "failed to update OTG_CTL\n");
> +
> +       return rc;
> +}
> +
> +void qcom_pmic_typec_bh_work(struct work_struct *w)
> +{
> +       struct qcom_pmic_typec *qcom_usb = container_of(w,
> +                                                       struct qcom_pmic_typec,
> +                                                       bh_work);
> +       enum typec_orientation orientation;
> +       enum usb_role role;
> +       unsigned int stat;
> +
> +       regmap_read(qcom_usb->regmap, TYPEC_MISC_STATUS, &stat);
> +
> +       if (stat & CC_ATTACHED) {
> +               orientation = ((stat & CC_ORIENTATION) >> 1) ?
> +                               TYPEC_ORIENTATION_REVERSE :
> +                               TYPEC_ORIENTATION_NORMAL;
> +               typec_set_orientation(qcom_usb->port, orientation);
> +
> +               role = (stat & SNK_SRC_MODE) ? USB_ROLE_HOST : USB_ROLE_DEVICE;
> +               if (role == USB_ROLE_HOST)
> +                       qcom_pmic_typec_vbus_enable(qcom_usb);
> +               else
> +                       qcom_pmic_typec_vbus_disable(qcom_usb);
> +
> +               usb_role_switch_set_role(qcom_usb->role_sw, role);
> +       } else {
> +               usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
> +               qcom_pmic_typec_vbus_disable(qcom_usb);
> +       }
> +}
> +
> +irqreturn_t qcom_pmic_typec_interrupt(int irq, void *_qcom_usb)
> +{
> +       struct qcom_pmic_typec *qcom_usb = _qcom_usb;
> +
> +       queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
> +
> +       return IRQ_HANDLED;
> +}
> +
> +static void qcom_pmic_typec_typec_hw_init(struct qcom_pmic_typec *qcom_usb)
> +{
> +       u8 mode;
> +
> +       regmap_update_bits(qcom_usb->regmap, TYPE_C_CFG_REG, BC12_START_ON_CC,
> +                          0);
> +       regmap_update_bits(qcom_usb->regmap, TYPEC_INTR_EN_CFG_1,
> +                          TYPEC_INTR_EN_CFG_1_MASK, 0);
> +
> +       if (qcom_usb->cap->type != TYPEC_PORT_DRP)
> +               mode = (qcom_usb->cap->type == TYPEC_PORT_SNK) ?
> +                                       EN_SNK_ONLY : EN_SRC_ONLY;
> +       else
> +               mode = EN_TRY_SNK;
> +       regmap_update_bits(qcom_usb->regmap, TYPEC_MODE_CFG,
> +                          EN_SNK_ONLY | EN_TRY_SNK | EN_SRC_ONLY, mode);
> +
> +       regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
> +                          VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
> +       regmap_update_bits(qcom_usb->regmap, TYPEC_VCONN_CONTROL,
> +                          VCONN_EN_SRC | VCONN_EN_VAL, VCONN_EN_SRC);
> +       regmap_update_bits(qcom_usb->regmap, TYPEC_EXIT_STATE_CFG,
> +                          SEL_SRC_UPPER_REF, SEL_SRC_UPPER_REF);
> +       regmap_update_bits(qcom_usb->regmap, OTG_CFG, OTG_EN_SRC_CFG,
> +                          OTG_EN_SRC_CFG);
> +}
> +
> +static int qcom_pmic_typec_probe(struct platform_device *pdev)
> +{
> +       struct device *dev = &pdev->dev;
> +       struct qcom_pmic_typec *qcom_usb;
> +       struct typec_capability *cap;
> +       const char *buf;
> +       int ret, irq, role;
> +
> +       qcom_usb = kzalloc(sizeof(*qcom_usb), GFP_KERNEL);

devm_kzalloc().

> +       if (!qcom_usb)
> +               return -ENOMEM;
> +
> +       qcom_usb->dev = dev;
> +
> +       qcom_usb->regmap = dev_get_regmap(dev->parent, NULL);
> +       if (!qcom_usb->regmap) {
> +               dev_err(dev, "Failed to get regmap\n");
> +               return -EINVAL;
> +       }
> +
> +       irq = platform_get_irq(pdev, 0);
> +       if (irq < 0) {
> +               dev_err(dev, "Failed to get CC irq\n");
> +               return -EINVAL;
> +       }
> +
> +       ret = devm_request_irq(qcom_usb->dev, irq, qcom_pmic_typec_interrupt,
> +                              IRQF_SHARED, "qcom-pmic-typec", qcom_usb);
> +       if (ret) {
> +               dev_err(&pdev->dev, "Could not request IRQ\n");
> +               return ret;
> +       }
> +
> +       qcom_usb->fwnode = device_get_named_child_node(dev, "connector");
> +       if (!qcom_usb->fwnode)
> +               return -EINVAL;
> +
> +       cap = kzalloc(sizeof(*cap), GFP_KERNEL);

devm_kzalloc().

> +       if (!cap) {
> +               ret = -ENOMEM;
> +               goto err_put_node;
> +       }
> +
> +       ret = fwnode_property_read_string(qcom_usb->fwnode, "power-role", &buf);
> +       if (!ret)
> +               role = typec_find_port_power_role(buf);

if (role < 0)

> +       else
> +               role = TYPEC_PORT_SNK;
> +       cap->type = role;
> +
> +       ret = fwnode_property_read_string(qcom_usb->fwnode, "data-role", &buf);
> +       if (!ret)
> +               role = typec_find_port_data_role(buf);

if (role < 0)

> +       else
> +               role = TYPEC_PORT_UFP;
> +       cap->data = role;
> +
> +       cap->prefer_role = -1;

TYPEC_NO_PREFERRED_ROLE

> +       cap->fwnode = qcom_usb->fwnode;
> +       qcom_usb->port = typec_register_port(dev, cap);
> +       if (IS_ERR(qcom_usb->port)) {
> +               dev_err(dev, "Failed to register type c port %d\n",
> +                       IS_ERR(qcom_usb->port));
> +               ret = PTR_ERR(qcom_usb->port);

dev_err(dev, , ret)?

Li Jun
> +               goto err_put_node;
> +       }
> +
> +       qcom_usb->cap = cap;
> +
> +       qcom_usb->role_sw = fwnode_usb_role_switch_get(qcom_usb->fwnode);
> +       if (IS_ERR(qcom_usb->role_sw)) {
> +               if (PTR_ERR(qcom_usb->role_sw) != -EPROBE_DEFER)
> +                       dev_err(dev, "failed to get role switch\n");
> +               ret = PTR_ERR(qcom_usb->role_sw);
> +               goto err_typec_port;
> +       }
> +
> +       INIT_WORK(&qcom_usb->bh_work, qcom_pmic_typec_bh_work);
> +       platform_set_drvdata(pdev, qcom_usb);
> +       qcom_pmic_typec_typec_hw_init(qcom_usb);
> +
> +       queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
> +
> +       return 0;
> +
> +err_typec_port:
> +       typec_unregister_port(qcom_usb->port);
> +err_put_node:
> +       fwnode_handle_put(qcom_usb->fwnode);
> +
> +       return ret;
> +}
> +
> +static int qcom_pmic_typec_remove(struct platform_device *pdev)
> +{
> +       struct qcom_pmic_typec *qcom_usb = platform_get_drvdata(pdev);
> +
> +       cancel_work_sync(&qcom_usb->bh_work);
> +       usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
> +       qcom_pmic_typec_vbus_disable(qcom_usb);
> +
> +       typec_unregister_port(qcom_usb->port);
> +       usb_role_switch_put(qcom_usb->role_sw);
> +       fwnode_handle_put(qcom_usb->fwnode);
> +
> +       return 0;
> +}
> +
> +static const struct of_device_id qcom_pmic_typec_table[] = {
> +       { .compatible = "qcom,pm8150b-usb-typec" },
> +       { },
> +};
> +MODULE_DEVICE_TABLE(of, qcom_pmic_typec_table);
> +
> +static struct platform_driver qcom_pmic_typec = {
> +       .driver = {
> +               .name = "qcom,pmic-typec",
> +               .of_match_table = qcom_pmic_typec_table,
> +       },
> +       .probe = qcom_pmic_typec_probe,
> +       .remove = qcom_pmic_typec_remove,
> +};
> +
> +module_platform_driver(qcom_pmic_typec);
> +
> +MODULE_DESCRIPTION("QCOM PMIC USB type C driver");
> +MODULE_LICENSE("GPL v2");
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project
>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-10  1:20   ` Jack Pham
@ 2020-06-10 19:37     ` Bjorn Andersson
  2020-06-12  4:19       ` Wesley Cheng
  0 siblings, 1 reply; 13+ messages in thread
From: Bjorn Andersson @ 2020-06-10 19:37 UTC (permalink / raw)
  To: Jack Pham
  Cc: Wesley Cheng, heikki.krogerus, gregkh, mark.rutland, robh+dt,
	agross, linux-kernel, linux-arm-msm, devicetree, linux-usb,
	bryan.odonoghue

On Tue 09 Jun 18:20 PDT 2020, Jack Pham wrote:

> Hi Wesley,
> 
> On Tue, Jun 09, 2020 at 01:58:49PM -0700, Wesley Cheng wrote:
> > The QCOM SPMI typec driver handles the role and orientation detection, and
> > notifies client drivers using the USB role switch framework.   It registers
> > as a typec port, so orientation can be communicated using the typec switch
> > APIs.  The driver also registers the VBUS output regulator, so client
> 
> Doesn't look like it.. As we discussed in earlier revisions we decided
> to drop the regulator.
> 
> > drivers can enable the VBUS source when acting as a source/host.
> > 
> > Signed-off-by: Wesley Cheng <wcheng@codeaurora.org>
> > ---
> >  drivers/usb/typec/Kconfig           |  11 ++
> >  drivers/usb/typec/Makefile          |   1 +
> >  drivers/usb/typec/qcom-pmic-typec.c | 278 ++++++++++++++++++++++++++++++++++++
> >  3 files changed, 290 insertions(+)
> >  create mode 100644 drivers/usb/typec/qcom-pmic-typec.c
> > 
> > diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig
> > index 559dd06..8de2520 100644
> > --- a/drivers/usb/typec/Kconfig
> > +++ b/drivers/usb/typec/Kconfig
> > @@ -73,6 +73,17 @@ config TYPEC_TPS6598X
> >  	  If you choose to build this driver as a dynamically linked module, the
> >  	  module will be called tps6598x.ko.
> >  
> > +config TYPEC_QCOM_PMIC
> > +	tristate "Qualcomm PMIC USB typec driver"
> > +	depends on ARCH_QCOM
> > +	help
> > +	  Driver for supporting role switch over the Qualcomm PMIC.  This will
> > +	  handle the type C role and orientation detection reported by the QCOM
> > +	  PMIC if the PMIC has the capability to handle type C detection.
> > +
> > +	  It will also enable the VBUS output to connected devices when a
> > +	  DFP connection is made.
> > +
> >  source "drivers/usb/typec/mux/Kconfig"
> >  
> >  source "drivers/usb/typec/altmodes/Kconfig"
> > diff --git a/drivers/usb/typec/Makefile b/drivers/usb/typec/Makefile
> > index 7753a5c3..cceffd9 100644
> > --- a/drivers/usb/typec/Makefile
> > +++ b/drivers/usb/typec/Makefile
> > @@ -6,4 +6,5 @@ obj-$(CONFIG_TYPEC_TCPM)	+= tcpm/
> >  obj-$(CONFIG_TYPEC_UCSI)	+= ucsi/
> >  obj-$(CONFIG_TYPEC_HD3SS3220)	+= hd3ss3220.o
> >  obj-$(CONFIG_TYPEC_TPS6598X)	+= tps6598x.o
> > +obj-$(CONFIG_TYPEC_QCOM_PMIC)	+= qcom-pmic-typec.o
> >  obj-$(CONFIG_TYPEC)		+= mux/
> > diff --git a/drivers/usb/typec/qcom-pmic-typec.c b/drivers/usb/typec/qcom-pmic-typec.c
> > new file mode 100644
> > index 0000000..ce6319c
> > --- /dev/null
> > +++ b/drivers/usb/typec/qcom-pmic-typec.c
> > @@ -0,0 +1,278 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +/*
> > + * Copyright (c) 2020, The Linux Foundation. All rights reserved.
> > + */
> > +
> > +#include <linux/err.h>
> > +#include <linux/regmap.h>
> > +#include <linux/kernel.h>
> > +#include <linux/module.h>
> > +#include <linux/slab.h>
> > +#include <linux/interrupt.h>
> > +#include <linux/of_irq.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/of_device.h>
> > +#include <linux/usb/role.h>
> > +#include <linux/usb/typec_mux.h>
> > +#include <linux/workqueue.h>
> > +#include <linux/regulator/consumer.h>
> > +#include <linux/regulator/driver.h>
> > +#include <linux/regulator/machine.h>
> > +
> > +#define DCDC_BASE			0x1100
> 
> along with USB_BASE @ 0x1300, is it ok to allow this driver to access
> registers outside of its 'reg' base (0x1500 according to the DT
> bindings)?
> 

Depending on how entangled a future driver for the charger blocks would
be one could either just upstream a dcdc regulator driver to control
vbus today, or a "lite version" of a charging driver exposing just the
vbus regulator.

Either way I would prefer this over poking the register directly from
this driver, as it will make it tricky to migrate to a proper charger
driver later.

Regards,
Bjorn

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-09 21:20   ` Randy Dunlap
@ 2020-06-12  4:15     ` Wesley Cheng
  0 siblings, 0 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-12  4:15 UTC (permalink / raw)
  To: Randy Dunlap, heikki.krogerus, gregkh, mark.rutland, robh+dt,
	agross, bjorn.andersson
  Cc: linux-kernel, linux-arm-msm, devicetree, linux-usb, jackp,
	bryan.odonoghue



On 6/9/2020 2:20 PM, Randy Dunlap wrote:
> On 6/9/20 1:58 PM, Wesley Cheng wrote:
>> diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig
>> index 559dd06..8de2520 100644
>> --- a/drivers/usb/typec/Kconfig
>> +++ b/drivers/usb/typec/Kconfig
>> @@ -73,6 +73,17 @@ config TYPEC_TPS6598X
>>  	  If you choose to build this driver as a dynamically linked module, the
>>  	  module will be called tps6598x.ko.
>>
> 
> Hi,
> Please spell "Type-C" like all of the other drivers do.
> 
>> +config TYPEC_QCOM_PMIC
>> +	tristate "Qualcomm PMIC USB typec driver"
>> +	depends on ARCH_QCOM
>> +	help
>> +	  Driver for supporting role switch over the Qualcomm PMIC.  This will
>> +	  handle the type C role and orientation detection reported by the QCOM
>> +	  PMIC if the PMIC has the capability to handle type C detection.
>> +
>> +	  It will also enable the VBUS output to connected devices when a
>> +	  DFP connection is made.
>> +
>>  source "drivers/usb/typec/mux/Kconfig"
>>  
>>  source "drivers/usb/typec/altmodes/Kconfig"

Hi Randy,

Will do.

Thanks
> 
> 

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-10  2:27   ` Jun Li
@ 2020-06-12  4:17     ` Wesley Cheng
  0 siblings, 0 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-12  4:17 UTC (permalink / raw)
  To: Jun Li
  Cc: Heikki Krogerus, Greg Kroah-Hartman, Mark Rutland, Rob Herring,
	agross, bjorn.andersson, lkml, linux-arm-msm,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux USB List, Jack Pham, bryan.odonoghue



On 6/9/2020 7:27 PM, Jun Li wrote:
>> +static int qcom_pmic_typec_probe(struct platform_device *pdev)
>> +{
>> +       struct device *dev = &pdev->dev;
>> +       struct qcom_pmic_typec *qcom_usb;
>> +       struct typec_capability *cap;
>> +       const char *buf;
>> +       int ret, irq, role;
>> +
>> +       qcom_usb = kzalloc(sizeof(*qcom_usb), GFP_KERNEL);
> 
> devm_kzalloc().
> 

Hi Jun,

Thanks for the input.  I have replaced with devm_kzalloc() as you
recommended.

>> +       if (!qcom_usb)
>> +               return -ENOMEM;
>> +
>> +       qcom_usb->dev = dev;
>> +
>> +       qcom_usb->regmap = dev_get_regmap(dev->parent, NULL);
>> +       if (!qcom_usb->regmap) {
>> +               dev_err(dev, "Failed to get regmap\n");
>> +               return -EINVAL;
>> +       }
>> +
>> +       irq = platform_get_irq(pdev, 0);
>> +       if (irq < 0) {
>> +               dev_err(dev, "Failed to get CC irq\n");
>> +               return -EINVAL;
>> +       }
>> +
>> +       ret = devm_request_irq(qcom_usb->dev, irq, qcom_pmic_typec_interrupt,
>> +                              IRQF_SHARED, "qcom-pmic-typec", qcom_usb);
>> +       if (ret) {
>> +               dev_err(&pdev->dev, "Could not request IRQ\n");
>> +               return ret;
>> +       }
>> +
>> +       qcom_usb->fwnode = device_get_named_child_node(dev, "connector");
>> +       if (!qcom_usb->fwnode)
>> +               return -EINVAL;
>> +
>> +       cap = kzalloc(sizeof(*cap), GFP_KERNEL);
> 
> devm_kzalloc().
> 
>> +       if (!cap) {
>> +               ret = -ENOMEM;
>> +               goto err_put_node;
>> +       }
>> +
>> +       ret = fwnode_property_read_string(qcom_usb->fwnode, "power-role", &buf);
>> +       if (!ret)
>> +               role = typec_find_port_power_role(buf);
> 
> if (role < 0)
> 


Added a check for role <0, if so, set to SNK as well
>> +       else
>> +               role = TYPEC_PORT_SNK;
>> +       cap->type = role;
>> +
>> +       ret = fwnode_property_read_string(qcom_usb->fwnode, "data-role", &buf);
>> +       if (!ret)
>> +               role = typec_find_port_data_role(buf);
> 
> if (role < 0)
> 

Added a check for role <0, if so, set to UFP as well
>> +       else
>> +               role = TYPEC_PORT_UFP;
>> +       cap->data = role;
>> +
>> +       cap->prefer_role = -1;
> 
> TYPEC_NO_PREFERRED_ROLE
> 

Done.
>> +       cap->fwnode = qcom_usb->fwnode;
>> +       qcom_usb->port = typec_register_port(dev, cap);
>> +       if (IS_ERR(qcom_usb->port)) {
>> +               dev_err(dev, "Failed to register type c port %d\n",
>> +                       IS_ERR(qcom_usb->port));
>> +               ret = PTR_ERR(qcom_usb->port);
> 
> dev_err(dev, , ret)?
> 
> Li Jun

Agreed.  Thanks!

>> +               goto err_put_node;
>> +       }
>> +
>> +       qcom_usb->cap = cap;
>> +
>> +       qcom_usb->role_sw = fwnode_usb_role_switch_get(qcom_usb->fwnode);
>> +       if (IS_ERR(qcom_usb->role_sw)) {
>> +               if (PTR_ERR(qcom_usb->role_sw) != -EPROBE_DEFER)
>> +                       dev_err(dev, "failed to get role switch\n");
>> +               ret = PTR_ERR(qcom_usb->role_sw);
>> +               goto err_typec_port;
>> +       }
>> +
>> +       INIT_WORK(&qcom_usb->bh_work, qcom_pmic_typec_bh_work);
>> +       platform_set_drvdata(pdev, qcom_usb);
>> +       qcom_pmic_typec_typec_hw_init(qcom_usb);
>> +
>> +       queue_work(system_power_efficient_wq, &qcom_usb->bh_work);
>> +
>> +       return 0;
>> +
>> +err_typec_port:
>> +       typec_unregister_port(qcom_usb->port);
>> +err_put_node:
>> +       fwnode_handle_put(qcom_usb->fwnode);
>> +
>> +       return ret;
>> +}
>> +
>> +static int qcom_pmic_typec_remove(struct platform_device *pdev)
>> +{
>> +       struct qcom_pmic_typec *qcom_usb = platform_get_drvdata(pdev);
>> +
>> +       cancel_work_sync(&qcom_usb->bh_work);
>> +       usb_role_switch_set_role(qcom_usb->role_sw, USB_ROLE_NONE);
>> +       qcom_pmic_typec_vbus_disable(qcom_usb);
>> +
>> +       typec_unregister_port(qcom_usb->port);
>> +       usb_role_switch_put(qcom_usb->role_sw);
>> +       fwnode_handle_put(qcom_usb->fwnode);
>> +
>> +       return 0;
>> +}
>> +
>> +static const struct of_device_id qcom_pmic_typec_table[] = {
>> +       { .compatible = "qcom,pm8150b-usb-typec" },
>> +       { },
>> +};
>> +MODULE_DEVICE_TABLE(of, qcom_pmic_typec_table);
>> +
>> +static struct platform_driver qcom_pmic_typec = {
>> +       .driver = {
>> +               .name = "qcom,pmic-typec",
>> +               .of_match_table = qcom_pmic_typec_table,
>> +       },
>> +       .probe = qcom_pmic_typec_probe,
>> +       .remove = qcom_pmic_typec_remove,
>> +};
>> +
>> +module_platform_driver(qcom_pmic_typec);
>> +
>> +MODULE_DESCRIPTION("QCOM PMIC USB type C driver");
>> +MODULE_LICENSE("GPL v2");
>> --
>> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
>> a Linux Foundation Collaborative Project
>>

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver
  2020-06-10 19:37     ` Bjorn Andersson
@ 2020-06-12  4:19       ` Wesley Cheng
  0 siblings, 0 replies; 13+ messages in thread
From: Wesley Cheng @ 2020-06-12  4:19 UTC (permalink / raw)
  To: Bjorn Andersson, Jack Pham
  Cc: heikki.krogerus, gregkh, mark.rutland, robh+dt, agross,
	linux-kernel, linux-arm-msm, devicetree, linux-usb,
	bryan.odonoghue



On 6/10/2020 12:37 PM, Bjorn Andersson wrote:
>> along with USB_BASE @ 0x1300, is it ok to allow this driver to access
>> registers outside of its 'reg' base (0x1500 according to the DT
>> bindings)?
>>
> 
> Depending on how entangled a future driver for the charger blocks would
> be one could either just upstream a dcdc regulator driver to control
> vbus today, or a "lite version" of a charging driver exposing just the
> vbus regulator.
> 
> Either way I would prefer this over poking the register directly from
> this driver, as it will make it tricky to migrate to a proper charger
> driver later.
> 
> Regards,
> Bjorn
> 

Hi Bjorn/Jack,

I have removed the need for referencing other base addresses other than
the type C block within the  driver, and have moved the DCDC set to be
handled by another regulator driver, which solely controls the vbus
output.  The type C driver will control the vbus output using the
regulator APIs.  Thanks for the input.

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-06-12  4:19 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-09 20:58 [PATCH 0/3] Introduce PMIC based USB type C detection Wesley Cheng
2020-06-09 20:58 ` [PATCH 1/3] usb: typec: Add QCOM PMIC typec detection driver Wesley Cheng
2020-06-09 21:20   ` Randy Dunlap
2020-06-12  4:15     ` Wesley Cheng
2020-06-10  1:20   ` Jack Pham
2020-06-10 19:37     ` Bjorn Andersson
2020-06-12  4:19       ` Wesley Cheng
2020-06-10  1:25   ` kernel test robot
2020-06-10  1:25     ` kernel test robot
2020-06-10  2:27   ` Jun Li
2020-06-12  4:17     ` Wesley Cheng
2020-06-09 20:58 ` [PATCH 2/3] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding Wesley Cheng
2020-06-09 20:58 ` [PATCH 3/3] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block Wesley Cheng

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.