Blame view

tools/rkspi.c 2.13 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
10b84fe1b   Simon Glass   rockchip: Add sup...
2
3
4
5
  /*
   * (C) Copyright 2015 Google,  Inc
   * Written by Simon Glass <sjg@chromium.org>
   *
10b84fe1b   Simon Glass   rockchip: Add sup...
6
7
8
9
10
11
12
13
14
15
   * See README.rockchip for details of the rkspi format
   */
  
  #include "imagetool.h"
  #include <image.h>
  #include <rc4.h>
  #include "mkimage.h"
  #include "rkcommon.h"
  
  enum {
10b84fe1b   Simon Glass   rockchip: Add sup...
16
17
  	RKSPI_SECT_LEN		= RK_BLK_SIZE * 4,
  };
10b84fe1b   Simon Glass   rockchip: Add sup...
18
19
20
21
22
  static void rkspi_set_header(void *buf, struct stat *sbuf, int ifd,
  			     struct image_tool_params *params)
  {
  	int sector;
  	unsigned int size;
10b84fe1b   Simon Glass   rockchip: Add sup...
23
24
  
  	size = params->orig_file_size;
eea6cd8d7   Jeffy Chen   rockchip: mkimage...
25
26
  
  	rkcommon_set_header(buf, sbuf, ifd, params);
10b84fe1b   Simon Glass   rockchip: Add sup...
27

10b84fe1b   Simon Glass   rockchip: Add sup...
28
29
30
31
32
  	/*
  	 * Spread the image out so we only use the first 2KB of each 4KB
  	 * region. This is a feature of the SPI format required by the Rockchip
  	 * boot ROM. Its rationale is unknown.
  	 */
eea6cd8d7   Jeffy Chen   rockchip: mkimage...
33
34
35
36
  	if (params->vflag)
  		fprintf(stderr, "Spreading spi image from %u to %u
  ",
  			size, params->file_size);
10b84fe1b   Simon Glass   rockchip: Add sup...
37
  	for (sector = size / RKSPI_SECT_LEN - 1; sector >= 0; sector--) {
25525ebe3   Simon Glass   rockchip: Drop a ...
38
39
  		debug("sector %u
  ", sector);
10b84fe1b   Simon Glass   rockchip: Add sup...
40
41
42
43
44
45
46
  		memmove(buf + sector * RKSPI_SECT_LEN * 2,
  			buf + sector * RKSPI_SECT_LEN,
  			RKSPI_SECT_LEN);
  		memset(buf + sector * RKSPI_SECT_LEN * 2 + RKSPI_SECT_LEN,
  		       '\0', RKSPI_SECT_LEN);
  	}
  }
10b84fe1b   Simon Glass   rockchip: Add sup...
47
48
49
50
51
52
53
  static int rkspi_check_image_type(uint8_t type)
  {
  	if (type == IH_TYPE_RKSPI)
  		return EXIT_SUCCESS;
  	else
  		return EXIT_FAILURE;
  }
366aad4d9   Philipp Tomsich   rockchip: mkimage...
54
  /*
eea6cd8d7   Jeffy Chen   rockchip: mkimage...
55
56
   * The SPI payload needs to make space for odd half-sector layout used in flash
   * (i.e. only the first 2K of each 4K sector is used).
366aad4d9   Philipp Tomsich   rockchip: mkimage...
57
   */
10b84fe1b   Simon Glass   rockchip: Add sup...
58
59
60
  static int rkspi_vrec_header(struct image_tool_params *params,
  			     struct image_type_params *tparams)
  {
eea6cd8d7   Jeffy Chen   rockchip: mkimage...
61
  	rkcommon_vrec_header(params, tparams);
10b84fe1b   Simon Glass   rockchip: Add sup...
62

366aad4d9   Philipp Tomsich   rockchip: mkimage...
63
64
65
  	/*
  	 * Converting to the SPI format (i.e. splitting each 4K page into two
  	 * 2K subpages and then padding these 2K pages up to take a complete
eea6cd8d7   Jeffy Chen   rockchip: mkimage...
66
  	 * 4K sector again) which will double the image size.
366aad4d9   Philipp Tomsich   rockchip: mkimage...
67
  	 */
eea6cd8d7   Jeffy Chen   rockchip: mkimage...
68
69
70
71
  	params->file_size = ROUND(params->file_size, RKSPI_SECT_LEN) << 1;
  
  	/* Ignoring pad len, since we are using our own copy_image() */
  	return 0;
10b84fe1b   Simon Glass   rockchip: Add sup...
72
73
74
75
76
77
78
79
  }
  
  /*
   * rk_spi parameters
   */
  U_BOOT_IMAGE_TYPE(
  	rkspi,
  	"Rockchip SPI Boot Image support",
111bcc4fb   Philipp Tomsich   rockchip: mkimage...
80
81
  	0,
  	NULL,
7bf274b9c   Jeffy Chen   rockchip: mkimage...
82
  	rkcommon_check_params,
2fb371ff6   Philipp Tomsich   rockchip: mkimage...
83
84
  	rkcommon_verify_header,
  	rkcommon_print_header,
10b84fe1b   Simon Glass   rockchip: Add sup...
85
  	rkspi_set_header,
2fb371ff6   Philipp Tomsich   rockchip: mkimage...
86
  	NULL,
10b84fe1b   Simon Glass   rockchip: Add sup...
87
88
89
90
  	rkspi_check_image_type,
  	NULL,
  	rkspi_vrec_header
  );