1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/regulator/sprd,sc2730-regulator.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Unisoc SC2730 Power Management IC regulators 8 9maintainers: 10 - Otto Pflüger <otto.pflueger@abscue.de> 11 12patternProperties: 13 "^dcdc-(core|cpu|gen[0-1]|gpu|mem|memq|modem|sram)$": 14 type: object 15 $ref: regulator.yaml# 16 unevaluatedProperties: false 17 18 "^ldo-avdd(12|18)$": 19 type: object 20 $ref: regulator.yaml# 21 unevaluatedProperties: false 22 23 "^ldo-vdd(18-dcxo|28)$": 24 type: object 25 $ref: regulator.yaml# 26 unevaluatedProperties: false 27 28 "^ldo-vdd(emmccore|kpled|ldo[0-2]|sd(core|io)|sim[0-2]|usb33|wcn|wifipa)$": 29 type: object 30 $ref: regulator.yaml# 31 unevaluatedProperties: false 32 33 "^ldo-vddcam(a0|a1|d0|d1|io|mot)$": 34 type: object 35 $ref: regulator.yaml# 36 unevaluatedProperties: false 37 38 "^ldo-vddrf(1v25|18)$": 39 type: object 40 $ref: regulator.yaml# 41 unevaluatedProperties: false 42 43additionalProperties: false 44... 45