nvram_powerpc.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
  2. /*
  3. * NVRAM definitions and access functions.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version
  8. * 2 of the License, or (at your option) any later version.
  9. */
  10. #ifndef _ASM_POWERPC_NVRAM_H
  11. #define _ASM_POWERPC_NVRAM_H
  12. /* Signatures for nvram partitions */
  13. #define NVRAM_SIG_SP 0x02 /* support processor */
  14. #define NVRAM_SIG_OF 0x50 /* open firmware config */
  15. #define NVRAM_SIG_FW 0x51 /* general firmware */
  16. #define NVRAM_SIG_HW 0x52 /* hardware (VPD) */
  17. #define NVRAM_SIG_FLIP 0x5a /* Apple flip/flop header */
  18. #define NVRAM_SIG_APPL 0x5f /* Apple "system" (???) */
  19. #define NVRAM_SIG_SYS 0x70 /* system env vars */
  20. #define NVRAM_SIG_CFG 0x71 /* config data */
  21. #define NVRAM_SIG_ELOG 0x72 /* error log */
  22. #define NVRAM_SIG_VEND 0x7e /* vendor defined */
  23. #define NVRAM_SIG_FREE 0x7f /* Free space */
  24. #define NVRAM_SIG_OS 0xa0 /* OS defined */
  25. #define NVRAM_SIG_PANIC 0xa1 /* Apple OSX "panic" */
  26. /* PowerMac specific nvram stuffs */
  27. enum {
  28. pmac_nvram_OF, /* Open Firmware partition */
  29. pmac_nvram_XPRAM, /* MacOS XPRAM partition */
  30. pmac_nvram_NR /* MacOS Name Registry partition */
  31. };
  32. /* Some offsets in XPRAM */
  33. #define PMAC_XPRAM_MACHINE_LOC 0xe4
  34. #define PMAC_XPRAM_SOUND_VOLUME 0x08
  35. /* Machine location structure in PowerMac XPRAM */
  36. struct pmac_machine_location {
  37. unsigned int latitude; /* 2+30 bit Fractional number */
  38. unsigned int longitude; /* 2+30 bit Fractional number */
  39. unsigned int delta; /* mix of GMT delta and DLS */
  40. };
  41. /*
  42. * /dev/nvram ioctls
  43. *
  44. * Note that PMAC_NVRAM_GET_OFFSET is still supported, but is
  45. * definitely obsolete. Do not use it if you can avoid it
  46. */
  47. #define OBSOLETE_PMAC_NVRAM_GET_OFFSET \
  48. _IOWR('p', 0x40, int)
  49. #define IOC_NVRAM_GET_OFFSET _IOWR('p', 0x42, int) /* Get NVRAM partition offset */
  50. #define IOC_NVRAM_SYNC _IO('p', 0x43) /* Sync NVRAM image */
  51. #endif /* _ASM_POWERPC_NVRAM_H */