linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E
@ 2012-05-11  5:33 Shaohui Xie
  2012-07-10 10:22 ` Xie Shaohui-B21989
  2012-07-10 12:24 ` Kumar Gala
  0 siblings, 2 replies; 5+ messages in thread
From: Shaohui Xie @ 2012-05-11  5:33 UTC (permalink / raw)
  To: linux-watchdog, linuxppc-dev; +Cc: Shaohui Xie

CONFIG_FSL_BOOKE is only defined in 32-bit, CONFIG_PPC_FSL_BOOK3E is
defined in both 32-bit and 64-bit, so use CONFIG_PPC_FSL_BOOK3E to make
driver work in 32-bit & 64-bit.

Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
---
changes for v2:
use PPC_FSL_BOOK3E instead of FSL_SOC_BOOKE.

 drivers/watchdog/Kconfig     |    8 ++++----
 drivers/watchdog/booke_wdt.c |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index 3709624..4373ca0 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -1094,10 +1094,10 @@ config BOOKE_WDT
 config BOOKE_WDT_DEFAULT_TIMEOUT
 	int "PowerPC Book-E Watchdog Timer Default Timeout"
 	depends on BOOKE_WDT
-	default 38 if FSL_BOOKE
-	range 0 63 if FSL_BOOKE
-	default 3 if !FSL_BOOKE
-	range 0 3 if !FSL_BOOKE
+	default 38 if PPC_FSL_BOOK3E
+	range 0 63 if PPC_FSL_BOOK3E
+	default 3 if !PPC_FSL_BOOK3E
+	range 0 3 if !PPC_FSL_BOOK3E
 	help
 	  Select the default watchdog timer period to be used by the PowerPC
 	  Book-E watchdog driver.  A watchdog "event" occurs when the bit
diff --git a/drivers/watchdog/booke_wdt.c b/drivers/watchdog/booke_wdt.c
index ce0ab44..338a437 100644
--- a/drivers/watchdog/booke_wdt.c
+++ b/drivers/watchdog/booke_wdt.c
@@ -37,7 +37,7 @@
 u32 booke_wdt_enabled;
 u32 booke_wdt_period = CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT;
 
-#ifdef	CONFIG_FSL_BOOKE
+#ifdef	CONFIG_PPC_FSL_BOOK3E
 #define WDTP(x)		((((x)&0x3)<<30)|(((x)&0x3c)<<15))
 #define WDTP_MASK	(WDTP(0x3f))
 #else
@@ -190,7 +190,7 @@ static long booke_wdt_ioctl(struct file *file,
 	case WDIOC_SETTIMEOUT:
 		if (get_user(tmp, p))
 			return -EFAULT;
-#ifdef	CONFIG_FSL_BOOKE
+#ifdef	CONFIG_PPC_FSL_BOOK3E
 		/* period of 1 gives the largest possible timeout */
 		if (tmp > period_to_sec(1))
 			return -EINVAL;
-- 
1.6.4

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

* RE: [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E
  2012-05-11  5:33 [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E Shaohui Xie
@ 2012-07-10 10:22 ` Xie Shaohui-B21989
  2012-07-10 11:40   ` Kumar Gala
  2012-07-10 12:24 ` Kumar Gala
  1 sibling, 1 reply; 5+ messages in thread
From: Xie Shaohui-B21989 @ 2012-07-10 10:22 UTC (permalink / raw)
  To: Xie Shaohui-B21989, linux-watchdog, linuxppc-dev

Hi, All,

Is there any concern for this patch, it's been a long time.
Thanks!


Best Regards,=20
Shaohui Xie=20


>-----Original Message-----
>From: Xie Shaohui-B21989
>Sent: Friday, May 11, 2012 1:34 PM
>To: linux-watchdog@vger.kernel.org; linuxppc-dev@lists.ozlabs.org
>Cc: Xie Shaohui-B21989
>Subject: [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with
>CONFIG_PPC_FSL_BOOK3E
>
>CONFIG_FSL_BOOKE is only defined in 32-bit, CONFIG_PPC_FSL_BOOK3E is
>defined in both 32-bit and 64-bit, so use CONFIG_PPC_FSL_BOOK3E to make
>driver work in 32-bit & 64-bit.
>
>Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
>---
>changes for v2:
>use PPC_FSL_BOOK3E instead of FSL_SOC_BOOKE.
>
> drivers/watchdog/Kconfig     |    8 ++++----
> drivers/watchdog/booke_wdt.c |    4 ++--
> 2 files changed, 6 insertions(+), 6 deletions(-)
>
>diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index
>3709624..4373ca0 100644
>--- a/drivers/watchdog/Kconfig
>+++ b/drivers/watchdog/Kconfig
>@@ -1094,10 +1094,10 @@ config BOOKE_WDT  config BOOKE_WDT_DEFAULT_TIMEOUT
> 	int "PowerPC Book-E Watchdog Timer Default Timeout"
> 	depends on BOOKE_WDT
>-	default 38 if FSL_BOOKE
>-	range 0 63 if FSL_BOOKE
>-	default 3 if !FSL_BOOKE
>-	range 0 3 if !FSL_BOOKE
>+	default 38 if PPC_FSL_BOOK3E
>+	range 0 63 if PPC_FSL_BOOK3E
>+	default 3 if !PPC_FSL_BOOK3E
>+	range 0 3 if !PPC_FSL_BOOK3E
> 	help
> 	  Select the default watchdog timer period to be used by the PowerPC
> 	  Book-E watchdog driver.  A watchdog "event" occurs when the bit
>diff --git a/drivers/watchdog/booke_wdt.c b/drivers/watchdog/booke_wdt.c
>index ce0ab44..338a437 100644
>--- a/drivers/watchdog/booke_wdt.c
>+++ b/drivers/watchdog/booke_wdt.c
>@@ -37,7 +37,7 @@
> u32 booke_wdt_enabled;
> u32 booke_wdt_period =3D CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT;
>
>-#ifdef	CONFIG_FSL_BOOKE
>+#ifdef	CONFIG_PPC_FSL_BOOK3E
> #define WDTP(x)		((((x)&0x3)<<30)|(((x)&0x3c)<<15))
> #define WDTP_MASK	(WDTP(0x3f))
> #else
>@@ -190,7 +190,7 @@ static long booke_wdt_ioctl(struct file *file,
> 	case WDIOC_SETTIMEOUT:
> 		if (get_user(tmp, p))
> 			return -EFAULT;
>-#ifdef	CONFIG_FSL_BOOKE
>+#ifdef	CONFIG_PPC_FSL_BOOK3E
> 		/* period of 1 gives the largest possible timeout */
> 		if (tmp > period_to_sec(1))
> 			return -EINVAL;
>--
>1.6.4

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

* Re: [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E
  2012-07-10 10:22 ` Xie Shaohui-B21989
@ 2012-07-10 11:40   ` Kumar Gala
  2012-07-10 11:41     ` Kumar Gala
  0 siblings, 1 reply; 5+ messages in thread
From: Kumar Gala @ 2012-07-10 11:40 UTC (permalink / raw)
  To: Xie Shaohui-B21989; +Cc: linuxppc-dev, linux-watchdog


On Jul 10, 2012, at 5:22 AM, Xie Shaohui-B21989 wrote:

> Hi, All,
> 
> Is there any concern for this patch, it's been a long time.
> Thanks!
> 
> 
> Best Regards, 
> Shaohui Xie 

As commented, we should use PPC_FSL_BOOK3E, not CONFIG_PPC_FSL_BOOK3E.

- k

> 
> 
>> -----Original Message-----
>> From: Xie Shaohui-B21989
>> Sent: Friday, May 11, 2012 1:34 PM
>> To: linux-watchdog@vger.kernel.org; linuxppc-dev@lists.ozlabs.org
>> Cc: Xie Shaohui-B21989
>> Subject: [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with
>> CONFIG_PPC_FSL_BOOK3E
>> 
>> CONFIG_FSL_BOOKE is only defined in 32-bit, CONFIG_PPC_FSL_BOOK3E is
>> defined in both 32-bit and 64-bit, so use CONFIG_PPC_FSL_BOOK3E to make
>> driver work in 32-bit & 64-bit.
>> 
>> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
>> ---
>> changes for v2:
>> use PPC_FSL_BOOK3E instead of FSL_SOC_BOOKE.
>> 
>> drivers/watchdog/Kconfig     |    8 ++++----
>> drivers/watchdog/booke_wdt.c |    4 ++--
>> 2 files changed, 6 insertions(+), 6 deletions(-)
>> 
>> diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index
>> 3709624..4373ca0 100644
>> --- a/drivers/watchdog/Kconfig
>> +++ b/drivers/watchdog/Kconfig
>> @@ -1094,10 +1094,10 @@ config BOOKE_WDT  config BOOKE_WDT_DEFAULT_TIMEOUT
>> 	int "PowerPC Book-E Watchdog Timer Default Timeout"
>> 	depends on BOOKE_WDT
>> -	default 38 if FSL_BOOKE
>> -	range 0 63 if FSL_BOOKE
>> -	default 3 if !FSL_BOOKE
>> -	range 0 3 if !FSL_BOOKE
>> +	default 38 if PPC_FSL_BOOK3E
>> +	range 0 63 if PPC_FSL_BOOK3E
>> +	default 3 if !PPC_FSL_BOOK3E
>> +	range 0 3 if !PPC_FSL_BOOK3E
>> 	help
>> 	  Select the default watchdog timer period to be used by the PowerPC
>> 	  Book-E watchdog driver.  A watchdog "event" occurs when the bit
>> diff --git a/drivers/watchdog/booke_wdt.c b/drivers/watchdog/booke_wdt.c
>> index ce0ab44..338a437 100644
>> --- a/drivers/watchdog/booke_wdt.c
>> +++ b/drivers/watchdog/booke_wdt.c
>> @@ -37,7 +37,7 @@
>> u32 booke_wdt_enabled;
>> u32 booke_wdt_period = CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT;
>> 
>> -#ifdef	CONFIG_FSL_BOOKE
>> +#ifdef	CONFIG_PPC_FSL_BOOK3E
>> #define WDTP(x)		((((x)&0x3)<<30)|(((x)&0x3c)<<15))
>> #define WDTP_MASK	(WDTP(0x3f))
>> #else
>> @@ -190,7 +190,7 @@ static long booke_wdt_ioctl(struct file *file,
>> 	case WDIOC_SETTIMEOUT:
>> 		if (get_user(tmp, p))
>> 			return -EFAULT;
>> -#ifdef	CONFIG_FSL_BOOKE
>> +#ifdef	CONFIG_PPC_FSL_BOOK3E
>> 		/* period of 1 gives the largest possible timeout */
>> 		if (tmp > period_to_sec(1))
>> 			return -EINVAL;
>> --
>> 1.6.4
> 
> 
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev

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

* Re: [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E
  2012-07-10 11:40   ` Kumar Gala
@ 2012-07-10 11:41     ` Kumar Gala
  0 siblings, 0 replies; 5+ messages in thread
From: Kumar Gala @ 2012-07-10 11:41 UTC (permalink / raw)
  To: Xie Shaohui-B21989; +Cc: linuxppc-dev, linux-watchdog


On Jul 10, 2012, at 6:40 AM, Kumar Gala wrote:

> 
> On Jul 10, 2012, at 5:22 AM, Xie Shaohui-B21989 wrote:
> 
>> Hi, All,
>> 
>> Is there any concern for this patch, it's been a long time.
>> Thanks!
>> 
>> 
>> Best Regards, 
>> Shaohui Xie 
> 
> As commented, we should use PPC_FSL_BOOK3E, not CONFIG_PPC_FSL_BOOK3E.
> 
> - k

Sorry, was looking at the older version of this patch.

- k

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

* Re: [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E
  2012-05-11  5:33 [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E Shaohui Xie
  2012-07-10 10:22 ` Xie Shaohui-B21989
@ 2012-07-10 12:24 ` Kumar Gala
  1 sibling, 0 replies; 5+ messages in thread
From: Kumar Gala @ 2012-07-10 12:24 UTC (permalink / raw)
  To: Shaohui Xie; +Cc: linuxppc-dev, linux-watchdog


On May 11, 2012, at 12:33 AM, Shaohui Xie wrote:

> CONFIG_FSL_BOOKE is only defined in 32-bit, CONFIG_PPC_FSL_BOOK3E is
> defined in both 32-bit and 64-bit, so use CONFIG_PPC_FSL_BOOK3E to make
> driver work in 32-bit & 64-bit.
> 
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
> ---
> changes for v2:
> use PPC_FSL_BOOK3E instead of FSL_SOC_BOOKE.
> 
> drivers/watchdog/Kconfig     |    8 ++++----
> drivers/watchdog/booke_wdt.c |    4 ++--
> 2 files changed, 6 insertions(+), 6 deletions(-)

applied to next

- k

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

end of thread, other threads:[~2012-07-10 12:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-11  5:33 [PATCH 2/2][v2] powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E Shaohui Xie
2012-07-10 10:22 ` Xie Shaohui-B21989
2012-07-10 11:40   ` Kumar Gala
2012-07-10 11:41     ` Kumar Gala
2012-07-10 12:24 ` Kumar Gala

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).