Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: i2c: Convert i2c-pxa to json-schema

A conversion of the i2c-pxa binding to DT schema format using json-schema.

This also cleans ups some errors in the binding: The compatible string
description suggested that "mmp" in "mrvl,mmp-twsi" is to be substituted
with a processor model, which wouldn't be a right thing to do and indeed
nobody seems to have been doing that. There also was "Recommended
properties" section that included optional as well as mandatory
properties. Missing mandatory properties were added to the example.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Link: https://lore.kernel.org/r/20200616223353.993567-3-lkundrak@v3.sk
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Lubomir Rintel and committed by
Rob Herring
ecb11b2c f882846c

+74 -31
-31
Documentation/devicetree/bindings/i2c/i2c-pxa.txt
··· 1 - * Marvell MMP I2C controller 2 - 3 - Required properties : 4 - 5 - - reg : Offset and length of the register set for the device 6 - - compatible : should be "mrvl,mmp-twsi" where mmp is the name of a 7 - compatible processor, e.g. pxa168, pxa910, mmp2, mmp3. 8 - For the pxa2xx/pxa3xx, an additional node "mrvl,pxa-i2c" is required 9 - as shown in the example below. 10 - For the Armada 3700, the compatible should be "marvell,armada-3700-i2c". 11 - 12 - Recommended properties : 13 - 14 - - interrupts : the interrupt number 15 - - mrvl,i2c-polling : Disable interrupt of i2c controller. Polling 16 - status register of i2c controller instead. 17 - - mrvl,i2c-fast-mode : Enable fast mode of i2c controller. 18 - 19 - Examples: 20 - twsi1: i2c@d4011000 { 21 - compatible = "mrvl,mmp-twsi"; 22 - reg = <0xd4011000 0x1000>; 23 - interrupts = <7>; 24 - mrvl,i2c-fast-mode; 25 - }; 26 - 27 - twsi2: i2c@d4025000 { 28 - compatible = "mrvl,mmp-twsi"; 29 - reg = <0xd4025000 0x1000>; 30 - interrupts = <58>; 31 - };
+74
Documentation/devicetree/bindings/i2c/i2c-pxa.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/i2c/i2c-pxa.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Marvell MMP I2C controller bindings 8 + 9 + maintainers: 10 + - Rob Herring <robh+dt@kernel.org> 11 + 12 + allOf: 13 + - $ref: /schemas/i2c/i2c-controller.yaml# 14 + - if: 15 + not: 16 + required: 17 + - mrvl,i2c-polling 18 + then: 19 + required: 20 + - interrupts 21 + 22 + properties: 23 + compatible: 24 + enum: 25 + - mrvl,mmp-twsi 26 + - mrvl,pxa-i2c 27 + - marvell,armada-3700-i2c 28 + 29 + reg: 30 + maxItems: 1 31 + 32 + interrupts: 33 + maxItems: 1 34 + 35 + clocks: 36 + minItems: 1 37 + 38 + resets: 39 + minItems: 1 40 + 41 + mrvl,i2c-polling: 42 + $ref: /schemas/types.yaml#/definitions/flag 43 + description: | 44 + Disable interrupt of i2c controller. Polling status register of i2c 45 + controller instead. 46 + 47 + mrvl,i2c-fast-mode: 48 + $ref: /schemas/types.yaml#/definitions/flag 49 + description: Enable fast mode of i2c controller. 50 + 51 + unevaluatedProperties: false 52 + 53 + required: 54 + - compatible 55 + - reg 56 + - interrupts 57 + - clocks 58 + - '#address-cells' 59 + - '#size-cells' 60 + 61 + examples: 62 + - | 63 + #include <dt-bindings/clock/marvell,mmp2.h> 64 + i2c@d4011000 { 65 + compatible = "mrvl,mmp-twsi"; 66 + reg = <0xd4011000 0x1000>; 67 + interrupts = <7>; 68 + clocks = <&soc_clocks MMP2_CLK_TWSI1>; 69 + mrvl,i2c-fast-mode; 70 + #address-cells = <1>; 71 + #size-cells = <0>; 72 + }; 73 + 74 + ...