mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 10:30:32 +00:00
23 lines
408 B
Text
23 lines
408 B
Text
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* U-Boot addition to:
|
||
|
* 1) use platform data for the console
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <dt-bindings/reset/ti-syscon.h>
|
||
|
|
||
|
/* The driver in U-Boot does not support "snps,dw-mshc" compatible. */
|
||
|
&sd0 {
|
||
|
compatible = "hisilicon,hi3798mv200-dw-mshc";
|
||
|
};
|
||
|
|
||
|
&sd1 {
|
||
|
compatible = "hisilicon,hi3798mv200-dw-mshc";
|
||
|
};
|
||
|
|
||
|
/* The clock driver is missing */
|
||
|
&uart0 {
|
||
|
clock = <75000000>;
|
||
|
};
|