blob: 13d9382058fbc1c12be1024d1c550f04a825673c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/mmc/spacemit,sdhci.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: SpacemiT SDHCI Controller
maintainers:
- Yixun Lan <dlan@gentoo.org>
allOf:
- $ref: mmc-controller.yaml#
properties:
compatible:
const: spacemit,k1-sdhci
reg:
maxItems: 1
interrupts:
maxItems: 1
clocks:
items:
- description: core clock, used by internal controller
- description: io clock, output for SD, SDIO, eMMC device
clock-names:
items:
- const: core
- const: io
required:
- compatible
- reg
- interrupts
- clocks
- clock-names
unevaluatedProperties: false
examples:
- |
mmc@d4281000 {
compatible = "spacemit,k1-sdhci";
reg = <0xd4281000 0x200>;
interrupts = <101>;
interrupt-parent = <&plic>;
clocks = <&clk_apmu 10>, <&clk_apmu 13>;
clock-names = "core", "io";
};
|