naca.h 728 B

123456789101112131415161718192021222324
  1. #ifndef _PLATFORMS_ISERIES_NACA_H
  2. #define _PLATFORMS_ISERIES_NACA_H
  3. /*
  4. * c 2001 PPC 64 Team, IBM Corp
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #include <asm/types.h>
  12. struct naca_struct {
  13. /* Kernel only data - undefined for user space */
  14. const void *xItVpdAreas; /* VPD Data 0x00 */
  15. void *xRamDisk; /* iSeries ramdisk 0x08 */
  16. u64 xRamDiskSize; /* In pages 0x10 */
  17. };
  18. extern struct naca_struct naca;
  19. #endif /* _PLATFORMS_ISERIES_NACA_H */