]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
tegra: pinmux: fix FUNCMUX_NDFLASH_KBC_8_BIT
authorLucas Stach <dev@lynxeye.de>
Fri, 27 Mar 2015 00:31:44 +0000 (01:31 +0100)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:35:13 +0000 (14:35 +0200)
Even the 8-bit case needs KBCB configured, as pin D7 is located in this
pingroup.

Please note that pingroup ATC seems to come out of reset with its
config set to NAND so one needs to explicitly configure some other
function to this group in order to avoid clashing settings which is
outside the scope of this patch.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Tested-by: Marcel Ziswiler <marcel@ziswiler.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
arch/arm/mach-tegra/tegra20/funcmux.c

index 0df4a0738de49d1bfc671bc3c312bde7cc06a68d..44a85c5f1dc98db3965304abc1585971051c3efd 100644 (file)
@@ -252,12 +252,14 @@ int funcmux_select(enum periph_id id, int config)
                        break;
                case FUNCMUX_NDFLASH_KBC_8_BIT:
                        pinmux_set_func(PMUX_PINGRP_KBCA, PMUX_FUNC_NAND);
+                       pinmux_set_func(PMUX_PINGRP_KBCB, PMUX_FUNC_NAND);
                        pinmux_set_func(PMUX_PINGRP_KBCC, PMUX_FUNC_NAND);
                        pinmux_set_func(PMUX_PINGRP_KBCD, PMUX_FUNC_NAND);
                        pinmux_set_func(PMUX_PINGRP_KBCE, PMUX_FUNC_NAND);
                        pinmux_set_func(PMUX_PINGRP_KBCF, PMUX_FUNC_NAND);
 
                        pinmux_tristate_disable(PMUX_PINGRP_KBCA);
+                       pinmux_tristate_disable(PMUX_PINGRP_KBCB);
                        pinmux_tristate_disable(PMUX_PINGRP_KBCC);
                        pinmux_tristate_disable(PMUX_PINGRP_KBCD);
                        pinmux_tristate_disable(PMUX_PINGRP_KBCE);