Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/ata/ti,dm816-ahci.yaml
26308 views
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
7
title: TI DM816 AHCI SATA Controller
8
9
maintainers:
10
- Bartosz Golaszewski <brgl@bgdev.pl>
11
12
allOf:
13
- $ref: ahci-common.yaml#
14
15
properties:
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
30
required:
31
- compatible
32
- clocks
33
34
unevaluatedProperties: false
35
36
examples:
37
- |
38
sata@4a140000 {
39
compatible = "ti,dm816-ahci";
40
reg = <0x4a140000 0x10000>;
41
interrupts = <16>;
42
clocks = <&sysclk5_ck>, <&sata_refclk>;
43
};
44
45