mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-16 01:24:08 +08:00
e23b2f54db
The Allwinner F1C100 series contains two MMC controller blocks. From comparing the data sheets, they seem to be compatible with the one used in the Allwinner A20: the register layout is the same, and they use the same separate sample and output clocks design. The only difference is the missing reset line in the A20 version, but both the binding and the Linux driver make this optional, so it's still a fit. Add the new SoC specific name and require it to be paired with the A20 fallback name, as this is all the driver needs to care about. Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Samuel Holland <samuel@sholland.org> Link: https://lore.kernel.org/r/20220307143421.1106209-8-andre.przywara@arm.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
116 lines
2.7 KiB
YAML
116 lines
2.7 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/mmc/allwinner,sun4i-a10-mmc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Allwinner A10 MMC Controller Device Tree Bindings
|
|
|
|
allOf:
|
|
- $ref: "mmc-controller.yaml"
|
|
|
|
maintainers:
|
|
- Chen-Yu Tsai <wens@csie.org>
|
|
- Maxime Ripard <mripard@kernel.org>
|
|
|
|
properties:
|
|
"#address-cells": true
|
|
"#size-cells": true
|
|
|
|
compatible:
|
|
oneOf:
|
|
- const: allwinner,sun4i-a10-mmc
|
|
- const: allwinner,sun5i-a13-mmc
|
|
- const: allwinner,sun7i-a20-mmc
|
|
- const: allwinner,sun8i-a83t-emmc
|
|
- const: allwinner,sun9i-a80-mmc
|
|
- const: allwinner,sun20i-d1-mmc
|
|
- const: allwinner,sun50i-a64-emmc
|
|
- const: allwinner,sun50i-a64-mmc
|
|
- const: allwinner,sun50i-a100-emmc
|
|
- const: allwinner,sun50i-a100-mmc
|
|
- items:
|
|
- const: allwinner,sun8i-a83t-mmc
|
|
- const: allwinner,sun7i-a20-mmc
|
|
- items:
|
|
- const: allwinner,sun8i-r40-emmc
|
|
- const: allwinner,sun50i-a64-emmc
|
|
- items:
|
|
- const: allwinner,sun8i-r40-mmc
|
|
- const: allwinner,sun50i-a64-mmc
|
|
- items:
|
|
- const: allwinner,sun50i-h5-emmc
|
|
- const: allwinner,sun50i-a64-emmc
|
|
- items:
|
|
- const: allwinner,sun50i-h5-mmc
|
|
- const: allwinner,sun50i-a64-mmc
|
|
- items:
|
|
- const: allwinner,sun50i-h6-emmc
|
|
- const: allwinner,sun50i-a64-emmc
|
|
- items:
|
|
- const: allwinner,sun50i-h6-mmc
|
|
- const: allwinner,sun50i-a64-mmc
|
|
- items:
|
|
- const: allwinner,sun20i-d1-emmc
|
|
- const: allwinner,sun50i-a100-emmc
|
|
- items:
|
|
- const: allwinner,sun50i-h616-emmc
|
|
- const: allwinner,sun50i-a100-emmc
|
|
- items:
|
|
- const: allwinner,sun50i-h616-mmc
|
|
- const: allwinner,sun50i-a100-mmc
|
|
- items:
|
|
- const: allwinner,suniv-f1c100s-mmc
|
|
- const: allwinner,sun7i-a20-mmc
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
minItems: 2
|
|
items:
|
|
- description: Bus Clock
|
|
- description: Module Clock
|
|
- description: Output Clock
|
|
- description: Sample Clock
|
|
|
|
clock-names:
|
|
minItems: 2
|
|
items:
|
|
- const: ahb
|
|
- const: mmc
|
|
- const: output
|
|
- const: sample
|
|
|
|
resets:
|
|
maxItems: 1
|
|
|
|
reset-names:
|
|
const: ahb
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- clocks
|
|
- clock-names
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
mmc0: mmc@1c0f000 {
|
|
compatible = "allwinner,sun5i-a13-mmc";
|
|
reg = <0x01c0f000 0x1000>;
|
|
clocks = <&ahb_gates 8>, <&mmc0_clk>;
|
|
clock-names = "ahb", "mmc";
|
|
interrupts = <32>;
|
|
bus-width = <4>;
|
|
cd-gpios = <&pio 7 1 0>;
|
|
};
|
|
|
|
...
|