[U-Boot] [PATCH 1/2] ARM: tegra: add function to clear pinmux CLAMPING bit

Simon Glass sjg at chromium.org
Wed Feb 18 03:24:02 CET 2015


Hi Stephen,

On 17 February 2015 at 11:56, Stephen Warren <swarren at wwwdotorg.org> wrote:
> From: Stephen Warren <swarren at nvidia.com>
>
> This is needed to correctly apply the new Jetson TK1 pinmux config.
>
> Signed-off-by: Stephen Warren <swarren at nvidia.com>
> ---
>  arch/arm/cpu/tegra-common/pinmux-common.c | 10 ++++++++++
>  arch/arm/include/asm/arch-tegra/pinmux.h  |  3 ++-
>  2 files changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/cpu/tegra-common/pinmux-common.c b/arch/arm/cpu/tegra-common/pinmux-common.c
> index 6e3ab0c14ca2..692de7629b9b 100644
> --- a/arch/arm/cpu/tegra-common/pinmux-common.c
> +++ b/arch/arm/cpu/tegra-common/pinmux-common.c
> @@ -100,6 +100,16 @@ void pinmux_set_tristate_input_clamping(void)
>         val |= CLAMP_INPUTS_WHEN_TRISTATED;
>         writel(val, reg);
>  }
> +
> +void pinmux_clear_tristate_input_clamping(void)
> +{
> +       u32 *reg = _R(APB_MISC_PP_PINMUX_GLOBAL_0);
> +       u32 val;
> +
> +       val = readl(reg);
> +       val &= ~CLAMP_INPUTS_WHEN_TRISTATED;
> +       writel(val, reg);

I'm not sure about the reg access here, normally it is via a
structure. But anyway can we do:

clrbits_le32(reg, CLAMP_INPUTS_WHEN_TRISTATED);

?

> +}
>  #endif
>
>  void pinmux_set_func(enum pmux_pingrp pin, enum pmux_func func)
> diff --git a/arch/arm/include/asm/arch-tegra/pinmux.h b/arch/arm/include/asm/arch-tegra/pinmux.h
> index da477697bf02..ab764960fa7f 100644
> --- a/arch/arm/include/asm/arch-tegra/pinmux.h
> +++ b/arch/arm/include/asm/arch-tegra/pinmux.h
> @@ -81,8 +81,9 @@ struct pmux_pingrp_config {
>  };
>
>  #if !defined(CONFIG_TEGRA20) && !defined(CONFIG_TEGRA30)
> -/* Set the pinmux CLAMP_INPUTS_WHEN_TRISTATED bit */
> +/* Set/clear the pinmux CLAMP_INPUTS_WHEN_TRISTATED bit */
>  void pinmux_set_tristate_input_clamping(void);
> +void pinmux_clear_tristate_input_clamping(void);
>  #endif
>
>  /* Set the mux function for a pin group */
> --
> 1.9.1
>

Regards,
Simon


More information about the U-Boot mailing list