mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
2fd156b307
In attempts to speed up SPL and reduce size, the MDIO pin muxing
was inadvertently affected. Since the ethernet driver will setup
the pin muxing when ethernet is loaded, this patch will also
pinmux the MDIO pins at the same time. Once an DM compatible
MDIO driver is available, this can be removed.
Fixes: 877ab2423b
("ARM: davinci: da850: Manual pinmux only
when PINCTRL not available")
Signed-off-by: Adam Ford <aford173@gmail.com>
37 lines
425 B
Text
37 lines
425 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* da850-evm U-Boot Additions
|
|
*
|
|
* Copyright (C) 2017 Logic PD, Inc.
|
|
* Copyright (C) Adam Ford
|
|
*/
|
|
|
|
/ {
|
|
soc@1c00000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
nand {
|
|
compatible = "ti,davinci-nand";
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
pinctrl-0 = <&mii_pins>, <&mdio_pins>;
|
|
};
|
|
|
|
&flash {
|
|
compatible = "m25p64", "jedec,spi-nor";
|
|
};
|
|
|
|
&mmc0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&serial2 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&spi1 {
|
|
u-boot,dm-spl;
|
|
};
|