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>
24 lines
464 B
Plaintext
24 lines
464 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright 2017-2022 Toradex
|
|
*
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "imx7d-colibri-emmc.dtsi"
|
|
#include "imx7-colibri-aster.dtsi"
|
|
|
|
/ {
|
|
model = "Toradex Colibri iMX7D 1GB (eMMC) on Aster Carrier Board";
|
|
compatible = "toradex,colibri-imx7d-emmc-aster",
|
|
"toradex,colibri-imx7d-emmc",
|
|
"toradex,colibri-imx7d",
|
|
"fsl,imx7d";
|
|
};
|
|
|
|
/* Colibri USBH */
|
|
&usbotg2 {
|
|
disable-over-current;
|
|
status = "okay";
|
|
};
|