* [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB @ 2013-01-27 18:07 Jean-Christophe PLAGNIOL-VILLARD 2013-01-27 18:07 ` [PATCH 2/2] at91rm9200ek: fix mem size Jean-Christophe PLAGNIOL-VILLARD 2013-01-28 7:32 ` [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Sascha Hauer 0 siblings, 2 replies; 5+ messages in thread From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-27 18:07 UTC (permalink / raw) To: barebox Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> --- arch/arm/mach-at91/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 9d4359e..955328f 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig @@ -23,6 +23,7 @@ config ARCH_TEXT_BASE default 0x73f00000 if ARCH_AT91SAM9G45 default 0x26f00000 if ARCH_AT91SAM9X5 default 0x21f00000 if MACH_ANIMEO_IP + default 0x20f00000 if ARCH_AT91RM9200 default 0x23f00000 config BOARDINFO -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] at91rm9200ek: fix mem size 2013-01-27 18:07 [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-27 18:07 ` Jean-Christophe PLAGNIOL-VILLARD 2013-01-28 7:32 ` [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Sascha Hauer 1 sibling, 0 replies; 5+ messages in thread From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-27 18:07 UTC (permalink / raw) To: barebox we have only 32MiB of sdram by luck it was working Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> --- arch/arm/boards/at91rm9200ek/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boards/at91rm9200ek/init.c b/arch/arm/boards/at91rm9200ek/init.c index a40d3b9..0a360ae 100644 --- a/arch/arm/boards/at91rm9200ek/init.c +++ b/arch/arm/boards/at91rm9200ek/init.c @@ -39,7 +39,7 @@ static struct at91_ether_platform_data ether_pdata = { static int at91rm9200ek_mem_init(void) { - at91_add_device_sdram(64 * 1024 * 1024); + at91_add_device_sdram(32 * 1024 * 1024); return 0; } -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB 2013-01-27 18:07 [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Jean-Christophe PLAGNIOL-VILLARD 2013-01-27 18:07 ` [PATCH 2/2] at91rm9200ek: fix mem size Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-28 7:32 ` Sascha Hauer 2013-01-28 8:28 ` Jean-Christophe PLAGNIOL-VILLARD 1 sibling, 1 reply; 5+ messages in thread From: Sascha Hauer @ 2013-01-28 7:32 UTC (permalink / raw) To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox On Sun, Jan 27, 2013 at 07:07:58PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Applied, thanks Sascha > --- > arch/arm/mach-at91/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig > index 9d4359e..955328f 100644 > --- a/arch/arm/mach-at91/Kconfig > +++ b/arch/arm/mach-at91/Kconfig > @@ -23,6 +23,7 @@ config ARCH_TEXT_BASE > default 0x73f00000 if ARCH_AT91SAM9G45 > default 0x26f00000 if ARCH_AT91SAM9X5 > default 0x21f00000 if MACH_ANIMEO_IP > + default 0x20f00000 if ARCH_AT91RM9200 > default 0x23f00000 > > config BOARDINFO > -- > 1.7.10.4 > > > _______________________________________________ > barebox mailing list > barebox@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/barebox > -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB 2013-01-28 7:32 ` [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Sascha Hauer @ 2013-01-28 8:28 ` Jean-Christophe PLAGNIOL-VILLARD 2013-01-28 8:46 ` Sascha Hauer 0 siblings, 1 reply; 5+ messages in thread From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-28 8:28 UTC (permalink / raw) To: Sascha Hauer; +Cc: barebox On 08:32 Mon 28 Jan , Sascha Hauer wrote: > On Sun, Jan 27, 2013 at 07:07:58PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> > > Applied, thanks can we have those 2 for master as we report the kernel that we have 64MiB of sdram instead of 32MiB Best Regards, J. > > Sascha > > > --- > > arch/arm/mach-at91/Kconfig | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig > > index 9d4359e..955328f 100644 > > --- a/arch/arm/mach-at91/Kconfig > > +++ b/arch/arm/mach-at91/Kconfig > > @@ -23,6 +23,7 @@ config ARCH_TEXT_BASE > > default 0x73f00000 if ARCH_AT91SAM9G45 > > default 0x26f00000 if ARCH_AT91SAM9X5 > > default 0x21f00000 if MACH_ANIMEO_IP > > + default 0x20f00000 if ARCH_AT91RM9200 > > default 0x23f00000 > > > > config BOARDINFO > > -- > > 1.7.10.4 > > > > > > _______________________________________________ > > barebox mailing list > > barebox@lists.infradead.org > > http://lists.infradead.org/mailman/listinfo/barebox > > > > -- > Pengutronix e.K. | | > Industrial Linux Solutions | http://www.pengutronix.de/ | > Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB 2013-01-28 8:28 ` Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-28 8:46 ` Sascha Hauer 0 siblings, 0 replies; 5+ messages in thread From: Sascha Hauer @ 2013-01-28 8:46 UTC (permalink / raw) To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox On Mon, Jan 28, 2013 at 09:28:14AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 08:32 Mon 28 Jan , Sascha Hauer wrote: > > On Sun, Jan 27, 2013 at 07:07:58PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> > > > > Applied, thanks > > can we have those 2 for master > > as we report the kernel that we have 64MiB of sdram instead of 32MiB Ok, applied for master. Sascha > > Best Regards, > J. > > > > Sascha > > > > > --- > > > arch/arm/mach-at91/Kconfig | 1 + > > > 1 file changed, 1 insertion(+) > > > > > > diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig > > > index 9d4359e..955328f 100644 > > > --- a/arch/arm/mach-at91/Kconfig > > > +++ b/arch/arm/mach-at91/Kconfig > > > @@ -23,6 +23,7 @@ config ARCH_TEXT_BASE > > > default 0x73f00000 if ARCH_AT91SAM9G45 > > > default 0x26f00000 if ARCH_AT91SAM9X5 > > > default 0x21f00000 if MACH_ANIMEO_IP > > > + default 0x20f00000 if ARCH_AT91RM9200 > > > default 0x23f00000 > > > > > > config BOARDINFO > > > -- > > > 1.7.10.4 > > > > > > > > > _______________________________________________ > > > barebox mailing list > > > barebox@lists.infradead.org > > > http://lists.infradead.org/mailman/listinfo/barebox > > > > > > > -- > > Pengutronix e.K. | | > > Industrial Linux Solutions | http://www.pengutronix.de/ | > > Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | > -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-01-28 8:46 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2013-01-27 18:07 [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Jean-Christophe PLAGNIOL-VILLARD 2013-01-27 18:07 ` [PATCH 2/2] at91rm9200ek: fix mem size Jean-Christophe PLAGNIOL-VILLARD 2013-01-28 7:32 ` [PATCH 1/2] at91rm9200: fix default TEXT_BASE to 15MiB Sascha Hauer 2013-01-28 8:28 ` Jean-Christophe PLAGNIOL-VILLARD 2013-01-28 8:46 ` Sascha Hauer
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox