blob: 015ce122266f378728a55c7088f9cb7421a934d0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Hans de Goedead157492015-09-17 18:46:56 -04002/*
3 * UBIFS u-boot wrapper functions header
4 *
5 * Copyright (C) 2006-2008 Nokia Corporation
6 *
7 * (C) Copyright 2008-2009
8 * Stefan Roese, DENX Software Engineering, sr@denx.de.
9 *
Hans de Goedead157492015-09-17 18:46:56 -040010 * Authors: Artem Bityutskiy (Битюцкий Артём)
11 * Adrian Hunter
12 */
13
14#ifndef __UBIFS_UBOOT_H__
15#define __UBIFS_UBOOT_H__
16
17int ubifs_init(void);
18int uboot_ubifs_mount(char *vol_name);
19void uboot_ubifs_umount(void);
20int ubifs_is_mounted(void);
21int ubifs_load(char *filename, u32 addr, u32 size);
22
Simon Glass4101f682016-02-29 15:25:34 -070023int ubifs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info);
Hans de Goedead157492015-09-17 18:46:56 -040024int ubifs_ls(const char *dir_name);
Hans de Goede29cc5bc2015-09-17 18:46:57 -040025int ubifs_exists(const char *filename);
26int ubifs_size(const char *filename, loff_t *size);
Hans de Goedead157492015-09-17 18:46:56 -040027int ubifs_read(const char *filename, void *buf, loff_t offset,
28 loff_t size, loff_t *actread);
Hans de Goede29cc5bc2015-09-17 18:46:57 -040029void ubifs_close(void);
Hans de Goedead157492015-09-17 18:46:56 -040030
31#endif /* __UBIFS_UBOOT_H__ */