From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from 3.mo1.mail-out.ovh.net ([46.105.60.232] helo=mo1.mail-out.ovh.net) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TwWYv-00065i-7u for barebox@lists.infradead.org; Sat, 19 Jan 2013 11:26:14 +0000 Received: from mail405.ha.ovh.net (b7.ovh.net [213.186.33.57]) by mo1.mail-out.ovh.net (Postfix) with SMTP id 15840FF9193 for ; Sat, 19 Jan 2013 12:40:20 +0100 (CET) Date: Sat, 19 Jan 2013 12:24:47 +0100 From: Jean-Christophe PLAGNIOL-VILLARD Message-ID: <20130119112447.GI22953@game.jcrosoft.org> References: <20130119073309.GG22953@game.jcrosoft.org> <1358580914-21443-1-git-send-email-plagnioj@jcrosoft.com> <1358580914-21443-7-git-send-email-plagnioj@jcrosoft.com> <20130119112251.GF1906@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20130119112251.GF1906@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH 7/7] at91: usb_a9263: add bootstrap version To: Sascha Hauer Cc: barebox@lists.infradead.org On 12:22 Sat 19 Jan , Sascha Hauer wrote: > On Sat, Jan 19, 2013 at 08:35:14AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > > --- > > arch/arm/boards/usb-a926x/Makefile | 3 +++ > > arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c | 16 +++++++++++++ > > .../configs/usb_a9263_128mib_bootstrap_defconfig | 24 ++++++++++++++++++++ > > arch/arm/configs/usb_a9263_bootstrap_defconfig | 23 +++++++++++++++++++ > > 4 files changed, 66 insertions(+) > > create mode 100644 arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c > > create mode 100644 arch/arm/configs/usb_a9263_128mib_bootstrap_defconfig > > create mode 100644 arch/arm/configs/usb_a9263_bootstrap_defconfig > > > > diff --git a/arch/arm/boards/usb-a926x/Makefile b/arch/arm/boards/usb-a926x/Makefile > > index 9511a76..4c8cd64 100644 > > --- a/arch/arm/boards/usb-a926x/Makefile > > +++ b/arch/arm/boards/usb-a926x/Makefile > > @@ -1,5 +1,8 @@ > > obj-y += init.o > > > > +bootstrap-$(CONFIG_MACH_USB_A9263) = usb_a9263_bootstrap.o > > +obj-$(CONFIG_BOOTSTRAP) += $(bootstrap-y) > > + > > lowlevel_init-$(CONFIG_MACH_USB_A9263) = usb_a9263_lowlevel_init.o > > > > obj-$(CONFIG_MACH_DO_LOWLEVEL_INIT) += $(lowlevel_init-y) > > diff --git a/arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c b/arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c > > new file mode 100644 > > index 0000000..368c677 > > --- /dev/null > > +++ b/arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c > > @@ -0,0 +1,16 @@ > > +/* > > + * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD > > + * > > + * Under GPLv2 > > + */ > > + > > +#include > > +#include > > +#include > > + > > +#ifdef CONFIG_MTD_DATAFLASH > > +void * bootstrap_board_read_dataflash(void) > > +{ > > + return bootstrap_read_devfs("dataflash0", false, 0xffc0, 204864, 204864); > > +} > > +#endif > > diff --git a/arch/arm/configs/usb_a9263_128mib_bootstrap_defconfig b/arch/arm/configs/usb_a9263_128mib_bootstrap_defconfig > > new file mode 100644 > > index 0000000..c4114a8 > > --- /dev/null > > +++ b/arch/arm/configs/usb_a9263_128mib_bootstrap_defconfig > > @@ -0,0 +1,24 @@ > > +CONFIG_ARCH_AT91SAM9263=y > > +CONFIG_MACH_USB_A9263=y > > +CONFIG_AT91_HAVE_SRAM_128M=y > > +CONFIG_BAREBOX_MAX_IMAGE_SIZE=0x12000 > > +CONFIG_AEABI=y > > +# CONFIG_CMD_ARM_CPUINFO is not set > > +CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y > > +CONFIG_ENVIRONMENT_VARIABLES=y > > +CONFIG_PBL_IMAGE=y > > +CONFIG_MMU=y > > +CONFIG_MALLOC_DUMMY=y > > +CONFIG_PROMPT="USB-9263:" > > +CONFIG_SHELL_NONE=y > > +# CONFIG_DEFAULT_ENVIRONMENT is not set > > +# CONFIG_SPI is not set > > +CONFIG_MTD=y > > +# CONFIG_MTD_WRITE is not set > > +# CONFIG_MTD_OOB_DEVICE is not set > > +CONFIG_NAND=y > > +# CONFIG_NAND_ECC_HW is not set > > +# CONFIG_NAND_ECC_HW_SYNDROME is not set > > +# CONFIG_NAND_ECC_HW_NONE is not set > > +CONFIG_NAND_ATMEL=y > > +# CONFIG_FS_RAMFS is not set > > diff --git a/arch/arm/configs/usb_a9263_bootstrap_defconfig b/arch/arm/configs/usb_a9263_bootstrap_defconfig > > new file mode 100644 > > index 0000000..6751dad > > --- /dev/null > > +++ b/arch/arm/configs/usb_a9263_bootstrap_defconfig > > @@ -0,0 +1,23 @@ > > +CONFIG_ARCH_AT91SAM9263=y > > +CONFIG_MACH_USB_A9263=y > > +CONFIG_BAREBOX_MAX_IMAGE_SIZE=0x12000 > > +CONFIG_AEABI=y > > +# CONFIG_CMD_ARM_CPUINFO is not set > > +CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y > > +CONFIG_ENVIRONMENT_VARIABLES=y > > +CONFIG_PBL_IMAGE=y > > +CONFIG_MMU=y > > +CONFIG_MALLOC_DUMMY=y > > +CONFIG_PROMPT="USB-9263:" > > +CONFIG_SHELL_NONE=y > > +# CONFIG_DEFAULT_ENVIRONMENT is not set > > +# CONFIG_SPI is not set > > +CONFIG_MTD=y > > +# CONFIG_MTD_WRITE is not set > > +# CONFIG_MTD_OOB_DEVICE is not set > > +CONFIG_NAND=y > > +# CONFIG_NAND_ECC_HW is not set > > +# CONFIG_NAND_ECC_HW_SYNDROME is not set > > +# CONFIG_NAND_ECC_HW_NONE is not set > > +CONFIG_NAND_ATMEL=y > > +# CONFIG_FS_RAMFS is not set > > Compilation of these configs ends with: > > arch/arm/mach-at91/built-in.o: In function `boot_seq': > at91sam9263_devices.c:(.text.boot_seq+0x28): undefined reference to `bootstrap_boot' I found it too I send the wrong patch series this is because in the defcofnig this verison does not have the lib bootstrap enabled Best Regards, J. > > Sascha > > -- > 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