Skip to content
Snippets Groups Projects
Commit 76a30fed authored by Marcel Ziswiler's avatar Marcel Ziswiler Committed by Tom Warren
Browse files

ARM: tegra: colibri_t20: fix nand pinmux


Pingroup ATC seems to come out of reset with config set to NAND, so we
need to explicitly configure some other function to this group in order
to avoid clashing settings.

Signed-off-by: default avatarMarcel Ziswiler <marcel@ziswiler.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent 9b219d4d
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,12 @@ void pin_mux_mmc(void)
void pin_mux_nand(void)
{
funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_NDFLASH_KBC_8_BIT);
/*
* configure pingroup ATC to something unrelated to
* avoid ATC overriding KBC
*/
pinmux_set_func(PMUX_PINGRP_ATC, PMUX_FUNC_GMI);
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment