mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
3972ae65e4
DT files have been added this year but forgot to update it that's why do it in separate patch now. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
21 lines
474 B
Text
21 lines
474 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* dts file for Xilinx ZynqMP Z2-VSOM
|
|
*
|
|
* (C) Copyright 2020 - 2021, Xilinx, Inc.
|
|
*
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*/
|
|
|
|
/* SD0 only supports 3.3V, no level shifter */
|
|
&sdhci1 { /* FIXME - on CC - MIO 39 - 51 */
|
|
status = "okay";
|
|
no-1-8-v;
|
|
disable-wp;
|
|
broken-cd;
|
|
xlnx,mio-bank = <1>;
|
|
/* Do not run SD in HS mode from bootloader */
|
|
sdhci-caps-mask = <0 0x200000>;
|
|
sdhci-caps = <0 0>;
|
|
max-frequency = <19000000>;
|
|
};
|