blob: 50577cc388ce2f6de5c57101c8c5ad9d594051ab [file] [log] [blame]
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02001/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef _FLASH_UBI_H_
30#define _FLASH_UBI_H_
31
32#include <sys/types.h>
33#include <lib/ptable.h>
34#include <stdint.h>
35
Tanya Brokhmanf9343162015-01-27 13:37:41 +020036struct __attribute__ ((packed)) ubifs_ch {
37 uint32_t magic;
38 uint32_t crc;
39 uint64_t sqnum;
40 uint32_t len;
41#define UBIFS_SB_NODE 6
42 uint8_t node_type;
43 uint8_t group_type;
44 uint8_t padding[2];
45};
46
47/* UBIFS superblock node */
48struct __attribute__ ((packed)) ubifs_sb_node {
49 struct ubifs_ch ch;
50 uint8_t padding[2];
51 uint8_t key_hash;
52 uint8_t key_fmt;
53#define UBIFS_FLG_SPACE_FIXUP 0x04
54 uint32_t flags;
55 uint32_t min_io_size;
56 uint32_t leb_size;
57 uint32_t leb_cnt;
58 uint32_t max_leb_cnt;
59 uint64_t max_bud_bytes;
60 uint32_t log_lebs;
61 uint32_t lpt_lebs;
62 uint32_t orph_lebs;
63 uint32_t jhead_cnt;
64 uint32_t fanout;
65 uint32_t lsave_cnt;
66 uint32_t fmt_version;
67 uint16_t default_compr;
68 uint8_t padding1[2];
69 uint32_t rp_uid;
70 uint32_t rp_gid;
71 uint64_t rp_size;
72 uint32_t time_gran;
73 uint8_t uuid[16];
74 uint32_t ro_compat_version;
75 uint8_t padding2[3968];
76};
77
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +020078/* Erase counter header magic number (ASCII "UBI#") */
79#define UBI_EC_HDR_MAGIC 0x55424923
80
81#define UBI_MAGIC "UBI#"
82#define UBI_MAGIC_SIZE 0x04
83
Tanya Brokhmanea981a32015-02-12 16:32:15 +020084#define UBI_VERSION 1
85#define UBI_MAX_ERASECOUNTER 0x7FFFFFFF
86#define UBI_IMAGE_SEQ_BASE 0x12345678
87#define UBI_DEF_ERACE_COUNTER 0
88#define UBI_CRC32_INIT 0xFFFFFFFFU
Tanya Brokhmanf9343162015-01-27 13:37:41 +020089#define UBIFS_CRC32_INIT 0xFFFFFFFFU
Tanya Brokhmanea981a32015-02-12 16:32:15 +020090
91/* Erase counter header fields */
92struct __attribute__ ((packed)) ubi_ec_hdr {
93 uint32_t magic;
94 uint8_t version;
95 uint8_t padding1[3];
96 uint64_t ec; /* Warning: the current limit is 31-bit anyway! */
97 uint32_t vid_hdr_offset;
98 uint32_t data_offset;
99 uint32_t image_seq;
100 uint8_t padding2[32];
101 uint32_t hdr_crc;
102};
103
Tanya Brokhmanc52aeb82015-01-27 11:08:50 +0200104/* Volume identifier header fields */
105struct __attribute__ ((packed)) ubi_vid_hdr {
106 uint32_t magic;
107 uint8_t version;
108 uint8_t vol_type;
109 uint8_t copy_flag;
110 uint8_t compat;
111 uint32_t vol_id;
112 uint32_t lnum;
113 uint8_t padding1[4];
114 uint32_t data_size;
115 uint32_t used_ebs;
116 uint32_t data_pad;
117 uint32_t data_crc;
118 uint8_t padding2[4];
119 uint64_t sqnum;
120 uint8_t padding3[12];
121 uint32_t hdr_crc;
122};
Tanya Brokhmanea981a32015-02-12 16:32:15 +0200123
Tanya Brokhmanc52aeb82015-01-27 11:08:50 +0200124#define UBI_EC_HDR_SIZE sizeof(struct ubi_ec_hdr)
125#define UBI_VID_HDR_SIZE sizeof(struct ubi_vid_hdr)
126#define UBI_EC_HDR_SIZE_CRC (UBI_EC_HDR_SIZE - sizeof(uint32_t))
127#define UBI_VID_HDR_SIZE_CRC (UBI_VID_HDR_SIZE - sizeof(uint32_t))
128
Tanya Brokhmanf9343162015-01-27 13:37:41 +0200129#define UBI_MAX_VOLUMES 128
130#define UBI_INTERNAL_VOL_START (0x7FFFFFFF - 4096)
131#define UBI_LAYOUT_VOLUME_ID UBI_INTERNAL_VOL_START
132#define UBI_FM_SB_VOLUME_ID (UBI_INTERNAL_VOL_START + 1)
133
Tanya Brokhmanea981a32015-02-12 16:32:15 +0200134/**
135 * struct ubi_scan_info - UBI scanning information.
136 * @ec: erase counters or eraseblock status for all eraseblocks
137 * @mean_ec: mean erase counter
138 * @bad_cnt: count of bad eraseblocks
139 * @good_cnt: count of non-bad eraseblocks
140 * @empty_cnt: count of empty eraseblocks
141 * @vid_hdr_offs: volume ID header offset from the found EC headers (%-1 means
142 * undefined)
143 * @data_offs: data offset from the found EC headers (%-1 means undefined)
144 * @image_seq: image sequence
145 */
146struct ubi_scan_info {
147 uint64_t *ec;
148 uint64_t mean_ec;
149 int bad_cnt;
150 int good_cnt;
151 int empty_cnt;
152 unsigned vid_hdr_offs;
153 unsigned data_offs;
154 uint32_t image_seq;
155};
156
157int flash_ubi_img(struct ptentry *ptn, void *data, unsigned size);
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +0200158#endif