blob: 8f2a42f9a08a35a7022d6377e920ab3eb154bf16 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heiko Schocheredaf9b12014-03-03 12:19:26 +01002/*
3 * Copyright (c) 2013, Andreas Oetken.
Heiko Schocheredaf9b12014-03-03 12:19:26 +01004 */
5
Heiko Schocherd7b42322014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Heiko Schocheredaf9b12014-03-03 12:19:26 +01007#include <common.h>
8#include <fdtdec.h>
Heiko Schocheredaf9b12014-03-03 12:19:26 +01009#include <asm/byteorder.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090010#include <linux/errno.h>
Heiko Schocheredaf9b12014-03-03 12:19:26 +010011#include <asm/unaligned.h>
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053012#include <hash.h>
Heiko Schocherd7b42322014-03-03 12:19:30 +010013#else
14#include "fdt_host.h"
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053015#endif
Alexandru Gagniucdb182c42021-02-19 12:45:10 -060016#include <hash.h>
17#include <image.h>
Heiko Schocheredaf9b12014-03-03 12:19:26 +010018
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053019int hash_calculate(const char *name,
Simon Glass2c6a1b02021-09-25 19:43:33 -060020 const struct image_region *region,
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053021 int region_count, uint8_t *checksum)
Heiko Schocheredaf9b12014-03-03 12:19:26 +010022{
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053023 struct hash_algo *algo;
24 int ret = 0;
25 void *ctx;
Heiko Schocheredaf9b12014-03-03 12:19:26 +010026 uint32_t i;
27 i = 0;
28
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053029 ret = hash_progressive_lookup_algo(name, &algo);
30 if (ret)
31 return ret;
Heiko Schocheredaf9b12014-03-03 12:19:26 +010032
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053033 ret = algo->hash_init(algo, &ctx);
34 if (ret)
35 return ret;
36
37 for (i = 0; i < region_count - 1; i++) {
38 ret = algo->hash_update(algo, ctx, region[i].data,
39 region[i].size, 0);
40 if (ret)
41 return ret;
42 }
43
44 ret = algo->hash_update(algo, ctx, region[i].data, region[i].size, 1);
45 if (ret)
46 return ret;
47 ret = algo->hash_finish(algo, ctx, checksum, algo->digest_size);
48 if (ret)
49 return ret;
Heiko Schocheredaf9b12014-03-03 12:19:26 +010050
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053051 return 0;
Heiko Schocheredaf9b12014-03-03 12:19:26 +010052}