mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
aa8e00fab5
Some exynos boards require special handling of nRESET_OUT line for eMMC memory to perform complete reboot e.g. Odroid X2/U3/XU3 boards. This will support eMMC reset using DT from reset_misc of samsung common board file. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
15 lines
340 B
Text
15 lines
340 B
Text
* Samsung eMMC reset
|
|
|
|
Some exynos boards require special handling of nRESET_OUT line for eMMC memory
|
|
to perform complete reboot.
|
|
|
|
Required properties:
|
|
- compatible: should be "samsung,emmc-reset"
|
|
- reset-gpio: gpio chip for eMMC reset.
|
|
|
|
Example:
|
|
|
|
emmc-reset {
|
|
compatible = "samsung,emmc-reset";
|
|
reset-gpio = <&gpk1 2 0>;
|
|
};
|