blob: 39b578c00d2c1a26351399d2faedf19bdc900ab5 [file] [log] [blame]
Yen Linf6f767a2012-04-02 13:18:49 +00001/*
2 * (C) Copyright 2010,2011
3 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Yen Linf6f767a2012-04-02 13:18:49 +00006 */
7
8#ifndef _FUSE_H_
9#define _FUSE_H_
10
11/* FUSE registers */
12struct fuse_regs {
13 u32 reserved0[64]; /* 0x00 - 0xFC: */
14 u32 production_mode; /* 0x100: FUSE_PRODUCTION_MODE */
15 u32 reserved1[3]; /* 0x104 - 0x10c: */
16 u32 sku_info; /* 0x110 */
17 u32 reserved2[13]; /* 0x114 - 0x144: */
18 u32 fa; /* 0x148: FUSE_FA */
19 u32 reserved3[21]; /* 0x14C - 0x19C: */
20 u32 security_mode; /* 0x1A0: FUSE_SECURITY_MODE */
21};
22
23#endif /* ifndef _FUSE_H_ */