Message ID | 20241105055239.1577275-5-kikuchan98@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/panel: nv3052c: Fix Anbernic RG35XX panel support (and add RG40XX panel) | expand |
Hi Hironori, kernel test robot noticed the following build warnings: [auto build test WARNING on next-20241104] [also build test WARNING on v6.12-rc6] [cannot apply to robh/for-next linus/master v6.12-rc6 v6.12-rc5 v6.12-rc4] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Hironori-KIKUCHI/dt-bindings-display-panel-Rename-rg35xx-plus-panel-back-to-WL-355608-A8/20241105-135601 base: next-20241104 patch link: https://lore.kernel.org/r/20241105055239.1577275-5-kikuchan98%40gmail.com patch subject: [PATCH 4/7] dt-bindings: display: panel: Add YLM-LBV0345001H-V2 panel config: csky-randconfig-051-20241106 (https://download.01.org/0day-ci/archive/20241106/202411061425.Qitk3g1Q-lkp@intel.com/config) compiler: csky-linux-gcc (GCC) 14.2.0 dtschema version: 2024.10.dev6+g12c3cd5 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241106/202411061425.Qitk3g1Q-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202411061425.Qitk3g1Q-lkp@intel.com/ All warnings (new ones prefixed by >>): Documentation/devicetree/bindings/net/snps,dwmac.yaml: mac-mode: missing type definition >> Warning: Duplicate compatible "anbernic,rg35xx-h-panel" found in schemas matching "$id": http://devicetree.org/schemas/display/panel/anbernic,wl-355608-a8.yaml# http://devicetree.org/schemas/display/panel/anbernic,ylm-lbv0345001h-v2.yaml# >> Warning: Duplicate compatible "anbernic,rg35xx-sp-panel" found in schemas matching "$id": http://devicetree.org/schemas/display/panel/anbernic,wl-355608-a8.yaml# http://devicetree.org/schemas/display/panel/anbernic,ylm-lbv0345001h-v2.yaml# >> Warning: Duplicate compatible "anbernic,rg35xx-plus-panel" found in schemas matching "$id": http://devicetree.org/schemas/display/panel/anbernic,wl-355608-a8.yaml# http://devicetree.org/schemas/display/panel/anbernic,ylm-lbv0345001h-v2.yaml# >> Warning: Duplicate compatible "anbernic,rg35xx-2024-panel" found in schemas matching "$id": http://devicetree.org/schemas/display/panel/anbernic,wl-355608-a8.yaml# http://devicetree.org/schemas/display/panel/anbernic,ylm-lbv0345001h-v2.yaml#
diff --git a/Documentation/devicetree/bindings/display/panel/anbernic,ylm-lbv0345001h-v2.yaml b/Documentation/devicetree/bindings/display/panel/anbernic,ylm-lbv0345001h-v2.yaml new file mode 100644 index 00000000000..ae00096bf3d --- /dev/null +++ b/Documentation/devicetree/bindings/display/panel/anbernic,ylm-lbv0345001h-v2.yaml @@ -0,0 +1,68 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/display/panel/anbernic,ylm-lbv0345001h-v2.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Anbernic RG35XX series (YLM-LBV0345001H-V2) 3.45" 640x480 24-bit IPS LCD panel + +maintainers: + - Hironori KIKUCHI <kikuchan98@gmail.com> + +allOf: + - $ref: panel-common.yaml# + - $ref: /schemas/spi/spi-peripheral-props.yaml# + +properties: + compatible: + oneOf: + - const: anbernic,ylm-lbv0345001h-v2 + - items: + - enum: + - anbernic,rg35xx-2024-panel + - anbernic,rg35xx-h-panel + - anbernic,rg35xx-sp-panel + - anbernic,rg35xx-plus-panel + - const: anbernic,ylm-lbv0345001h-v2 + + reg: + maxItems: 1 + + spi-3wire: true + +required: + - compatible + - reg + - port + - power-supply + - reset-gpios + +unevaluatedProperties: false + +examples: + - | + #include <dt-bindings/gpio/gpio.h> + + spi { + #address-cells = <1>; + #size-cells = <0>; + + panel@0 { + compatible = "anbernic,ylm-lbv0345001h-v2"; + reg = <0>; + + spi-3wire; + spi-max-frequency = <3125000>; + + reset-gpios = <&pio 8 14 GPIO_ACTIVE_LOW>; // PI14 + + backlight = <&backlight>; + power-supply = <®_lcd>; + + port { + endpoint { + remote-endpoint = <&tcon_lcd0_out_lcd>; + }; + }; + }; + };
The YLM-LBV0345001H-V2 panel is a display panel used in the recent revision of Anbernic RG35XX Plus, a handheld gaming device from Anbernic. It is 3.45 inches in size (diagonally) with a resolution of 640x480. Signed-off-by: Hironori KIKUCHI <kikuchan98@gmail.com> --- .../panel/anbernic,ylm-lbv0345001h-v2.yaml | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/panel/anbernic,ylm-lbv0345001h-v2.yaml