fuse.h 561 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2010,2011
  4. * NVIDIA Corporation <www.nvidia.com>
  5. */
  6. #ifndef _FUSE_H_
  7. #define _FUSE_H_
  8. /* FUSE registers */
  9. struct fuse_regs {
  10. u32 reserved0[64]; /* 0x00 - 0xFC: */
  11. u32 production_mode; /* 0x100: FUSE_PRODUCTION_MODE */
  12. u32 reserved1[3]; /* 0x104 - 0x10c: */
  13. u32 sku_info; /* 0x110 */
  14. u32 reserved2[13]; /* 0x114 - 0x144: */
  15. u32 fa; /* 0x148: FUSE_FA */
  16. u32 reserved3[21]; /* 0x14C - 0x19C: */
  17. u32 security_mode; /* 0x1A0: FUSE_SECURITY_MODE */
  18. };
  19. #endif /* ifndef _FUSE_H_ */