xref: /rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/fuse.h (revision 326ea986ac150acdc7656d57fca647db80b50158)
1150c2493STom Warren /*
2150c2493STom Warren  *  (C) Copyright 2010,2011
3150c2493STom Warren  *  NVIDIA Corporation <www.nvidia.com>
4150c2493STom Warren  *
5*1a459660SWolfgang Denk  * SPDX-License-Identifier:	GPL-2.0+
6150c2493STom Warren  */
7150c2493STom Warren 
8150c2493STom Warren #ifndef _FUSE_H_
9150c2493STom Warren #define _FUSE_H_
10150c2493STom Warren 
11150c2493STom Warren /* FUSE registers */
12150c2493STom Warren struct fuse_regs {
13150c2493STom Warren 	u32 reserved0[64];		/* 0x00 - 0xFC: */
14150c2493STom Warren 	u32 production_mode;		/* 0x100: FUSE_PRODUCTION_MODE */
15150c2493STom Warren 	u32 reserved1[3];		/* 0x104 - 0x10c: */
16150c2493STom Warren 	u32 sku_info;			/* 0x110 */
17150c2493STom Warren 	u32 reserved2[13];		/* 0x114 - 0x144: */
18150c2493STom Warren 	u32 fa;				/* 0x148: FUSE_FA */
19150c2493STom Warren 	u32 reserved3[21];		/* 0x14C - 0x19C: */
20150c2493STom Warren 	u32 security_mode;		/* 0x1A0: FUSE_SECURITY_MODE */
21150c2493STom Warren };
22150c2493STom Warren 
23150c2493STom Warren #endif	/* ifndef _FUSE_H_ */
24