Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) * SOCIONEXT Milbeaut SDHCI controller
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) This file documents differences between the core properties in mmc.txt
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) and the properties used by the sdhci_milbeaut driver.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) Required properties:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) - compatible: "socionext,milbeaut-m10v-sdhci-3.0"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) - clocks: Must contain an entry for each entry in clock-names. It is a
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9)   list of phandles and clock-specifier pairs.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)   See ../clocks/clock-bindings.txt for details.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) - clock-names: Should contain the following two entries:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 	"iface" - clock used for sdhci interface
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 	"core"  - core clock for sdhci controller
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) Optional properties:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) - fujitsu,cmd-dat-delay-select: boolean property indicating that this host
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17)   requires the CMD_DAT_DELAY control to be enabled.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) Example:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 	sdhci3: mmc@1b010000 {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 		compatible = "socionext,milbeaut-m10v-sdhci-3.0";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 		reg = <0x1b010000 0x10000>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 		interrupts = <0 265 0x4>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 		voltage-ranges = <3300 3300>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 		bus-width = <4>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 		clocks = <&clk 7>, <&ahb_clk>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 		clock-names = "core", "iface";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 		cap-sdio-irq;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 		fujitsu,cmd-dat-delay-select;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 	};