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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_PAL_H
  2. #define _ASM_IA64_PAL_H
  3. /*
  4.  * Processor Abstraction Layer definitions.
  5.  *
  6.  * This is based on Intel IA-64 Architecture Software Developer's Manual rev 1.0
  7.  * chapter 11 IA-64 Processor Abstraction Layer
  8.  *
  9.  * Copyright (C) 1998-2001 Hewlett-Packard Co
  10.  * David Mosberger-Tang <davidm@hpl.hp.com>
  11.  * Stephane Eranian <eranian@hpl.hp.com>
  12.  * Copyright (C) 1999 VA Linux Systems
  13.  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
  14.  * Copyright (C) 1999 Srinivasa Prasad Thirumalachar <sprasad@sprasad.engr.sgi.com>
  15.  *
  16.  * 99/10/01 davidm Make sure we pass zero for reserved parameters.
  17.  * 00/03/07 davidm Updated pal_cache_flush() to be in sync with PAL v2.6.
  18.  * 00/03/23     cfleck  Modified processor min-state save area to match updated PAL & SAL info
  19.  * 00/05/24     eranian Updated to latest PAL spec, fix structures bugs, added
  20.  * 00/05/25 eranian Support for stack calls, and static physical calls
  21.  * 00/06/18 eranian Support for stacked physical calls
  22.  */
  23. /*
  24.  * Note that some of these calls use a static-register only calling
  25.  * convention which has nothing to do with the regular calling
  26.  * convention.
  27.  */
  28. #define PAL_CACHE_FLUSH 1 /* flush i/d cache */
  29. #define PAL_CACHE_INFO 2 /* get detailed i/d cache info */
  30. #define PAL_CACHE_INIT 3 /* initialize i/d cache */
  31. #define PAL_CACHE_SUMMARY 4 /* get summary of cache heirarchy */
  32. #define PAL_MEM_ATTRIB 5 /* list supported memory attributes */
  33. #define PAL_PTCE_INFO 6 /* purge TLB info */
  34. #define PAL_VM_INFO 7 /* return supported virtual memory features */
  35. #define PAL_VM_SUMMARY 8 /* return summary on supported vm features */
  36. #define PAL_BUS_GET_FEATURES 9 /* return processor bus interface features settings */
  37. #define PAL_BUS_SET_FEATURES 10 /* set processor bus features */
  38. #define PAL_DEBUG_INFO 11 /* get number of debug registers */
  39. #define PAL_FIXED_ADDR 12 /* get fixed component of processors's directed address */
  40. #define PAL_FREQ_BASE 13 /* base frequency of the platform */
  41. #define PAL_FREQ_RATIOS 14 /* ratio of processor, bus and ITC frequency */
  42. #define PAL_PERF_MON_INFO 15 /* return performance monitor info */
  43. #define PAL_PLATFORM_ADDR 16 /* set processor interrupt block and IO port space addr */
  44. #define PAL_PROC_GET_FEATURES 17 /* get configurable processor features & settings */
  45. #define PAL_PROC_SET_FEATURES 18 /* enable/disable configurable processor features */
  46. #define PAL_RSE_INFO 19 /* return rse information */
  47. #define PAL_VERSION 20 /* return version of PAL code */
  48. #define PAL_MC_CLEAR_LOG 21 /* clear all processor log info */
  49. #define PAL_MC_DRAIN 22 /* drain operations which could result in an MCA */
  50. #define PAL_MC_EXPECTED 23 /* set/reset expected MCA indicator */
  51. #define PAL_MC_DYNAMIC_STATE 24 /* get processor dynamic state */
  52. #define PAL_MC_ERROR_INFO 25 /* get processor MCA info and static state */
  53. #define PAL_MC_RESUME 26 /* Return to interrupted process */
  54. #define PAL_MC_REGISTER_MEM 27 /* Register memory for PAL to use during MCAs and inits */
  55. #define PAL_HALT 28 /* enter the low power HALT state */
  56. #define PAL_HALT_LIGHT 29 /* enter the low power light halt state*/
  57. #define PAL_COPY_INFO 30 /* returns info needed to relocate PAL */
  58. #define PAL_CACHE_LINE_INIT 31 /* init tags & data of cache line */
  59. #define PAL_PMI_ENTRYPOINT 32 /* register PMI memory entry points with the processor */
  60. #define PAL_ENTER_IA_32_ENV 33 /* enter IA-32 system environment */
  61. #define PAL_VM_PAGE_SIZE 34 /* return vm TC and page walker page sizes */
  62. #define PAL_MEM_FOR_TEST 37 /* get amount of memory needed for late processor test */
  63. #define PAL_CACHE_PROT_INFO 38 /* get i/d cache protection info */
  64. #define PAL_REGISTER_INFO 39 /* return AR and CR register information*/
  65. #define PAL_SHUTDOWN 40 /* enter processor shutdown state */
  66. #define PAL_PREFETCH_VISIBILITY 41
  67. #define PAL_COPY_PAL 256 /* relocate PAL procedures and PAL PMI */
  68. #define PAL_HALT_INFO 257 /* return the low power capabilities of processor */
  69. #define PAL_TEST_PROC 258 /* perform late processor self-test */
  70. #define PAL_CACHE_READ 259 /* read tag & data of cacheline for diagnostic testing */
  71. #define PAL_CACHE_WRITE 260 /* write tag & data of cacheline for diagnostic testing */
  72. #define PAL_VM_TR_READ 261 /* read contents of translation register */
  73. #ifndef __ASSEMBLY__
  74. #include <linux/types.h>
  75. /*
  76.  * Data types needed to pass information into PAL procedures and
  77.  * interpret information returned by them.
  78.  */
  79. /* Return status from the PAL procedure */
  80. typedef s64 pal_status_t;
  81. #define PAL_STATUS_SUCCESS 0 /* No error */
  82. #define PAL_STATUS_UNIMPLEMENTED (-1) /* Unimplemented procedure */
  83. #define PAL_STATUS_EINVAL (-2) /* Invalid argument */
  84. #define PAL_STATUS_ERROR (-3) /* Error */
  85. #define PAL_STATUS_CACHE_INIT_FAIL (-4) /* Could not initialize the
  86.  * specified level and type of
  87.  * cache without sideeffects
  88.  * and "restrict" was 1
  89.  */
  90. /* Processor cache level in the heirarchy */
  91. typedef u64 pal_cache_level_t;
  92. #define PAL_CACHE_LEVEL_L0 0 /* L0 */
  93. #define PAL_CACHE_LEVEL_L1 1 /* L1 */
  94. #define PAL_CACHE_LEVEL_L2 2 /* L2 */
  95. /* Processor cache type at a particular level in the heirarchy */
  96. typedef u64 pal_cache_type_t;
  97. #define PAL_CACHE_TYPE_INSTRUCTION 1 /* Instruction cache */
  98. #define PAL_CACHE_TYPE_DATA 2 /* Data or unified cache */
  99. #define PAL_CACHE_TYPE_INSTRUCTION_DATA 3 /* Both Data & Instruction */
  100. #define PAL_CACHE_FLUSH_INVALIDATE 1 /* Invalidate clean lines */
  101. #define PAL_CACHE_FLUSH_CHK_INTRS 2 /* check for interrupts/mc while flushing */
  102. /* Processor cache line size in bytes  */
  103. typedef int pal_cache_line_size_t;
  104. /* Processor cache line state */
  105. typedef u64 pal_cache_line_state_t;
  106. #define PAL_CACHE_LINE_STATE_INVALID 0 /* Invalid */
  107. #define PAL_CACHE_LINE_STATE_SHARED 1 /* Shared */
  108. #define PAL_CACHE_LINE_STATE_EXCLUSIVE 2 /* Exclusive */
  109. #define PAL_CACHE_LINE_STATE_MODIFIED 3 /* Modified */
  110. typedef struct pal_freq_ratio {
  111. u64 den : 32, num : 32; /* numerator & denominator */
  112. } itc_ratio, proc_ratio;
  113. typedef union  pal_cache_config_info_1_s {
  114. struct {
  115. u64 u : 1, /* 0 Unified cache ? */
  116. at : 2, /* 2-1 Cache mem attr*/
  117. reserved : 5, /* 7-3 Reserved */
  118. associativity : 8, /* 16-8 Associativity*/
  119. line_size : 8, /* 23-17 Line size */
  120. stride : 8, /* 31-24 Stride */
  121. store_latency : 8, /*39-32 Store latency*/
  122. load_latency : 8, /* 47-40 Load latency*/
  123. store_hints : 8, /* 55-48 Store hints*/
  124. load_hints : 8; /* 63-56 Load hints */
  125. } pcci1_bits;
  126. u64 pcci1_data;
  127. } pal_cache_config_info_1_t;
  128. typedef union  pal_cache_config_info_2_s {
  129. struct {
  130. u64 cache_size : 32, /*cache size in bytes*/
  131. alias_boundary : 8, /* 39-32 aliased addr
  132.  * separation for max
  133.  * performance.
  134.  */
  135. tag_ls_bit : 8, /* 47-40 LSb of addr*/
  136. tag_ms_bit : 8, /* 55-48 MSb of addr*/
  137. reserved : 8; /* 63-56 Reserved */
  138. } pcci2_bits;
  139. u64 pcci2_data;
  140. } pal_cache_config_info_2_t;
  141. typedef struct pal_cache_config_info_s {
  142. pal_status_t pcci_status;
  143. pal_cache_config_info_1_t pcci_info_1;
  144. pal_cache_config_info_2_t pcci_info_2;
  145. u64 pcci_reserved;
  146. } pal_cache_config_info_t;
  147. #define pcci_ld_hints pcci_info_1.pcci1_bits.load_hints
  148. #define pcci_st_hints pcci_info_1.pcci1_bits.store_hints
  149. #define pcci_ld_latency pcci_info_1.pcci1_bits.load_latency
  150. #define pcci_st_latency pcci_info_1.pcci1_bits.store_latency
  151. #define pcci_stride pcci_info_1.pcci1_bits.stride
  152. #define pcci_line_size pcci_info_1.pcci1_bits.line_size
  153. #define pcci_assoc pcci_info_1.pcci1_bits.associativity
  154. #define pcci_cache_attr pcci_info_1.pcci1_bits.at
  155. #define pcci_unified pcci_info_1.pcci1_bits.u
  156. #define pcci_tag_msb pcci_info_2.pcci2_bits.tag_ms_bit
  157. #define pcci_tag_lsb pcci_info_2.pcci2_bits.tag_ls_bit
  158. #define pcci_alias_boundary pcci_info_2.pcci2_bits.alias_boundary
  159. #define pcci_cache_size pcci_info_2.pcci2_bits.cache_size
  160. /* Possible values for cache attributes */
  161. #define PAL_CACHE_ATTR_WT 0 /* Write through cache */
  162. #define PAL_CACHE_ATTR_WB 1 /* Write back cache */
  163. #define PAL_CACHE_ATTR_WT_OR_WB 2 /* Either write thru or write
  164.  * back depending on TLB
  165.  * memory attributes
  166.  */
  167. /* Possible values for cache hints */
  168. #define PAL_CACHE_HINT_TEMP_1 0 /* Temporal level 1 */
  169. #define PAL_CACHE_HINT_NTEMP_1 1 /* Non-temporal level 1 */
  170. #define PAL_CACHE_HINT_NTEMP_ALL 3 /* Non-temporal all levels */
  171. /* Processor cache protection  information */
  172. typedef union pal_cache_protection_element_u {
  173. u32 pcpi_data;
  174. struct {
  175. u32 data_bits : 8, /* # data bits covered by
  176.       * each unit of protection
  177.       */
  178. tagprot_lsb : 6, /* Least -do- */
  179. tagprot_msb : 6, /* Most Sig. tag address
  180.       * bit that this
  181.       * protection covers.
  182.       */
  183. prot_bits : 6, /* # of protection bits */
  184. method : 4, /* Protection method */
  185. t_d : 2; /* Indicates which part
  186.       * of the cache this
  187.       * protection encoding
  188.       * applies.
  189.       */
  190. } pcp_info;
  191. } pal_cache_protection_element_t;
  192. #define pcpi_cache_prot_part pcp_info.t_d
  193. #define pcpi_prot_method pcp_info.method
  194. #define pcpi_prot_bits pcp_info.prot_bits
  195. #define pcpi_tagprot_msb pcp_info.tagprot_msb
  196. #define pcpi_tagprot_lsb pcp_info.tagprot_lsb
  197. #define pcpi_data_bits pcp_info.data_bits
  198. /* Processor cache part encodings */
  199. #define PAL_CACHE_PROT_PART_DATA 0 /* Data protection  */
  200. #define PAL_CACHE_PROT_PART_TAG 1 /* Tag  protection */
  201. #define PAL_CACHE_PROT_PART_TAG_DATA 2 /* Tag+data protection (tag is
  202.  * more significant )
  203.  */
  204. #define PAL_CACHE_PROT_PART_DATA_TAG 3 /* Data+tag protection (data is
  205.  * more significant )
  206.  */
  207. #define PAL_CACHE_PROT_PART_MAX 6
  208. typedef struct pal_cache_protection_info_s {
  209. pal_status_t pcpi_status;
  210. pal_cache_protection_element_t pcp_info[PAL_CACHE_PROT_PART_MAX];
  211. } pal_cache_protection_info_t;
  212. /* Processor cache protection method encodings */
  213. #define PAL_CACHE_PROT_METHOD_NONE 0 /* No protection */
  214. #define PAL_CACHE_PROT_METHOD_ODD_PARITY 1 /* Odd parity */
  215. #define PAL_CACHE_PROT_METHOD_EVEN_PARITY 2 /* Even parity */
  216. #define PAL_CACHE_PROT_METHOD_ECC 3 /* ECC protection */
  217. /* Processor cache line identification in the heirarchy */
  218. typedef union pal_cache_line_id_u {
  219. u64 pclid_data;
  220. struct {
  221. u64 cache_type : 8, /* 7-0 cache type */
  222. level : 8, /* 15-8 level of the
  223.  * cache in the
  224.  * heirarchy.
  225.  */
  226. way : 8, /* 23-16 way in the set
  227.  */
  228. part : 8, /* 31-24 part of the
  229.  * cache
  230.  */
  231. reserved : 32; /* 63-32 is reserved*/
  232. } pclid_info_read;
  233. struct {
  234. u64 cache_type : 8, /* 7-0 cache type */
  235. level : 8, /* 15-8 level of the
  236.  * cache in the
  237.  * heirarchy.
  238.  */
  239. way : 8, /* 23-16 way in the set
  240.  */
  241. part : 8, /* 31-24 part of the
  242.  * cache
  243.  */
  244. mesi : 8, /* 39-32 cache line
  245.  * state
  246.  */
  247. start : 8, /* 47-40 lsb of data to
  248.  * invert
  249.  */
  250. length : 8, /* 55-48 #bits to
  251.  * invert
  252.  */
  253. trigger : 8; /* 63-56 Trigger error
  254.  * by doing a load
  255.  * after the write
  256.  */
  257. } pclid_info_write;
  258. } pal_cache_line_id_u_t;
  259. #define pclid_read_part pclid_info_read.part
  260. #define pclid_read_way pclid_info_read.way
  261. #define pclid_read_level pclid_info_read.level
  262. #define pclid_read_cache_type pclid_info_read.cache_type
  263. #define pclid_write_trigger pclid_info_write.trigger
  264. #define pclid_write_length pclid_info_write.length
  265. #define pclid_write_start pclid_info_write.start
  266. #define pclid_write_mesi pclid_info_write.mesi
  267. #define pclid_write_part pclid_info_write.part
  268. #define pclid_write_way pclid_info_write.way
  269. #define pclid_write_level pclid_info_write.level
  270. #define pclid_write_cache_type pclid_info_write.cache_type
  271. /* Processor cache line part encodings */
  272. #define PAL_CACHE_LINE_ID_PART_DATA 0 /* Data */
  273. #define PAL_CACHE_LINE_ID_PART_TAG 1 /* Tag */
  274. #define PAL_CACHE_LINE_ID_PART_DATA_PROT 2 /* Data protection */
  275. #define PAL_CACHE_LINE_ID_PART_TAG_PROT 3 /* Tag protection */
  276. #define PAL_CACHE_LINE_ID_PART_DATA_TAG_PROT 4 /* Data+tag
  277.  * protection
  278.  */
  279. typedef struct pal_cache_line_info_s {
  280. pal_status_t pcli_status; /* Return status of the read cache line
  281.  * info call.
  282.  */
  283. u64 pcli_data; /* 64-bit data, tag, protection bits .. */
  284. u64 pcli_data_len; /* data length in bits */
  285. pal_cache_line_state_t pcli_cache_line_state; /* mesi state */
  286. } pal_cache_line_info_t;
  287. /* Machine Check related crap */
  288. /* Pending event status bits  */
  289. typedef u64 pal_mc_pending_events_t;
  290. #define PAL_MC_PENDING_MCA (1 << 0)
  291. #define PAL_MC_PENDING_INIT (1 << 1)
  292. /* Error information type */
  293. typedef u64 pal_mc_info_index_t;
  294. #define PAL_MC_INFO_PROCESSOR 0 /* Processor */
  295. #define PAL_MC_INFO_CACHE_CHECK 1 /* Cache check */
  296. #define PAL_MC_INFO_TLB_CHECK 2 /* Tlb check */
  297. #define PAL_MC_INFO_BUS_CHECK 3 /* Bus check */
  298. #define PAL_MC_INFO_REQ_ADDR 4 /* Requestor address */
  299. #define PAL_MC_INFO_RESP_ADDR 5 /* Responder address */
  300. #define PAL_MC_INFO_TARGET_ADDR 6 /* Target address */
  301. #define PAL_MC_INFO_IMPL_DEP 7 /* Implementation
  302.  * dependent
  303.  */
  304. typedef struct pal_process_state_info_s {
  305. u64 reserved1 : 2,
  306. rz : 1, /* PAL_CHECK processor
  307.  * rendezvous
  308.  * successful.
  309.  */
  310. ra : 1, /* PAL_CHECK attempted
  311.  * a rendezvous.
  312.  */
  313. me : 1, /* Distinct multiple
  314.  * errors occurred
  315.  */
  316. mn : 1, /* Min. state save
  317.  * area has been
  318.  * registered with PAL
  319.  */
  320. sy : 1, /* Storage integrity
  321.  * synched
  322.  */
  323. co : 1, /* Continuable */
  324. ci : 1, /* MC isolated */
  325. us : 1, /* Uncontained storage
  326.  * damage.
  327.  */
  328. hd : 1, /* Non-essential hw
  329.  * lost (no loss of
  330.  * functionality)
  331.  * causing the
  332.  * processor to run in
  333.  * degraded mode.
  334.  */
  335. tl : 1, /* 1 => MC occurred
  336.  * after an instr was
  337.  * executed but before
  338.  * the trap that
  339.  * resulted from instr
  340.  * execution was
  341.  * generated.
  342.  * (Trap Lost )
  343.  */
  344. op : 3, /* Operation that
  345.  * caused the machine
  346.  * check
  347.  */
  348. dy : 1, /* Processor dynamic
  349.  * state valid
  350.  */
  351. in : 1, /* 0 = MC, 1 = INIT */
  352. rs : 1, /* RSE valid */
  353. cm : 1, /* MC corrected */
  354. ex : 1, /* MC is expected */
  355. cr : 1, /* Control regs valid*/
  356. pc : 1, /* Perf cntrs valid */
  357. dr : 1, /* Debug regs valid */
  358. tr : 1, /* Translation regs
  359.  * valid
  360.  */
  361. rr : 1, /* Region regs valid */
  362. ar : 1, /* App regs valid */
  363. br : 1, /* Branch regs valid */
  364. pr : 1, /* Predicate registers
  365.  * valid
  366.  */
  367. fp : 1, /* fp registers valid*/
  368. b1 : 1, /* Preserved bank one
  369.  * general registers
  370.  * are valid
  371.  */
  372. b0 : 1, /* Preserved bank zero
  373.  * general registers
  374.  * are valid
  375.  */
  376. gr : 1, /* General registers
  377.  * are valid
  378.  * (excl. banked regs)
  379.  */
  380. dsize : 16, /* size of dynamic
  381.  * state returned
  382.  * by the processor
  383.  */
  384. reserved2 : 12,
  385. cc : 1, /* Cache check */
  386. tc : 1, /* TLB check */
  387. bc : 1, /* Bus check */
  388. uc : 1; /* Unknown check */
  389. } pal_processor_state_info_t;
  390. typedef struct pal_cache_check_info_s {
  391. u64 reserved1 : 16,
  392. way : 5, /* Way in which the
  393.  * error occurred
  394.  */
  395. reserved2 : 1,
  396. mc : 1, /* Machine check corrected */
  397. tv : 1, /* Target address
  398.  * structure is valid
  399.  */
  400. wv : 1, /* Way field valid */
  401. op : 3, /* Type of cache
  402.  * operation that
  403.  * caused the machine
  404.  * check.
  405.  */
  406. dl : 1, /* Failure in data part
  407.  * of cache line
  408.  */
  409. tl : 1, /* Failure in tag part
  410.  * of cache line
  411.  */
  412. dc : 1, /* Failure in dcache */
  413. ic : 1, /* Failure in icache */
  414. index : 24, /* Cache line index */
  415. mv : 1, /* mesi valid */
  416. mesi : 3, /* Cache line state */
  417. level : 4; /* Cache level */
  418. } pal_cache_check_info_t;
  419. typedef struct pal_tlb_check_info_s {
  420. u64 tr_slot : 8, /* Slot# of TR where
  421.  * error occurred
  422.  */
  423. reserved2 : 8,
  424. dtr : 1, /* Fail in data TR */
  425. itr : 1, /* Fail in inst TR */
  426. dtc : 1, /* Fail in data TC */
  427. itc : 1, /* Fail in inst. TC */
  428. mc : 1, /* Machine check corrected */
  429. reserved1 : 43;
  430. } pal_tlb_check_info_t;
  431. typedef struct pal_bus_check_info_s {
  432. u64 size : 5, /* Xaction size*/
  433. ib : 1, /* Internal bus error */
  434. eb : 1, /* External bus error */
  435. cc : 1, /* Error occurred
  436.  * during cache-cache
  437.  * transfer.
  438.  */
  439. type : 8, /* Bus xaction type*/
  440. sev : 5, /* Bus error severity*/
  441. tv : 1, /* Targ addr valid */
  442. rp : 1, /* Resp addr valid */
  443. rq : 1, /* Req addr valid */
  444. bsi : 8, /* Bus error status
  445.  * info
  446.  */
  447. mc : 1, /* Machine check corrected */
  448. reserved1 : 31;
  449. } pal_bus_check_info_t;
  450. typedef union pal_mc_error_info_u {
  451. u64 pmei_data;
  452. pal_processor_state_info_t pme_processor;
  453. pal_cache_check_info_t pme_cache;
  454. pal_tlb_check_info_t pme_tlb;
  455. pal_bus_check_info_t pme_bus;
  456. } pal_mc_error_info_t;
  457. #define pmci_proc_unknown_check pme_processor.uc
  458. #define pmci_proc_bus_check pme_processor.bc
  459. #define pmci_proc_tlb_check pme_processor.tc
  460. #define pmci_proc_cache_check pme_processor.cc
  461. #define pmci_proc_dynamic_state_size pme_processor.dsize
  462. #define pmci_proc_gpr_valid pme_processor.gr
  463. #define pmci_proc_preserved_bank0_gpr_valid pme_processor.b0
  464. #define pmci_proc_preserved_bank1_gpr_valid pme_processor.b1
  465. #define pmci_proc_fp_valid pme_processor.fp
  466. #define pmci_proc_predicate_regs_valid pme_processor.pr
  467. #define pmci_proc_branch_regs_valid pme_processor.br
  468. #define pmci_proc_app_regs_valid pme_processor.ar
  469. #define pmci_proc_region_regs_valid pme_processor.rr
  470. #define pmci_proc_translation_regs_valid pme_processor.tr
  471. #define pmci_proc_debug_regs_valid pme_processor.dr
  472. #define pmci_proc_perf_counters_valid pme_processor.pc
  473. #define pmci_proc_control_regs_valid pme_processor.cr
  474. #define pmci_proc_machine_check_expected pme_processor.ex
  475. #define pmci_proc_machine_check_corrected pme_processor.cm
  476. #define pmci_proc_rse_valid pme_processor.rs
  477. #define pmci_proc_machine_check_or_init pme_processor.in
  478. #define pmci_proc_dynamic_state_valid pme_processor.dy
  479. #define pmci_proc_operation pme_processor.op
  480. #define pmci_proc_trap_lost pme_processor.tl
  481. #define pmci_proc_hardware_damage pme_processor.hd
  482. #define pmci_proc_uncontained_storage_damage pme_processor.us
  483. #define pmci_proc_machine_check_isolated pme_processor.ci
  484. #define pmci_proc_continuable pme_processor.co
  485. #define pmci_proc_storage_intergrity_synced pme_processor.sy
  486. #define pmci_proc_min_state_save_area_regd pme_processor.mn
  487. #define pmci_proc_distinct_multiple_errors pme_processor.me
  488. #define pmci_proc_pal_attempted_rendezvous pme_processor.ra
  489. #define pmci_proc_pal_rendezvous_complete pme_processor.rz
  490. #define pmci_cache_level pme_cache.level
  491. #define pmci_cache_line_state pme_cache.mesi
  492. #define pmci_cache_line_state_valid pme_cache.mv
  493. #define pmci_cache_line_index pme_cache.index
  494. #define pmci_cache_instr_cache_fail pme_cache.ic
  495. #define pmci_cache_data_cache_fail pme_cache.dc
  496. #define pmci_cache_line_tag_fail pme_cache.tl
  497. #define pmci_cache_line_data_fail pme_cache.dl
  498. #define pmci_cache_operation pme_cache.op
  499. #define pmci_cache_way_valid pme_cache.wv
  500. #define pmci_cache_target_address_valid pme_cache.tv
  501. #define pmci_cache_way pme_cache.way
  502. #define pmci_cache_mc pme_cache.mc
  503. #define pmci_tlb_instr_translation_cache_fail pme_tlb.itc
  504. #define pmci_tlb_data_translation_cache_fail pme_tlb.dtc
  505. #define pmci_tlb_instr_translation_reg_fail pme_tlb.itr
  506. #define pmci_tlb_data_translation_reg_fail pme_tlb.dtr
  507. #define pmci_tlb_translation_reg_slot pme_tlb.tr_slot
  508. #define pmci_tlb_mc pme_tlb.mc
  509. #define pmci_bus_status_info pme_bus.bsi
  510. #define pmci_bus_req_address_valid pme_bus.rq
  511. #define pmci_bus_resp_address_valid pme_bus.rp
  512. #define pmci_bus_target_address_valid pme_bus.tv
  513. #define pmci_bus_error_severity pme_bus.sev
  514. #define pmci_bus_transaction_type pme_bus.type
  515. #define pmci_bus_cache_cache_transfer pme_bus.cc
  516. #define pmci_bus_transaction_size pme_bus.size
  517. #define pmci_bus_internal_error pme_bus.ib
  518. #define pmci_bus_external_error pme_bus.eb
  519. #define pmci_bus_mc pme_bus.mc
  520. /*
  521.  * NOTE: this min_state_save area struct only includes the 1KB
  522.  * architectural state save area.  The other 3 KB is scratch space
  523.  * for PAL.
  524.  */
  525. typedef struct pal_min_state_area_s {
  526. u64 pmsa_nat_bits; /* nat bits for saved GRs  */
  527. u64 pmsa_gr[15]; /* GR1 - GR15    */
  528. u64 pmsa_bank0_gr[16]; /* GR16 - GR31    */
  529. u64 pmsa_bank1_gr[16]; /* GR16 - GR31    */
  530. u64 pmsa_pr; /* predicate registers    */
  531. u64 pmsa_br0; /* branch register 0    */
  532. u64 pmsa_rsc; /* ar.rsc    */
  533. u64 pmsa_iip; /* cr.iip    */
  534. u64 pmsa_ipsr; /* cr.ipsr    */
  535. u64 pmsa_ifs; /* cr.ifs    */
  536. u64 pmsa_xip; /* previous iip    */
  537. u64 pmsa_xpsr; /* previous psr    */
  538. u64 pmsa_xfs; /* previous ifs    */
  539. u64 pmsa_reserved[71]; /* pal_min_state_area should total to 1KB */
  540. } pal_min_state_area_t;
  541. struct ia64_pal_retval {
  542. /*
  543.  * A zero status value indicates call completed without error.
  544.  * A negative status value indicates reason of call failure.
  545.  * A positive status value indicates success but an
  546.  * informational value should be printed (e.g., "reboot for
  547.  * change to take effect").
  548.  */
  549. s64 status;
  550. u64 v0;
  551. u64 v1;
  552. u64 v2;
  553. };
  554. /*
  555.  * Note: Currently unused PAL arguments are generally labeled
  556.  * "reserved" so the value specified in the PAL documentation
  557.  * (generally 0) MUST be passed.  Reserved parameters are not optional
  558.  * parameters.
  559.  */
  560. extern struct ia64_pal_retval ia64_pal_call_static (u64, u64, u64, u64, u64);
  561. extern struct ia64_pal_retval ia64_pal_call_stacked (u64, u64, u64, u64);
  562. extern struct ia64_pal_retval ia64_pal_call_phys_static (u64, u64, u64, u64);
  563. extern struct ia64_pal_retval ia64_pal_call_phys_stacked (u64, u64, u64, u64);
  564. #define PAL_CALL(iprv,a0,a1,a2,a3) iprv = ia64_pal_call_static(a0, a1, a2, a3, 0)
  565. #define PAL_CALL_IC_OFF(iprv,a0,a1,a2,a3) iprv = ia64_pal_call_static(a0, a1, a2, a3, 1)
  566. #define PAL_CALL_STK(iprv,a0,a1,a2,a3) iprv = ia64_pal_call_stacked(a0, a1, a2, a3)
  567. #define PAL_CALL_PHYS(iprv,a0,a1,a2,a3) iprv = ia64_pal_call_phys_static(a0, a1, a2, a3)
  568. #define PAL_CALL_PHYS_STK(iprv,a0,a1,a2,a3) iprv = ia64_pal_call_phys_stacked(a0, a1, a2, a3)
  569. typedef int (*ia64_pal_handler) (u64, ...);
  570. extern ia64_pal_handler ia64_pal;
  571. extern void ia64_pal_handler_init (void *);
  572. extern ia64_pal_handler ia64_pal;
  573. extern pal_cache_config_info_t l0d_cache_config_info;
  574. extern pal_cache_config_info_t l0i_cache_config_info;
  575. extern pal_cache_config_info_t l1_cache_config_info;
  576. extern pal_cache_config_info_t l2_cache_config_info;
  577. extern pal_cache_protection_info_t l0d_cache_protection_info;
  578. extern pal_cache_protection_info_t l0i_cache_protection_info;
  579. extern pal_cache_protection_info_t l1_cache_protection_info;
  580. extern pal_cache_protection_info_t l2_cache_protection_info;
  581. extern pal_cache_config_info_t pal_cache_config_info_get(pal_cache_level_t,
  582.   pal_cache_type_t);
  583. extern pal_cache_protection_info_t pal_cache_protection_info_get(pal_cache_level_t,
  584.       pal_cache_type_t);
  585. extern void pal_error(int);
  586. /* Useful wrappers for the current list of pal procedures */
  587. typedef union pal_bus_features_u {
  588. u64 pal_bus_features_val;
  589. struct {
  590. u64 pbf_reserved1 : 29;
  591. u64 pbf_req_bus_parking : 1;
  592. u64 pbf_bus_lock_mask : 1;
  593. u64 pbf_enable_half_xfer_rate : 1;
  594. u64 pbf_reserved2 : 22;
  595. u64 pbf_disable_xaction_queueing : 1;
  596. u64 pbf_disable_resp_err_check : 1;
  597. u64 pbf_disable_berr_check : 1;
  598. u64 pbf_disable_bus_req_internal_err_signal : 1;
  599. u64 pbf_disable_bus_req_berr_signal : 1;
  600. u64 pbf_disable_bus_init_event_check : 1;
  601. u64 pbf_disable_bus_init_event_signal : 1;
  602. u64 pbf_disable_bus_addr_err_check : 1;
  603. u64 pbf_disable_bus_addr_err_signal : 1;
  604. u64 pbf_disable_bus_data_err_check : 1;
  605. } pal_bus_features_s;
  606. } pal_bus_features_u_t;
  607. extern void pal_bus_features_print (u64);
  608. /* Provide information about configurable processor bus features */
  609. static inline s64
  610. ia64_pal_bus_get_features (pal_bus_features_u_t *features_avail,
  611.    pal_bus_features_u_t *features_status,
  612.    pal_bus_features_u_t *features_control)
  613. {
  614. struct ia64_pal_retval iprv;
  615. PAL_CALL_PHYS(iprv, PAL_BUS_GET_FEATURES, 0, 0, 0);
  616. if (features_avail)
  617. features_avail->pal_bus_features_val = iprv.v0;
  618. if (features_status)
  619. features_status->pal_bus_features_val = iprv.v1;
  620. if (features_control)
  621. features_control->pal_bus_features_val = iprv.v2;
  622. return iprv.status;
  623. }
  624. /* Enables/disables specific processor bus features */
  625. static inline s64
  626. ia64_pal_bus_set_features (pal_bus_features_u_t feature_select)
  627. {
  628. struct ia64_pal_retval iprv;
  629. PAL_CALL_PHYS(iprv, PAL_BUS_SET_FEATURES, feature_select.pal_bus_features_val, 0, 0);
  630. return iprv.status;
  631. }
  632. /* Get detailed cache information */
  633. static inline s64
  634. ia64_pal_cache_config_info (u64 cache_level, u64 cache_type, pal_cache_config_info_t *conf)
  635. {
  636. struct ia64_pal_retval iprv;
  637. PAL_CALL(iprv, PAL_CACHE_INFO, cache_level, cache_type, 0);
  638. if (iprv.status == 0) {
  639. conf->pcci_status                 = iprv.status;
  640. conf->pcci_info_1.pcci1_data      = iprv.v0;
  641. conf->pcci_info_2.pcci2_data      = iprv.v1;
  642. conf->pcci_reserved               = iprv.v2;
  643. }
  644. return iprv.status;
  645. }
  646. /* Get detailed cche protection information */
  647. static inline s64
  648. ia64_pal_cache_prot_info (u64 cache_level, u64 cache_type, pal_cache_protection_info_t *prot)
  649. {
  650. struct ia64_pal_retval iprv;
  651. PAL_CALL(iprv, PAL_CACHE_PROT_INFO, cache_level, cache_type, 0);
  652. if (iprv.status == 0) {
  653. prot->pcpi_status           = iprv.status;
  654. prot->pcp_info[0].pcpi_data = iprv.v0 & 0xffffffff;
  655. prot->pcp_info[1].pcpi_data = iprv.v0 >> 32;
  656. prot->pcp_info[2].pcpi_data = iprv.v1 & 0xffffffff;
  657. prot->pcp_info[3].pcpi_data = iprv.v1 >> 32;
  658. prot->pcp_info[4].pcpi_data = iprv.v2 & 0xffffffff;
  659. prot->pcp_info[5].pcpi_data = iprv.v2 >> 32;
  660. }
  661. return iprv.status;
  662. }
  663. /*
  664.  * Flush the processor instruction or data caches.  *PROGRESS must be
  665.  * initialized to zero before calling this for the first time..
  666.  */
  667. static inline s64
  668. ia64_pal_cache_flush (u64 cache_type, u64 invalidate, u64 *progress, u64 *vector)
  669. {
  670. struct ia64_pal_retval iprv;
  671. PAL_CALL_IC_OFF(iprv, PAL_CACHE_FLUSH, cache_type, invalidate, *progress);
  672. if (vector)
  673. *vector = iprv.v0;
  674. *progress = iprv.v1;
  675. return iprv.status;
  676. }
  677. /* Initialize the processor controlled caches */
  678. static inline s64
  679. ia64_pal_cache_init (u64 level, u64 cache_type, u64 restrict)
  680. {
  681. struct ia64_pal_retval iprv;
  682. PAL_CALL(iprv, PAL_CACHE_INIT, level, cache_type, restrict);
  683. return iprv.status;
  684. }
  685. /* Initialize the tags and data of a data or unified cache line of
  686.  * processor controlled cache to known values without the availability
  687.  * of backing memory.
  688.  */
  689. static inline s64
  690. ia64_pal_cache_line_init (u64 physical_addr, u64 data_value)
  691. {
  692. struct ia64_pal_retval iprv;
  693. PAL_CALL(iprv, PAL_CACHE_LINE_INIT, physical_addr, data_value, 0);
  694. return iprv.status;
  695. }
  696. /* Read the data and tag of a processor controlled cache line for diags */
  697. static inline s64
  698. ia64_pal_cache_read (pal_cache_line_id_u_t line_id, u64 physical_addr)
  699. {
  700. struct ia64_pal_retval iprv;
  701. PAL_CALL(iprv, PAL_CACHE_READ, line_id.pclid_data, physical_addr, 0);
  702. return iprv.status;
  703. }
  704. /* Return summary information about the heirarchy of caches controlled by the processor */
  705. static inline s64
  706. ia64_pal_cache_summary (u64 *cache_levels, u64 *unique_caches)
  707. {
  708. struct ia64_pal_retval iprv;
  709. PAL_CALL(iprv, PAL_CACHE_SUMMARY, 0, 0, 0);
  710. if (cache_levels)
  711. *cache_levels = iprv.v0;
  712. if (unique_caches)
  713. *unique_caches = iprv.v1;
  714. return iprv.status;
  715. }
  716. /* Write the data and tag of a processor-controlled cache line for diags */
  717. static inline s64
  718. ia64_pal_cache_write (pal_cache_line_id_u_t line_id, u64 physical_addr, u64 data)
  719. {
  720. struct ia64_pal_retval iprv;
  721. PAL_CALL(iprv, PAL_CACHE_WRITE, line_id.pclid_data, physical_addr, data);
  722. return iprv.status;
  723. }
  724. /* Return the parameters needed to copy relocatable PAL procedures from ROM to memory */
  725. static inline s64
  726. ia64_pal_copy_info (u64 copy_type, u64 num_procs, u64 num_iopics,
  727.     u64 *buffer_size, u64 *buffer_align)
  728. {
  729. struct ia64_pal_retval iprv;
  730. PAL_CALL(iprv, PAL_COPY_INFO, copy_type, num_procs, num_iopics);
  731. if (buffer_size)
  732. *buffer_size = iprv.v0;
  733. if (buffer_align)
  734. *buffer_align = iprv.v1;
  735. return iprv.status;
  736. }
  737. /* Copy relocatable PAL procedures from ROM to memory */
  738. static inline s64
  739. ia64_pal_copy_pal (u64 target_addr, u64 alloc_size, u64 processor, u64 *pal_proc_offset)
  740. {
  741. struct ia64_pal_retval iprv;
  742. PAL_CALL(iprv, PAL_COPY_PAL, target_addr, alloc_size, processor);
  743. if (pal_proc_offset)
  744. *pal_proc_offset = iprv.v0;
  745. return iprv.status;
  746. }
  747. /* Return the number of instruction and data debug register pairs */
  748. static inline s64
  749. ia64_pal_debug_info (u64 *inst_regs,  u64 *data_regs)
  750. {
  751. struct ia64_pal_retval iprv;
  752. PAL_CALL(iprv, PAL_DEBUG_INFO, 0, 0, 0);
  753. if (inst_regs)
  754. *inst_regs = iprv.v0;
  755. if (data_regs)
  756. *data_regs = iprv.v1;
  757. return iprv.status;
  758. }
  759. #ifdef TBD
  760. /* Switch from IA64-system environment to IA-32 system environment */
  761. static inline s64
  762. ia64_pal_enter_ia32_env (ia32_env1, ia32_env2, ia32_env3)
  763. {
  764. struct ia64_pal_retval iprv;
  765. PAL_CALL(iprv, PAL_ENTER_IA_32_ENV, ia32_env1, ia32_env2, ia32_env3);
  766. return iprv.status;
  767. }
  768. #endif
  769. /* Get unique geographical address of this processor on its bus */
  770. static inline s64
  771. ia64_pal_fixed_addr (u64 *global_unique_addr)
  772. {
  773. struct ia64_pal_retval iprv;
  774. PAL_CALL(iprv, PAL_FIXED_ADDR, 0, 0, 0);
  775. if (global_unique_addr)
  776. *global_unique_addr = iprv.v0;
  777. return iprv.status;
  778. }
  779. /* Get base frequency of the platform if generated by the processor */
  780. static inline s64
  781. ia64_pal_freq_base (u64 *platform_base_freq)
  782. {
  783. struct ia64_pal_retval iprv;
  784. PAL_CALL(iprv, PAL_FREQ_BASE, 0, 0, 0);
  785. if (platform_base_freq)
  786. *platform_base_freq = iprv.v0;
  787. return iprv.status;
  788. }
  789. /*
  790.  * Get the ratios for processor frequency, bus frequency and interval timer to
  791.  * to base frequency of the platform
  792.  */
  793. static inline s64
  794. ia64_pal_freq_ratios (struct pal_freq_ratio *proc_ratio, struct pal_freq_ratio *bus_ratio,
  795.       struct pal_freq_ratio *itc_ratio)
  796. {
  797. struct ia64_pal_retval iprv;
  798. PAL_CALL(iprv, PAL_FREQ_RATIOS, 0, 0, 0);
  799. if (proc_ratio)
  800. *(u64 *)proc_ratio = iprv.v0;
  801. if (bus_ratio)
  802. *(u64 *)bus_ratio = iprv.v1;
  803. if (itc_ratio)
  804. *(u64 *)itc_ratio = iprv.v2;
  805. return iprv.status;
  806. }
  807. /* Make the processor enter HALT or one of the implementation dependent low
  808.  * power states where prefetching and execution are suspended and cache and
  809.  * TLB coherency is not maintained.
  810.  */
  811. static inline s64
  812. ia64_pal_halt (u64 halt_state)
  813. {
  814. struct ia64_pal_retval iprv;
  815. PAL_CALL(iprv, PAL_HALT, halt_state, 0, 0);
  816. return iprv.status;
  817. }
  818. typedef union pal_power_mgmt_info_u {
  819. u64 ppmi_data;
  820. struct {
  821.        u64 exit_latency : 16,
  822. entry_latency : 16,
  823. power_consumption : 28,
  824. im : 1,
  825. co : 1,
  826. reserved : 2;
  827. } pal_power_mgmt_info_s;
  828. } pal_power_mgmt_info_u_t;
  829. /* Return information about processor's optional power management capabilities. */
  830. static inline s64
  831. ia64_pal_halt_info (pal_power_mgmt_info_u_t *power_buf)
  832. {
  833. struct ia64_pal_retval iprv;
  834. PAL_CALL_STK(iprv, PAL_HALT_INFO, (unsigned long) power_buf, 0, 0);
  835. return iprv.status;
  836. }
  837. /* Cause the processor to enter LIGHT HALT state, where prefetching and execution are
  838.  * suspended, but cache and TLB coherency is maintained.
  839.  */
  840. static inline s64
  841. ia64_pal_halt_light (void)
  842. {
  843. struct ia64_pal_retval iprv;
  844. PAL_CALL(iprv, PAL_HALT_LIGHT, 0, 0, 0);
  845. return iprv.status;
  846. }
  847. /* Clear all the processor error logging   registers and reset the indicator that allows
  848.  * the error logging registers to be written. This procedure also checks the pending
  849.  * machine check bit and pending INIT bit and reports their states.
  850.  */
  851. static inline s64
  852. ia64_pal_mc_clear_log (u64 *pending_vector)
  853. {
  854. struct ia64_pal_retval iprv;
  855. PAL_CALL(iprv, PAL_MC_CLEAR_LOG, 0, 0, 0);
  856. if (pending_vector)
  857. *pending_vector = iprv.v0;
  858. return iprv.status;
  859. }
  860. /* Ensure that all outstanding transactions in a processor are completed or that any
  861.  * MCA due to thes outstanding transaction is taken.
  862.  */
  863. static inline s64
  864. ia64_pal_mc_drain (void)
  865. {
  866. struct ia64_pal_retval iprv;
  867. PAL_CALL(iprv, PAL_MC_DRAIN, 0, 0, 0);
  868. return iprv.status;
  869. }
  870. /* Return the machine check dynamic processor state */
  871. static inline s64
  872. ia64_pal_mc_dynamic_state (u64 offset, u64 *size, u64 *pds)
  873. {
  874. struct ia64_pal_retval iprv;
  875. PAL_CALL(iprv, PAL_MC_DYNAMIC_STATE, offset, 0, 0);
  876. if (size)
  877. *size = iprv.v0;
  878. if (pds)
  879. *pds = iprv.v1;
  880. return iprv.status;
  881. }
  882. /* Return processor machine check information */
  883. static inline s64
  884. ia64_pal_mc_error_info (u64 info_index, u64 type_index, u64 *size, u64 *error_info)
  885. {
  886. struct ia64_pal_retval iprv;
  887. PAL_CALL(iprv, PAL_MC_ERROR_INFO, info_index, type_index, 0);
  888. if (size)
  889. *size = iprv.v0;
  890. if (error_info)
  891. *error_info = iprv.v1;
  892. return iprv.status;
  893. }
  894. /* Inform PALE_CHECK whether a machine check is expected so that PALE_CHECK willnot
  895.  * attempt to correct any expected machine checks.
  896.  */
  897. static inline s64
  898. ia64_pal_mc_expected (u64 expected, u64 *previous)
  899. {
  900. struct ia64_pal_retval iprv;
  901. PAL_CALL(iprv, PAL_MC_EXPECTED, expected, 0, 0);
  902. if (previous)
  903. *previous = iprv.v0;
  904. return iprv.status;
  905. }
  906. /* Register a platform dependent location with PAL to which it can save
  907.  * minimal processor state in the event of a machine check or initialization
  908.  * event.
  909.  */
  910. static inline s64
  911. ia64_pal_mc_register_mem (u64 physical_addr)
  912. {
  913. struct ia64_pal_retval iprv;
  914. PAL_CALL(iprv, PAL_MC_REGISTER_MEM, physical_addr, 0, 0);
  915. return iprv.status;
  916. }
  917. /* Restore minimal architectural processor state, set CMC interrupt if necessary
  918.  * and resume execution
  919.  */
  920. static inline s64
  921. ia64_pal_mc_resume (u64 set_cmci, u64 save_ptr)
  922. {
  923. struct ia64_pal_retval iprv;
  924. PAL_CALL(iprv, PAL_MC_RESUME, set_cmci, save_ptr, 0);
  925. return iprv.status;
  926. }
  927. /* Return the memory attributes implemented by the processor */
  928. static inline s64
  929. ia64_pal_mem_attrib (u64 *mem_attrib)
  930. {
  931. struct ia64_pal_retval iprv;
  932. PAL_CALL(iprv, PAL_MEM_ATTRIB, 0, 0, 0);
  933. if (mem_attrib)
  934. *mem_attrib = iprv.v0 & 0xff;
  935. return iprv.status;
  936. }
  937. /* Return the amount of memory needed for second phase of processor
  938.  * self-test and the required alignment of memory.
  939.  */
  940. static inline s64
  941. ia64_pal_mem_for_test (u64 *bytes_needed, u64 *alignment)
  942. {
  943. struct ia64_pal_retval iprv;
  944. PAL_CALL(iprv, PAL_MEM_FOR_TEST, 0, 0, 0);
  945. if (bytes_needed)
  946. *bytes_needed = iprv.v0;
  947. if (alignment)
  948. *alignment = iprv.v1;
  949. return iprv.status;
  950. }
  951. typedef union pal_perf_mon_info_u {
  952. u64   ppmi_data;
  953. struct {
  954.        u64 generic : 8,
  955. width : 8,
  956. cycles : 8,
  957. retired : 8,
  958. reserved : 32;
  959. } pal_perf_mon_info_s;
  960. } pal_perf_mon_info_u_t;
  961. /* Return the performance monitor information about what can be counted
  962.  * and how to configure the monitors to count the desired events.
  963.  */
  964. static inline s64
  965. ia64_pal_perf_mon_info (u64 *pm_buffer, pal_perf_mon_info_u_t *pm_info)
  966. {
  967. struct ia64_pal_retval iprv;
  968. PAL_CALL(iprv, PAL_PERF_MON_INFO, (unsigned long) pm_buffer, 0, 0);
  969. if (pm_info)
  970. pm_info->ppmi_data = iprv.v0;
  971. return iprv.status;
  972. }
  973. /* Specifies the physical address of the processor interrupt block
  974.  * and I/O port space.
  975.  */
  976. static inline s64
  977. ia64_pal_platform_addr (u64 type, u64 physical_addr)
  978. {
  979. struct ia64_pal_retval iprv;
  980. PAL_CALL(iprv, PAL_PLATFORM_ADDR, type, physical_addr, 0);
  981. return iprv.status;
  982. }
  983. /* Set the SAL PMI entrypoint in memory */
  984. static inline s64
  985. ia64_pal_pmi_entrypoint (u64 sal_pmi_entry_addr)
  986. {
  987. struct ia64_pal_retval iprv;
  988. PAL_CALL(iprv, PAL_PMI_ENTRYPOINT, sal_pmi_entry_addr, 0, 0);
  989. return iprv.status;
  990. }
  991. struct pal_features_s;
  992. /* Provide information about configurable processor features */
  993. static inline s64
  994. ia64_pal_proc_get_features (u64 *features_avail,
  995.     u64 *features_status,
  996.     u64 *features_control)
  997. {
  998. struct ia64_pal_retval iprv;
  999. PAL_CALL_PHYS(iprv, PAL_PROC_GET_FEATURES, 0, 0, 0);
  1000. if (iprv.status == 0) {
  1001. *features_avail   = iprv.v0;
  1002. *features_status  = iprv.v1;
  1003. *features_control = iprv.v2;
  1004. }
  1005. return iprv.status;
  1006. }
  1007. /* Enable/disable processor dependent features */
  1008. static inline s64
  1009. ia64_pal_proc_set_features (u64 feature_select)
  1010. {
  1011. struct ia64_pal_retval iprv;
  1012. PAL_CALL_PHYS(iprv, PAL_PROC_SET_FEATURES, feature_select, 0, 0);
  1013. return iprv.status;
  1014. }
  1015. /*
  1016.  * Put everything in a struct so we avoid the global offset table whenever
  1017.  * possible.
  1018.  */
  1019. typedef struct ia64_ptce_info_s {
  1020. u64 base;
  1021. u32 count[2];
  1022. u32 stride[2];
  1023. } ia64_ptce_info_t;
  1024. /* Return the information required for the architected loop used to purge
  1025.  * (initialize) the entire TC
  1026.  */
  1027. static inline s64
  1028. ia64_get_ptce (ia64_ptce_info_t *ptce)
  1029. {
  1030. struct ia64_pal_retval iprv;
  1031. if (!ptce)
  1032. return -1;
  1033. PAL_CALL(iprv, PAL_PTCE_INFO, 0, 0, 0);
  1034. if (iprv.status == 0) {
  1035. ptce->base = iprv.v0;
  1036. ptce->count[0] = iprv.v1 >> 32;
  1037. ptce->count[1] = iprv.v1 & 0xffffffff;
  1038. ptce->stride[0] = iprv.v2 >> 32;
  1039. ptce->stride[1] = iprv.v2 & 0xffffffff;
  1040. }
  1041. return iprv.status;
  1042. }
  1043. /* Return info about implemented application and control registers. */
  1044. static inline s64
  1045. ia64_pal_register_info (u64 info_request, u64 *reg_info_1, u64 *reg_info_2)
  1046. {
  1047. struct ia64_pal_retval iprv;
  1048. PAL_CALL(iprv, PAL_REGISTER_INFO, info_request, 0, 0);
  1049. if (reg_info_1)
  1050. *reg_info_1 = iprv.v0;
  1051. if (reg_info_2)
  1052. *reg_info_2 = iprv.v1;
  1053. return iprv.status;
  1054. }
  1055. typedef union pal_hints_u {
  1056. u64 ph_data;
  1057. struct {
  1058.        u64 si : 1,
  1059. li : 1,
  1060. reserved : 62;
  1061. } pal_hints_s;
  1062. } pal_hints_u_t;
  1063. /* Return information about the register stack and RSE for this processor
  1064.  * implementation.
  1065.  */
  1066. static inline s64
  1067. ia64_pal_rse_info (u64 *num_phys_stacked, pal_hints_u_t *hints)
  1068. {
  1069. struct ia64_pal_retval iprv;
  1070. PAL_CALL(iprv, PAL_RSE_INFO, 0, 0, 0);
  1071. if (num_phys_stacked)
  1072. *num_phys_stacked = iprv.v0;
  1073. if (hints)
  1074. hints->ph_data = iprv.v1;
  1075. return iprv.status;
  1076. }
  1077. /* Cause the processor to enter SHUTDOWN state, where prefetching and execution are
  1078.  * suspended, but cause cache and TLB coherency to be maintained.
  1079.  * This is usually called in IA-32 mode.
  1080.  */
  1081. static inline s64
  1082. ia64_pal_shutdown (void)
  1083. {
  1084. struct ia64_pal_retval iprv;
  1085. PAL_CALL(iprv, PAL_SHUTDOWN, 0, 0, 0);
  1086. return iprv.status;
  1087. }
  1088. /* Perform the second phase of processor self-test. */
  1089. static inline s64
  1090. ia64_pal_test_proc (u64 test_addr, u64 test_size, u64 attributes, u64 *self_test_state)
  1091. {
  1092. struct ia64_pal_retval iprv;
  1093. PAL_CALL(iprv, PAL_TEST_PROC, test_addr, test_size, attributes);
  1094. if (self_test_state)
  1095. *self_test_state = iprv.v0;
  1096. return iprv.status;
  1097. }
  1098. typedef union  pal_version_u {
  1099. u64 pal_version_val;
  1100. struct {
  1101. u64 pv_pal_b_rev : 8;
  1102. u64 pv_pal_b_model : 8;
  1103. u64 pv_reserved1 : 8;
  1104. u64 pv_pal_vendor : 8;
  1105. u64 pv_pal_a_rev : 8;
  1106. u64 pv_pal_a_model : 8;
  1107. u64 pv_reserved2 : 16;
  1108. } pal_version_s;
  1109. } pal_version_u_t;
  1110. /* Return PAL version information */
  1111. static inline s64
  1112. ia64_pal_version (pal_version_u_t *pal_min_version, pal_version_u_t *pal_cur_version)
  1113. {
  1114. struct ia64_pal_retval iprv;
  1115. PAL_CALL_PHYS(iprv, PAL_VERSION, 0, 0, 0);
  1116. if (pal_min_version)
  1117. pal_min_version->pal_version_val = iprv.v0;
  1118. if (pal_cur_version)
  1119. pal_cur_version->pal_version_val = iprv.v1;
  1120. return iprv.status;
  1121. }
  1122. typedef union pal_tc_info_u {
  1123. u64 pti_val;
  1124. struct {
  1125.        u64 num_sets : 8,
  1126. associativity : 8,
  1127. num_entries : 16,
  1128. pf : 1,
  1129. unified : 1,
  1130. reduce_tr : 1,
  1131. reserved : 29;
  1132. } pal_tc_info_s;
  1133. } pal_tc_info_u_t;
  1134. #define tc_reduce_tr pal_tc_info_s.reduce_tr
  1135. #define tc_unified pal_tc_info_s.unified
  1136. #define tc_pf pal_tc_info_s.pf
  1137. #define tc_num_entries pal_tc_info_s.num_entries
  1138. #define tc_associativity pal_tc_info_s.associativity
  1139. #define tc_num_sets pal_tc_info_s.num_sets
  1140. /* Return information about the virtual memory characteristics of the processor
  1141.  * implementation.
  1142.  */
  1143. static inline s64
  1144. ia64_pal_vm_info (u64 tc_level, u64 tc_type,  pal_tc_info_u_t *tc_info, u64 *tc_pages)
  1145. {
  1146. struct ia64_pal_retval iprv;
  1147. PAL_CALL(iprv, PAL_VM_INFO, tc_level, tc_type, 0);
  1148. if (tc_info)
  1149. tc_info->pti_val = iprv.v0;
  1150. if (tc_pages)
  1151. *tc_pages = iprv.v1;
  1152. return iprv.status;
  1153. }
  1154. /* Get page size information about the virtual memory characteristics of the processor
  1155.  * implementation.
  1156.  */
  1157. static inline s64
  1158. ia64_pal_vm_page_size (u64 *tr_pages, u64 *vw_pages)
  1159. {
  1160. struct ia64_pal_retval iprv;
  1161. PAL_CALL(iprv, PAL_VM_PAGE_SIZE, 0, 0, 0);
  1162. if (tr_pages)
  1163. *tr_pages = iprv.v0;
  1164. if (vw_pages)
  1165. *vw_pages = iprv.v1;
  1166. return iprv.status;
  1167. }
  1168. typedef union pal_vm_info_1_u {
  1169. u64 pvi1_val;
  1170. struct {
  1171. u64 vw : 1,
  1172. phys_add_size : 7,
  1173. key_size : 8,
  1174. max_pkr : 8,
  1175. hash_tag_id : 8,
  1176. max_dtr_entry : 8,
  1177. max_itr_entry : 8,
  1178. max_unique_tcs : 8,
  1179. num_tc_levels : 8;
  1180. } pal_vm_info_1_s;
  1181. } pal_vm_info_1_u_t;
  1182. typedef union pal_vm_info_2_u {
  1183. u64 pvi2_val;
  1184. struct {
  1185. u64 impl_va_msb : 8,
  1186. rid_size : 8,
  1187. reserved : 48;
  1188. } pal_vm_info_2_s;
  1189. } pal_vm_info_2_u_t;
  1190. /* Get summary information about the virtual memory characteristics of the processor
  1191.  * implementation.
  1192.  */
  1193. static inline s64
  1194. ia64_pal_vm_summary (pal_vm_info_1_u_t *vm_info_1, pal_vm_info_2_u_t *vm_info_2)
  1195. {
  1196. struct ia64_pal_retval iprv;
  1197. PAL_CALL(iprv, PAL_VM_SUMMARY, 0, 0, 0);
  1198. if (vm_info_1)
  1199. vm_info_1->pvi1_val = iprv.v0;
  1200. if (vm_info_2)
  1201. vm_info_2->pvi2_val = iprv.v1;
  1202. return iprv.status;
  1203. }
  1204. typedef union pal_itr_valid_u {
  1205. u64 piv_val;
  1206. struct {
  1207.        u64 access_rights_valid : 1,
  1208. priv_level_valid : 1,
  1209. dirty_bit_valid : 1,
  1210. mem_attr_valid : 1,
  1211. reserved : 60;
  1212. } pal_tr_valid_s;
  1213. } pal_tr_valid_u_t;
  1214. /* Read a translation register */
  1215. static inline s64
  1216. ia64_pal_tr_read (u64 reg_num, u64 tr_type, u64 *tr_buffer, pal_tr_valid_u_t *tr_valid)
  1217. {
  1218. struct ia64_pal_retval iprv;
  1219. PAL_CALL_PHYS_STK(iprv, PAL_VM_TR_READ, reg_num, tr_type,(u64)__pa(tr_buffer));
  1220. if (tr_valid)
  1221. tr_valid->piv_val = iprv.v0;
  1222. return iprv.status;
  1223. }
  1224. static inline s64
  1225. ia64_pal_prefetch_visibility (void)
  1226. {
  1227. struct ia64_pal_retval iprv;
  1228. PAL_CALL(iprv, PAL_PREFETCH_VISIBILITY, 0, 0, 0);
  1229. return iprv.status;
  1230. }
  1231. #endif /* __ASSEMBLY__ */
  1232. #endif /* _ASM_IA64_PAL_H */