blob: d8337b6269ba43addde45a9611c410835aeb2a5f [file] [log] [blame]
Sean Andersonb10f7242022-03-22 16:59:14 -04001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2022 Sean Anderson <sean.anderson@seco.com>
4 */
5
6#ifndef _SEMIHOSTING_H
7#define _SEMIHOSTING_H
8
Sean Andersoneff77c32022-03-22 16:59:15 -04009/**
10 * enum smh_open_mode - Numeric file modes for use with smh_open()
11 * MODE_READ: 'r'
12 * MODE_BINARY: 'b'
13 * MODE_PLUS: '+'
14 * MODE_WRITE: 'w'
15 * MODE_APPEND: 'a'
16 *
17 * These modes represent the mode string used by fopen(3) in a form which can
18 * be passed to smh_open(). These do NOT correspond directly to %O_RDONLY,
19 * %O_CREAT, etc; see fopen(3) for details. In particular, @MODE_PLUS
20 * effectively results in adding %O_RDWR, and @MODE_WRITE will add %O_TRUNC.
21 * For compatibility, @MODE_BINARY should be added when opening non-text files
22 * (such as images).
23 */
24enum smh_open_mode {
25 MODE_READ = 0x0,
26 MODE_BINARY = 0x1,
27 MODE_PLUS = 0x2,
28 MODE_WRITE = 0x4,
29 MODE_APPEND = 0x8,
30};
31
Sean Anderson79f6ad62022-03-22 16:59:17 -040032/**
33 * smh_open() - Open a file on the host
34 * @fname: The name of the file to open
35 * @mode: The mode to use when opening the file
36 *
37 * Return: Either a file descriptor or a negative error on failure
38 */
Sean Andersoneff77c32022-03-22 16:59:15 -040039long smh_open(const char *fname, enum smh_open_mode mode);
Sean Anderson79f6ad62022-03-22 16:59:17 -040040
41/**
42 * smh_read() - Read data from a file
43 * @fd: A file descriptor returned from smh_open()
44 * @memp: Pointer to a buffer of memory of at least @len bytes
45 * @len: The number of bytes to read
46 *
47 * Return:
48 * * The number of bytes read on success, with 0 indicating %EOF
49 * * A negative error on failure
50 */
Sean Andersonb10f7242022-03-22 16:59:14 -040051long smh_read(long fd, void *memp, size_t len);
Sean Anderson79f6ad62022-03-22 16:59:17 -040052
53/**
54 * smh_close() - Close an open file
55 * @fd: A file descriptor returned from smh_open()
56 *
57 * Return: 0 on success or negative error on failure
58 */
Sean Andersonb10f7242022-03-22 16:59:14 -040059long smh_close(long fd);
Sean Anderson79f6ad62022-03-22 16:59:17 -040060
61/**
62 * smh_flen() - Get the length of a file
63 * @fd: A file descriptor returned from smh_open()
64 *
65 * Return: The length of the file, in bytes, or a negative error on failure
66 */
Sean Andersonb10f7242022-03-22 16:59:14 -040067long smh_flen(long fd);
68
69#endif /* _SEMIHOSTING_H */