brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · aa581e5 Raw
51 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2# Copyright (c) 2023 Analog Devices, Inc.3%YAML 1.24---5$id: http://devicetree.org/schemas/regulator/adi,max77503-regulator.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: Analog Devices MAX77503 Buck Converter9 10maintainers:11  - Gokhan Celik <Gokhan.Celik@analog.com>12 13description: |14  The Analog Devices MAX77503 is a single channel 14V input, 1.5A15  high-efficiency buck converter. This converter has 94% efficiency16  for 2-Cell/3-Cell battery applications.17 18allOf:19  - $ref: regulator.yaml#20 21properties:22  compatible:23    enum:24      - adi,max7750325 26  reg:27    description: I2C address of the device28    items:29      - enum: [0x1e, 0x24, 0x37]30 31required:32  - compatible33  - reg34 35unevaluatedProperties: false36 37examples:38  - |39    i2c {40        #address-cells = <1>;41        #size-cells = <0>;42 43        regulator@1e {44            compatible = "adi,max77503";45            reg = <0x1e>;46 47            regulator-min-microvolt = <800000>;48            regulator-max-microvolt = <5000000>;49        };50    };51