mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-27 18:18:18 +00:00
Upstream properties were added to device trees to follow current Linux
kernel. DW MMC driver was updated accordingly. Safely remove outdated
MMC properties. Details on removed properties are as follows:
* samsung,removable: replaced by non-removable
* samsung,bus-width: replaced by bus-width
* samsung,timing:
- replaced by samsung,dw-mshc-ciu-div and samsung,dw-mshc-sdr-timing
in dw_mmc nodes
- removed from sdhci nodes (it's neither described in bindings, nor
it's used in s5p_sdhci.c driver)
* fifoth_val: replaced by fifo-depth
* bus_hz: replaced by clock-frequency
* div: the fixed CIU clock divider value was moved to the chip data in
exynos_dw_mmc.c driver
No functional change.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
32 lines
565 B
Plaintext
32 lines
565 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Samsung's Exynos4210 based Origen board device tree source
|
|
*
|
|
* Copyright (c) 2014 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "skeleton.dtsi"
|
|
#include "exynos4210.dtsi"
|
|
|
|
/ {
|
|
model = "Insignal Origen evaluation board based on Exynos4210";
|
|
compatible = "insignal,origen", "samsung,exynos4210";
|
|
|
|
chosen {
|
|
bootargs ="";
|
|
};
|
|
|
|
aliases {
|
|
serial0 = "/serial@13800000";
|
|
console = "/serial@13820000";
|
|
};
|
|
};
|
|
|
|
&sdhci2 {
|
|
bus-width = <4>;
|
|
cd-gpios = <&gpk2 2 0>;
|
|
status = "okay";
|
|
};
|