diff options
author | Andreas Bießmann <biessmann@corscience.de> | 2011-04-12 23:25:41 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-05-18 07:56:54 +0200 |
commit | 24890f11980eb70d835ca7e0b00d32284d8f546c (patch) | |
tree | cac4db47fedfc656a6236f7a978a4e70ae436ab9 /arch/avr32/lib | |
parent | a950c81851dbe128176859bfebbc2cf51955daed (diff) | |
download | u-boot-imx-24890f11980eb70d835ca7e0b00d32284d8f546c.zip u-boot-imx-24890f11980eb70d835ca7e0b00d32284d8f546c.tar.gz u-boot-imx-24890f11980eb70d835ca7e0b00d32284d8f546c.tar.bz2 |
avr32: add ATAG_BOARDINFO
This patch adds a new ATAG_BORADINFO to U-Boot. This tag is intended to hand
over the bd->bi_board_number to the linux kernel for early stage board
information like a board revision or other kind of board specific decisions
necessary before the linux peripherial drivers are up.
Signed-off-by: Andreas Bießmann <biessmann@corscience.de>
Diffstat (limited to 'arch/avr32/lib')
-rw-r--r-- | arch/avr32/lib/bootm.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/avr32/lib/bootm.c b/arch/avr32/lib/bootm.c index 8a47cfe..c9a55ff 100644 --- a/arch/avr32/lib/bootm.c +++ b/arch/avr32/lib/bootm.c @@ -165,6 +165,16 @@ static struct tag *setup_ethernet_tags(struct tag *params) return params; } +static struct tag *setup_boardinfo_tag(struct tag *params) +{ + params->hdr.tag = ATAG_BOARDINFO; + params->hdr.size = tag_size(tag_boardinfo); + + params->u.boardinfo.board_number = gd->bd->bi_board_number; + + return tag_next(params); +} + static void setup_end_tag(struct tag *params) { params->hdr.tag = ATAG_NONE; @@ -195,6 +205,7 @@ int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *ima params = setup_commandline_tag(params, commandline); params = setup_clock_tags(params); params = setup_ethernet_tags(params); + params = setup_boardinfo_tag(params); setup_end_tag(params); printf("\nStarting kernel at %p (params at %p)...\n\n", |