Blame view

tools/rkcommon.h 3.56 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
a131c1f44   Simon Glass   rockchip: Add the...
2
3
4
  /*
   * (C) Copyright 2015 Google,  Inc
   * Written by Simon Glass <sjg@chromium.org>
a131c1f44   Simon Glass   rockchip: Add the...
5
6
7
8
9
10
11
   */
  
  #ifndef _RKCOMMON_H
  #define _RKCOMMON_H
  
  enum {
  	RK_BLK_SIZE		= 512,
ad972ac3d   Philipp Tomsich   rockchip: mkimage...
12
  	RK_INIT_SIZE_ALIGN      = 2048,
3641339ef   Jeffy Chen   rockchip: Add sup...
13
14
  	RK_INIT_OFFSET		= 4,
  	RK_MAX_BOOT_SIZE	= 512 << 10,
7bf274b9c   Jeffy Chen   rockchip: mkimage...
15
16
17
18
  	RK_SPL_HDR_START	= RK_INIT_OFFSET * RK_BLK_SIZE,
  	RK_SPL_HDR_SIZE		= 4,
  	RK_SPL_START		= RK_SPL_HDR_START + RK_SPL_HDR_SIZE,
  	RK_IMAGE_HEADER_LEN	= RK_SPL_START,
a131c1f44   Simon Glass   rockchip: Add the...
19
20
21
  };
  
  /**
7bf274b9c   Jeffy Chen   rockchip: mkimage...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
   * rkcommon_check_params() - check params
   *
   * @return 0 if OK, -1 if ERROR.
   */
  int rkcommon_check_params(struct image_tool_params *params);
  
  /**
   * rkcommon_get_spl_hdr() - get 4-bytes spl hdr for a Rockchip boot image
   *
   * Rockchip's bootrom requires the spl loader to start with a 4-bytes
   * header. The content of this header depends on the chip type.
   */
  const char *rkcommon_get_spl_hdr(struct image_tool_params *params);
  
  /**
   * rkcommon_get_spl_size() - get spl size for a Rockchip boot image
   *
   * Different chip may have different sram size. And if we want to jump
   * back to the bootrom after spl, we may need to reserve some sram space
   * for the bootrom.
   * The spl loader size should be sram size minus reserved size(if needed)
   */
  int rkcommon_get_spl_size(struct image_tool_params *params);
  
  /**
a131c1f44   Simon Glass   rockchip: Add the...
47
48
49
50
51
52
53
54
   * rkcommon_set_header() - set up the header for a Rockchip boot image
   *
   * This sets up a 2KB header which can be interpreted by the Rockchip boot ROM.
   *
   * @buf:	Pointer to header place (must be at least 2KB in size)
   * @file_size:	Size of the file we want the boot ROM to load, in bytes
   * @return 0 if OK, -ENOSPC if too large
   */
7bf274b9c   Jeffy Chen   rockchip: mkimage...
55
56
  int rkcommon_set_header(void *buf, uint file_size,
  			struct image_tool_params *params);
a131c1f44   Simon Glass   rockchip: Add the...
57

cfbcdade7   Heiko Stübner   rockchip: mkimage...
58
  /**
2fb371ff6   Philipp Tomsich   rockchip: mkimage...
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
   * rkcommon_verify_header() - verify the header for a Rockchip boot image
   *
   * @buf:	Pointer to the image file
   * @file_size:	Size of entire bootable image file (incl. all padding)
   * @return 0 if OK
   */
  int rkcommon_verify_header(unsigned char *buf, int size,
  			   struct image_tool_params *params);
  
  /**
   * rkcommon_print_header() - print the header for a Rockchip boot image
   *
   * This prints the header, spl_name and whether this is a SD/MMC or SPI image.
   *
   * @buf:	Pointer to the image (can be a read-only file-mapping)
   */
  void rkcommon_print_header(const void *buf);
  
  /**
cfbcdade7   Heiko Stübner   rockchip: mkimage...
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
   * rkcommon_need_rc4_spl() - check if rc4 encoded spl is required
   *
   * Some socs cannot disable the rc4-encryption of the spl binary.
   * rc4 encryption is disabled normally except on socs that cannot
   * handle unencrypted binaries.
   * @return true or false depending on rc4 being required.
   */
  bool rkcommon_need_rc4_spl(struct image_tool_params *params);
  
  /**
   * rkcommon_rc4_encode_spl() - encode the spl binary
   *
   * Encrypts the SPL binary using the generic rc4 key as required
   * by some socs.
   *
   * @buf:	Pointer to the SPL data (header and SPL binary)
   * @offset:	offset inside buf to start at
   * @size:	number of bytes to encode
   */
  void rkcommon_rc4_encode_spl(void *buf, unsigned int offset, unsigned int size);
111bcc4fb   Philipp Tomsich   rockchip: mkimage...
98
99
100
101
102
103
  /**
   * rkcommon_vrec_header() - allocate memory for the header
   *
   * @params:     Pointer to the tool params structure
   * @tparams:    Pointer tot the image type structure (for setting
   *              the header and header_size)
366aad4d9   Philipp Tomsich   rockchip: mkimage...
104
105
106
107
108
   * @alignment:  Alignment (a power of two) that the image should be
   *              padded to (e.g. 512 if we want to align with SD/MMC
   *              blocksizes or 2048 for the SPI format)
   *
   * @return bytes of padding required/added (does not include the header_size)
111bcc4fb   Philipp Tomsich   rockchip: mkimage...
109
   */
366aad4d9   Philipp Tomsich   rockchip: mkimage...
110
111
112
  int rkcommon_vrec_header(struct image_tool_params *params,
  			 struct image_type_params *tparams,
  			 unsigned int alignment);
111bcc4fb   Philipp Tomsich   rockchip: mkimage...
113

a131c1f44   Simon Glass   rockchip: Add the...
114
  #endif