Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause %YAML 1.2 --- $id: http://devicetree.org/schemas/mmc/samsung,exynos-dw-mshc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Samsung Exynos SoC specific extensions to the Synopsys Designware Mobile Storage Host Controller maintainers: - Jaehoon Chung <jh80.chung@samsung.com> - Krzysztof Kozlowski <krzk@kernel.org> properties: compatible: oneOf: - enum: - axis,artpec8-dw-mshc - samsung,exynos4210-dw-mshc - samsung,exynos4412-dw-mshc - samsung,exynos5250-dw-mshc - samsung,exynos5420-dw-mshc - samsung,exynos5420-dw-mshc-smu - samsung,exynos7-dw-mshc - samsung,exynos7-dw-mshc-smu - items: - enum: - samsung,exynos5433-dw-mshc-smu - samsung,exynos7885-dw-mshc-smu - samsung,exynos850-dw-mshc-smu - const: samsung,exynos7-dw-mshc-smu reg: maxItems: 1 interrupts: maxItems: 1 clocks: maxItems: 2 description: Handle to "biu" and "ciu" clocks for the bus interface unit clock and the card interface unit clock. clock-names: items: - const: biu - const: ciu samsung,dw-mshc-ciu-div: $ref: /schemas/types.yaml#/definitions/uint32 minimum: 0 maximum: 7 description: The divider value for the card interface unit (ciu) clock. samsung,dw-mshc-ddr-timing: $ref: /schemas/types.yaml#/definitions/uint32-array items: - description: CIU clock phase shift value for tx mode minimum: 0 maximum: 7 - description: CIU clock phase shift value for rx mode minimum: 0 maximum: 7 description: The value of CUI clock phase shift value in transmit mode and CIU clock phase shift value in receive mode for double data rate mode operation. See also samsung,dw-mshc-hs400-timing property. samsung,dw-mshc-hs400-timing: $ref: /schemas/types.yaml#/definitions/uint32-array items: - description: CIU clock phase shift value for tx mode minimum: 0 maximum: 7 - description: CIU clock phase shift value for rx mode minimum: 0 maximum: 7 description: | The value of CIU TX and RX clock phase shift value for HS400 mode operation. Valid values for SDR and DDR CIU clock timing:: - valid value for tx phase shift and rx phase shift is 0 to 7. - when CIU clock divider value is set to 3, all possible 8 phase shift values can be used. - if CIU clock divider value is 0 (that is divide by 1), both tx and rx phase shift clocks should be 0. If missing, values from samsung,dw-mshc-ddr-timing property are used. samsung,dw-mshc-sdr-timing: $ref: /schemas/types.yaml#/definitions/uint32-array items: - description: CIU clock phase shift value for tx mode minimum: 0 maximum: 7 - description: CIU clock phase shift value for rx mode minimum: 0 maximum: 7 description: The value of CIU clock phase shift value in transmit mode and CIU clock phase shift value in receive mode for single data rate mode operation. See also samsung,dw-mshc-hs400-timing property. samsung,read-strobe-delay: $ref: /schemas/types.yaml#/definitions/uint32 description: RCLK (Data strobe) delay to control HS400 mode (Latency value for delay line in Read path). If missing, default from hardware is used. required: - compatible - reg - interrupts - clocks - clock-names - samsung,dw-mshc-ddr-timing - samsung,dw-mshc-sdr-timing allOf: - $ref: synopsys-dw-mshc-common.yaml# - if: properties: compatible: contains: enum: - samsung,exynos5250-dw-mshc - samsung,exynos5420-dw-mshc - samsung,exynos7-dw-mshc - samsung,exynos7-dw-mshc-smu - axis,artpec8-dw-mshc then: required: - samsung,dw-mshc-ciu-div unevaluatedProperties: false examples: - | #include <dt-bindings/clock/exynos5420.h> #include <dt-bindings/interrupt-controller/arm-gic.h> mmc@12220000 { compatible = "samsung,exynos5420-dw-mshc"; interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; #address-cells = <1>; #size-cells = <0>; reg = <0x12220000 0x1000>; clocks = <&clock CLK_MMC2>, <&clock CLK_SCLK_MMC2>; clock-names = "biu", "ciu"; fifo-depth = <0x40>; card-detect-delay = <200>; samsung,dw-mshc-ciu-div = <3>; samsung,dw-mshc-sdr-timing = <0 4>; samsung,dw-mshc-ddr-timing = <0 2>; pinctrl-names = "default"; pinctrl-0 = <&sd2_clk &sd2_cmd &sd2_cd &sd2_wp &sd2_bus1 &sd2_bus4>; bus-width = <4>; cap-sd-highspeed; max-frequency = <200000000>; vmmc-supply = <&ldo19_reg>; vqmmc-supply = <&ldo13_reg>; sd-uhs-sdr50; sd-uhs-sdr104; sd-uhs-ddr50; }; |