summaryrefslogtreecommitdiffstats
path: root/include/state.h
blob: 4e995a19efe0bc83809c939e3988e24d3b8fe57e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef __STATE_H
#define __STATE_H

#include <of.h>

struct state;

int state_backend_dtb_file(struct state *state, const char *of_path,
		const char *path);
int state_backend_raw_file(struct state *state, const char *of_path,
		const char *path, off_t offset, size_t size);

struct state *state_new_from_node(struct device_node *node, bool readonly);
void state_release(struct state *state);

struct state *state_by_name(const char *name);
struct state *state_by_node(const struct device_node *node);
int state_get_name(const struct state *state, char const **name);

int state_load_no_auth(struct state *state);
int state_load(struct state *state);
int state_save(struct state *state);
void state_info(void);

int state_read_mac(struct state *state, const char *name, u8 *buf);

#endif /* __STATE_H */