RE: [PATCH V3 1/7] dt-bindings: usb: usbmisc-imx: convert to DT schema
From: Peng Fan <peng.fan@nxp.com>
Date: 2023-02-28 05:55:53
Also in:
linux-devicetree, linux-usb, lkml
Subject: Re: [PATCH V3 1/7] dt-bindings: usb: usbmisc-imx: convert to DT schema On Sun, Feb 26, 2023 at 09:05:33PM +0800, Peng Fan (OSS) wrote:quoted
From: Peng Fan <peng.fan@nxp.com> Convert usbmisc-imx to DT schema format. Signed-off-by: Peng Fan <peng.fan@nxp.com> --- .../devicetree/bindings/usb/fsl,usbmisc.yaml | 54 +++++++++++++++++++ .../devicetree/bindings/usb/usbmisc-imx.txt | 19 ------- 2 files changed, 54 insertions(+), 19 deletions(-) create mode 100644 Documentation/devicetree/bindings/usb/fsl,usbmisc.yaml delete mode 100644 Documentation/devicetree/bindings/usb/usbmisc-imx.txtdiff --git a/Documentation/devicetree/bindings/usb/fsl,usbmisc.yamlb/Documentation/devicetree/bindings/usb/fsl,usbmisc.yaml new file mode 100644 index 000000000000..517390b9d2c6--- /dev/null +++ b/Documentation/devicetree/bindings/usb/fsl,usbmisc.yaml@@ -0,0 +1,54 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 +--- +$id:+https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fdeviquoted
+cetree.org%2Fschemas%2Fusb%2Ffsl%2Cusbmisc.yaml%23&data=05%7C0 1%7Cpenquoted
+g.fan%40nxp.com%7C688a52ac42294bd0a9e208db19048b8c%7C686ea1d3 bc2b4c6fquoted
+a92cd99c5c301635%7C0%7C0%7C638131279545141829%7CUnknown%7CT WFpbGZsb3dquoted
+8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0 %3D%7quoted
+C3000%7C%7C%7C&sdata=4V5Lpsj6g0mJqJyGZTVoFeas%2B1IvTEW0ERe3y 9vjsxE%3Dquoted
+&reserved=0 +$schema:+https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fdeviquoted
+cetree.org%2Fmeta-schemas%2Fcore.yaml%23&data=05%7C01%7Cpeng.fan%40nxquoted
+p.com%7C688a52ac42294bd0a9e208db19048b8c%7C686ea1d3bc2b4c6fa9 2cd99c5cquoted
+301635%7C0%7C0%7C638131279545141829%7CUnknown%7CTWFpbGZsb 3d8eyJWIjoiMquoted
+C4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C300 0%7C%7quoted
+C%7C&sdata=PVGWk1%2B9YP1vixM%2BiB4XDH0UKWTTM%2FOiA5aZiPcn 6Qk%3D&reserquoted
+ved=0 + +title: Freescale i.MX wrapper module for Chipidea USB2 controller + +maintainers: + - Xu Yang [off-list ref] + - Peng Fan [off-list ref] + +properties: + compatible: + oneOf: + - enum: + - fsl,imx6q-usbmisc + - fsl,imx7ulp-usbmisc + - fsl,vf610-usbmisc + - items: + - enum: + - fsl,imx6ul-usbmisc + - fsl,imx6sx-usbmisc + - fsl,imx7d-usbmisc + - const: fsl,imx6q-usbmisc + - items: + - enum: + - fsl,imx7ulp-usbmisc + - fsl,imx8mm-usbmisc + - const: fsl,imx7d-usbmiscSo imx8mm is compatible with imx7d, and imx7d is compatible with imx6q, but imx8mm is not compatible with imx6q? That doesn't really make sense. Maybe all 3 compatibles makes sense, but only if s/w understanding only one of the fallback compatibles would function without knowledge of the newer h/w.
I added the list according the current device tree in use. If using three compatibles, that would involve device tree upate, and firmware update for SR-IR. My understanding is imx8mm is compatible with imx7d, imx7d is compatible with imx6q, then imx8mm is compatible with imx6q. it is just not put them under one item. Please correct if my understanding is wrong.
quoted
+ + reg: + maxItems: 1 + + '#index-cells': + const: 1 + description: Cells used to describe usb controller index.Please mark this as deprecated. If it is always 1 cell, then there's no point.
Fix in v4.
quoted
+ +required: + - compatible + - reg + - '#index-cells'And drop as required. That all can be a follow-up patch if you prefer or in this patch is fine. Primarily, I don't want this pattern copied.
Fix in v4. Thanks, Peng.
quoted
+ +additionalProperties: false + +examples: + - | + usbmisc@2184800 { + #index-cells = <1>; + compatible = "fsl,imx6q-usbmisc"; + reg = <0x02184800 0x200>; + }; + +...diff --git a/Documentation/devicetree/bindings/usb/usbmisc-imx.txtb/Documentation/devicetree/bindings/usb/usbmisc-imx.txt deleted file mode 100644 index 29b8f65ff849..000000000000--- a/Documentation/devicetree/bindings/usb/usbmisc-imx.txt +++ /dev/null@@ -1,19 +0,0 @@ -* Freescale i.MX non-core registers - -Required properties: -- #index-cells: Cells used to describe usb controller index. Shouldbe <1> -- compatible: Should be one of below: - "fsl,imx6q-usbmisc" for imx6q - "fsl,vf610-usbmisc" for Vybrid vf610 - "fsl,imx6sx-usbmisc" for imx6sx - "fsl,imx7d-usbmisc" for imx7d - "fsl,imx7ulp-usbmisc" for imx7ulp - "fsl,imx8mm-usbmisc" for imx8mm -- reg: Should contain registers location and length - -Examples: -usbmisc@2184800 { - #index-cells = <1>; - compatible = "fsl,imx6q-usbmisc"; - reg = <0x02184800 0x200>; -}; -- 2.37.1
_______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel