xref: /freebsd/sys/contrib/device-tree/Bindings/ata/ti,dm816-ahci.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/ata/ti,dm816-ahci.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: TI DM816 AHCI SATA Controller
8
9maintainers:
10  - Bartosz Golaszewski <brgl@bgdev.pl>
11
12allOf:
13  - $ref: ahci-common.yaml#
14
15properties:
16  compatible:
17    const: ti,dm816-ahci
18
19  reg:
20    maxItems: 1
21
22  clocks:
23    items:
24      - description: functional clock
25      - description: external reference clock
26
27  ti,hwmods:
28    const: sata
29
30required:
31  - compatible
32  - clocks
33
34unevaluatedProperties: false
35
36examples:
37  - |
38    sata@4a140000 {
39        compatible = "ti,dm816-ahci";
40        reg = <0x4a140000 0x10000>;
41        interrupts = <16>;
42        clocks = <&sysclk5_ck>, <&sata_refclk>;
43    };
44