linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PowerPC 44x: use machine_device_initcall() instead of device_initcall() for warp_nand
@ 2008-04-04 18:24 Valentine Barshak
  2008-04-04 18:49 ` Grant Likely
  2008-04-08  4:21 ` [PATCH] PowerPC 44x: use machine_device_initcall() instead ofdevice_initcall() " Sean MacLennan
  0 siblings, 2 replies; 3+ messages in thread
From: Valentine Barshak @ 2008-04-04 18:24 UTC (permalink / raw)
  To: linuxppc-dev

With a multiplatform kernel, once built we always have warp_setup_nand_flash() called
and NDFC probed, no matter what machine we actually run on. This potentially can cause
problems (such as kernel crash), since NDFC is probed at a warp-predefined address.
Using machine_device_initcall() NAND devices are registered if we run on a warp only.

Signed-off-by: Valentine Barshak <vbarshak@ru.mvista.com>
---
 arch/powerpc/platforms/44x/warp-nand.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

--- linux-2.6.orig/arch/powerpc/platforms/44x/warp-nand.c	2008-03-06 14:39:46.000000000 +0300
+++ linux-2.6.bld/arch/powerpc/platforms/44x/warp-nand.c	2008-04-04 22:03:36.000000000 +0400
@@ -11,6 +11,7 @@
 #include <linux/mtd/partitions.h>
 #include <linux/mtd/nand.h>
 #include <linux/mtd/ndfc.h>
+#include <asm/machdep.h>
 
 #ifdef CONFIG_MTD_NAND_NDFC
 
@@ -100,6 +101,6 @@ static int warp_setup_nand_flash(void)
 
 	return 0;
 }
-device_initcall(warp_setup_nand_flash);
+machine_device_initcall(warp, warp_setup_nand_flash);
 
 #endif

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

* Re: [PATCH] PowerPC 44x: use machine_device_initcall() instead of device_initcall() for warp_nand
  2008-04-04 18:24 [PATCH] PowerPC 44x: use machine_device_initcall() instead of device_initcall() for warp_nand Valentine Barshak
@ 2008-04-04 18:49 ` Grant Likely
  2008-04-08  4:21 ` [PATCH] PowerPC 44x: use machine_device_initcall() instead ofdevice_initcall() " Sean MacLennan
  1 sibling, 0 replies; 3+ messages in thread
From: Grant Likely @ 2008-04-04 18:49 UTC (permalink / raw)
  To: Valentine Barshak; +Cc: linuxppc-dev

On Fri, Apr 4, 2008 at 12:24 PM, Valentine Barshak
<vbarshak@ru.mvista.com> wrote:
> With a multiplatform kernel, once built we always have warp_setup_nand_flash() called
>  and NDFC probed, no matter what machine we actually run on. This potentially can cause
>  problems (such as kernel crash), since NDFC is probed at a warp-predefined address.
>  Using machine_device_initcall() NAND devices are registered if we run on a warp only.
>
>  Signed-off-by: Valentine Barshak <vbarshak@ru.mvista.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>

>  ---
>   arch/powerpc/platforms/44x/warp-nand.c |    3 ++-
>   1 files changed, 2 insertions(+), 1 deletion(-)
>
>  --- linux-2.6.orig/arch/powerpc/platforms/44x/warp-nand.c       2008-03-06 14:39:46.000000000 +0300
>  +++ linux-2.6.bld/arch/powerpc/platforms/44x/warp-nand.c        2008-04-04 22:03:36.000000000 +0400
>  @@ -11,6 +11,7 @@
>   #include <linux/mtd/partitions.h>
>   #include <linux/mtd/nand.h>
>   #include <linux/mtd/ndfc.h>
>  +#include <asm/machdep.h>
>
>   #ifdef CONFIG_MTD_NAND_NDFC
>
>  @@ -100,6 +101,6 @@ static int warp_setup_nand_flash(void)
>
>         return 0;
>   }
>  -device_initcall(warp_setup_nand_flash);
>  +machine_device_initcall(warp, warp_setup_nand_flash);
>
>   #endif
>  _______________________________________________
>  Linuxppc-dev mailing list
>  Linuxppc-dev@ozlabs.org
>  https://ozlabs.org/mailman/listinfo/linuxppc-dev
>



-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Re: [PATCH] PowerPC 44x: use machine_device_initcall() instead ofdevice_initcall() for warp_nand
  2008-04-04 18:24 [PATCH] PowerPC 44x: use machine_device_initcall() instead of device_initcall() for warp_nand Valentine Barshak
  2008-04-04 18:49 ` Grant Likely
@ 2008-04-08  4:21 ` Sean MacLennan
  1 sibling, 0 replies; 3+ messages in thread
From: Sean MacLennan @ 2008-04-08  4:21 UTC (permalink / raw)
  To: Valentine Barshak; +Cc: linuxppc-dev

On Fri, 4 Apr 2008 22:24:37 +0400
"Valentine Barshak" <vbarshak@ru.mvista.com> wrote:

> With a multiplatform kernel, once built we always have
> warp_setup_nand_flash() called and NDFC probed, no matter what
> machine we actually run on. This potentially can cause problems (such
> as kernel crash), since NDFC is probed at a warp-predefined address.
> Using machine_device_initcall() NAND devices are registered if we run
> on a warp only.

Thanks for catching that. I have gotten *way* behind on my email and am
only reading this now.

Cheers,
  Sean

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

end of thread, other threads:[~2008-04-08  4:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-04 18:24 [PATCH] PowerPC 44x: use machine_device_initcall() instead of device_initcall() for warp_nand Valentine Barshak
2008-04-04 18:49 ` Grant Likely
2008-04-08  4:21 ` [PATCH] PowerPC 44x: use machine_device_initcall() instead ofdevice_initcall() " Sean MacLennan

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