blob: d48dcdfa64744abeca62447755680cd37143cccc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Benoît Thébaudeauccca7df2013-04-23 10:17:40 +00002/*
3 * (C) Copyright 2009-2013 ADVANSEE
4 * Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
5 *
6 * Based on the mpc512x iim code:
7 * Copyright 2008 Silicon Turnkey Express, Inc.
8 * Martha Marx <mmarx@silicontkx.com>
Benoît Thébaudeauccca7df2013-04-23 10:17:40 +00009 */
10
11#ifndef _FUSE_H_
12#define _FUSE_H_
13
14/*
15 * Read/Sense/Program/Override interface:
16 * bank: Fuse bank
17 * word: Fuse word within the bank
18 * val: Value to read/write
19 *
20 * Returns: 0 on success, not 0 on failure
21 */
22int fuse_read(u32 bank, u32 word, u32 *val);
23int fuse_sense(u32 bank, u32 word, u32 *val);
24int fuse_prog(u32 bank, u32 word, u32 val);
25int fuse_override(u32 bank, u32 word, u32 val);
26
27#endif /* _FUSE_H_ */