mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
5ca84c6dd2
Similar to Clearfog rev 2.1, GPIO 19 also used to reset onboard ethernet PHY. This patch depend on net: mvneta: Add GPIO configuration support [URL: https://patchwork.ozlabs.org/patch/1007736/] Signed-off-by: Aditya Prayoga <aditya@kobol.io> Reviewed-by: Stefan Roese <sr@denx.de> Tested-By: Dennis Gilmore <dgilmore@redhat.com> Reviewed-By: Dennis Gilmore <dgilmore@redhat.com> Signed-off-by: Stefan Roese <sr@denx.de>
22 lines
244 B
Text
22 lines
244 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/ {
|
|
aliases {
|
|
i2c0 = &i2c0;
|
|
i2c1 = &i2c1;
|
|
spi1 = &spi1;
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
phy-reset-gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
&spi1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&w25q32 {
|
|
status = "okay";
|
|
u-boot,dm-spl;
|
|
};
|