* [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. @ 2010-09-07 18:52 Marek Belisko 2010-09-08 8:49 ` Juergen Beisert ` (2 more replies) 0 siblings, 3 replies; 8+ messages in thread From: Marek Belisko @ 2010-09-07 18:52 UTC (permalink / raw) To: barebox Following steps lead to compilation error (barebox v2010.09.0): 1. make a9m2440_defconfig (or a9m2410) ARCH=arm 2. make CROSS_COMPILE=arm-linux- ARCH=arm This patch should fix problems. Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> --- arch/arm/mach-s3c24xx/Kconfig | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig index 37ccf2f..297fdbb 100644 --- a/arch/arm/mach-s3c24xx/Kconfig +++ b/arch/arm/mach-s3c24xx/Kconfig @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT config S3C24XX_NAND_BOOT bool prompt "Booting from NAND" - select NAND_S3C24X0 + select MTD + select NAND + select NAND_S3C24X0 help Add generic support to boot from NAND flash. Image loading will be skipped if the code is running from NOR or already from SDRAM. -- 1.7.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-07 18:52 [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig Marek Belisko @ 2010-09-08 8:49 ` Juergen Beisert 2010-09-08 9:47 ` Jean-Christophe PLAGNIOL-VILLARD 2010-09-23 6:12 ` Juergen Beisert 2 siblings, 0 replies; 8+ messages in thread From: Juergen Beisert @ 2010-09-08 8:49 UTC (permalink / raw) To: barebox; +Cc: Marek Belisko Marek Belisko wrote: > Following steps lead to compilation error (barebox v2010.09.0): > > 1. make a9m2440_defconfig (or a9m2410) ARCH=arm > 2. make CROSS_COMPILE=arm-linux- ARCH=arm > > This patch should fix problems. > > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> > --- > arch/arm/mach-s3c24xx/Kconfig | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig > index 37ccf2f..297fdbb 100644 > --- a/arch/arm/mach-s3c24xx/Kconfig > +++ b/arch/arm/mach-s3c24xx/Kconfig > @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT > config S3C24XX_NAND_BOOT > bool > prompt "Booting from NAND" > - select NAND_S3C24X0 > + select MTD > + select NAND > + select NAND_S3C24X0 > help > Add generic support to boot from NAND flash. Image loading will be > skipped if the code is running from NOR or already from SDRAM. Acked-by: Juergen Beisert <jbe@pengutronix.de> jbe -- Pengutronix e.K. | Juergen Beisert | Linux Solutions for Science and Industry | Phone: +49-8766-939 228 | Vertretung Sued/Muenchen, Germany | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de/ | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-07 18:52 [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig Marek Belisko 2010-09-08 8:49 ` Juergen Beisert @ 2010-09-08 9:47 ` Jean-Christophe PLAGNIOL-VILLARD 2010-09-08 9:56 ` Belisko Marek 2010-09-08 10:01 ` Juergen Beisert 2010-09-23 6:12 ` Juergen Beisert 2 siblings, 2 replies; 8+ messages in thread From: Jean-Christophe PLAGNIOL-VILLARD @ 2010-09-08 9:47 UTC (permalink / raw) To: Marek Belisko; +Cc: barebox On 20:52 Tue 07 Sep , Marek Belisko wrote: > Following steps lead to compilation error (barebox v2010.09.0): > > 1. make a9m2440_defconfig (or a9m2410) ARCH=arm > 2. make CROSS_COMPILE=arm-linux- ARCH=arm > > This patch should fix problems. > > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> > --- > arch/arm/mach-s3c24xx/Kconfig | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig > index 37ccf2f..297fdbb 100644 > --- a/arch/arm/mach-s3c24xx/Kconfig > +++ b/arch/arm/mach-s3c24xx/Kconfig > @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT > config S3C24XX_NAND_BOOT > bool > prompt "Booting from NAND" > - select NAND_S3C24X0 > + select MTD > + select NAND > + select NAND_S3C24X0 you should be able to boot from nand only if you enable the NAND and not the invert so it's a depends on Best Regards, J. _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-08 9:47 ` Jean-Christophe PLAGNIOL-VILLARD @ 2010-09-08 9:56 ` Belisko Marek 2010-09-08 10:01 ` Juergen Beisert 1 sibling, 0 replies; 8+ messages in thread From: Belisko Marek @ 2010-09-08 9:56 UTC (permalink / raw) To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox On Wed, Sep 8, 2010 at 11:47 AM, Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> wrote: > On 20:52 Tue 07 Sep , Marek Belisko wrote: >> Following steps lead to compilation error (barebox v2010.09.0): >> >> 1. make a9m2440_defconfig (or a9m2410) ARCH=arm >> 2. make CROSS_COMPILE=arm-linux- ARCH=arm >> >> This patch should fix problems. >> >> Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> >> --- >> arch/arm/mach-s3c24xx/Kconfig | 4 +++- >> 1 files changed, 3 insertions(+), 1 deletions(-) >> >> diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig >> index 37ccf2f..297fdbb 100644 >> --- a/arch/arm/mach-s3c24xx/Kconfig >> +++ b/arch/arm/mach-s3c24xx/Kconfig >> @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT >> config S3C24XX_NAND_BOOT >> bool >> prompt "Booting from NAND" >> - select NAND_S3C24X0 >> + select MTD >> + select NAND >> + select NAND_S3C24X0 > > you should be able to boot from nand only if you enable the NAND and not the > invert Sorry but don't understand what you mean. This patch was acked by barebox people today. > > so it's a depends on > > Best Regards, > J. > BR, Marek -- as simple and primitive as possible ------------------------------------------------- Marek Belisko - OPEN-NANDRA Freelance Developer Ruska Nova Ves 219 | Presov, 08005 Slovak Republic Tel: +421 915 052 184 skype: marekwhite icq: 290551086 web: http://open-nandra.com _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-08 9:47 ` Jean-Christophe PLAGNIOL-VILLARD 2010-09-08 9:56 ` Belisko Marek @ 2010-09-08 10:01 ` Juergen Beisert 2010-09-08 10:36 ` Peter Korsgaard 2010-09-08 10:58 ` Juergen Beisert 1 sibling, 2 replies; 8+ messages in thread From: Juergen Beisert @ 2010-09-08 10:01 UTC (permalink / raw) To: barebox; +Cc: Marek Belisko Jean-Christophe PLAGNIOL-VILLARD wrote: > On 20:52 Tue 07 Sep , Marek Belisko wrote: > > Following steps lead to compilation error (barebox v2010.09.0): > > > > 1. make a9m2440_defconfig (or a9m2410) ARCH=arm > > 2. make CROSS_COMPILE=arm-linux- ARCH=arm > > > > This patch should fix problems. > > > > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> > > --- > > arch/arm/mach-s3c24xx/Kconfig | 4 +++- > > 1 files changed, 3 insertions(+), 1 deletions(-) > > > > diff --git a/arch/arm/mach-s3c24xx/Kconfig > > b/arch/arm/mach-s3c24xx/Kconfig index 37ccf2f..297fdbb 100644 > > --- a/arch/arm/mach-s3c24xx/Kconfig > > +++ b/arch/arm/mach-s3c24xx/Kconfig > > @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT > > config S3C24XX_NAND_BOOT > > bool > > prompt "Booting from NAND" > > - select NAND_S3C24X0 > > + select MTD > > + select NAND > > + select NAND_S3C24X0 > > you should be able to boot from nand only if you enable the NAND and not > the invert Hmm, you can enable NAND support, but you may do not want to boot from it. IMHO its correct in this way. jbe -- Pengutronix e.K. | Juergen Beisert | Linux Solutions for Science and Industry | Phone: +49-8766-939 228 | Vertretung Sued/Muenchen, Germany | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de/ | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-08 10:01 ` Juergen Beisert @ 2010-09-08 10:36 ` Peter Korsgaard 2010-09-08 10:58 ` Juergen Beisert 1 sibling, 0 replies; 8+ messages in thread From: Peter Korsgaard @ 2010-09-08 10:36 UTC (permalink / raw) To: Juergen Beisert; +Cc: barebox, Marek Belisko >>>>> "Juergen" == Juergen Beisert <jbe@pengutronix.de> writes: Hi, >> > prompt "Booting from NAND" >> > - select NAND_S3C24X0 >> > + select MTD >> > + select NAND >> > + select NAND_S3C24X0 >> >> you should be able to boot from nand only if you enable the NAND and not >> the invert Juergen> Hmm, you can enable NAND support, but you may do not want to Juergen> boot from it. IMHO its correct in this way. Yes, but you cannot boot from nand unless you have nand support - So I agree, depends makes more sense. -- Bye, Peter Korsgaard _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-08 10:01 ` Juergen Beisert 2010-09-08 10:36 ` Peter Korsgaard @ 2010-09-08 10:58 ` Juergen Beisert 1 sibling, 0 replies; 8+ messages in thread From: Juergen Beisert @ 2010-09-08 10:58 UTC (permalink / raw) To: barebox; +Cc: Marek Belisko Juergen Beisert wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: > > On 20:52 Tue 07 Sep , Marek Belisko wrote: > > > Following steps lead to compilation error (barebox v2010.09.0): > > > > > > 1. make a9m2440_defconfig (or a9m2410) ARCH=arm > > > 2. make CROSS_COMPILE=arm-linux- ARCH=arm > > > > > > This patch should fix problems. > > > > > > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> > > > --- > > > arch/arm/mach-s3c24xx/Kconfig | 4 +++- > > > 1 files changed, 3 insertions(+), 1 deletions(-) > > > > > > diff --git a/arch/arm/mach-s3c24xx/Kconfig > > > b/arch/arm/mach-s3c24xx/Kconfig index 37ccf2f..297fdbb 100644 > > > --- a/arch/arm/mach-s3c24xx/Kconfig > > > +++ b/arch/arm/mach-s3c24xx/Kconfig > > > @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT > > > config S3C24XX_NAND_BOOT > > > bool > > > prompt "Booting from NAND" > > > - select NAND_S3C24X0 > > > + select MTD > > > + select NAND > > > + select NAND_S3C24X0 > > > > you should be able to boot from nand only if you enable the NAND and not > > the invert > > Hmm, you can enable NAND support, but you may do not want to boot from it. > IMHO its correct in this way. In this case it is not a matter of taste how these parts depends on each other. This CPU module only contains NAND. There is no alternative to start from. But this discussion leads into the lack of a "select S3C24XX_NAND_BOOT" when selecting one of these boards. So, the correct fix should better be like this: diff --git a/arch/arm/boards/a9m2410/a9m2410.c b/arch/arm/boards/a9m2410/a9m2410.c index f327f82..db0ddab 100644 --- a/arch/arm/boards/a9m2410/a9m2410.c +++ b/arch/arm/boards/a9m2410/a9m2410.c @@ -152,14 +152,12 @@ static int a9m2410_devices_init(void) register_device(&sdram_dev); register_device(&network_dev); -#ifdef CONFIG_NAND /* ----------- add some vital partitions -------- */ devfs_add_partition("nand0", 0x00000, 0x40000, PARTITION_FIXED, "self_raw"); dev_add_bb_dev("self_raw", "self0"); devfs_add_partition("nand0", 0x40000, 0x20000, PARTITION_FIXED, "env_raw"); dev_add_bb_dev("env_raw", "env0"); -#endif armlinux_add_dram(&sdram_dev); armlinux_set_bootparams((void *)sdram_dev.map_base + 0x100); @@ -170,12 +168,10 @@ static int a9m2410_devices_init(void) device_initcall(a9m2410_devices_init); -#ifdef CONFIG_S3C24XX_NAND_BOOT void __bare_init nand_boot(void) { s3c24x0_nand_load_image((void *)TEXT_BASE, 256 * 1024, 0, 512); } -#endif static struct device_d a9m2410_serial_device = { .name = "s3c24x0_serial", diff --git a/arch/arm/boards/a9m2440/a9m2440.c b/arch/arm/boards/a9m2440/a9m2440.c index 2567f5e..bfa56ec 100644 --- a/arch/arm/boards/a9m2440/a9m2440.c +++ b/arch/arm/boards/a9m2440/a9m2440.c @@ -159,14 +159,13 @@ static int a9m2440_devices_init(void) register_device(&sdram_dev); register_device(&network_dev); -#ifdef CONFIG_NAND /* ----------- add some vital partitions -------- */ devfs_add_partition("nand0", 0x00000, 0x40000, PARTITION_FIXED, "self_raw"); dev_add_bb_dev("self_raw", "self0"); devfs_add_partition("nand0", 0x40000, 0x20000, PARTITION_FIXED, "env_raw"); dev_add_bb_dev("env_raw", "env0"); -#endif + armlinux_add_dram(&sdram_dev); armlinux_set_bootparams((void *)sdram_dev.map_base + 0x100); armlinux_set_architecture(MACH_TYPE_A9M2440); @@ -176,12 +175,10 @@ static int a9m2440_devices_init(void) device_initcall(a9m2440_devices_init); -#ifdef CONFIG_S3C24XX_NAND_BOOT void __bare_init nand_boot(void) { s3c24x0_nand_load_image((void *)TEXT_BASE, 256 * 1024, 0, 512); } -#endif static struct device_d a9m2440_serial_device = { .name = "s3c24x0_serial", diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig index 37ccf2f..2670837 100644 --- a/arch/arm/mach-s3c24xx/Kconfig +++ b/arch/arm/mach-s3c24xx/Kconfig @@ -24,6 +24,7 @@ config MACH_A9M2410 select MACH_HAS_LOWLEVEL_INIT select S3C24XX_PLL_INIT select S3C24XX_SDRAM_INIT + select S3C24XX_NAND_BOOT help Say Y here if you are using Digi's Connect Core 9M equipped with a Samsung S3C2410 Processor @@ -33,6 +34,7 @@ config MACH_A9M2440 select CPU_S3C2440 select MACH_HAS_LOWLEVEL_INIT select S3C24XX_PLL_INIT + select S3C24XX_NAND_BOOT help Say Y here if you are using Digi's Connect Core 9M equipped with a Samsung S3C2440 Processor @@ -81,6 +83,8 @@ config S3C24XX_SDRAM_INIT config S3C24XX_NAND_BOOT bool prompt "Booting from NAND" + select MTD + select NAND select NAND_S3C24X0 help Add generic support to boot from NAND flash. Image loading will be @Marek: Can you check it on your hardware? My a9m2440 isn't working right now. jbe -- Pengutronix e.K. | Juergen Beisert | Linux Solutions for Science and Industry | Phone: +49-8766-939 228 | Vertretung Sued/Muenchen, Germany | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de/ | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig. 2010-09-07 18:52 [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig Marek Belisko 2010-09-08 8:49 ` Juergen Beisert 2010-09-08 9:47 ` Jean-Christophe PLAGNIOL-VILLARD @ 2010-09-23 6:12 ` Juergen Beisert 2 siblings, 0 replies; 8+ messages in thread From: Juergen Beisert @ 2010-09-23 6:12 UTC (permalink / raw) To: barebox; +Cc: Hauer, Sascha Hi Sascha, Marek Belisko wrote: > Following steps lead to compilation error (barebox v2010.09.0): > > 1. make a9m2440_defconfig (or a9m2410) ARCH=arm > 2. make CROSS_COMPILE=arm-linux- ARCH=arm > > This patch should fix problems. > > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> > --- > arch/arm/mach-s3c24xx/Kconfig | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig > index 37ccf2f..297fdbb 100644 > --- a/arch/arm/mach-s3c24xx/Kconfig > +++ b/arch/arm/mach-s3c24xx/Kconfig > @@ -81,7 +81,9 @@ config S3C24XX_SDRAM_INIT > config S3C24XX_NAND_BOOT > bool > prompt "Booting from NAND" > - select NAND_S3C24X0 > + select MTD > + select NAND > + select NAND_S3C24X0 > help > Add generic support to boot from NAND flash. Image loading will be > skipped if the code is running from NOR or already from SDRAM. Did you notice this thread? jbe -- Pengutronix e.K. | Juergen Beisert | Linux Solutions for Science and Industry | Phone: +49-8766-939 228 | Vertretung Sued/Muenchen, Germany | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de/ | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-09-23 6:13 UTC | newest] Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2010-09-07 18:52 [PATCH] mach-s3c24xx: Fix compilation problem when make a9m2410 or a9m2440 defconfig Marek Belisko 2010-09-08 8:49 ` Juergen Beisert 2010-09-08 9:47 ` Jean-Christophe PLAGNIOL-VILLARD 2010-09-08 9:56 ` Belisko Marek 2010-09-08 10:01 ` Juergen Beisert 2010-09-08 10:36 ` Peter Korsgaard 2010-09-08 10:58 ` Juergen Beisert 2010-09-23 6:12 ` Juergen Beisert
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox