mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-25 19:54:35 +00:00
Disable usb over-current of the chipidea driver on all Carrier-Boards used by Toradex. Do this as we don't want to use this functionality on our Carrier Boards and to leave it open to someone who includes our module-level device-trees. This will prevent the warning "No over current polarity defined" from being printed on boot. Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
63 lines
865 B
Plaintext
63 lines
865 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright 2017-2022 Toradex
|
|
*/
|
|
|
|
#include "imx7d.dtsi"
|
|
#include "imx7-colibri.dtsi"
|
|
|
|
/ {
|
|
aliases {
|
|
/* Required to properly pass MAC addresses from bootloader. */
|
|
ethernet0 = &fec1;
|
|
ethernet1 = &fec2;
|
|
};
|
|
|
|
memory@80000000 {
|
|
device_type = "memory";
|
|
reg = <0x80000000 0x40000000>;
|
|
};
|
|
};
|
|
|
|
&cpu1 {
|
|
cpu-supply = <®_DCDC2>;
|
|
};
|
|
|
|
&gpio6 {
|
|
gpio-line-names = "",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"SODIMM_169",
|
|
"SODIMM_157",
|
|
"",
|
|
"SODIMM_163",
|
|
"SODIMM_77",
|
|
"SODIMM_24",
|
|
"",
|
|
"SODIMM_25",
|
|
"SODIMM_27",
|
|
"SODIMM_32",
|
|
"SODIMM_34";
|
|
};
|
|
|
|
/* Colibri USBH */
|
|
&usbotg2 {
|
|
disable-over-current;
|
|
dr_mode = "host";
|
|
vbus-supply = <®_usbh_vbus>;
|
|
};
|
|
|
|
/* eMMC */
|
|
&usdhc3 {
|
|
status = "okay";
|
|
};
|