public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] imximage: fix commands other than write_data
Date: Sun, 20 Sep 2015 10:59:42 +0200	[thread overview]
Message-ID: <55FE757E.5030304@denx.de> (raw)
In-Reply-To: <1442279191-6615-1-git-send-email-troy.kisky@boundarydevices.com>

Hi Troy,

On 15/09/2015 03:06, Troy Kisky wrote:
> When CHECK_BITS_SET was added, they forgot to add
> a new command table, and instead overwrote the
> previous table.
> 
> Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
> 
> ---
> 

This patch breaks building boards with SPL:

Building current source for 85 boards (6 threads, 1 job per thread)
       arm:  +   colibri_vf_dtb
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [u-boot-dtb.imx] Error 1
+make[1]: *** [u-boot-dtb.imx] Error 2
+make: *** [sub-make] Error 2
       arm:  +   mx6sabresd_spl
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [SPL] Error 1
+make[1]: *** [SPL] Error 2
+make: *** [sub-make] Error 2
       arm:  +   colibri_vf
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [u-boot.imx] Error 1
+make[1]: *** [u-boot.imx] Error 2
+make: *** [sub-make] Error 2
       arm:  +   vf610twr
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [u-boot.imx] Error 1
+make[1]: *** [u-boot.imx] Error 2
+make: *** [sub-make] Error 2
       arm:  +   cm_fx6
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [SPL] Error 1
+make[1]: *** [SPL] Error 2
+make: *** [sub-make] Error 2
       arm:  +   vf610twr_nand
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [u-boot.imx] Error 1
+make[1]: *** [u-boot.imx] Error 2
+make: *** [sub-make] Error 2
       arm:  +   mx6cuboxi
+Error: Image corrupt DCD size 536870911 exceed maximum 220
+make[2]: *** [SPL] Error 1
+make[1]: *** [SPL] Error 2
+make: *** [sub-make] Error 2

Can you take a look ? Thanks !

Best regards,
Stefano Babic

> Note: this needs tested to make sure imx7dsabresd still boots
> as its dcd header has changed
> 
> 
> diff --git a/tools/imximage.c b/tools/imximage.c
> index 0da48a7..97a6880 100644
> --- a/tools/imximage.c
> +++ b/tools/imximage.c
> @@ -160,54 +160,80 @@ static void set_dcd_val_v1(struct imx_header *imxhdr, char *name, int lineno,
>  	}
>  }
>  
> +static struct dcd_v2_cmd *gd_last_cmd;
> +
>  static void set_dcd_param_v2(struct imx_header *imxhdr, uint32_t dcd_len,
>  		int32_t cmd)
>  {
>  	dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
> +	struct dcd_v2_cmd *d = gd_last_cmd;
> +	struct dcd_v2_cmd *d2;
> +	int len;
> +
> +	if (!d)
> +		d = &dcd_v2->dcd_cmd;
> +	d2 = d;
> +	len = be16_to_cpu(d->write_dcd_command.length);
> +	if (len > 4)
> +		d2 = (struct dcd_v2_cmd *)(((char *)d) + len);
>  
>  	switch (cmd) {
>  	case CMD_WRITE_DATA:
> -		dcd_v2->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG;
> -		dcd_v2->write_dcd_command.length = cpu_to_be16(
> -				dcd_len * sizeof(dcd_addr_data_t) + 4);
> -		dcd_v2->write_dcd_command.param = DCD_WRITE_DATA_PARAM;
> +		if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) &&
> +		    (d->write_dcd_command.param == DCD_WRITE_DATA_PARAM))
> +			break;
> +		d = d2;
> +		d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG;
> +		d->write_dcd_command.length = cpu_to_be16(4);
> +		d->write_dcd_command.param = DCD_WRITE_DATA_PARAM;
>  		break;
>  	case CMD_WRITE_CLR_BIT:
> -		dcd_v2->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG;
> -		dcd_v2->write_dcd_command.length = cpu_to_be16(
> -				dcd_len * sizeof(dcd_addr_data_t) + 4);
> -		dcd_v2->write_dcd_command.param = DCD_WRITE_CLR_BIT_PARAM;
> +		if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) &&
> +		    (d->write_dcd_command.param == DCD_WRITE_CLR_BIT_PARAM))
> +			break;
> +		d = d2;
> +		d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG;
> +		d->write_dcd_command.length = cpu_to_be16(4);
> +		d->write_dcd_command.param = DCD_WRITE_CLR_BIT_PARAM;
>  		break;
>  	/*
>  	 * Check data command only supports one entry,
> -	 * so use 0xC = size(address + value + command).
>  	 */
>  	case CMD_CHECK_BITS_SET:
> -		dcd_v2->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG;
> -		dcd_v2->write_dcd_command.length = cpu_to_be16(0xC);
> -		dcd_v2->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM;
> +		d = d2;
> +		d->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG;
> +		d->write_dcd_command.length = cpu_to_be16(4);
> +		d->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM;
>  		break;
>  	case CMD_CHECK_BITS_CLR:
> -		dcd_v2->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG;
> -		dcd_v2->write_dcd_command.length = cpu_to_be16(0xC);
> -		dcd_v2->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM;
> +		d = d2;
> +		d->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG;
> +		d->write_dcd_command.length = cpu_to_be16(4);
> +		d->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM;
>  		break;
>  	default:
>  		break;
>  	}
> +	gd_last_cmd = d;
>  }
>  
>  static void set_dcd_val_v2(struct imx_header *imxhdr, char *name, int lineno,
>  					int fld, uint32_t value, uint32_t off)
>  {
> -	dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
> +	struct dcd_v2_cmd *d = gd_last_cmd;
> +	int len;
> +
> +	len = be16_to_cpu(d->write_dcd_command.length);
> +	off = (len - 4) >> 3;
>  
>  	switch (fld) {
>  	case CFG_REG_ADDRESS:
> -		dcd_v2->addr_data[off].addr = cpu_to_be32(value);
> +		d->addr_data[off].addr = cpu_to_be32(value);
>  		break;
>  	case CFG_REG_VALUE:
> -		dcd_v2->addr_data[off].value = cpu_to_be32(value);
> +		d->addr_data[off].value = cpu_to_be32(value);
> +		off++;
> +		d->write_dcd_command.length = cpu_to_be16((off << 3) + 4);
>  		break;
>  	default:
>  		break;
> @@ -236,12 +262,20 @@ static void set_dcd_rst_v2(struct imx_header *imxhdr, uint32_t dcd_len,
>  						char *name, int lineno)
>  {
>  	dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
> +	struct dcd_v2_cmd *d = gd_last_cmd;
> +	int len;
> +
> +	if (!d)
> +		d = &dcd_v2->dcd_cmd;
> +	len = be16_to_cpu(d->write_dcd_command.length);
> +	if (len > 4)
> +		d = (struct dcd_v2_cmd *)(((char *)d) + len);
> +
> +	len = (char *)d - (char *)&dcd_v2->header;
>  
>  	dcd_v2->header.tag = DCD_HEADER_TAG;
> -	dcd_v2->header.length = cpu_to_be16(
> -			dcd_len * sizeof(dcd_addr_data_t) + 8);
> +	dcd_v2->header.length = cpu_to_be16(len);
>  	dcd_v2->header.version = DCD_VERSION;
> -	set_dcd_param_v2(imxhdr, dcd_len, CMD_WRITE_DATA);
>  }
>  
>  static void set_imx_hdr_v1(struct imx_header *imxhdr, uint32_t dcd_len,
> @@ -314,6 +348,7 @@ static void set_hdr_func(void)
>  		max_dcd_entries = MAX_HW_CFG_SIZE_V1;
>  		break;
>  	case IMXIMAGE_V2:
> +		gd_last_cmd = NULL;
>  		set_dcd_val = set_dcd_val_v2;
>  		set_dcd_param = set_dcd_param_v2;
>  		set_dcd_rst = set_dcd_rst_v2;
> diff --git a/tools/imximage.h b/tools/imximage.h
> index d41c74f..c7b9b5c 100644
> --- a/tools/imximage.h
> +++ b/tools/imximage.h
> @@ -133,10 +133,14 @@ typedef struct {
>  	uint8_t param;
>  } __attribute__((packed)) write_dcd_command_t;
>  
> -typedef struct {
> -	ivt_header_t header;
> +struct dcd_v2_cmd {
>  	write_dcd_command_t write_dcd_command;
>  	dcd_addr_data_t addr_data[MAX_HW_CFG_SIZE_V2];
> +};
> +
> +typedef struct {
> +	ivt_header_t header;
> +	struct dcd_v2_cmd dcd_cmd;
>  	uint32_t padding[1]; /* end up on an 8-byte boundary */
>  } dcd_v2_t;
>  
> 

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

  parent reply	other threads:[~2015-09-20  8:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-15  1:06 [U-Boot] [PATCH] imximage: fix commands other than write_data Troy Kisky
2015-09-15  1:16 ` Fabio Estevam
2015-09-20  8:23 ` Stefano Babic
2015-09-20  8:59 ` Stefano Babic [this message]
2015-09-21 21:01   ` Troy Kisky
2015-10-07 12:05 ` Stefano Babic
2015-10-07 17:54   ` Troy Kisky
2015-10-07 18:25     ` Fabio Estevam
2015-10-07 21:07       ` Troy Kisky
2015-10-08  8:46     ` Stefano Babic

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=55FE757E.5030304@denx.de \
    --to=sbabic@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