All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 7/7] at91: usb_a9263: add bootstrap version
Date: Sat, 19 Jan 2013 14:52:01 +0100	[thread overview]
Message-ID: <20130119135201.GM1906@pengutronix.de> (raw)
In-Reply-To: <20130119133356.GA18803@game.jcrosoft.org>

On Sat, Jan 19, 2013 at 02:33:56PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 12:33 Sat 19 Jan     , Sascha Hauer wrote:
> > On Sat, Jan 19, 2013 at 12:26:54PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > > ---
> > >  arch/arm/boards/usb-a926x/Makefile                 |    3 +++
> > >  arch/arm/boards/usb-a926x/usb_a9263_bootstrap.c    |   16 ++++++++++++
> > >  .../configs/usb_a9263_128mib_bootstrap_defconfig   |   26 ++++++++++++++++++++
> > >  arch/arm/configs/usb_a9263_bootstrap_defconfig     |   25 +++++++++++++++++++
> > >  4 files changed, 70 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 <plagnio@jcrosoft.com>
> > > + *
> > > + * Under GPLv2
> > > + */
> > > +
> > > +#include <common.h>
> > > +#include <bootstrap.h>
> > > +#include <mach/bootstrap.h>
> > > +
> > > +#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..e71a3c5
> > > --- /dev/null
> > > +++ b/arch/arm/configs/usb_a9263_128mib_bootstrap_defconfig
> > > @@ -0,0 +1,26 @@
> > > +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
> > > +CONFIG_BOOTSTRAP=y
> > > +CONFIG_BOOTSTRAP_DEVFS=y
> > > diff --git a/arch/arm/configs/usb_a9263_bootstrap_defconfig b/arch/arm/configs/usb_a9263_bootstrap_defconfig
> > > new file mode 100644
> > > index 0000000..c4b31ba
> > > --- /dev/null
> > > +++ b/arch/arm/configs/usb_a9263_bootstrap_defconfig
> > > @@ -0,0 +1,25 @@
> > > +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
> > > +CONFIG_BOOTSTRAP=y
> > > +CONFIG_BOOTSTRAP_DEVFS=y
> > 
> > These configs still fail with
> > 
> > arch/arm/mach-at91/built-in.o: In function `boot_seq':
> > at91sam9263_devices.c:(.text.boot_seq+0x28): undefined reference to `bootstrap_boot'
> > 
> > When CONFIG_BOOTSTRAP is disabled in make menuconfig. Should it be
> > selected?
> yes BOOTSTRAP is mandatory

By selected I meant something like:

config AT91_BOOTSTRAP
	bool "Build bootstrap barebox"
	depends on SOC_AT91SAM9263
	select HAVE_NOSHELL
	select BOOTSTRAP
	select SHELL_NONE

(I haven't tested this)

It should be possible to disable BOOTSTRAP when it's actually required
to successfully build the binary.

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

  reply	other threads:[~2013-01-19 13:52 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-19 11:21 [PATCH 0/7 v3] at91: add bootstrap support Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:26 ` [PATCH 1/7] at91: add test commamd to emulate bootrom boot Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:26   ` [PATCH 2/7] at91sam926x: lowlevel add external boot support Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:26   ` [PATCH 3/7] at91: sam926x: switch lowlevel param to c code Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:26   ` [PATCH 4/7] at91: usb-a9263 add lowlevel init Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:26   ` [PATCH 5/7] introduce common bootstrap code Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:26   ` [PATCH 6/7] at91: add bootstrap version Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:31     ` Sascha Hauer
2013-01-19 11:26   ` [PATCH 7/7] at91: usb_a9263: " Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:33     ` Sascha Hauer
2013-01-19 13:33       ` Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 13:52         ` Sascha Hauer [this message]
2013-01-19 15:03           ` Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:42   ` [PATCH 1/7] at91: add test commamd to emulate bootrom boot Sascha Hauer
2013-01-19 13:32     ` Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 13:42       ` Sascha Hauer
2013-01-19 16:32         ` Jean-Christophe PLAGNIOL-VILLARD
2013-01-20  9:41           ` Sascha Hauer
  -- strict thread matches above, loose matches on Subject: below --
2013-01-19  7:33 [PATCH 0/7 v2] at91: add bootstrap support Jean-Christophe PLAGNIOL-VILLARD
2013-01-19  7:35 ` [PATCH 1/7] at91: add test commamd to emulate bootrom boot Jean-Christophe PLAGNIOL-VILLARD
2013-01-19  7:35   ` [PATCH 7/7] at91: usb_a9263: add bootstrap version Jean-Christophe PLAGNIOL-VILLARD
2013-01-19 11:22     ` Sascha Hauer
2013-01-19 11:24       ` Jean-Christophe PLAGNIOL-VILLARD
2012-12-29 10:04 [PATCH 0/7] at91: add bootstrap support Jean-Christophe PLAGNIOL-VILLARD
2012-12-29 10:08 ` [PATCH 1/7] at91: add test commamd to emulate bootrom boot Jean-Christophe PLAGNIOL-VILLARD
2012-12-29 10:08   ` [PATCH 7/7] at91: usb_a9263: add bootstrap version Jean-Christophe PLAGNIOL-VILLARD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130119135201.GM1906@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=plagnioj@jcrosoft.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.