it_lp_naca.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * ItLpNaca.h
  3. * Copyright (C) 2001 Mike Corrigan IBM Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef _ASM_POWERPC_ISERIES_IT_LP_NACA_H
  20. #define _ASM_POWERPC_ISERIES_IT_LP_NACA_H
  21. #include <linux/types.h>
  22. /*
  23. * This control block contains the data that is shared between the
  24. * hypervisor (PLIC) and the OS.
  25. */
  26. struct ItLpNaca {
  27. // CACHE_LINE_1 0x0000 - 0x007F Contains read-only data
  28. u32 xDesc; // Eye catcher x00-x03
  29. u16 xSize; // Size of this class x04-x05
  30. u16 xIntHdlrOffset; // Offset to IntHdlr array x06-x07
  31. u8 xMaxIntHdlrEntries; // Number of entries in array x08-x08
  32. u8 xPrimaryLpIndex; // LP Index of Primary x09-x09
  33. u8 xServiceLpIndex; // LP Ind of Service Focal Pointx0A-x0A
  34. u8 xLpIndex; // LP Index x0B-x0B
  35. u16 xMaxLpQueues; // Number of allocated queues x0C-x0D
  36. u16 xLpQueueOffset; // Offset to start of LP queues x0E-x0F
  37. u8 xPirEnvironMode; // Piranha or hardware x10-x10
  38. u8 xPirConsoleMode; // Piranha console indicator x11-x11
  39. u8 xPirDasdMode; // Piranha dasd indicator x12-x12
  40. u8 xRsvd1_0[5]; // Reserved for Piranha related x13-x17
  41. u8 flags; // flags, see below x18-x1F
  42. u8 xSpVpdFormat; // VPD areas are in CSP format ...
  43. u8 xIntProcRatio; // Ratio of int procs to procs ...
  44. u8 xRsvd1_2[5]; // Reserved ...
  45. u16 xRsvd1_3; // Reserved x20-x21
  46. u16 xPlicVrmIndex; // VRM index of PLIC x22-x23
  47. u16 xMinSupportedSlicVrmInd;// Min supported OS VRM index x24-x25
  48. u16 xMinCompatableSlicVrmInd;// Min compatible OS VRM index x26-x27
  49. u64 xLoadAreaAddr; // ER address of load area x28-x2F
  50. u32 xLoadAreaChunks; // Chunks for the load area x30-x33
  51. u32 xPaseSysCallCRMask; // Mask used to test CR before x34-x37
  52. // doing an ASR switch on PASE
  53. // system call.
  54. u64 xSlicSegmentTablePtr; // Pointer to Slic seg table. x38-x3f
  55. u8 xRsvd1_4[64]; // x40-x7F
  56. // CACHE_LINE_2 0x0080 - 0x00FF Contains local read-write data
  57. u8 xRsvd2_0[128]; // Reserved x00-x7F
  58. // CACHE_LINE_3-6 0x0100 - 0x02FF Contains LP Queue indicators
  59. // NB: Padding required to keep xInterrruptHdlr at x300 which is required
  60. // for v4r4 PLIC.
  61. u8 xOldLpQueue[128]; // LP Queue needed for v4r4 100-17F
  62. u8 xRsvd3_0[384]; // Reserved 180-2FF
  63. // CACHE_LINE_7-8 0x0300 - 0x03FF Contains the address of the OS interrupt
  64. // handlers
  65. u64 xInterruptHdlr[32]; // Interrupt handlers 300-x3FF
  66. };
  67. extern struct ItLpNaca itLpNaca;
  68. #define ITLPNACA_LPAR 0x80 /* Is LPAR installed on the system */
  69. #define ITLPNACA_PARTITIONED 0x40 /* Is the system partitioned */
  70. #define ITLPNACA_HWSYNCEDTBS 0x20 /* Hardware synced TBs */
  71. #define ITLPNACA_HMTINT 0x10 /* Utilize MHT for interrupts */
  72. #endif /* _ASM_POWERPC_ISERIES_IT_LP_NACA_H */