mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

* target: add phytium support * kernel/video: add phytium platform ARM GPU support * config: add EFI support to phytium armv8 * target: phytium: remove rtl8821cs driver * target: phytium: refresh dts
59 lines
1.0 KiB
YAML
Executable File
59 lines
1.0 KiB
YAML
Executable File
# SPDX-License-Identifier: GPL-2.0-only
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/mmc/phytium,sdci.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Phytium SDCI Controller Binding
|
|
|
|
maintainers:
|
|
- Chen Baozi <chenbaozi@phytium.com.cn>
|
|
|
|
allOf:
|
|
- $ref: mmc-controller.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- phytium,sdci
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
minItems: 3
|
|
maxItems: 3
|
|
|
|
clocks:
|
|
minItems: 1
|
|
items:
|
|
- description: core clock
|
|
|
|
clock-names:
|
|
minItems: 1
|
|
items:
|
|
- const: phytium_sdc_clk
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- clocks
|
|
- clock-names
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
sdci: sdci@28207c00 {
|
|
compatible = "phytium,sdci";
|
|
reg = <0x0 0x28207c00 0x0 0x100>;
|
|
interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>,
|
|
<GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
|
|
<GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&sysclk_600mhz>;
|
|
clock-names = "phytium_sdc_clk";
|
|
};
|
|
|
|
...
|