brintos

brintos / linux-shallow public Read only

0
0
Text · 919 B · 2011bd0 Raw
48 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/ata/allwinner,sun4i-a10-ahci.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Allwinner A10 AHCI SATA Controller8 9maintainers:10  - Chen-Yu Tsai <wens@csie.org>11  - Maxime Ripard <mripard@kernel.org>12 13properties:14  compatible:15    const: allwinner,sun4i-a10-ahci16 17  reg:18    maxItems: 119 20  clocks:21    items:22      - description: AHCI Bus Clock23      - description: AHCI Module Clock24 25  interrupts:26    maxItems: 127 28  target-supply:29    description: Regulator for SATA target power30 31required:32  - compatible33  - reg34  - clocks35  - interrupts36 37additionalProperties: false38 39examples:40  - |41    ahci: sata@1c18000 {42        compatible = "allwinner,sun4i-a10-ahci";43        reg = <0x01c18000 0x1000>;44        interrupts = <56>;45        clocks = <&pll6 0>, <&ahb_gates 25>;46        target-supply = <&reg_ahci_5v>;47    };48