Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: at91: sama5d3_xplained: add pincontrol for USB Host

The pincontrol node is needed for USB Host since Linux v5.7-rc1. Without
it the driver probes but VBus is not powered because of wrong pincontrol
configuration.

Fixes: b7c2b61570798 ("ARM: at91: add Atmel's SAMA5D3 Xplained board")
Signed-off-by: Cristian Birsan <cristian.birsan@microchip.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Link: https://lore.kernel.org/r/20201118120019.1257580-4-cristian.birsan@microchip.com

authored by

Cristian Birsan and committed by
Alexandre Belloni
e1062fa7 be4dd2d4

+7
+7
arch/arm/boot/dts/at91-sama5d3_xplained.dts
··· 242 242 atmel,pins = 243 243 <AT91_PIOE 9 AT91_PERIPH_GPIO AT91_PINCTRL_DEGLITCH>; /* PE9, conflicts with A9 */ 244 244 }; 245 + pinctrl_usb_default: usb_default { 246 + atmel,pins = 247 + <AT91_PIOE 3 AT91_PERIPH_GPIO AT91_PINCTRL_NONE 248 + AT91_PIOE 4 AT91_PERIPH_GPIO AT91_PINCTRL_NONE>; 249 + }; 245 250 }; 246 251 }; 247 252 }; ··· 264 259 &pioE 3 GPIO_ACTIVE_LOW 265 260 &pioE 4 GPIO_ACTIVE_LOW 266 261 >; 262 + pinctrl-names = "default"; 263 + pinctrl-0 = <&pinctrl_usb_default>; 267 264 status = "okay"; 268 265 }; 269 266