* [PATCH v2 0/2] usb: typec: tcpci: Make the driver be compatible with TCPCI Spec
[not found] <20241202054314.k6dt7uhnv2kavea4@hippo>
@ 2024-12-18 1:07 ` Miao.Zhu
2024-12-18 1:07 ` [PATCH v2 1/2] usb: typec: tcpm: tcpci: Make the driver be compatible with the TCPCI spec [Rev 2.0 Ver 1.0, October 2017] Miao.Zhu
2024-12-18 1:07 ` [PATCH v2 2/2] dt-bindings: usb: ptn5110: add TCPC properties Miao.Zhu
0 siblings, 2 replies; 8+ messages in thread
From: Miao.Zhu @ 2024-12-18 1:07 UTC (permalink / raw)
To: gregkh, robh, xu.yang_2, andre.draszik, dan.carpenter,
emanuele.ghidoli, heikki.krogerus, m.felsch, rdbabiera,
u.kleine-koenig, conor+dt, jun.li
Cc: Miao.Zhu, linux-kernel, linux-usb, devicetree, Jianheng.Zhang,
James.Li1, Martin.McKenny
The tcpci driver doesn't fully follow the TCPCI Spec [R2.0 V1.0]
even if it mentions this Spec in its comments.
The changes make the driver be compatible with the TCPCI spec and
won't impact existing HW.
Miao Zhu (2):
usb: typec: tcpm: tcpci: Make the driver be compatible with the TCPCI
spec [Rev 2.0 Ver 1.0, October 2017]
dt-bindings: usb: ptn5110: add TCPC properties
.../devicetree/bindings/usb/nxp,ptn5110.yaml | 5 +
drivers/usb/typec/tcpm/tcpci.c | 115 +++++++++++++++++----
include/linux/usb/tcpci.h | 11 ++
3 files changed, 111 insertions(+), 20 deletions(-)
--
2.9.3
base-commit: b86545e02e8c22fb89218f29d381fa8e8b91d815
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/2] usb: typec: tcpm: tcpci: Make the driver be compatible with the TCPCI spec [Rev 2.0 Ver 1.0, October 2017]
2024-12-18 1:07 ` [PATCH v2 0/2] usb: typec: tcpci: Make the driver be compatible with TCPCI Spec Miao.Zhu
@ 2024-12-18 1:07 ` Miao.Zhu
2024-12-18 1:07 ` [PATCH v2 2/2] dt-bindings: usb: ptn5110: add TCPC properties Miao.Zhu
1 sibling, 0 replies; 8+ messages in thread
From: Miao.Zhu @ 2024-12-18 1:07 UTC (permalink / raw)
To: gregkh, robh, xu.yang_2, andre.draszik, dan.carpenter,
emanuele.ghidoli, heikki.krogerus, m.felsch, rdbabiera,
u.kleine-koenig, conor+dt, jun.li
Cc: Miao.Zhu, linux-kernel, linux-usb, devicetree, Jianheng.Zhang,
James.Li1, Martin.McKenny
The tcpci driver doesn't fully follow the TCPCI spec even if
it mentions this spec in its comments.
- Add two flags into tcpci_data:
RX_BUF_BYTE_x_hidden
conn_present_capable
- Following flags in tcpci_data are read from device tree in tcpci_probe.
TX_BUF_BYTE_x_hidden
RX_BUF_BYTE_x_hidden
auto_discharge_disconnect
vbus_vsafe0v
The change makes the driver be compatible with the TCPCI spec and
won't impact existing HW.
Signed-off-by: Miao Zhu <miao@synopsys.com>
---
V1 -> V2: Cleaned up typo and addressed review comments
---
drivers/usb/typec/tcpm/tcpci.c | 115 ++++++++++++++++++++++++++++++++++-------
include/linux/usb/tcpci.h | 11 ++++
2 files changed, 106 insertions(+), 20 deletions(-)
diff --git a/drivers/usb/typec/tcpm/tcpci.c b/drivers/usb/typec/tcpm/tcpci.c
index ed32583..7c831c0 100644
--- a/drivers/usb/typec/tcpm/tcpci.c
+++ b/drivers/usb/typec/tcpm/tcpci.c
@@ -453,19 +453,26 @@ static int tcpci_set_roles(struct tcpc_dev *tcpc, bool attached,
enum typec_role role, enum typec_data_role data)
{
struct tcpci *tcpci = tcpc_to_tcpci(tcpc);
- unsigned int reg;
+ unsigned int reg = 0;
int ret;
- reg = FIELD_PREP(TCPC_MSG_HDR_INFO_REV, PD_REV20);
- if (role == TYPEC_SOURCE)
- reg |= TCPC_MSG_HDR_INFO_PWR_ROLE;
- if (data == TYPEC_HOST)
- reg |= TCPC_MSG_HDR_INFO_DATA_ROLE;
+ if (attached) {
+ reg = FIELD_PREP(TCPC_MSG_HDR_INFO_REV, PD_REV20);
+ if (role == TYPEC_SOURCE)
+ reg |= TCPC_MSG_HDR_INFO_PWR_ROLE;
+ if (data == TYPEC_HOST)
+ reg |= TCPC_MSG_HDR_INFO_DATA_ROLE;
+ }
ret = regmap_write(tcpci->regmap, TCPC_MSG_HDR_INFO, reg);
if (ret < 0)
return ret;
- return 0;
+ if (tcpci->data->conn_present_capable)
+ return regmap_update_bits(tcpci->regmap, TCPC_CONFIG_STD_OUTPUT,
+ TCPC_CONFIG_STD_OUTPUT_CON_PRES,
+ attached ? TCPC_CONFIG_STD_OUTPUT_CON_PRES : 0);
+ else
+ return 0;
}
static int tcpci_set_pd_rx(struct tcpc_dev *tcpc, bool enable)
@@ -741,33 +748,86 @@ irqreturn_t tcpci_irq(struct tcpci *tcpci)
struct pd_message msg;
unsigned int cnt, payload_cnt;
u16 header;
+ unsigned int frame_type;
+ enum tcpm_transmit_type rx_type;
regmap_read(tcpci->regmap, TCPC_RX_BYTE_CNT, &cnt);
/*
* 'cnt' corresponds to READABLE_BYTE_COUNT in section 4.4.14
* of the TCPCI spec [Rev 2.0 Ver 1.0 October 2017] and is
* defined in table 4-36 as one greater than the number of
- * bytes received. And that number includes the header. So:
+ * bytes received. And that number includes the header.
+ * In Section 4.4.14 of the TCPCI spec [Rev 2.0 Ver 1.0 October, 2017],
+ * the RECEIVE_BUFFER comprises of three sets of registers:
+ * READABLE_BYTE_COUNT, RX_BUF_FRAME_TYPE and RX_BUF_BYTE_x.
+ * These registers can only be accessed by reading at a common
+ * register address 0x30h.
*/
- if (cnt > 3)
- payload_cnt = cnt - (1 + sizeof(msg.header));
- else
- payload_cnt = 0;
+ if (tcpci->data->RX_BUF_BYTE_x_hidden) {
+ u8 buf[TCPC_RECEIVE_BUFFER_MAX_LEN] = {0,};
+ u8 pos = 0;
+
+ /* Read the count and frame type in RECEIVE_BUFFER */
+ regmap_raw_read(tcpci->regmap, TCPC_RX_BYTE_CNT, buf, 2);
+ /* READABLE_BYTE_COUNT */
+ cnt = buf[0];
+ /* RX_BUF_FRAME_TYPE */
+ frame_type = buf[1];
+
+ /* Read the content of the USB PD message in RECEIVE_BUFFER */
+ regmap_raw_read(tcpci->regmap, TCPC_RX_BYTE_CNT, buf, cnt + 1);
+
+ pos += 2;
+ memcpy(&msg.header, &buf[pos], sizeof(msg.header));
+
+ if (cnt > 3) {
+ pos += sizeof(msg.header);
+ payload_cnt = cnt - (1 + sizeof(msg.header));
+ if (WARN_ON(payload_cnt > sizeof(msg.payload)))
+ payload_cnt = sizeof(msg.payload);
+ memcpy(&msg.payload, &buf[pos], payload_cnt);
+ }
+ } else {
+ regmap_read(tcpci->regmap, TCPC_RX_BYTE_CNT, &cnt);
+ /*
+ * 'cnt' corresponds to READABLE_BYTE_COUNT in section 4.4.14
+ * of the TCPCI spec [Rev 2.0 Ver 1.0 October 2017] and is
+ * defined in table 4-36 as one greater than the number of
+ * bytes received. And that number includes the header. So:
+ */
+ if (cnt > 3)
+ payload_cnt = cnt - (1 + sizeof(msg.header));
+ else
+ payload_cnt = 0;
- tcpci_read16(tcpci, TCPC_RX_HDR, &header);
- msg.header = cpu_to_le16(header);
+ regmap_read(tcpci->regmap, TCPC_RX_BUF_FRAME_TYPE, &frame_type);
- if (WARN_ON(payload_cnt > sizeof(msg.payload)))
- payload_cnt = sizeof(msg.payload);
+ tcpci_read16(tcpci, TCPC_RX_HDR, &header);
+ msg.header = cpu_to_le16(header);
- if (payload_cnt > 0)
- regmap_raw_read(tcpci->regmap, TCPC_RX_DATA,
- &msg.payload, payload_cnt);
+ if (WARN_ON(payload_cnt > sizeof(msg.payload)))
+ payload_cnt = sizeof(msg.payload);
+
+ if (payload_cnt > 0)
+ regmap_raw_read(tcpci->regmap, TCPC_RX_DATA,
+ &msg.payload, payload_cnt);
+ }
/* Read complete, clear RX status alert bit */
tcpci_write16(tcpci, TCPC_ALERT, TCPC_ALERT_RX_STATUS);
- tcpm_pd_receive(tcpci->port, &msg, TCPC_TX_SOP);
+ switch (frame_type) {
+ case TCPC_RX_BUF_FRAME_TYPE_SOP1:
+ rx_type = TCPC_TX_SOP_PRIME;
+ break;
+ case TCPC_RX_BUF_FRAME_TYPE_SOP:
+ rx_type = TCPC_TX_SOP;
+ break;
+ default:
+ rx_type = TCPC_TX_SOP;
+ break;
+ }
+ tcpm_pd_receive(tcpci->port, &msg, rx_type);
}
if (tcpci->data->vbus_vsafe0v && (status & TCPC_ALERT_EXTENDED_STATUS)) {
@@ -916,6 +976,21 @@ static int tcpci_probe(struct i2c_client *client)
if (err < 0)
return err;
+ chip->data.TX_BUF_BYTE_x_hidden =
+ device_property_read_bool(&client->dev, "TX_BUF_BYTE_x_hidden");
+ chip->data.RX_BUF_BYTE_x_hidden =
+ device_property_read_bool(&client->dev, "RX_BUF_BYTE_x_hidden");
+ chip->data.auto_discharge_disconnect =
+ device_property_read_bool(&client->dev, "auto_discharge_disconnect");
+ chip->data.vbus_vsafe0v = device_property_read_bool(&client->dev, "vbus_vsafe0v");
+
+ err = tcpci_check_std_output_cap(chip->data.regmap,
+ TCPC_STD_OUTPUT_CAP_CONN_PRESENT);
+ if (err < 0)
+ return err;
+
+ chip->data.conn_present_capable = err;
+
err = tcpci_check_std_output_cap(chip->data.regmap,
TCPC_STD_OUTPUT_CAP_ORIENTATION);
if (err < 0)
diff --git a/include/linux/usb/tcpci.h b/include/linux/usb/tcpci.h
index f7f5cfb..b649803 100644
--- a/include/linux/usb/tcpci.h
+++ b/include/linux/usb/tcpci.h
@@ -50,6 +50,7 @@
#define TCPC_CONFIG_STD_OUTPUT_ORIENTATION_MASK BIT(0)
#define TCPC_CONFIG_STD_OUTPUT_ORIENTATION_NORMAL 0
#define TCPC_CONFIG_STD_OUTPUT_ORIENTATION_FLIPPED 1
+#define TCPC_CONFIG_STD_OUTPUT_CON_PRES BIT(1)
#define TCPC_TCPC_CTRL 0x19
#define TCPC_TCPC_CTRL_ORIENTATION BIT(0)
@@ -126,6 +127,7 @@
#define TCPC_STD_INPUT_CAP 0x28
#define TCPC_STD_OUTPUT_CAP 0x29
#define TCPC_STD_OUTPUT_CAP_ORIENTATION BIT(0)
+#define TCPC_STD_OUTPUT_CAP_CONN_PRESENT BIT(1)
#define TCPC_MSG_HDR_INFO 0x2e
#define TCPC_MSG_HDR_INFO_DATA_ROLE BIT(3)
@@ -167,6 +169,7 @@
/* I2C_WRITE_BYTE_COUNT + 1 when TX_BUF_BYTE_x is only accessible I2C_WRITE_BYTE_COUNT */
#define TCPC_TRANSMIT_BUFFER_MAX_LEN 31
+#define TCPC_RECEIVE_BUFFER_MAX_LEN 32
#define tcpc_presenting_rd(reg, cc) \
(!(TCPC_ROLE_CTRL_DRP & (reg)) && \
@@ -177,6 +180,9 @@ struct tcpci;
/*
* @TX_BUF_BYTE_x_hidden:
* optional; Set when TX_BUF_BYTE_x can only be accessed through I2C_WRITE_BYTE_COUNT.
+ * @RX_BUF_BYTE_x_hidden:
+ * Optional; Set when READABLE_BYTE_COUNT, RX_BUF_FRAME_TYPE and RX_BUF_BYTE_x
+ * can only be accessed through READABLE_BYTE_COUNT.
* @frs_sourcing_vbus:
* Optional; Callback to perform chip specific operations when FRS
* is sourcing vbus.
@@ -204,6 +210,9 @@ struct tcpci;
* swap following Discover Identity on SOP' occurs.
* Return true when the TCPM is allowed to request a Vconn swap
* after Discovery Identity on SOP.
+ * @conn_present_capable:
+ * Optional; Enable setting the connection present
+ * CONFIG_STANDARD_OUTPUT (0x18) bit1.
* @set_orientation:
* Optional; Enable setting the connector orientation
* CONFIG_STANDARD_OUTPUT (0x18) bit0.
@@ -211,9 +220,11 @@ struct tcpci;
struct tcpci_data {
struct regmap *regmap;
unsigned char TX_BUF_BYTE_x_hidden:1;
+ unsigned char RX_BUF_BYTE_x_hidden:1;
unsigned char auto_discharge_disconnect:1;
unsigned char vbus_vsafe0v:1;
unsigned char cable_comm_capable:1;
+ unsigned char conn_present_capable:1;
unsigned char set_orientation:1;
int (*init)(struct tcpci *tcpci, struct tcpci_data *data);
--
2.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/2] dt-bindings: usb: ptn5110: add TCPC properties
2024-12-18 1:07 ` [PATCH v2 0/2] usb: typec: tcpci: Make the driver be compatible with TCPCI Spec Miao.Zhu
2024-12-18 1:07 ` [PATCH v2 1/2] usb: typec: tcpm: tcpci: Make the driver be compatible with the TCPCI spec [Rev 2.0 Ver 1.0, October 2017] Miao.Zhu
@ 2024-12-18 1:07 ` Miao.Zhu
2024-12-18 2:22 ` Rob Herring (Arm)
1 sibling, 1 reply; 8+ messages in thread
From: Miao.Zhu @ 2024-12-18 1:07 UTC (permalink / raw)
To: gregkh, robh, xu.yang_2, andre.draszik, dan.carpenter,
emanuele.ghidoli, heikki.krogerus, m.felsch, rdbabiera,
u.kleine-koenig, conor+dt, jun.li
Cc: Miao.Zhu, linux-kernel, linux-usb, devicetree, Jianheng.Zhang,
James.Li1, Martin.McKenny
The TCPCI driver has flags to configure its protperties but
no way to enable these flags yet. Add these flags into DT
so that the driver can be compatible with TCPCI Spec R2 V1.0.
Signed-off-by: Miao.Zhu <miao@synopsys.com>
---
V1 -> V2: no changes
---
Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
index 65a8632..c31ec7e 100644
--- a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
+++ b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
@@ -21,6 +21,11 @@ properties:
interrupts:
maxItems: 1
+ TX_BUF_BYTE_x_hidden: true
+ RX_BUF_BYTE_x_hidden: true
+ auto_discharge_disconnect: true
+ vbus_vsafe0v: true
+
connector:
type: object
$ref: /schemas/connector/usb-connector.yaml#
--
2.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 2/2] dt-bindings: usb: ptn5110: add TCPC properties
2024-12-18 1:07 ` [PATCH v2 2/2] dt-bindings: usb: ptn5110: add TCPC properties Miao.Zhu
@ 2024-12-18 2:22 ` Rob Herring (Arm)
2024-12-18 5:22 ` [PATCH v3 " Miao.Zhu
2024-12-18 5:28 ` Miao.Zhu
0 siblings, 2 replies; 8+ messages in thread
From: Rob Herring (Arm) @ 2024-12-18 2:22 UTC (permalink / raw)
To: Miao.Zhu
Cc: conor+dt, James.Li1, m.felsch, Jianheng.Zhang, linux-kernel,
andre.draszik, emanuele.ghidoli, rdbabiera, devicetree,
u.kleine-koenig, xu.yang_2, Martin.McKenny, heikki.krogerus,
linux-usb, jun.li, gregkh, dan.carpenter
On Wed, 18 Dec 2024 02:07:18 +0100, Miao.Zhu wrote:
> The TCPCI driver has flags to configure its protperties but
> no way to enable these flags yet. Add these flags into DT
> so that the driver can be compatible with TCPCI Spec R2 V1.0.
>
> Signed-off-by: Miao.Zhu <miao@synopsys.com>
> ---
> V1 -> V2: no changes
> ---
> Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml | 5 +++++
> 1 file changed, 5 insertions(+)
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml: TX_BUF_BYTE_x_hidden: missing type definition
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml: RX_BUF_BYTE_x_hidden: missing type definition
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml: auto_discharge_disconnect: missing type definition
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml: vbus_vsafe0v: missing type definition
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20241218010718.224530-3-miao@synopsys.com
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3 2/2] dt-bindings: usb: ptn5110: add TCPC properties
2024-12-18 2:22 ` Rob Herring (Arm)
@ 2024-12-18 5:22 ` Miao.Zhu
2024-12-18 8:04 ` Krzysztof Kozlowski
2024-12-18 5:28 ` Miao.Zhu
1 sibling, 1 reply; 8+ messages in thread
From: Miao.Zhu @ 2024-12-18 5:22 UTC (permalink / raw)
To: robh
Cc: James.Li1, Jianheng.Zhang, Martin.McKenny, Miao.Zhu,
andre.draszik, conor+dt, dan.carpenter, devicetree,
emanuele.ghidoli, gregkh, heikki.krogerus, jun.li, linux-kernel,
linux-usb, m.felsch, rdbabiera, u.kleine-koenig, xu.yang_2,
Miao Zhu
From: Miao Zhu <miao@synopsys.com>
The TCPCI driver has flags to configure its protperties but
no way to enable these flags yet. Add these flags into DT
so that the driver can be compatible with TCPCI Spec R2 V1.0.
Signed-off-by: Miao.Zhu <miao@synopsys.com>
---
V2 -> V3: Add description and type for new properties:
---
.../devicetree/bindings/usb/nxp,ptn5110.yaml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
index 65a8632..29d6aed 100644
--- a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
+++ b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
@@ -21,6 +21,28 @@ properties:
interrupts:
maxItems: 1
+ TX_BUF_BYTE_x_hidden:
+ description:
+ When set, TX_BUF_BYTE_x can only be accessed through
+ I2C_WRITE_BYTE_COUNT.
+ type: boolean
+
+ RX_BUF_BYTE_x_hidden:
+ description:
+ When set, RX_BUF_BYTE_x can only be accessed through
+ READABLE_BYTE_COUNT.
+ type: boolean
+
+ auto_discharge_disconnect:
+ description:
+ When set, TCPC autonomously discharges vbus on disconnect.
+ type: boolean
+
+ vbus_vsafe0v:
+ description:
+ When set, TCPC can detect whether vbus is at VSAFE0V.
+ type: boolean
+
connector:
type: object
$ref: /schemas/connector/usb-connector.yaml#
--
2.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 2/2] dt-bindings: usb: ptn5110: add TCPC properties
2024-12-18 2:22 ` Rob Herring (Arm)
2024-12-18 5:22 ` [PATCH v3 " Miao.Zhu
@ 2024-12-18 5:28 ` Miao.Zhu
1 sibling, 0 replies; 8+ messages in thread
From: Miao.Zhu @ 2024-12-18 5:28 UTC (permalink / raw)
To: robh
Cc: James.Li1, Jianheng.Zhang, Martin.McKenny, Miao.Zhu,
andre.draszik, conor+dt, dan.carpenter, devicetree,
emanuele.ghidoli, gregkh, heikki.krogerus, jun.li, linux-kernel,
linux-usb, m.felsch, rdbabiera, u.kleine-koenig, xu.yang_2,
Miao . Zhu
The TCPCI driver has flags to configure its protperties but
no way to enable these flags yet. Add these flags into DT
so that the driver can be compatible with TCPCI Spec R2 V1.0.
Signed-off-by: Miao.Zhu <miao@synopsys.com>
---
V2 -> V3: Add description and type for new properties:
V1 -> V2: No changes
---
.../devicetree/bindings/usb/nxp,ptn5110.yaml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
index 65a8632..29d6aed 100644
--- a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
+++ b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
@@ -21,6 +21,28 @@ properties:
interrupts:
maxItems: 1
+ TX_BUF_BYTE_x_hidden:
+ description:
+ When set, TX_BUF_BYTE_x can only be accessed through
+ I2C_WRITE_BYTE_COUNT.
+ type: boolean
+
+ RX_BUF_BYTE_x_hidden:
+ description:
+ When set, RX_BUF_BYTE_x can only be accessed through
+ READABLE_BYTE_COUNT.
+ type: boolean
+
+ auto_discharge_disconnect:
+ description:
+ When set, TCPC autonomously discharges vbus on disconnect.
+ type: boolean
+
+ vbus_vsafe0v:
+ description:
+ When set, TCPC can detect whether vbus is at VSAFE0V.
+ type: boolean
+
connector:
type: object
$ref: /schemas/connector/usb-connector.yaml#
--
2.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 2/2] dt-bindings: usb: ptn5110: add TCPC properties
2024-12-18 5:22 ` [PATCH v3 " Miao.Zhu
@ 2024-12-18 8:04 ` Krzysztof Kozlowski
2024-12-18 9:04 ` Krzysztof Kozlowski
0 siblings, 1 reply; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-12-18 8:04 UTC (permalink / raw)
To: Miao.Zhu, robh
Cc: James.Li1, Jianheng.Zhang, Martin.McKenny, andre.draszik,
conor+dt, dan.carpenter, devicetree, emanuele.ghidoli, gregkh,
heikki.krogerus, jun.li, linux-kernel, linux-usb, m.felsch,
rdbabiera, u.kleine-koenig, xu.yang_2
On 18/12/2024 06:22, Miao.Zhu wrote:
> From: Miao Zhu <miao@synopsys.com>
>
> The TCPCI driver has flags to configure its protperties but
> no way to enable these flags yet. Add these flags into DT
> so that the driver can be compatible with TCPCI Spec R2 V1.0.
Do not attach (thread) your patchsets to some other threads (unrelated
or older versions). This buries them deep in the mailbox and might
interfere with applying entire sets.
<form letter>
Please use scripts/get_maintainers.pl to get a list of necessary people
and lists to CC (and consider --no-git-fallback argument, so you will
not CC people just because they made one commit years ago). It might
happen, that command when run on an older kernel, gives you outdated
entries. Therefore please be sure you base your patches on recent Linux
kernel.
Tools like b4 or scripts/get_maintainer.pl provide you proper list of
people, so fix your workflow. Tools might also fail if you work on some
ancient tree (don't, instead use mainline) or work on fork of kernel
(don't, instead use mainline). Just use b4 and everything should be
fine, although remember about `b4 prep --auto-to-cc` if you added new
patches to the patchset.
</form letter>
>
> Signed-off-by: Miao.Zhu <miao@synopsys.com>
> ---
> V2 -> V3: Add description and type for new properties:
> ---
> .../devicetree/bindings/usb/nxp,ptn5110.yaml | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
> index 65a8632..29d6aed 100644
> --- a/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
> +++ b/Documentation/devicetree/bindings/usb/nxp,ptn5110.yaml
> @@ -21,6 +21,28 @@ properties:
> interrupts:
> maxItems: 1
>
> + TX_BUF_BYTE_x_hidden:
Follow DTS coding style.
> + description:
> + When set, TX_BUF_BYTE_x can only be accessed through
> + I2C_WRITE_BYTE_COUNT.
You described the desired Linux feature or behavior, not the actual
hardware. The bindings are about the latter, so instead you need to
rephrase the property and its description to match actual hardware
capabilities/features/configuration etc.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 2/2] dt-bindings: usb: ptn5110: add TCPC properties
2024-12-18 8:04 ` Krzysztof Kozlowski
@ 2024-12-18 9:04 ` Krzysztof Kozlowski
0 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-12-18 9:04 UTC (permalink / raw)
To: Miao.Zhu, robh
Cc: James.Li1, Jianheng.Zhang, Martin.McKenny, andre.draszik,
conor+dt, dan.carpenter, devicetree, emanuele.ghidoli, gregkh,
heikki.krogerus, jun.li, linux-kernel, linux-usb, m.felsch,
rdbabiera, u.kleine-koenig, xu.yang_2
On 18/12/2024 09:04, Krzysztof Kozlowski wrote:
>> interrupts:
>> maxItems: 1
>>
>> + TX_BUF_BYTE_x_hidden:
>
> Follow DTS coding style.
>
>> + description:
>> + When set, TX_BUF_BYTE_x can only be accessed through
>> + I2C_WRITE_BYTE_COUNT.
> You described the desired Linux feature or behavior, not the actual
> hardware. The bindings are about the latter, so instead you need to
> rephrase the property and its description to match actual hardware
> capabilities/features/configuration etc.
I forgot: missing vendor prefix, missing type. Please see how other
bindings are written. example-schema is also good to start with.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-18 9:04 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20241202054314.k6dt7uhnv2kavea4@hippo>
2024-12-18 1:07 ` [PATCH v2 0/2] usb: typec: tcpci: Make the driver be compatible with TCPCI Spec Miao.Zhu
2024-12-18 1:07 ` [PATCH v2 1/2] usb: typec: tcpm: tcpci: Make the driver be compatible with the TCPCI spec [Rev 2.0 Ver 1.0, October 2017] Miao.Zhu
2024-12-18 1:07 ` [PATCH v2 2/2] dt-bindings: usb: ptn5110: add TCPC properties Miao.Zhu
2024-12-18 2:22 ` Rob Herring (Arm)
2024-12-18 5:22 ` [PATCH v3 " Miao.Zhu
2024-12-18 8:04 ` Krzysztof Kozlowski
2024-12-18 9:04 ` Krzysztof Kozlowski
2024-12-18 5:28 ` Miao.Zhu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).