* [PATCH] powerpc/85xx: p1025twr: add module conditional to fix QE-uart issue
@ 2015-04-30 2:56 Pengbo Li
2015-04-30 3:36 ` Scott Wood
2015-04-30 3:40 ` Scott Wood
0 siblings, 2 replies; 3+ messages in thread
From: Pengbo Li @ 2015-04-30 2:56 UTC (permalink / raw)
To: linuxppc-dev, scottwood; +Cc: Xie Xiaobo
From: Xie Xiaobo <X.Xie@freescale.com>
A ioport setting was needed when used the QE uart function on TWR-P1025.
Added a conditional definition to avoid missing this setting when the
QE-uart driver was bulit to a module.
Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
Change-Id: I95b40c760335ce5fa7a27a94287dbef28219b5fa
Reviewed-on: http://git.am.freescale.net:8181/6643
Tested-by: Review Code-CDREVIEW <CDREVIEW@freescale.com>
Reviewed-by: Yang Li <LeoLi@freescale.com>
Reviewed-by: Thomas Trefny <Tom.Trefny@freescale.com>
Reviewed-on: http://git.am.freescale.net:8181/12045
Reviewed-by: Jose Rivera <German.Rivera@freescale.com>
---
arch/powerpc/platforms/85xx/twr_p102x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/powerpc/platforms/85xx/twr_p102x.c b/arch/powerpc/platforms/85xx/twr_p102x.c
index 1eadb6d..069e19b 100644
--- a/arch/powerpc/platforms/85xx/twr_p102x.c
+++ b/arch/powerpc/platforms/85xx/twr_p102x.c
@@ -101,7 +101,7 @@ static void __init twr_p1025_setup_arch(void)
MPC85xx_PMUXCR_QE(12));
iounmap(guts);
-#if defined(CONFIG_SERIAL_QE)
+#if defined(CONFIG_SERIAL_QE) || defined(CONFIG_SERIAL_QE_MODULE)
/* On P1025TWR board, the UCC7 acted as UART port.
* However, The UCC7's CTS pin is low level in default,
* it will impact the transmission in full duplex
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/85xx: p1025twr: add module conditional to fix QE-uart issue
2015-04-30 2:56 [PATCH] powerpc/85xx: p1025twr: add module conditional to fix QE-uart issue Pengbo Li
@ 2015-04-30 3:36 ` Scott Wood
2015-04-30 3:40 ` Scott Wood
1 sibling, 0 replies; 3+ messages in thread
From: Scott Wood @ 2015-04-30 3:36 UTC (permalink / raw)
To: Pengbo Li; +Cc: linuxppc-dev, Xie Xiaobo
On Thu, 2015-04-30 at 10:56 +0800, Pengbo Li wrote:
> From: Xie Xiaobo <X.Xie@freescale.com>
>
> A ioport setting was needed when used the QE uart function on TWR-P1025.
> Added a conditional definition to avoid missing this setting when the
> QE-uart driver was bulit to a module.
s/was bulit to/is built as/
> Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
> Change-Id: I95b40c760335ce5fa7a27a94287dbef28219b5fa
> Reviewed-on: http://git.am.freescale.net:8181/6643
> Tested-by: Review Code-CDREVIEW <CDREVIEW@freescale.com>
> Reviewed-by: Yang Li <LeoLi@freescale.com>
> Reviewed-by: Thomas Trefny <Tom.Trefny@freescale.com>
> Reviewed-on: http://git.am.freescale.net:8181/12045
> Reviewed-by: Jose Rivera <German.Rivera@freescale.com>
> ---
> arch/powerpc/platforms/85xx/twr_p102x.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/powerpc/platforms/85xx/twr_p102x.c b/arch/powerpc/platforms/85xx/twr_p102x.c
> index 1eadb6d..069e19b 100644
> --- a/arch/powerpc/platforms/85xx/twr_p102x.c
> +++ b/arch/powerpc/platforms/85xx/twr_p102x.c
> @@ -101,7 +101,7 @@ static void __init twr_p1025_setup_arch(void)
> MPC85xx_PMUXCR_QE(12));
> iounmap(guts);
>
> -#if defined(CONFIG_SERIAL_QE)
> +#if defined(CONFIG_SERIAL_QE) || defined(CONFIG_SERIAL_QE_MODULE)
> /* On P1025TWR board, the UCC7 acted as UART port.
> * However, The UCC7's CTS pin is low level in default,
> * it will impact the transmission in full duplex
How about using IS_ENABLED here?
Don't you need an equivalent change to
"#if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)"
?
Do we really need the ifdefs at all? What's the harm in setting up the
pins if those things aren't built into the kernel? Power consumption?
Is it a likely use case?
-Scott
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/85xx: p1025twr: add module conditional to fix QE-uart issue
2015-04-30 2:56 [PATCH] powerpc/85xx: p1025twr: add module conditional to fix QE-uart issue Pengbo Li
2015-04-30 3:36 ` Scott Wood
@ 2015-04-30 3:40 ` Scott Wood
1 sibling, 0 replies; 3+ messages in thread
From: Scott Wood @ 2015-04-30 3:40 UTC (permalink / raw)
To: Pengbo Li; +Cc: linuxppc-dev, Xie Xiaobo
On Thu, 2015-04-30 at 10:56 +0800, Pengbo Li wrote:
> From: Xie Xiaobo <X.Xie@freescale.com>
>
> A ioport setting was needed when used the QE uart function on TWR-P1025.
> Added a conditional definition to avoid missing this setting when the
> QE-uart driver was bulit to a module.
>
> Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
> Change-Id: I95b40c760335ce5fa7a27a94287dbef28219b5fa
> Reviewed-on: http://git.am.freescale.net:8181/6643
> Tested-by: Review Code-CDREVIEW <CDREVIEW@freescale.com>
> Reviewed-by: Yang Li <LeoLi@freescale.com>
> Reviewed-by: Thomas Trefny <Tom.Trefny@freescale.com>
> Reviewed-on: http://git.am.freescale.net:8181/12045
> Reviewed-by: Jose Rivera <German.Rivera@freescale.com>
Oh, and get rid of this Gerrit stuff.
-Scott
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-04-30 4:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-30 2:56 [PATCH] powerpc/85xx: p1025twr: add module conditional to fix QE-uart issue Pengbo Li
2015-04-30 3:36 ` Scott Wood
2015-04-30 3:40 ` Scott Wood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).