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