public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Detlev Zundel <dzu@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/9] mkimage: Add Freescale imx Boot Image support (imximage)
Date: Mon, 11 Jan 2010 16:43:25 +0100	[thread overview]
Message-ID: <m2y6k4tzoi.fsf@ohwell.denx.de> (raw)
In-Reply-To: <1263212760-27272-2-git-send-email-sbabic@denx.de> (Stefano Babic's message of "Mon, 11 Jan 2010 13:25:52 +0100")

Hi Stefano,

> This patch adds support for "imximage" (MX Boot Image)
> to the mkimage utility. The imximage is used on the Freescales's
> MX.51 processors.
>
> Further details under doc/README.imximage.
>
> This patch was tested on a Freescale mx51evk board.

You should run checkpatch over this.  Apart from that some comments
below.

[...]

> diff --git a/tools/imximage.c b/tools/imximage.c
> new file mode 100644
> index 0000000..b40a23b
> --- /dev/null
> +++ b/tools/imximage.c
> @@ -0,0 +1,289 @@
> +/*
> + * (C) Copyright 2009
> + * Stefano Babic, DENX Software Engineering, sbabic at denx.de.
> + *
> + * (C) Copyright 2008
> + * Marvell Semiconductor <www.marvell.com>
> + * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
> + *
> + * See file CREDITS for list of people who contributed to this
> + * project.
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License as
> + * published by the Free Software Foundation; either version 2 of
> + * the License, or (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> + * MA 02111-1307 USA
> + */
> +
> +#include "mkimage.h"
> +#include <image.h>
> +#include "imximage.h"
> +
> +/*
> + * Supported commands for configuration file
> + */
> +static table_entry_t imximage_cmds[] = {
> +	{CMD_BOOT_FROM,		"BOOT_FROM",		"boot comand",	},
> +	{CMD_DATA,		"DATA",			"Reg Write Data", },
> +	{-1,		"",			"",	},
> +};
> +
> +/*
> + * Supported Boot options for configuration file
> + * this is needed to set the correct flash offset
> + */
> +static table_entry_t imximage_bootops[] = {
> +	{FLASH_OFFSET_SPI,	"spi",		"SPI Flash",	},
> +	{FLASH_OFFSET_NAND,	"nand",		"NAND Flash",	},
> +	{FLASH_OFFSET_SD,	"sd",		"SD Card",	},
> +       {FLASH_OFFSET_ONENAND,  "onenand",      "OneNAND Flash",},

Indentation not by tabs

> +	{-1,			"",		"Invalid",	},
> +};
> +
> +
> +static struct imx_header imximage_header;
> +
> +static uint32_t get_cfg_value(char *token, char *name,  int linenr)
> +{
> +	char *endptr;
> +	uint32_t value;
> +
> +	errno = 0;
> +	value = strtoul(token, &endptr, 16);
> +	if (errno || (token == endptr)) {
> +		printf ("Error: %s[%d] - Invalid hex data(%s)\n",
> +			name,  linenr, token);
> +			exit (EXIT_FAILURE);

Errors should go to stderr

> +	}
> +	return value;
> +}
> +
> +static int imximage_check_image_types (uint8_t type)
> +{
> +	if (type == IH_TYPE_IMXIMAGE)
> +		return EXIT_SUCCESS;
> +	else
> +		return EXIT_FAILURE;
> +}
> +
> +static int imximage_verify_header (unsigned char *ptr, int image_size,
> +			struct mkimage_params *params)
> +{
> +
> +	struct imx_header *imx_hdr = (struct imx_header *) ptr;
> +	flash_header_t *hdr = &imx_hdr->fhdr;
> +
> +	/* Only a few checks can be done: search for magic numbers */
> +	if (hdr->app_code_barker != APP_CODE_BARKER)
> +		return -FDT_ERR_BADSTRUCTURE;
> +
> +	if (imx_hdr->dcd_table.preamble.barker != DCD_BARKER)
> +		return -FDT_ERR_BADSTRUCTURE;
> +
> +	return 0;
> +}
> +
> +static void imximage_print_header (const void *ptr)
> +{
> +	struct imx_header *imx_hdr = (struct imx_header *) ptr;
> +	flash_header_t *hdr = &imx_hdr->fhdr;
> +	uint32_t size;
> +	flash_cfg_parms_t *ext_header;
> +
> +	size = imx_hdr->dcd_table.preamble.length;
> +	if (size > (MAX_HW_CFG_SIZE * sizeof(dcd_type_addr_data_t))) {
> +		printf ("Image corrupt: DCD size %d exceed maximum %d\n",
> +			size / sizeof(dcd_type_addr_data_t), MAX_HW_CFG_SIZE);

stderr

> +		exit (EXIT_FAILURE);
> +	}
> +
> +	ext_header = (flash_cfg_parms_t *) ((uint32_t)&imx_hdr->dcd_table + sizeof (dcd_preamble_t) +
> +		size);
> +
> +	printf ("Image Type:   Freescale IMX Boot Image\n");
> +	printf ("Data Size:    ");
> +	genimg_print_size (ext_header->length);
> +	printf ("Load Address: %08x\n", (unsigned int)hdr->app_dest_ptr);
> +	printf ("Entry Point:  %08x\n", (unsigned int)hdr->app_code_jump_vector);
> +}
> +
> +static uint32_t imximage_parse_cfg_file (struct imx_header *imxhdr, char* name)
> +{
> +	FILE *fd = NULL;
> +	char *line = NULL;
> +	char * token, *saveptr1, *saveptr2;
> +	int lineno = 0;
> +	int fld, value;
> +	uint32_t len;
> +	int dcd_len = 0;
> +	dcd_t *dcd = &imxhdr->dcd_table;
> +	int32_t cmd;
> +
> +	if ((fd = fopen (name, "r")) == 0) {
> +		printf ("Error:%s - Can't open DCD file\n", name);

stderr and a missing space

> +		exit (EXIT_FAILURE);
> +	}
> +
> +	/* Very simple parsing, line starting with # are comments and are dropped */
> +	while ((getline (&line, &len, fd)) > 0) {
> +		lineno++;
> +
> +		token = strtok_r (line, "\r\n", &saveptr1);
> +		if (token == NULL)
> +			continue;
> +
> +		/* Check inside the single line */
> +		for (fld = CFG_COMMAND, cmd = CMD_INVALID, line = token; ; line = NULL, fld++) {
> +			token = strtok_r (line, " \t", &saveptr2);
> +			if (token == NULL)
> +				break;
> +
> +			/* Drop all text starting with '#' as comments */
> +			if (token[0] == '#')
> +				break;
> +
> +			/* parse all fields in a single line */
> +			switch (fld) {
> +			case CFG_COMMAND:
> +				cmd = get_table_entry_id (imximage_cmds,
> +					"imximage commands", token);
> +				if (cmd < 0) {
> +					printf ("Error: %s[%d] - Invalid command (%s)\n",
> +						name,  lineno, token);
> +					exit (EXIT_FAILURE);
> +				}
> +				break;
> +			case CFG_REG_SIZE:
> +				switch (cmd) {
> +				case CMD_BOOT_FROM:
> +					/* Get flash header offset */
> +					imxhdr->flash_offset = get_table_entry_id (imximage_bootops,
> +						"imximage boot option", token);
> +					if (imxhdr->flash_offset == -1) {
> +						printf ("Error: %s[%d] - Invalid boot device (%s)\n",
> +							name,  lineno, token);
> +						exit (EXIT_FAILURE);
> +					}
> +					break;
> +				case CMD_DATA:
> +					value = get_cfg_value(token, name, lineno);
> +
> +					/* Byte, halfword, word */
> +					if ((value != 1) && (value != 2) && (value != 4)) {
> +						printf ("Error:%s[%d] - Invalid register size %d\n",
> +							name, lineno, value);
> +						exit (EXIT_FAILURE);
> +					}
> +					dcd->addr_data[dcd_len].type = value;
> +					break;
> +				}
> +
> +			case CFG_REG_ADDRESS:
> +				if (cmd == CMD_DATA) {
> +					dcd->addr_data[dcd_len].addr = get_cfg_value(token, name, lineno);
> +				}
> +				break;
> +			case CFG_REG_VALUE:
> +				if (cmd == CMD_DATA) {
> +					dcd->addr_data[dcd_len].value = get_cfg_value(token, name, lineno);
> +					dcd_len++;
> +				}
> +				break;
> +			}
> +		}
> +
> +		if (dcd_len > MAX_HW_CFG_SIZE) {
> +			printf ("Error:%s[%d] - DCD table exceeds maximum size(%d)\n",
> +				name, lineno, MAX_HW_CFG_SIZE);
> +		}
> +	}
> +	dcd->preamble.barker = DCD_BARKER;
> +	dcd->preamble.length = dcd_len * sizeof(dcd_type_addr_data_t);
> +	fclose (fd);
> +
> +	return dcd->preamble.length;
> +}
> +
> +static void imximage_set_header (void *ptr, struct stat *sbuf, int ifd,
> +				struct mkimage_params *params)
> +{
> +	struct imx_header *hdr = (struct imx_header *)ptr;
> +	flash_header_t *fhdr = &hdr->fhdr;
> +	int dcd_len;
> +	flash_cfg_parms_t *ext_header;
> +	uint32_t base_offset;
> +
> +	/* Set default offset */
> +	hdr->flash_offset = FLASH_OFFSET_STANDARD;
> +
> +	/* Set magic number */
> +	fhdr->app_code_barker = APP_CODE_BARKER;
> +
> +	/* Parse dcd configuration file */
> +	dcd_len = imximage_parse_cfg_file (hdr, params->imagename);
> +
> +	fhdr->app_dest_ptr = params->addr;
> +	fhdr->app_dest_ptr = params->ep - hdr->flash_offset - sizeof(struct imx_header);
> +	fhdr->app_code_jump_vector = params->ep;
> +
> +	base_offset = fhdr->app_dest_ptr + hdr->flash_offset ;
> +	fhdr->dcd_ptr_ptr = (uint32_t) ((uint32_t)&fhdr->dcd_ptr -
> +		(uint32_t)&fhdr->app_code_jump_vector) + base_offset ;
> +
> +	fhdr->dcd_ptr = base_offset + ((uint32_t)&hdr->dcd_table - (uint32_t)&hdr->fhdr);
> +
> +	/* The external flash header must be at the end of the DCD table */
> +	ext_header = (flash_cfg_parms_t *) ((uint32_t)&hdr->dcd_table + dcd_len +
> +		sizeof(dcd_preamble_t));
> +	ext_header->length = sbuf->st_size + hdr->flash_offset + sizeof(struct imx_header);
> +
> +	/* Security feature are not supported */
> +	fhdr->app_code_csf = 0;
> +	fhdr->super_root_key = NULL;
> +
> +}
> +
> +int imximage_check_params (struct mkimage_params *params)
> +{
> +	if (!params)
> +		return CFG_INVALID;
> +	if (!strlen (params->imagename)) {
> +		printf ("Error:%s - Configuration file not specified, "
> +			"it is needed for imximage generation\n",
> +			params->cmdname);

stderr and missing space

Apart from those nit-picking comments this looks really good, thanks!
  Detlev

-- 
Thanks so much for Emacs.  What a wondrous system -- one of the real
seven wonders of the world.  Forced to choose between Emacs and, say,
any pyramid, I'd take Emacs.       -- Robert Boyer
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

      parent reply	other threads:[~2010-01-11 15:43 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-11 12:25 [U-Boot] MX51 Support in u-boot Stefano Babic
2010-01-11 12:25 ` [U-Boot] [PATCH 1/9] mkimage: Add Freescale imx Boot Image support (imximage) Stefano Babic
2010-01-11 12:25   ` [U-Boot] [PATCH 2/9] MX51: Add initial support for the Freescale MX51 Stefano Babic
2010-01-11 12:25     ` [U-Boot] [PATCH 3/9] MX51: Add register definitions Stefano Babic
2010-01-11 12:25       ` [U-Boot] [PATCH 4/9] MX51: Add pin and multiplexer definitions Stefano Babic
2010-01-11 12:25         ` [U-Boot] [PATCH 5/9] serial_mxc: add support for MX51 processor Stefano Babic
2010-01-11 12:25           ` [U-Boot] [PATCH 6/9] fec_mxc: " Stefano Babic
2010-01-11 12:25             ` [U-Boot] [PATCH 7/9] fsl_esdhc: add support for mx51 processor Stefano Babic
2010-01-11 12:25               ` [U-Boot] [PATCH 8/9] mmc: check correctness of the voltage mask in ocr Stefano Babic
2010-01-11 12:26                 ` [U-Boot] [PATCH 9/9] Add initial support for Freescale mx51evk board Stefano Babic
2010-01-11 17:55                   ` Fabio Estevam
2010-01-11 23:53                   ` Fabio Estevam
2010-01-17 13:05                   ` Wolfgang Denk
2010-01-18  7:34                     ` Stefano Babic
2010-01-18  8:50                       ` Wolfgang Denk
2010-01-18 10:25                         ` Stefano Babic
2010-01-17 12:46               ` [U-Boot] [PATCH 7/9] fsl_esdhc: add support for mx51 processor Wolfgang Denk
2010-01-18  8:53                 ` Stefano Babic
2010-01-18  9:16                   ` Wolfgang Denk
2010-01-17 12:34             ` [U-Boot] [PATCH 6/9] fec_mxc: add support for MX51 processor Wolfgang Denk
2010-01-18  9:35               ` Stefano Babic
2010-01-18 11:24                 ` Wolfgang Denk
2010-01-18 12:19                   ` Stefano Babic
2010-01-18 17:02                     ` John Rigby
2010-01-17 11:23           ` [U-Boot] [PATCH 5/9] serial_mxc: " Wolfgang Denk
2010-01-18  7:16             ` Stefano Babic
2010-01-18  8:45               ` Wolfgang Denk
2010-01-11 15:58         ` [U-Boot] [PATCH 4/9] MX51: Add pin and multiplexer definitions Detlev Zundel
2010-01-17 11:19         ` Wolfgang Denk
2010-01-11 15:56       ` [U-Boot] [PATCH 3/9] MX51: Add register definitions Detlev Zundel
2010-01-17 11:16       ` Wolfgang Denk
2010-01-18  6:40         ` Stefano Babic
2010-01-18  7:53           ` Wolfgang Denk
2010-01-11 15:48     ` [U-Boot] [PATCH 2/9] MX51: Add initial support for the Freescale MX51 Detlev Zundel
2010-01-11 15:58       ` Stefano Babic
2010-01-11 16:07         ` Detlev Zundel
2010-01-11 15:59     ` Detlev Zundel
2010-01-17 10:28     ` Wolfgang Denk
2010-01-18  7:05       ` Stefano Babic
2010-01-18  8:42         ` Wolfgang Denk
2010-01-11 15:43   ` Detlev Zundel [this message]

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=m2y6k4tzoi.fsf@ohwell.denx.de \
    --to=dzu@denx.de \
    --cc=u-boot@lists.denx.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox