mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00

The Sielaff i.MX6 Solo board is a control and HMI board for vending machines. Add support for this board. The devicetree files are taken from pending changes in the Linux kernel that are available from linux-next and will likely be part of Linux v6.9. Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
38 lines
563 B
Text
38 lines
563 B
Text
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
/*
|
|
* Copyright (C) 2022 Kontron Electronics GmbH
|
|
*/
|
|
|
|
#include "imx6qdl-u-boot.dtsi"
|
|
|
|
/ {
|
|
binman: binman {
|
|
filename = "flash.bin";
|
|
pad-byte = <0x00>;
|
|
|
|
spl: blob-ext@1 {
|
|
offset = <0x0>;
|
|
filename = "SPL";
|
|
};
|
|
|
|
uboot: blob-ext@2 {
|
|
offset = <0x11000>;
|
|
filename = "u-boot.img";
|
|
};
|
|
};
|
|
|
|
wdt-reboot {
|
|
compatible = "wdt-reboot";
|
|
wdt = <&wdog1>;
|
|
};
|
|
};
|
|
|
|
&fec {
|
|
phy-mode = "rmii";
|
|
phy-reset-gpios = <&gpio5 2 GPIO_ACTIVE_LOW>;
|
|
phy-reset-duration = <100>;
|
|
};
|
|
|
|
&gpmi {
|
|
fsl,legacy-bch-geometry;
|
|
};
|