pdc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:36k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PARISC_PDC_H
  2. #define _PARISC_PDC_H
  3. /*
  4.  * PDC return values ...
  5.  * All PDC calls return a subset of these errors. 
  6.  */
  7. #define PDC_WARN   3 /* Call completed with a warning */
  8. #define PDC_REQ_ERR_1   2 /* See above  */
  9. #define PDC_REQ_ERR_0   1 /* Call would generate a requestor error */
  10. #define PDC_OK   0 /* Call completed successfully */
  11. #define PDC_BAD_PROC  -1 /* Called non-existent procedure*/
  12. #define PDC_BAD_OPTION  -2 /* Called with non-existent option */
  13. #define PDC_ERROR  -3 /* Call could not complete without an error */
  14. #define PDC_NE_MOD  -5 /* Module not found */
  15. #define PDC_NE_CELL_MOD  -7 /* Cell module not found */
  16. #define PDC_INVALID_ARG -10 /* Called with an invalid argument */
  17. #define PDC_BUS_POW_WARN -12 /* Call could not complete in allowed power budget */
  18. #define PDC_NOT_NARROW -17 /* Narrow mode not supported */
  19. /*
  20.  * PDC entry points...
  21.  */
  22. #define PDC_POW_FAIL 1 /* perform a power-fail */
  23. #define PDC_POW_FAIL_PREPARE 0 /* prepare for powerfail */
  24. #define PDC_CHASSIS 2 /* PDC-chassis functions */
  25. #define PDC_CHASSIS_DISP 0 /* update chassis display */
  26. #define PDC_CHASSIS_WARN 1 /* return chassis warnings */
  27. #define PDC_CHASSIS_DISPWARN 2 /* update&return chassis status */
  28. #define PDC_RETURN_CHASSIS_INFO 128 /* HVERSION dependent: return chassis LED/LCD info  */
  29. #define PDC_PIM         3               /* Get PIM data                 */
  30. #define PDC_PIM_HPMC            0       /* Transfer HPMC data           */
  31. #define PDC_PIM_RETURN_SIZE     1       /* Get Max buffer needed for PIM*/
  32. #define PDC_PIM_LPMC            2       /* Transfer HPMC data           */
  33. #define PDC_PIM_SOFT_BOOT       3       /* Transfer Soft Boot data      */
  34. #define PDC_PIM_TOC             4       /* Transfer TOC data            */
  35. #define PDC_MODEL 4 /* PDC model information call */
  36. #define PDC_MODEL_INFO 0 /* returns information  */
  37. #define PDC_MODEL_BOOTID 1 /* set the BOOT_ID */
  38. #define PDC_MODEL_VERSIONS 2 /* returns cpu-internal versions*/
  39. #define PDC_MODEL_SYSMODEL 3 /* return system model info */
  40. #define PDC_MODEL_ENSPEC 4 /* enable specific option */
  41. #define PDC_MODEL_DISPEC 5 /* disable specific option */
  42. #define PDC_MODEL_CPU_ID 6 /* returns cpu-id (only newer machines!) */
  43. #define PDC_MODEL_CAPABILITIES 7 /* returns OS32/OS64-flags */
  44. #define PDC_MODEL_GET_BOOT__OP 8 /* returns boot test options */
  45. #define PDC_MODEL_SET_BOOT__OP 9 /* set boot test options */
  46. #define PA89_INSTRUCTION_SET 0x4 /* capatibilies returned */
  47. #define PA90_INSTRUCTION_SET 0x8
  48. #define PDC_CACHE 5 /* return/set cache (& TLB) info*/
  49. #define PDC_CACHE_INFO 0 /* returns information  */
  50. #define PDC_CACHE_SET_COH 1 /* set coherence state */
  51. #define PDC_CACHE_RET_SPID 2 /* returns space-ID bits */
  52. #define PDC_HPA 6 /* return HPA of processor */
  53. #define PDC_HPA_PROCESSOR 0
  54. #define PDC_HPA_MODULES 1
  55. #define PDC_COPROC 7 /* Co-Processor (usually FP unit(s)) */
  56. #define PDC_COPROC_CFG 0 /* Co-Processor Cfg (FP unit(s) enabled?) */
  57. #define PDC_IODC 8 /* talk to IODC */
  58. #define PDC_IODC_READ 0 /* read IODC entry point */
  59. /*      PDC_IODC_RI_  * INDEX parameter of PDC_IODC_READ */
  60. #define PDC_IODC_RI_DATA_BYTES 0 /* IODC Data Bytes */
  61. /* 1, 2    obsolete - HVERSION dependent*/
  62. #define PDC_IODC_RI_INIT 3 /* Initialize module */
  63. #define PDC_IODC_RI_IO 4 /* Module input/output */
  64. #define PDC_IODC_RI_SPA 5 /* Module input/output */
  65. #define PDC_IODC_RI_CONFIG 6 /* Module input/output */
  66. /* 7   obsolete - HVERSION dependent */
  67. #define PDC_IODC_RI_TEST 8 /* Module input/output */
  68. #define PDC_IODC_RI_TLB 9 /* Module input/output */
  69. #define PDC_IODC_NINIT 2 /* non-destructive init */
  70. #define PDC_IODC_DINIT 3 /* destructive init */
  71. #define PDC_IODC_MEMERR 4 /* check for memory errors */
  72. #define PDC_IODC_INDEX_DATA 0 /* get first 16 bytes from mod IODC */
  73. #define PDC_IODC_BUS_ERROR -4 /* bus error return value */
  74. #define PDC_IODC_INVALID_INDEX -5 /* invalid index return value */
  75. #define PDC_IODC_COUNT -6 /* count is too small */
  76. #define PDC_TOD 9 /* time-of-day clock (TOD) */
  77. #define PDC_TOD_READ 0 /* read TOD */
  78. #define PDC_TOD_WRITE 1 /* write TOD */
  79. #define PDC_TOD_ITIMER 2 /* calibrate Interval Timer (CR16) */
  80. #define PDC_STABLE 10 /* stable storage (sprockets) */
  81. #define PDC_STABLE_READ 0
  82. #define PDC_STABLE_WRITE 1
  83. #define PDC_STABLE_RETURN_SIZE 2
  84. #define PDC_STABLE_VERIFY_CONTENTS 3
  85. #define PDC_STABLE_INITIALIZE 4
  86. #define PDC_NVOLATILE 11 /* often not implemented */
  87. #define PDC_ADD_VALID 12 /* Memory validation PDC call */
  88. #define PDC_ADD_VALID_VERIFY 0 /* Make PDC_ADD_VALID verify region */
  89. #define PDC_INSTR 15 /* get instr to invoke PDCE_CHECK() */
  90. #define PDC_PROC 16 /* (sprockets) */
  91. #define PDC_CONFIG 16 /* (sprockets) */
  92. #define PDC_CONFIG_DECONFIG 0
  93. #define PDC_CONFIG_DRECONFIG 1
  94. #define PDC_CONFIG_DRETURN_CONFIG 2
  95. #define PDC_BLOCK_TLB 18 /* manage hardware block-TLB */
  96. #define PDC_BTLB_INFO 0 /* returns parameter  */
  97. #define PDC_BTLB_INSERT 1 /* insert BTLB entry */
  98. #define PDC_BTLB_PURGE 2 /* purge BTLB entries  */
  99. #define PDC_BTLB_PURGE_ALL 3 /* purge all BTLB entries  */
  100. #define PDC_TLB 19 /* manage hardware TLB miss handling */
  101. #define PDC_TLB_INFO 0 /* returns parameter  */
  102. #define PDC_TLB_SETUP 1 /* set up miss handling  */
  103. #define PDC_MEM 20 /* Manage memory */
  104. #define PDC_MEM_MEMINFO 0
  105. #define PDC_MEM_ADD_PAGE 1
  106. #define PDC_MEM_CLEAR_PDT 2
  107. #define PDC_MEM_READ_PDT 3
  108. #define PDC_MEM_RESET_CLEAR 4
  109. #define PDC_MEM_GOODMEM 5
  110. #define PDC_MEM_TABLE 128 /* Non contig mem map (sprockets) */
  111. #define PDC_MEM_RETURN_ADDRESS_TABLE PDC_MEM_TABLE
  112. #define PDC_MEM_GET_MEMORY_SYSTEM_TABLES_SIZE 131
  113. #define PDC_MEM_GET_MEMORY_SYSTEM_TABLES 132
  114. #define PDC_MEM_GET_PHYSICAL_LOCATION_FROM_MEMORY_ADDRESS 133
  115. #define PDC_MEM_RET_SBE_REPLACED 5 /* PDC_MEM return values */
  116. #define PDC_MEM_RET_DUPLICATE_ENTRY 4
  117. #define PDC_MEM_RET_BUF_SIZE_SMALL 1
  118. #define PDC_MEM_RET_PDT_FULL -11
  119. #define PDC_MEM_RET_INVALID_PHYSICAL_LOCATION ~0ULL
  120. #ifndef __ASSEMBLY__
  121. typedef struct {
  122.     unsigned long long baseAddr;
  123.     unsigned int pages;
  124.     unsigned int reserved;
  125. } MemAddrTable_t;
  126. #endif
  127. #define PDC_PSW 21 /* Get/Set default System Mask  */
  128. #define PDC_PSW_MASK 0 /* Return mask                  */
  129. #define PDC_PSW_GET_DEFAULTS 1 /* Return defaults              */
  130. #define PDC_PSW_SET_DEFAULTS 2 /* Set default                  */
  131. #define PDC_PSW_ENDIAN_BIT 1 /* set for big endian           */
  132. #define PDC_PSW_WIDE_BIT 2 /* set for wide mode            */ 
  133. #define PDC_SYSTEM_MAP 22 /* find system modules */
  134. #define PDC_FIND_MODULE  0
  135. #define PDC_FIND_ADDRESS 1
  136. #define PDC_TRANSLATE_PATH 2
  137. #define PDC_SOFT_POWER 23 /* soft power switch */
  138. #define PDC_SOFT_POWER_INFO 0 /* return info about the soft power switch */
  139. #define PDC_SOFT_POWER_ENABLE 1 /* enable/disable soft power switch */
  140. /* HVERSION dependent */
  141. /* The PDC_MEM_MAP calls */
  142. #define PDC_MEM_MAP 128 /* on s700: return page info */
  143. #define PDC_MEM_MAP_HPA 0 /* returns hpa of a module */
  144. #define PDC_EEPROM 129 /* EEPROM access */
  145. #define PDC_EEPROM_READ_WORD 0
  146. #define PDC_EEPROM_WRITE_WORD 1
  147. #define PDC_EEPROM_READ_BYTE 2
  148. #define PDC_EEPROM_WRITE_BYTE 3
  149. #define PDC_EEPROM_EEPROM_PASSWORD -1000
  150. #define PDC_NVM 130 /* NVM (non-volatile memory) access */
  151. #define PDC_NVM_READ_WORD 0
  152. #define PDC_NVM_WRITE_WORD 1
  153. #define PDC_NVM_READ_BYTE 2
  154. #define PDC_NVM_WRITE_BYTE 3
  155. #define PDC_SEED_ERROR 132 /* (sprockets) */
  156. #define PDC_IO 135 /* log error info, reset IO system */
  157. #define PDC_IO_READ_AND_CLEAR_ERRORS 0
  158. #define PDC_IO_READ_AND_LOG_ERRORS 1
  159. #define PDC_IO_SUSPEND_USB 2
  160. /* sets bits 6&7 (little endian) of the HcControl Register */
  161. #define PDC_IO_USB_SUSPEND 0xC000000000000000
  162. #define PDC_IO_EEPROM_IO_ERR_TABLE_FULL -5 /* return value */
  163. #define PDC_IO_NO_SUSPEND -6 /* return value */
  164. #define PDC_BROADCAST_RESET 136 /* reset all processors */
  165. #define PDC_DO_RESET 0 /* option: perform a broadcast reset */
  166. #define PDC_DO_FIRM_TEST_RESET 1 /* Do broadcast reset with bitmap */
  167. #define PDC_BR_RECONFIGURATION 2 /* reset w/reconfiguration */
  168. #define PDC_FIRM_TEST_MAGIC 0xab9ec36fUL    /* for this reboot only */
  169. #define PDC_LAN_STATION_ID 138 /* Hversion dependent mechanism for */
  170. #define PDC_LAN_STATION_ID_READ 0 /* getting the lan station address  */
  171. #define PDC_LAN_STATION_ID_SIZE 6
  172. #define PDC_CHECK_RANGES 139 /* (sprockets) */
  173. #define PDC_NV_SECTIONS 141 /* (sprockets) */
  174. #define PDC_PERFORMANCE 142 /* performance monitoring */
  175. #define PDC_SYSTEM_INFO 143 /* system information */
  176. #define PDC_SYSINFO_RETURN_INFO_SIZE 0
  177. #define PDC_SYSINFO_RRETURN_SYS_INFO 1
  178. #define PDC_SYSINFO_RRETURN_ERRORS 2
  179. #define PDC_SYSINFO_RRETURN_WARNINGS 3
  180. #define PDC_SYSINFO_RETURN_REVISIONS 4
  181. #define PDC_SYSINFO_RRETURN_DIAGNOSE 5
  182. #define PDC_SYSINFO_RRETURN_HV_DIAGNOSE 1005
  183. #define PDC_RDR 144 /* (sprockets) */
  184. #define PDC_RDR_READ_BUFFER 0
  185. #define PDC_RDR_READ_SINGLE 1
  186. #define PDC_RDR_WRITE_SINGLE 2
  187. #define PDC_INTRIGUE 145  /* (sprockets) */
  188. #define PDC_INTRIGUE_WRITE_BUFFER   0
  189. #define PDC_INTRIGUE_GET_SCRATCH_BUFSIZE 1
  190. #define PDC_INTRIGUE_START_CPU_COUNTERS  2
  191. #define PDC_INTRIGUE_STOP_CPU_COUNTERS  3
  192. #define PDC_STI 146  /* STI access */
  193. /* same as PDC_PCI_XXX values (see below) */
  194. /* Legacy PDC definitions for same stuff */
  195. #define PDC_PCI_INDEX 147
  196. #define PDC_PCI_INTERFACE_INFO 0
  197. #define PDC_PCI_SLOT_INFO 1
  198. #define PDC_PCI_INFLIGHT_BYTES 2
  199. #define PDC_PCI_READ_CONFIG 3
  200. #define PDC_PCI_WRITE_CONFIG 4
  201. #define PDC_PCI_READ_PCI_IO 5
  202. #define PDC_PCI_WRITE_PCI_IO 6
  203. #define PDC_PCI_READ_CONFIG_DELAY 7
  204. #define PDC_PCI_UPDATE_CONFIG_DELAY 8
  205. #define PDC_PCI_PCI_PATH_TO_PCI_HPA 9
  206. #define PDC_PCI_PCI_HPA_TO_PCI_PATH 10
  207. #define PDC_PCI_PCI_PATH_TO_PCI_BUS 11
  208. #define PDC_PCI_PCI_RESERVED 12
  209. #define PDC_PCI_PCI_INT_ROUTE_SIZE 13
  210. #define PDC_PCI_GET_INT_TBL_SIZE PDC_PCI_PCI_INT_ROUTE_SIZE
  211. #define PDC_PCI_PCI_INT_ROUTE 14
  212. #define PDC_PCI_GET_INT_TBL PDC_PCI_PCI_INT_ROUTE 
  213. #define PDC_PCI_READ_MON_TYPE 15
  214. #define PDC_PCI_WRITE_MON_TYPE 16
  215. /* Get SCSI Interface Card info:  SDTR, SCSI ID, mode (SE vs LVD) */
  216. #define PDC_INITIATOR 163
  217. #define PDC_GET_INITIATOR 0
  218. #define PDC_SET_INITIATOR 1
  219. #define PDC_DELETE_INITIATOR 2
  220. #define PDC_RETURN_TABLE_SIZE 3
  221. #define PDC_RETURN_TABLE 4
  222. #define PDC_LINK 165  /* (sprockets) */
  223. #define PDC_LINK_PCI_ENTRY_POINTS 0  /* list (Arg1) = 0 */
  224. #define PDC_LINK_USB_ENTRY_POINTS 1  /* list (Arg1) = 1 */
  225. /* constants for OS (NVM...) */
  226. #define OS_ID_NONE 0 /* Undefined OS ID */
  227. #define OS_ID_HPUX 1 /* HP-UX OS */
  228. #define OS_ID_LINUX OS_ID_HPUX /* just use the same value as hpux */
  229. #define OS_ID_MPEXL 2 /* MPE XL OS */
  230. #define OS_ID_OSF 3 /* OSF OS */
  231. #define OS_ID_HPRT 4 /* HP-RT OS */
  232. #define OS_ID_NOVEL 5 /* NOVELL OS */
  233. #define OS_ID_NT 6 /* NT OS */
  234. /* constants for PDC_CHASSIS */
  235. #define OSTAT_OFF 0
  236. #define OSTAT_FLT 1 
  237. #define OSTAT_TEST 2
  238. #define OSTAT_INIT 3
  239. #define OSTAT_SHUT 4
  240. #define OSTAT_WARN 5
  241. #define OSTAT_RUN 6
  242. #define OSTAT_ON 7
  243. #ifdef __LP64__
  244. /* PDC PAT CELL */
  245. #define PDC_PAT_CELL 64L /* Interface for gaining and 
  246.  * manipulating cell state within PD */
  247. #define PDC_PAT_CELL_GET_NUMBER    0L /* Return Cell number */
  248. #define PDC_PAT_CELL_GET_INFO      1L /* Returns info about Cell */
  249. #define PDC_PAT_CELL_MODULE        2L /* Returns info about Module */
  250. #define PDC_PAT_CELL_SET_ATTENTION 9L /* Set Cell Attention indicator */
  251. #define PDC_PAT_CELL_NUMBER_TO_LOC 10L /* Cell Number -> Location */
  252. #define PDC_PAT_CELL_WALK_FABRIC   11L /* Walk the Fabric */
  253. #define PDC_PAT_CELL_GET_RDT_SIZE  12L /* Return Route Distance Table Sizes */
  254. #define PDC_PAT_CELL_GET_RDT       13L /* Return Route Distance Tables */
  255. #define PDC_PAT_CELL_GET_LOCAL_PDH_SZ  14L /* Read Local PDH Buffer Size*/
  256. #define PDC_PAT_CELL_SET_LOCAL_PDH     15L /* Write Local PDH Buffer */
  257. #define PDC_PAT_CELL_GET_REMOTE_PDH_SZ 16L /* Return Remote PDH Buffer Size */
  258. #define PDC_PAT_CELL_GET_REMOTE_PDH    17L /* Read Remote PDH Buffer */
  259. #define PDC_PAT_CELL_GET_DBG_INFO  128L /* Return DBG Buffer Info */
  260. #define PDC_PAT_CELL_CHANGE_ALIAS  129L /* Change Non-Equivalent Alias Checking */
  261. /*
  262. ** Arg to PDC_PAT_CELL_MODULE memaddr[4]
  263. **
  264. ** Addresses on the Merced Bus != all Runway Bus addresses.
  265. ** This is intended for programming SBA/LBA chips range registers.
  266. */
  267. #define IO_VIEW 0UL
  268. #define PA_VIEW 1UL
  269. /* PDC_PAT_CELL_MODULE entity type values */
  270. #define PAT_ENTITY_CA 0 /* central agent */
  271. #define PAT_ENTITY_PROC 1 /* processor */
  272. #define PAT_ENTITY_MEM 2 /* memory controller */
  273. #define PAT_ENTITY_SBA 3 /* system bus adapter */
  274. #define PAT_ENTITY_LBA 4 /* local bus adapter */
  275. #define PAT_ENTITY_PBC 5 /* processor bus converter */
  276. #define PAT_ENTITY_XBC 6 /* crossbar fabric connect */
  277. #define PAT_ENTITY_RC 7 /* fabric interconnect */
  278. /* PDC_PAT_CELL_MODULE address range type values */
  279. #define PAT_PBNUM 0 /* PCI Bus Number */
  280. #define PAT_LMMIO 1 /* < 4G MMIO Space */
  281. #define PAT_GMMIO 2 /* > 4G MMIO Space */
  282. #define PAT_NPIOP 3 /* Non Postable I/O Port Space */
  283. #define PAT_PIOP 4 /* Postable I/O Port Space */
  284. #define PAT_AHPA 5 /* Additional HPA Space */
  285. #define PAT_UFO 6 /* HPA Space (UFO for Mariposa) */
  286. #define PAT_GNIP 7 /* GNI Reserved Space */
  287. /* PDC PAT CHASSIS LOG */
  288. #define PDC_PAT_CHASSIS_LOG 65L /* Platform logging & forward
  289.  ** progress functions */
  290. #define PDC_PAT_CHASSIS_WRITE_LOG 0L /* Write Log Entry */
  291. #define PDC_PAT_CHASSIS_READ_LOG 1L /* Read  Log Entry */
  292. /* PDC PAT CPU  */
  293. #define PDC_PAT_CPU 67L /* Interface to CPU configuration
  294.  * within the protection domain */
  295. #define PDC_PAT_CPU_INFO 0L /* Return CPU config info */
  296. #define PDC_PAT_CPU_DELETE 1L /* Delete CPU */
  297. #define PDC_PAT_CPU_ADD 2L /* Add    CPU */
  298. #define PDC_PAT_CPU_GET_NUMBER 3L /* Return CPU Number */
  299. #define PDC_PAT_CPU_GET_HPA 4L /* Return CPU HPA */
  300. #define PDC_PAT_CPU_STOP             5L /* Stop   CPU */
  301. #define PDC_PAT_CPU_RENDEZVOUS       6L /* Rendezvous CPU */
  302. #define PDC_PAT_CPU_GET_CLOCK_INFO   7L /* Return CPU Clock info */
  303. #define PDC_PAT_CPU_GET_RENDEZVOUS_STATE 8L /* Return Rendezvous State */
  304. #define PDC_PAT_CPU_PLUNGE_FABRIC 128L /* Plunge Fabric */
  305. #define PDC_PAT_CPU_UPDATE_CACHE_CLEANSING 129L /* Manipulate Cache 
  306.                                                  * Cleansing Mode */
  307. /*  PDC PAT EVENT */
  308. #define PDC_PAT_EVENT 68L /* Interface to Platform Events */
  309. #define PDC_PAT_EVENT_GET_CAPS 0L /* Get Capabilities */
  310. #define PDC_PAT_EVENT_SET_MODE 1L /* Set Notification Mode */
  311. #define PDC_PAT_EVENT_SCAN 2L /* Scan Event */
  312. #define PDC_PAT_EVENT_HANDLE 3L /* Handle Event */
  313. #define PDC_PAT_EVENT_GET_NB_CALL 4L /* Get Non-Blocking call Args*/
  314. /*  PDC PAT HPMC */
  315. #define PDC_PAT_HPMC 70L /* Cause processor to go into spin
  316.  ** loop, and wait for wake up from
  317.  ** Monarch Processor */
  318. #define PDC_PAT_HPMC_RENDEZ_CPU 0L /* go into spin loop */
  319. #define PDC_PAT_HPMC_SET_PARAMS 1L /* Allows OS to specify intr which PDC 
  320.                                         * will use to interrupt OS during machine
  321.                                         * check rendezvous */
  322. /* parameters for PDC_PAT_HPMC_SET_PARAMS */
  323. #define HPMC_SET_PARAMS_INTR 1L /* Rendezvous Interrupt */
  324. #define HPMC_SET_PARAMS_WAKE 2L /* Wake up processor */
  325. /*  PDC PAT IO */
  326. #define PDC_PAT_IO 71L /* On-line services for I/O modules */
  327. #define PDC_PAT_IO_GET_SLOT_STATUS  5L /* Get Slot Status Info */
  328. #define PDC_PAT_IO_GET_LOC_FROM_HARDWARE 6L /* Get Physical Location from */
  329.                                             /* Hardware Path */
  330. #define PDC_PAT_IO_GET_HARDWARE_FROM_LOC 7L /* Get Hardware Path from 
  331.                                              * Physical Location */
  332. #define PDC_PAT_IO_GET_PCI_CONFIG_FROM_HW 11L /* Get PCI Configuration
  333.                                                * Address from Hardware Path */
  334. #define PDC_PAT_IO_GET_HW_FROM_PCI_CONFIG 12L /* Get Hardware Path 
  335.                                                * from PCI Configuration Address */
  336. #define PDC_PAT_IO_READ_HOST_BRIDGE_INFO  13L /* Read Host Bridge State Info */
  337. #define PDC_PAT_IO_CLEAR_HOST_BRIDGE_INFO 14L /* Clear Host Bridge State Info*/
  338. #define PDC_PAT_IO_GET_PCI_ROUTING_TABLE_SIZE 15L /* Get PCI INT Routing Table 
  339.                                                    * Size */
  340. #define PDC_PAT_IO_GET_PCI_ROUTING_TABLE  16L /* Get PCI INT Routing Table */
  341. #define PDC_PAT_IO_GET_HINT_TABLE_SIZE    17L /* Get Hint Table Size */
  342. #define PDC_PAT_IO_GET_HINT_TABLE 18L /* Get Hint Table */
  343. #define PDC_PAT_IO_PCI_CONFIG_READ 19L /* PCI Config Read */
  344. #define PDC_PAT_IO_PCI_CONFIG_WRITE 20L /* PCI Config Write */
  345. #define PDC_PAT_IO_GET_NUM_IO_SLOTS 21L /* Get Number of I/O Bay Slots in 
  346.                                           * Cabinet */
  347. #define PDC_PAT_IO_GET_LOC_IO_SLOTS 22L /* Get Physical Location of I/O */
  348.                                         /* Bay Slots in Cabinet */
  349. #define PDC_PAT_IO_BAY_STATUS_INFO 28L /* Get I/O Bay Slot Status Info */
  350. #define PDC_PAT_IO_GET_PROC_VIEW 29L /* Get Processor view of IO address */
  351. #define PDC_PAT_IO_PROG_SBA_DIR_RANGE 30L /* Program directed range */
  352. /* PDC PAT MEM */
  353. #define PDC_PAT_MEM 72L  /* Manage memory page deallocation */
  354. #define PDC_PAT_MEM_PD_INFO      0L /* Return PDT info for PD */
  355. #define PDC_PAT_MEM_PD_CLEAR     1L /* Clear PDT for PD */
  356. #define PDC_PAT_MEM_PD_READ      2L /* Read PDT entries for PD */
  357. #define PDC_PAT_MEM_PD_RESET     3L /* Reset clear bit for PD */
  358. #define PDC_PAT_MEM_CELL_INFO    5L /* Return PDT info For Cell */
  359. #define PDC_PAT_MEM_CELL_CLEAR   6L /* Clear PDT For Cell */
  360. #define PDC_PAT_MEM_CELL_READ    7L /* Read PDT entries For Cell */
  361. #define PDC_PAT_MEM_CELL_RESET   8L /* Reset clear bit For Cell */
  362. #define PDC_PAT_MEM_SETGM    9L /* Set Golden Memory value */
  363. #define PDC_PAT_MEM_ADD_PAGE     10L /* ADDs a page to the cell */
  364. #define PDC_PAT_MEM_ADDRESS      11L /* Get Physical Location From*/
  365.     /* Memory Address */
  366. #define PDC_PAT_MEM_GET_TXT_SIZE    12L /* Get Formatted Text Size */
  367. #define PDC_PAT_MEM_GET_PD_TXT      13L /* Get PD Formatted Text */
  368. #define PDC_PAT_MEM_GET_CELL_TXT    14L /* Get Cell Formatted Text */
  369. #define PDC_PAT_MEM_RD_STATE_INFO   15L /* Read Mem Module State Info*/
  370. #define PDC_PAT_MEM_CLR_STATE_INFO  16L /*Clear Mem Module State Info*/
  371. #define PDC_PAT_MEM_CLEAN_RANGE     128L /*Clean Mem in specific range*/
  372. #define PDC_PAT_MEM_GET_TBL_SIZE    131L /* Get Memory Table Size */
  373. #define PDC_PAT_MEM_GET_TBL         132L /* Get Memory Table */
  374. /* PDC PAT NVOLATILE */
  375. #define PDC_PAT_NVOLATILE 73L    /* Access Non-Volatile Memory*/
  376. #define PDC_PAT_NVOLATILE_READ 0L /* Read Non-Volatile Memory */
  377. #define PDC_PAT_NVOLATILE_WRITE 1L /* Write Non-Volatile Memory */
  378. #define PDC_PAT_NVOLATILE_GET_SIZE 2L /* Return size of NVM */
  379. #define PDC_PAT_NVOLATILE_VERIFY 3L /* Verify contents of NVM */
  380. #define PDC_PAT_NVOLATILE_INIT 4L /* Initialize NVM */
  381. /* PDC PAT PD */
  382. #define PDC_PAT_PD 74L     /* Protection Domain Info */
  383. #define PDC_PAT_PD_GET_ADDR_MAP 0L  /* Get Address Map */
  384. /* PDC_PAT_PD_GET_ADDR_MAP entry types */
  385. #define PAT_MEMORY_DESCRIPTOR 1
  386. /* PDC_PAT_PD_GET_ADDR_MAP memory types */
  387. #define PAT_MEMTYPE_MEMORY 0
  388. #define PAT_MEMTYPE_FIRMWARE 4
  389. /* PDC_PAT_PD_GET_ADDR_MAP memory usage */
  390. #define PAT_MEMUSE_GENERAL 0
  391. #define PAT_MEMUSE_GI 128
  392. #define PAT_MEMUSE_GNI 129
  393. #endif /* __LP64__ */
  394. #ifndef __ASSEMBLY__
  395. #include <linux/types.h>
  396. extern int pdc_type;
  397. /* Values for pdc_type */
  398. #define PDC_TYPE_ILLEGAL -1
  399. #define PDC_TYPE_PAT  0 /* 64-bit PAT-PDC */
  400. #define PDC_TYPE_SYSTEM_MAP  1 /* 32-bit, but supports PDC_SYSTEM_MAP */
  401. #define PDC_TYPE_SNAKE  2 /* Doesn't support SYSTEM_MAP */
  402. #define is_pdc_pat()    (pdc_type == PDC_TYPE_PAT)
  403. struct pdc_chassis_info {       /* for PDC_CHASSIS_INFO */
  404. unsigned long actcnt;   /* actual number of bytes returned */
  405. unsigned long maxcnt;   /* maximum number of bytes that could be returned */
  406. };
  407. struct pdc_coproc_cfg {         /* for PDC_COPROC_CFG */
  408.         unsigned long ccr_functional;
  409.         unsigned long ccr_present;
  410.         unsigned long revision;
  411.         unsigned long model;
  412. };
  413. struct pdc_model { /* for PDC_MODEL */
  414. unsigned long hversion;
  415. unsigned long sversion;
  416. unsigned long hw_id;
  417. unsigned long boot_id;
  418. unsigned long sw_id;
  419. unsigned long sw_cap;
  420. unsigned long arch_rev;
  421. unsigned long pot_key;
  422. unsigned long curr_key;
  423. };
  424. /* Values for PDC_MODEL_CAPABILITES non-equivalent virtual aliasing support */
  425. #define PDC_MODEL_IOPDIR_FDC            (1 << 2)        /* see sba_iommu.c */
  426. #define PDC_MODEL_NVA_MASK (3 << 4)
  427. #define PDC_MODEL_NVA_SUPPORTED (0 << 4)
  428. #define PDC_MODEL_NVA_SLOW (1 << 4)
  429. #define PDC_MODEL_NVA_UNSUPPORTED (3 << 4)
  430. struct pdc_cache_cf { /* for PDC_CACHE  (I/D-caches) */
  431.     unsigned long
  432. #ifdef __LP64__
  433. cc_padW:32,
  434. #endif
  435. cc_alias:4, /* alias boundaries for virtual addresses   */
  436. cc_block: 4, /* to determine most efficient stride */
  437. cc_line : 3, /* maximum amount written back as a result of store (multiple of 16 bytes) */
  438. cc_pad0 : 2, /* reserved */
  439. cc_wt : 1, /* 0 = WT-Dcache, 1 = WB-Dcache */
  440. cc_sh : 2, /* 0 = separate I/D-cache, else shared I/D-cache */
  441. cc_cst  : 3, /* 0 = incoherent D-cache, 1=coherent D-cache */
  442. cc_pad1 : 5, /* reserved */
  443. cc_assoc: 8; /* associativity of I/D-cache */
  444. };
  445. struct pdc_tlb_cf { /* for PDC_CACHE (I/D-TLB's) */
  446.     unsigned long tc_pad0:12, /* reserved */
  447. #ifdef __LP64__
  448. tc_padW:32,
  449. #endif
  450. tc_sh : 2, /* 0 = separate I/D-TLB, else shared I/D-TLB */
  451. tc_hv   : 1, /* HV */
  452. tc_page : 1, /* 0 = 2K page-size-machine, 1 = 4k page size */
  453. tc_cst  : 3, /* 0 = incoherent operations, else coherent operations */
  454. tc_aid  : 5, /* ITLB: width of access ids of processor (encoded!) */
  455. tc_pad1 : 8; /* ITLB: width of space-registers (encoded) */
  456. };
  457. struct pdc_cache_info { /* main-PDC_CACHE-structure (caches & TLB's) */
  458. /* I-cache */
  459. unsigned long ic_size; /* size in bytes */
  460. struct pdc_cache_cf ic_conf; /* configuration */
  461. unsigned long ic_base; /* base-addr */
  462. unsigned long ic_stride;
  463. unsigned long ic_count;
  464. unsigned long ic_loop;
  465. /* D-cache */
  466. unsigned long dc_size; /* size in bytes */
  467. struct pdc_cache_cf dc_conf; /* configuration */
  468. unsigned long dc_base; /* base-addr */
  469. unsigned long dc_stride;
  470. unsigned long dc_count;
  471. unsigned long dc_loop;
  472. /* Instruction-TLB */
  473. unsigned long it_size; /* number of entries in I-TLB */
  474. struct pdc_tlb_cf it_conf; /* I-TLB-configuration */
  475. unsigned long it_sp_base;
  476. unsigned long it_sp_stride;
  477. unsigned long it_sp_count;
  478. unsigned long it_off_base;
  479. unsigned long it_off_stride;
  480. unsigned long it_off_count;
  481. unsigned long it_loop;
  482. /* data-TLB */
  483. unsigned long dt_size; /* number of entries in D-TLB */
  484. struct pdc_tlb_cf dt_conf; /* D-TLB-configuration */
  485. unsigned long dt_sp_base;
  486. unsigned long dt_sp_stride;
  487. unsigned long dt_sp_count;
  488. unsigned long dt_off_base;
  489. unsigned long dt_off_stride;
  490. unsigned long dt_off_count;
  491. unsigned long dt_loop;
  492. };
  493. #if 0
  494. /* If you start using the next struct, you'll have to adjust it to
  495.  * work with 64-bit firmware I think -PB
  496.  */
  497. struct pdc_iodc {     /* PDC_IODC */
  498. unsigned char   hversion_model;
  499. unsigned char  hversion;
  500. unsigned char  spa;
  501. unsigned char  type;
  502. unsigned int sversion_rev:4;
  503. unsigned int sversion_model:19;
  504. unsigned int sversion_opt:8;
  505. unsigned char rev;
  506. unsigned char dep;
  507. unsigned char features;
  508. unsigned char pad1;
  509. unsigned int checksum:16;
  510. unsigned int length:16;
  511. unsigned int    pad[15];
  512. } __attribute__((aligned(8))) ;
  513. #endif
  514. #ifndef CONFIG_PA20
  515. /* no BLTBs in pa2.0 processors */
  516. struct pdc_btlb_info_range {
  517. __u8 res00;
  518. __u8 num_i;
  519. __u8 num_d;
  520. __u8 num_comb;
  521. };
  522. struct pdc_btlb_info { /* PDC_BLOCK_TLB, return of PDC_BTLB_INFO */
  523. unsigned int min_size; /* minimum size of BTLB in pages */
  524. unsigned int max_size; /* maximum size of BTLB in pages */
  525. struct pdc_btlb_info_range fixed_range_info;
  526. struct pdc_btlb_info_range variable_range_info;
  527. };
  528. #endif /* !CONFIG_PA20 */
  529. #ifdef __LP64__
  530. struct pdc_memory_table_raddr { /* PDC_MEM/PDC_MEM_TABLE (return info) */
  531. unsigned long entries_returned;
  532. unsigned long entries_total;
  533. };
  534. struct pdc_memory_table {       /* PDC_MEM/PDC_MEM_TABLE (arguments) */
  535. unsigned long paddr;
  536. unsigned int  pages;
  537. unsigned int  reserved;
  538. };
  539. #endif /* __LP64__ */
  540. struct pdc_system_map_mod_info { /* PDC_SYSTEM_MAP/FIND_MODULE */
  541. unsigned long mod_addr;
  542. unsigned long mod_pgs;
  543. unsigned long add_addrs;
  544. };
  545. struct pdc_system_map_addr_info { /* PDC_SYSTEM_MAP/FIND_ADDRESS */
  546. unsigned long mod_addr;
  547. unsigned long mod_pgs;
  548. };
  549. struct hardware_path {
  550. char  flags; /* see bit definitions below */
  551. char  bc[6]; /* Bus Converter routing info to a specific */
  552. /* I/O adaptor (< 0 means none, > 63 resvd) */
  553. char  mod; /* fixed field of specified module */
  554. };
  555. /*
  556.  * Device path specifications used by PDC.
  557.  */
  558. struct pdc_module_path {
  559. struct hardware_path path;
  560. unsigned int layers[6]; /* device-specific info (ctlr #, unit # ...) */
  561. };
  562. #ifndef CONFIG_PA20
  563. /* Only used on some pre-PA2.0 boxes */
  564. struct pdc_memory_map { /* PDC_MEMORY_MAP */
  565. unsigned long hpa; /* mod's register set address */
  566. unsigned long more_pgs; /* number of additional I/O pgs */
  567. };
  568. #endif
  569. struct pdc_tod {
  570. unsigned long tod_sec; 
  571. unsigned long tod_usec;
  572. };
  573. #ifdef __LP64__
  574. struct pdc_pat_cell_num {
  575. unsigned long cell_num;
  576. unsigned long cell_loc;
  577. };
  578. struct pdc_pat_cpu_num {
  579. unsigned long cpu_num;
  580. unsigned long cpu_loc;
  581. };
  582. struct pdc_pat_pd_addr_map_entry {
  583. unsigned char entry_type;       /* 1 = Memory Descriptor Entry Type */
  584. unsigned char reserve1[5];
  585. unsigned char memory_type;
  586. unsigned char memory_usage;
  587. unsigned long paddr;
  588. unsigned int  pages;            /* Length in 4K pages */
  589. unsigned int  reserve2;
  590. unsigned long cell_map;
  591. };
  592. /* FIXME: mod[508] should really be a union of the various mod components */
  593. struct pdc_pat_cell_mod_maddr_block { /* PDC_PAT_CELL_MODULE */
  594. unsigned long cba;              /* function 0 configuration space address */
  595. unsigned long mod_info;         /* module information */
  596. unsigned long mod_location;     /* physical location of the module */
  597. struct hardware_path mod_path; /* hardware path */
  598. unsigned long mod[508]; /* PAT cell module components */
  599. };
  600. typedef struct pdc_pat_cell_mod_maddr_block pdc_pat_cell_mod_maddr_block_t;
  601. #endif /* __LP64__ */
  602. /* architected results from PDC_PIM/transfer hpmc on a PA1.1 machine */
  603. struct pdc_hpmc_pim_11 { /* PDC_PIM */
  604. __u32 gr[32];
  605. __u32 cr[32];
  606. __u32 sr[8];
  607. __u32 iasq_back;
  608. __u32 iaoq_back;
  609. __u32 check_type;
  610. __u32 cpu_state;
  611. __u32 rsvd1;
  612. __u32 cache_check;
  613. __u32 tlb_check;
  614. __u32 bus_check;
  615. __u32 assists_check;
  616. __u32 rsvd2;
  617. __u32 assist_state;
  618. __u32 responder_addr;
  619. __u32 requestor_addr;
  620. __u32 path_info;
  621. __u64 fr[32];
  622. };
  623. /*
  624.  * architected results from PDC_PIM/transfer hpmc on a PA2.0 machine
  625.  *
  626.  * Note that PDC_PIM doesn't care whether or not wide mode was enabled
  627.  * so the results are different on  PA1.1 vs. PA2.0 when in narrow mode.
  628.  *
  629.  * Note also that there are unarchitected results available, which
  630.  * are hversion dependent. Do a "ser pim 0 hpmc" after rebooting, since
  631.  * the firmware is probably the best way of printing hversion dependent
  632.  * data.
  633.  */
  634. struct pdc_hpmc_pim_20 { /* PDC_PIM */
  635. __u64 gr[32];
  636. __u64 cr[32];
  637. __u64 sr[8];
  638. __u64 iasq_back;
  639. __u64 iaoq_back;
  640. __u32 check_type;
  641. __u32 cpu_state;
  642. __u32 cache_check;
  643. __u32 tlb_check;
  644. __u32 bus_check;
  645. __u32 assists_check;
  646. __u32 assist_state;
  647. __u32 path_info;
  648. __u64 responder_addr;
  649. __u64 requestor_addr;
  650. __u64 fr[32];
  651. };
  652. #endif /* __ASSEMBLY__ */
  653. /* flags of the device_path (see below) */
  654. #define PF_AUTOBOOT 0x80
  655. #define PF_AUTOSEARCH 0x40
  656. #define PF_TIMER 0x0F
  657. #ifndef __ASSEMBLY__
  658. struct device_path { /* page 1-69 */
  659. unsigned char flags; /* flags see above! */
  660. unsigned char bc[6]; /* bus converter routing info */
  661. unsigned char mod;
  662. unsigned int  layers[6];/* device-specific layer-info */
  663. } __attribute__((aligned(8))) ;
  664. struct pz_device {
  665. struct device_path dp; /* see above */
  666. /* struct iomod *hpa; */
  667. unsigned int hpa; /* HPA base address */
  668. /* char *spa; */
  669. unsigned int spa; /* SPA base address */
  670. /* int (*iodc_io)(struct iomod*, ...); */
  671. unsigned int iodc_io; /* device entry point */
  672. short pad; /* reserved */
  673. unsigned short cl_class;/* see below */
  674. } __attribute__((aligned(8))) ;
  675. #endif /* __ASSEMBLY__ */
  676. /* cl_class
  677.  * page 3-33 of IO-Firmware ARS
  678.  * IODC ENTRY_INIT(Search first) RET[1]
  679.  */
  680. #define CL_NULL 0 /* invalid */
  681. #define CL_RANDOM 1 /* random access (as disk) */
  682. #define CL_SEQU 2 /* sequential access (as tape) */
  683. #define CL_DUPLEX 7 /* full-duplex point-to-point (RS-232, Net) */
  684. #define CL_KEYBD 8 /* half-duplex console (HIL Keyboard) */
  685. #define CL_DISPL 9 /* half-duplex console (display) */
  686. #define CL_FC 10 /* FiberChannel access media */
  687. #if 0
  688. /* FIXME: DEVCLASS_* duplicates CL_* (above).  Delete DEVCLASS_*? */
  689. #define DEVCLASS_RANDOM 1
  690. #define DEVCLASS_SEQU 2
  691. #define DEVCLASS_DUPLEX 7
  692. #define DEVCLASS_KEYBD 8
  693. #define DEVCLASS_DISP 9
  694. #endif
  695. /* IODC ENTRY_INIT() */
  696. #define ENTRY_INIT_SRCH_FRST 2
  697. #define ENTRY_INIT_SRCH_NEXT 3
  698. #define ENTRY_INIT_MOD_DEV 4
  699. #define ENTRY_INIT_DEV 5
  700. #define ENTRY_INIT_MOD 6
  701. #define ENTRY_INIT_MSG 9
  702. /* IODC ENTRY_IO() */
  703. #define ENTRY_IO_BOOTIN 0
  704. #define ENTRY_IO_CIN 2
  705. #define ENTRY_IO_COUT 3
  706. #define ENTRY_IO_CLOSE 4
  707. #define ENTRY_IO_GETMSG 9
  708. /* IODC ENTRY_SPA() */
  709. /* IODC ENTRY_CONFIG() */
  710. /* IODC ENTRY_TEST() */
  711. /* IODC ENTRY_TLB() */
  712. /* DEFINITION OF THE ZERO-PAGE (PAG0) */
  713. /* based on work by Jason Eckhardt (jason@equator.com) */
  714. #ifndef __ASSEMBLY__
  715. #define PAGE0   ((struct zeropage *)__PAGE_OFFSET)
  716. struct zeropage {
  717. /* [0x000] initialize vectors (VEC) */
  718. unsigned int vec_special; /* must be zero */
  719. /* int (*vec_pow_fail)(void);*/
  720. unsigned int vec_pow_fail; /* power failure handler */
  721. /* int (*vec_toc)(void); */
  722. unsigned int vec_toc;
  723. unsigned int vec_toclen;
  724. /* int (*vec_rendz)(void); */
  725. unsigned int vec_rendz;
  726. int vec_pow_fail_flen;
  727. int vec_pad[10];
  728. /* [0x040] reserved processor dependent */
  729. int pad0[112];
  730. /* [0x200] reserved */
  731. int pad1[84];
  732. /* [0x350] memory configuration (MC) */
  733. int memc_cont; /* contiguous mem size (bytes) */
  734. int memc_phsize; /* physical memory size */
  735. int memc_adsize; /* additional mem size, bytes of SPA space used by PDC */
  736. unsigned int mem_pdc_hi; /* used for 64-bit */
  737. /* [0x360] various parameters for the boot-CPU */
  738. /* unsigned int *mem_booterr[8]; */
  739. unsigned int mem_booterr[8]; /* ptr to boot errors */
  740. unsigned int mem_free; /* first location, where OS can be loaded */
  741. /* struct iomod *mem_hpa; */
  742. unsigned int mem_hpa; /* HPA of the boot-CPU */
  743. /* int (*mem_pdc)(int, ...); */
  744. unsigned int mem_pdc; /* PDC entry point */
  745. unsigned int mem_10msec; /* number of clock ticks in 10msec */
  746. /* [0x390] initial memory module (IMM) */
  747. /* struct iomod *imm_hpa; */
  748. unsigned int imm_hpa; /* HPA of the IMM */
  749. int imm_soft_boot; /* 0 = was hard boot, 1 = was soft boot */
  750. unsigned int imm_spa_size; /* SPA size of the IMM in bytes */
  751. unsigned int imm_max_mem; /* bytes of mem in IMM */
  752. /* [0x3A0] boot console, display device and keyboard */
  753. struct pz_device mem_cons; /* description of console device */
  754. struct pz_device mem_boot; /* description of boot device */
  755. struct pz_device mem_kbd; /* description of keyboard device */
  756. /* [0x430] reserved */
  757. int pad430[116];
  758. /* [0x600] processor dependent */
  759. __u32 pad600[1];
  760. __u32 proc_sti; /* pointer to STI ROM */
  761. __u32 pad608[126];
  762. };
  763. #endif /* __ASSEMBLY__ */
  764. /* Page Zero constant offsets used by the HPMC handler */
  765. #define BOOT_CONSOLE_HPA_OFFSET  0x3c0
  766. #define BOOT_CONSOLE_SPA_OFFSET  0x3c4
  767. #define BOOT_CONSOLE_PATH_OFFSET 0x3a8
  768. #ifndef __ASSEMBLY__
  769. void pdc_console_init(void); /* in pdc_console.c */
  770. void pdc_console_restart(void);
  771. void setup_pdc(void); /* in inventory.c */
  772. /* wrapper-functions from pdc.c */
  773. int pdc_add_valid(unsigned long address);
  774. int pdc_chassis_info(struct pdc_chassis_info *chassis_info, void *led_info, unsigned long len);
  775. int pdc_coproc_cfg(struct pdc_coproc_cfg *pdc_coproc_info);
  776. int pdc_iodc_read(unsigned long *actcnt, unsigned long hpa, unsigned int index,
  777.   void *iodc_data, unsigned int iodc_data_size);
  778. int pdc_system_map_find_mods(struct pdc_system_map_mod_info *pdc_mod_info,
  779.      struct pdc_module_path *mod_path, long mod_index);
  780. int pdc_system_map_find_addrs(struct pdc_system_map_addr_info *pdc_addr_info, 
  781.       long mod_index, long addr_index);
  782. int pdc_model_info(struct pdc_model *model);
  783. int pdc_model_sysmodel(char *name);
  784. int pdc_model_cpuid(unsigned long *cpu_id);
  785. int pdc_model_versions(unsigned long *versions, int id);
  786. int pdc_model_capabilities(unsigned long *capabilities);
  787. int pdc_cache_info(struct pdc_cache_info *cache);
  788. #ifndef CONFIG_PA20
  789. int pdc_btlb_info(struct pdc_btlb_info *btlb);
  790. int pdc_mem_map_hpa(struct pdc_memory_map *r_addr, struct pdc_module_path *mod_path);
  791. #endif /* !CONFIG_PA20 */
  792. int pdc_lan_station_id(char *lan_addr, unsigned long net_hpa);
  793. int pdc_pci_irt_size(unsigned long *num_entries, unsigned long hpa);
  794. int pdc_pci_irt(unsigned long num_entries, unsigned long hpa, void *tbl);
  795. int pdc_get_initiator(struct hardware_path *hwpath, unsigned char *scsi_id, unsigned long *period, char *width, char *mode);
  796. int pdc_tod_read(struct pdc_tod *tod);
  797. int pdc_tod_set(unsigned long sec, unsigned long usec);
  798. #ifdef __LP64__
  799. int pdc_mem_mem_table(struct pdc_memory_table_raddr *r_addr,
  800. struct pdc_memory_table *tbl, unsigned long entries);
  801. #endif
  802. int pdc_do_firm_test_reset(unsigned long ftc_bitmap);
  803. int pdc_do_reset(void);
  804. int pdc_soft_power_info(unsigned long *power_reg);
  805. int pdc_soft_power_button(int sw_control);
  806. void pdc_suspend_usb(void);
  807. int pdc_iodc_getc(void);
  808. void pdc_iodc_putc(unsigned char c);
  809. void pdc_iodc_outc(unsigned char c);
  810. void pdc_emergency_unlock(void);
  811. int pdc_sti_call(unsigned long func, unsigned long flags,
  812.                  unsigned long inptr, unsigned long outputr,
  813.                  unsigned long glob_cfg);
  814. #ifdef __LP64__
  815. int pdc_pat_cell_get_number(struct pdc_pat_cell_num *cell_info);
  816. int pdc_pat_cell_module(unsigned long *actcnt, unsigned long ploc, unsigned long mod,
  817. unsigned long view_type, void *mem_addr);
  818. int pdc_pat_cpu_get_number(struct pdc_pat_cpu_num *cpu_info, void *hpa);
  819. int pdc_pat_get_irt_size(unsigned long *num_entries, unsigned long cell_num);
  820. int pdc_pat_get_irt(void *r_addr, unsigned long cell_num);
  821. int pdc_pat_pd_get_addr_map(unsigned long *actual_len, void *mem_addr, 
  822.     unsigned long count, unsigned long offset);
  823. /********************************************************************
  824. * PDC_PAT_CELL[Return Cell Module] memaddr[0] conf_base_addr
  825. * ----------------------------------------------------------
  826. * Bit  0 to 51 - conf_base_addr
  827. * Bit 52 to 62 - reserved
  828. * Bit       63 - endianess bit
  829. ********************************************************************/
  830. #define PAT_GET_CBA(value) ((value) & 0xfffffffffffff000UL)
  831. /********************************************************************
  832. * PDC_PAT_CELL[Return Cell Module] memaddr[1] mod_info
  833. * ----------------------------------------------------
  834. * Bit  0 to  7 - entity type
  835. *    0 = central agent,            1 = processor,
  836. *    2 = memory controller,        3 = system bus adapter,
  837. *    4 = local bus adapter,        5 = processor bus converter,
  838. *    6 = crossbar fabric connect,  7 = fabric interconnect,
  839. *    8 to 254 reserved,            255 = unknown.
  840. * Bit  8 to 15 - DVI
  841. * Bit 16 to 23 - IOC functions
  842. * Bit 24 to 39 - reserved
  843. * Bit 40 to 63 - mod_pages
  844. *    number of 4K pages a module occupies starting at conf_base_addr
  845. ********************************************************************/
  846. #define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL)
  847. #define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL)
  848. #define PAT_GET_IOC(value) (((value) >> 40) & 0xffUL)
  849. #define PAT_GET_MOD_PAGES(value)(((value) & 0xffffffUL)
  850. #else /* !__LP64__ */
  851. /* No PAT support for 32-bit kernels...sorry */
  852. #define pdc_pat_get_irt_size(num_entries, cell_numn) PDC_BAD_PROC
  853. #define pdc_pat_get_irt(r_addr, cell_num) PDC_BAD_PROC
  854. #endif /* !__LP64__ */
  855. extern void pdc_init(void);
  856. #endif /* __ASSEMBLY__ */
  857. #endif /* _PARISC_PDC_H */