blob: 835ca7e4b683ff18151c07a8f39cc56a12d502f0 [file] [log] [blame]
Darwin Rambo261d2762014-06-09 11:12:59 -07001/*
2 * Copyright 2014 Broadcom Corporation
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __SEMIHOSTING_H__
8#define __SEMIHOSTING_H__
9
10/*
11 * ARM semihosting functions for loading images to memory. See the source
12 * code for more information.
13 */
14int smh_load(const char *fname, void *memp, int avail, int verbose);
Linus Walleij4e1ef152014-12-15 11:05:56 +010015long smh_len(const char *fname);
Darwin Rambo261d2762014-06-09 11:12:59 -070016
17#endif /* __SEMIHOSTING_H__ */