mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
colibri_t20: fix reset out pin
Make sure SODIMM pin 87 nRESET_OUT is released properly by explicitly setting its pin mux function to GMI. This solves some issues with e.g. USB not being fully operational on carrier boards with USB hubs connected to reset if U-Boot got loaded via recovery mode aka rcm. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
This commit is contained in:
parent
36a01bdd80
commit
b7b2067062
1 changed files with 3 additions and 0 deletions
|
@ -51,6 +51,9 @@ int arch_misc_init(void)
|
|||
return err;
|
||||
}
|
||||
|
||||
/* make sure SODIMM pin 87 nRESET_OUT is released properly */
|
||||
pinmux_set_func(PMUX_PINGRP_ATA, PMUX_FUNC_GMI);
|
||||
|
||||
if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) ==
|
||||
NVBOOTTYPE_RECOVERY)
|
||||
printf("USB recovery mode\n");
|
||||
|
|
Loading…
Reference in a new issue