All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly
@ 2012-04-11 11:18 Jason Liu
  2012-04-11 11:58 ` Stefano Babic
  2012-06-12 17:05 ` Stefano Babic
  0 siblings, 2 replies; 4+ messages in thread
From: Jason Liu @ 2012-04-11 11:18 UTC (permalink / raw)
  To: u-boot

If one PAD does not have mux or pad config register, we need
set the NO_MUX_I/NO_PAD_I to 0, the old value is not correct

Signed-off-by: Jason Liu <jason.hui@linaro.org>
CC: Stefano Babic <sbabic@denx.de>
---
 arch/arm/include/asm/arch-mx6/mx6x_pins.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/include/asm/arch-mx6/mx6x_pins.h b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
index afaa068..9979651 100644
--- a/arch/arm/include/asm/arch-mx6/mx6x_pins.h
+++ b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
@@ -48,8 +48,8 @@
 #define PAD_CTL_SRE_FAST	(1 << 0)
 #define PAD_CTL_SRE_SLOW	(0 << 0)
 
-#define NO_MUX_I		0x3FF
-#define NO_PAD_I		0x7FF
+#define NO_MUX_I                0
+#define NO_PAD_I                0
 
 enum {
 	MX6Q_PAD_SD2_DAT1__USDHC2_DAT1		= IOMUX_PAD(0x0360, 0x004C, 0, 0x0000, 0, 0),
-- 
1.7.5.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly
  2012-04-11 11:18 [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly Jason Liu
@ 2012-04-11 11:58 ` Stefano Babic
  2012-05-15 12:42   ` Dirk Behme
  2012-06-12 17:05 ` Stefano Babic
  1 sibling, 1 reply; 4+ messages in thread
From: Stefano Babic @ 2012-04-11 11:58 UTC (permalink / raw)
  To: u-boot

On 11/04/2012 13:18, Jason Liu wrote:
> If one PAD does not have mux or pad config register, we need
> set the NO_MUX_I/NO_PAD_I to 0, the old value is not correct
> 
> Signed-off-by: Jason Liu <jason.hui@linaro.org>
> CC: Stefano Babic <sbabic@denx.de>
> ---
>  arch/arm/include/asm/arch-mx6/mx6x_pins.h |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-mx6/mx6x_pins.h b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
> index afaa068..9979651 100644
> --- a/arch/arm/include/asm/arch-mx6/mx6x_pins.h
> +++ b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
> @@ -48,8 +48,8 @@
>  #define PAD_CTL_SRE_FAST	(1 << 0)
>  #define PAD_CTL_SRE_SLOW	(0 << 0)
>  
> -#define NO_MUX_I		0x3FF
> -#define NO_PAD_I		0x7FF
> +#define NO_MUX_I                0
> +#define NO_PAD_I                0
>  
>  enum {
>  	MX6Q_PAD_SD2_DAT1__USDHC2_DAT1		= IOMUX_PAD(0x0360, 0x004C, 0, 0x0000, 0, 0),

Agree. Please correct me if I am wrong, but with these changes we should
sure that the iomux register are not set if we do not want, because in
imx_iomux_v3_setup_pad:

if (sel_input_ofs)
	__raw_writel(sel_input, base + sel_input_ofs);

and NO_MUX_I = 0 should set sel_input_ofs to 0.

It is then difficult to understand why we have up now 0x3FF as value,
but it neverminds..

Acked-by: Stefano Babic <sbabic@denx.de>

(This is a fix, I will merge it for the release)

Best regards,
Stefano Babic
-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly
  2012-04-11 11:58 ` Stefano Babic
@ 2012-05-15 12:42   ` Dirk Behme
  0 siblings, 0 replies; 4+ messages in thread
From: Dirk Behme @ 2012-05-15 12:42 UTC (permalink / raw)
  To: u-boot

On 11.04.2012 13:58, Stefano Babic wrote:
> On 11/04/2012 13:18, Jason Liu wrote:
>> If one PAD does not have mux or pad config register, we need
>> set the NO_MUX_I/NO_PAD_I to 0, the old value is not correct
>>
>> Signed-off-by: Jason Liu <jason.hui@linaro.org>
>> CC: Stefano Babic <sbabic@denx.de>
>> ---
>>  arch/arm/include/asm/arch-mx6/mx6x_pins.h |    4 ++--
>>  1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/arm/include/asm/arch-mx6/mx6x_pins.h b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
>> index afaa068..9979651 100644
>> --- a/arch/arm/include/asm/arch-mx6/mx6x_pins.h
>> +++ b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
>> @@ -48,8 +48,8 @@
>>  #define PAD_CTL_SRE_FAST	(1 << 0)
>>  #define PAD_CTL_SRE_SLOW	(0 << 0)
>>  
>> -#define NO_MUX_I		0x3FF
>> -#define NO_PAD_I		0x7FF
>> +#define NO_MUX_I                0
>> +#define NO_PAD_I                0
>>  
>>  enum {
>>  	MX6Q_PAD_SD2_DAT1__USDHC2_DAT1		= IOMUX_PAD(0x0360, 0x004C, 0, 0x0000, 0, 0),
> 
> Agree. Please correct me if I am wrong, but with these changes we should
> sure that the iomux register are not set if we do not want, because in
> imx_iomux_v3_setup_pad:
> 
> if (sel_input_ofs)
> 	__raw_writel(sel_input, base + sel_input_ofs);
> 
> and NO_MUX_I = 0 should set sel_input_ofs to 0.
> 
> It is then difficult to understand why we have up now 0x3FF as value,
> but it neverminds..
> 
> Acked-by: Stefano Babic <sbabic@denx.de>
> 
> (This is a fix, I will merge it for the release)

I have this patch on my list of pending patches.

Should it be applied now?

Best regards

Dirk

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly
  2012-04-11 11:18 [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly Jason Liu
  2012-04-11 11:58 ` Stefano Babic
@ 2012-06-12 17:05 ` Stefano Babic
  1 sibling, 0 replies; 4+ messages in thread
From: Stefano Babic @ 2012-06-12 17:05 UTC (permalink / raw)
  To: u-boot

On 11/04/2012 13:18, Jason Liu wrote:
> If one PAD does not have mux or pad config register, we need
> set the NO_MUX_I/NO_PAD_I to 0, the old value is not correct
> 
> Signed-off-by: Jason Liu <jason.hui@linaro.org>
> CC: Stefano Babic <sbabic@denx.de>
> ---
>  arch/arm/include/asm/arch-mx6/mx6x_pins.h |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-mx6/mx6x_pins.h b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
> index afaa068..9979651 100644
> --- a/arch/arm/include/asm/arch-mx6/mx6x_pins.h
> +++ b/arch/arm/include/asm/arch-mx6/mx6x_pins.h
> @@ -48,8 +48,8 @@
>  #define PAD_CTL_SRE_FAST	(1 << 0)
>  #define PAD_CTL_SRE_SLOW	(0 << 0)
>  
> -#define NO_MUX_I		0x3FF
> -#define NO_PAD_I		0x7FF
> +#define NO_MUX_I                0
> +#define NO_PAD_I                0
>  
>  enum {
>  	MX6Q_PAD_SD2_DAT1__USDHC2_DAT1		= IOMUX_PAD(0x0360, 0x004C, 0, 0x0000, 0, 0),

Applied to u-boot-imx, thanks. Sorry that it was not applied before ;-)

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-06-12 17:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-11 11:18 [U-Boot] [PATCH] i.mx: i.mx6x: NO_MUX_I/NO_PAD_I not set correctly Jason Liu
2012-04-11 11:58 ` Stefano Babic
2012-05-15 12:42   ` Dirk Behme
2012-06-12 17:05 ` Stefano Babic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.