blob: b0cc5007f78a3fae5f7fd7721368f5ce07fbeed6 [file] [log] [blame]
Steve Raee6ca1ad2014-09-03 10:05:54 -07001/*
2 * Copyright 2014 Broadcom Corporation.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <part.h>
8#include <sparse_format.h>
9
10#define ROUNDUP(x, y) (((x) + ((y) - 1)) & ~((y) - 1))
11
Steve Raecc0f08cd2016-06-07 11:19:36 -070012struct sparse_storage {
13 lbaint_t blksz;
14 lbaint_t start;
15 lbaint_t size;
16 void *priv;
Maxime Riparda5d1e042015-10-15 14:34:14 +020017
Steve Raecc0f08cd2016-06-07 11:19:36 -070018 lbaint_t (*write)(struct sparse_storage *info,
19 lbaint_t blk,
20 lbaint_t blkcnt,
21 const void *buffer);
Steve Rae2c724042016-06-07 11:19:38 -070022
23 lbaint_t (*reserve)(struct sparse_storage *info,
24 lbaint_t blk,
25 lbaint_t blkcnt);
Steve Raecc0f08cd2016-06-07 11:19:36 -070026};
Maxime Riparda5d1e042015-10-15 14:34:14 +020027
Steve Raee6ca1ad2014-09-03 10:05:54 -070028static inline int is_sparse_image(void *buf)
29{
30 sparse_header_t *s_header = (sparse_header_t *)buf;
31
32 if ((le32_to_cpu(s_header->magic) == SPARSE_HEADER_MAGIC) &&
33 (le16_to_cpu(s_header->major_version) == 1))
34 return 1;
35
36 return 0;
37}
38
Steve Raecc0f08cd2016-06-07 11:19:36 -070039void write_sparse_image(struct sparse_storage *info, const char *part_name,
Steve Rae9bc34792016-06-07 11:19:37 -070040 void *data, unsigned sz);