Pull model-name into release branch
[pandora-kernel.git] / include / asm-ia64 / pal.h
1 #ifndef _ASM_IA64_PAL_H
2 #define _ASM_IA64_PAL_H
3
4 /*
5  * Processor Abstraction Layer definitions.
6  *
7  * This is based on Intel IA-64 Architecture Software Developer's Manual rev 1.0
8  * chapter 11 IA-64 Processor Abstraction Layer
9  *
10  * Copyright (C) 1998-2001 Hewlett-Packard Co
11  *      David Mosberger-Tang <davidm@hpl.hp.com>
12  *      Stephane Eranian <eranian@hpl.hp.com>
13  * Copyright (C) 1999 VA Linux Systems
14  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
15  * Copyright (C) 1999 Srinivasa Prasad Thirumalachar <sprasad@sprasad.engr.sgi.com>
16  *
17  * 99/10/01     davidm  Make sure we pass zero for reserved parameters.
18  * 00/03/07     davidm  Updated pal_cache_flush() to be in sync with PAL v2.6.
19  * 00/03/23     cfleck  Modified processor min-state save area to match updated PAL & SAL info
20  * 00/05/24     eranian Updated to latest PAL spec, fix structures bugs, added
21  * 00/05/25     eranian Support for stack calls, and static physical calls
22  * 00/06/18     eranian Support for stacked physical calls
23  */
24
25 /*
26  * Note that some of these calls use a static-register only calling
27  * convention which has nothing to do with the regular calling
28  * convention.
29  */
30 #define PAL_CACHE_FLUSH         1       /* flush i/d cache */
31 #define PAL_CACHE_INFO          2       /* get detailed i/d cache info */
32 #define PAL_CACHE_INIT          3       /* initialize i/d cache */
33 #define PAL_CACHE_SUMMARY       4       /* get summary of cache heirarchy */
34 #define PAL_MEM_ATTRIB          5       /* list supported memory attributes */
35 #define PAL_PTCE_INFO           6       /* purge TLB info */
36 #define PAL_VM_INFO             7       /* return supported virtual memory features */
37 #define PAL_VM_SUMMARY          8       /* return summary on supported vm features */
38 #define PAL_BUS_GET_FEATURES    9       /* return processor bus interface features settings */
39 #define PAL_BUS_SET_FEATURES    10      /* set processor bus features */
40 #define PAL_DEBUG_INFO          11      /* get number of debug registers */
41 #define PAL_FIXED_ADDR          12      /* get fixed component of processors's directed address */
42 #define PAL_FREQ_BASE           13      /* base frequency of the platform */
43 #define PAL_FREQ_RATIOS         14      /* ratio of processor, bus and ITC frequency */
44 #define PAL_PERF_MON_INFO       15      /* return performance monitor info */
45 #define PAL_PLATFORM_ADDR       16      /* set processor interrupt block and IO port space addr */
46 #define PAL_PROC_GET_FEATURES   17      /* get configurable processor features & settings */
47 #define PAL_PROC_SET_FEATURES   18      /* enable/disable configurable processor features */
48 #define PAL_RSE_INFO            19      /* return rse information */
49 #define PAL_VERSION             20      /* return version of PAL code */
50 #define PAL_MC_CLEAR_LOG        21      /* clear all processor log info */
51 #define PAL_MC_DRAIN            22      /* drain operations which could result in an MCA */
52 #define PAL_MC_EXPECTED         23      /* set/reset expected MCA indicator */
53 #define PAL_MC_DYNAMIC_STATE    24      /* get processor dynamic state */
54 #define PAL_MC_ERROR_INFO       25      /* get processor MCA info and static state */
55 #define PAL_MC_RESUME           26      /* Return to interrupted process */
56 #define PAL_MC_REGISTER_MEM     27      /* Register memory for PAL to use during MCAs and inits */
57 #define PAL_HALT                28      /* enter the low power HALT state */
58 #define PAL_HALT_LIGHT          29      /* enter the low power light halt state*/
59 #define PAL_COPY_INFO           30      /* returns info needed to relocate PAL */
60 #define PAL_CACHE_LINE_INIT     31      /* init tags & data of cache line */
61 #define PAL_PMI_ENTRYPOINT      32      /* register PMI memory entry points with the processor */
62 #define PAL_ENTER_IA_32_ENV     33      /* enter IA-32 system environment */
63 #define PAL_VM_PAGE_SIZE        34      /* return vm TC and page walker page sizes */
64
65 #define PAL_MEM_FOR_TEST        37      /* get amount of memory needed for late processor test */
66 #define PAL_CACHE_PROT_INFO     38      /* get i/d cache protection info */
67 #define PAL_REGISTER_INFO       39      /* return AR and CR register information*/
68 #define PAL_SHUTDOWN            40      /* enter processor shutdown state */
69 #define PAL_PREFETCH_VISIBILITY 41      /* Make Processor Prefetches Visible */
70 #define PAL_LOGICAL_TO_PHYSICAL 42      /* returns information on logical to physical processor mapping */
71 #define PAL_CACHE_SHARED_INFO   43      /* returns information on caches shared by logical processor */
72
73 #define PAL_COPY_PAL            256     /* relocate PAL procedures and PAL PMI */
74 #define PAL_HALT_INFO           257     /* return the low power capabilities of processor */
75 #define PAL_TEST_PROC           258     /* perform late processor self-test */
76 #define PAL_CACHE_READ          259     /* read tag & data of cacheline for diagnostic testing */
77 #define PAL_CACHE_WRITE         260     /* write tag & data of cacheline for diagnostic testing */
78 #define PAL_VM_TR_READ          261     /* read contents of translation register */
79 #define PAL_GET_PSTATE          262     /* get the current P-state */
80 #define PAL_SET_PSTATE          263     /* set the P-state */
81 #define PAL_BRAND_INFO          274     /* Processor branding information */
82
83 #ifndef __ASSEMBLY__
84
85 #include <linux/types.h>
86 #include <asm/fpu.h>
87
88 /*
89  * Data types needed to pass information into PAL procedures and
90  * interpret information returned by them.
91  */
92
93 /* Return status from the PAL procedure */
94 typedef s64                             pal_status_t;
95
96 #define PAL_STATUS_SUCCESS              0       /* No error */
97 #define PAL_STATUS_UNIMPLEMENTED        (-1)    /* Unimplemented procedure */
98 #define PAL_STATUS_EINVAL               (-2)    /* Invalid argument */
99 #define PAL_STATUS_ERROR                (-3)    /* Error */
100 #define PAL_STATUS_CACHE_INIT_FAIL      (-4)    /* Could not initialize the
101                                                  * specified level and type of
102                                                  * cache without sideeffects
103                                                  * and "restrict" was 1
104                                                  */
105
106 /* Processor cache level in the heirarchy */
107 typedef u64                             pal_cache_level_t;
108 #define PAL_CACHE_LEVEL_L0              0       /* L0 */
109 #define PAL_CACHE_LEVEL_L1              1       /* L1 */
110 #define PAL_CACHE_LEVEL_L2              2       /* L2 */
111
112
113 /* Processor cache type at a particular level in the heirarchy */
114
115 typedef u64                             pal_cache_type_t;
116 #define PAL_CACHE_TYPE_INSTRUCTION      1       /* Instruction cache */
117 #define PAL_CACHE_TYPE_DATA             2       /* Data or unified cache */
118 #define PAL_CACHE_TYPE_INSTRUCTION_DATA 3       /* Both Data & Instruction */
119
120
121 #define PAL_CACHE_FLUSH_INVALIDATE      1       /* Invalidate clean lines */
122 #define PAL_CACHE_FLUSH_CHK_INTRS       2       /* check for interrupts/mc while flushing */
123
124 /* Processor cache line size in bytes  */
125 typedef int                             pal_cache_line_size_t;
126
127 /* Processor cache line state */
128 typedef u64                             pal_cache_line_state_t;
129 #define PAL_CACHE_LINE_STATE_INVALID    0       /* Invalid */
130 #define PAL_CACHE_LINE_STATE_SHARED     1       /* Shared */
131 #define PAL_CACHE_LINE_STATE_EXCLUSIVE  2       /* Exclusive */
132 #define PAL_CACHE_LINE_STATE_MODIFIED   3       /* Modified */
133
134 typedef struct pal_freq_ratio {
135         u32 den, num;           /* numerator & denominator */
136 } itc_ratio, proc_ratio;
137
138 typedef union  pal_cache_config_info_1_s {
139         struct {
140                 u64             u               : 1,    /* 0 Unified cache ? */
141                                 at              : 2,    /* 2-1 Cache mem attr*/
142                                 reserved        : 5,    /* 7-3 Reserved */
143                                 associativity   : 8,    /* 16-8 Associativity*/
144                                 line_size       : 8,    /* 23-17 Line size */
145                                 stride          : 8,    /* 31-24 Stride */
146                                 store_latency   : 8,    /*39-32 Store latency*/
147                                 load_latency    : 8,    /* 47-40 Load latency*/
148                                 store_hints     : 8,    /* 55-48 Store hints*/
149                                 load_hints      : 8;    /* 63-56 Load hints */
150         } pcci1_bits;
151         u64                     pcci1_data;
152 } pal_cache_config_info_1_t;
153
154 typedef union  pal_cache_config_info_2_s {
155         struct {
156                 u32             cache_size;             /*cache size in bytes*/
157
158
159                 u32             alias_boundary  : 8,    /* 39-32 aliased addr
160                                                          * separation for max
161                                                          * performance.
162                                                          */
163                                 tag_ls_bit      : 8,    /* 47-40 LSb of addr*/
164                                 tag_ms_bit      : 8,    /* 55-48 MSb of addr*/
165                                 reserved        : 8;    /* 63-56 Reserved */
166         } pcci2_bits;
167         u64                     pcci2_data;
168 } pal_cache_config_info_2_t;
169
170
171 typedef struct pal_cache_config_info_s {
172         pal_status_t                    pcci_status;
173         pal_cache_config_info_1_t       pcci_info_1;
174         pal_cache_config_info_2_t       pcci_info_2;
175         u64                             pcci_reserved;
176 } pal_cache_config_info_t;
177
178 #define pcci_ld_hints           pcci_info_1.pcci1_bits.load_hints
179 #define pcci_st_hints           pcci_info_1.pcci1_bits.store_hints
180 #define pcci_ld_latency         pcci_info_1.pcci1_bits.load_latency
181 #define pcci_st_latency         pcci_info_1.pcci1_bits.store_latency
182 #define pcci_stride             pcci_info_1.pcci1_bits.stride
183 #define pcci_line_size          pcci_info_1.pcci1_bits.line_size
184 #define pcci_assoc              pcci_info_1.pcci1_bits.associativity
185 #define pcci_cache_attr         pcci_info_1.pcci1_bits.at
186 #define pcci_unified            pcci_info_1.pcci1_bits.u
187 #define pcci_tag_msb            pcci_info_2.pcci2_bits.tag_ms_bit
188 #define pcci_tag_lsb            pcci_info_2.pcci2_bits.tag_ls_bit
189 #define pcci_alias_boundary     pcci_info_2.pcci2_bits.alias_boundary
190 #define pcci_cache_size         pcci_info_2.pcci2_bits.cache_size
191
192
193
194 /* Possible values for cache attributes */
195
196 #define PAL_CACHE_ATTR_WT               0       /* Write through cache */
197 #define PAL_CACHE_ATTR_WB               1       /* Write back cache */
198 #define PAL_CACHE_ATTR_WT_OR_WB         2       /* Either write thru or write
199                                                  * back depending on TLB
200                                                  * memory attributes
201                                                  */
202
203
204 /* Possible values for cache hints */
205
206 #define PAL_CACHE_HINT_TEMP_1           0       /* Temporal level 1 */
207 #define PAL_CACHE_HINT_NTEMP_1          1       /* Non-temporal level 1 */
208 #define PAL_CACHE_HINT_NTEMP_ALL        3       /* Non-temporal all levels */
209
210 /* Processor cache protection  information */
211 typedef union pal_cache_protection_element_u {
212         u32                     pcpi_data;
213         struct {
214                 u32             data_bits       : 8, /* # data bits covered by
215                                                       * each unit of protection
216                                                       */
217
218                                 tagprot_lsb     : 6, /* Least -do- */
219                                 tagprot_msb     : 6, /* Most Sig. tag address
220                                                       * bit that this
221                                                       * protection covers.
222                                                       */
223                                 prot_bits       : 6, /* # of protection bits */
224                                 method          : 4, /* Protection method */
225                                 t_d             : 2; /* Indicates which part
226                                                       * of the cache this
227                                                       * protection encoding
228                                                       * applies.
229                                                       */
230         } pcp_info;
231 } pal_cache_protection_element_t;
232
233 #define pcpi_cache_prot_part    pcp_info.t_d
234 #define pcpi_prot_method        pcp_info.method
235 #define pcpi_prot_bits          pcp_info.prot_bits
236 #define pcpi_tagprot_msb        pcp_info.tagprot_msb
237 #define pcpi_tagprot_lsb        pcp_info.tagprot_lsb
238 #define pcpi_data_bits          pcp_info.data_bits
239
240 /* Processor cache part encodings */
241 #define PAL_CACHE_PROT_PART_DATA        0       /* Data protection  */
242 #define PAL_CACHE_PROT_PART_TAG         1       /* Tag  protection */
243 #define PAL_CACHE_PROT_PART_TAG_DATA    2       /* Tag+data protection (tag is
244                                                  * more significant )
245                                                  */
246 #define PAL_CACHE_PROT_PART_DATA_TAG    3       /* Data+tag protection (data is
247                                                  * more significant )
248                                                  */
249 #define PAL_CACHE_PROT_PART_MAX         6
250
251
252 typedef struct pal_cache_protection_info_s {
253         pal_status_t                    pcpi_status;
254         pal_cache_protection_element_t  pcp_info[PAL_CACHE_PROT_PART_MAX];
255 } pal_cache_protection_info_t;
256
257
258 /* Processor cache protection method encodings */
259 #define PAL_CACHE_PROT_METHOD_NONE              0       /* No protection */
260 #define PAL_CACHE_PROT_METHOD_ODD_PARITY        1       /* Odd parity */
261 #define PAL_CACHE_PROT_METHOD_EVEN_PARITY       2       /* Even parity */
262 #define PAL_CACHE_PROT_METHOD_ECC               3       /* ECC protection */
263
264
265 /* Processor cache line identification in the heirarchy */
266 typedef union pal_cache_line_id_u {
267         u64                     pclid_data;
268         struct {
269                 u64             cache_type      : 8,    /* 7-0 cache type */
270                                 level           : 8,    /* 15-8 level of the
271                                                          * cache in the
272                                                          * heirarchy.
273                                                          */
274                                 way             : 8,    /* 23-16 way in the set
275                                                          */
276                                 part            : 8,    /* 31-24 part of the
277                                                          * cache
278                                                          */
279                                 reserved        : 32;   /* 63-32 is reserved*/
280         } pclid_info_read;
281         struct {
282                 u64             cache_type      : 8,    /* 7-0 cache type */
283                                 level           : 8,    /* 15-8 level of the
284                                                          * cache in the
285                                                          * heirarchy.
286                                                          */
287                                 way             : 8,    /* 23-16 way in the set
288                                                          */
289                                 part            : 8,    /* 31-24 part of the
290                                                          * cache
291                                                          */
292                                 mesi            : 8,    /* 39-32 cache line
293                                                          * state
294                                                          */
295                                 start           : 8,    /* 47-40 lsb of data to
296                                                          * invert
297                                                          */
298                                 length          : 8,    /* 55-48 #bits to
299                                                          * invert
300                                                          */
301                                 trigger         : 8;    /* 63-56 Trigger error
302                                                          * by doing a load
303                                                          * after the write
304                                                          */
305
306         } pclid_info_write;
307 } pal_cache_line_id_u_t;
308
309 #define pclid_read_part         pclid_info_read.part
310 #define pclid_read_way          pclid_info_read.way
311 #define pclid_read_level        pclid_info_read.level
312 #define pclid_read_cache_type   pclid_info_read.cache_type
313
314 #define pclid_write_trigger     pclid_info_write.trigger
315 #define pclid_write_length      pclid_info_write.length
316 #define pclid_write_start       pclid_info_write.start
317 #define pclid_write_mesi        pclid_info_write.mesi
318 #define pclid_write_part        pclid_info_write.part
319 #define pclid_write_way         pclid_info_write.way
320 #define pclid_write_level       pclid_info_write.level
321 #define pclid_write_cache_type  pclid_info_write.cache_type
322
323 /* Processor cache line part encodings */
324 #define PAL_CACHE_LINE_ID_PART_DATA             0       /* Data */
325 #define PAL_CACHE_LINE_ID_PART_TAG              1       /* Tag */
326 #define PAL_CACHE_LINE_ID_PART_DATA_PROT        2       /* Data protection */
327 #define PAL_CACHE_LINE_ID_PART_TAG_PROT         3       /* Tag protection */
328 #define PAL_CACHE_LINE_ID_PART_DATA_TAG_PROT    4       /* Data+tag
329                                                          * protection
330                                                          */
331 typedef struct pal_cache_line_info_s {
332         pal_status_t            pcli_status;            /* Return status of the read cache line
333                                                          * info call.
334                                                          */
335         u64                     pcli_data;              /* 64-bit data, tag, protection bits .. */
336         u64                     pcli_data_len;          /* data length in bits */
337         pal_cache_line_state_t  pcli_cache_line_state;  /* mesi state */
338
339 } pal_cache_line_info_t;
340
341
342 /* Machine Check related crap */
343
344 /* Pending event status bits  */
345 typedef u64                                     pal_mc_pending_events_t;
346
347 #define PAL_MC_PENDING_MCA                      (1 << 0)
348 #define PAL_MC_PENDING_INIT                     (1 << 1)
349
350 /* Error information type */
351 typedef u64                                     pal_mc_info_index_t;
352
353 #define PAL_MC_INFO_PROCESSOR                   0       /* Processor */
354 #define PAL_MC_INFO_CACHE_CHECK                 1       /* Cache check */
355 #define PAL_MC_INFO_TLB_CHECK                   2       /* Tlb check */
356 #define PAL_MC_INFO_BUS_CHECK                   3       /* Bus check */
357 #define PAL_MC_INFO_REQ_ADDR                    4       /* Requestor address */
358 #define PAL_MC_INFO_RESP_ADDR                   5       /* Responder address */
359 #define PAL_MC_INFO_TARGET_ADDR                 6       /* Target address */
360 #define PAL_MC_INFO_IMPL_DEP                    7       /* Implementation
361                                                          * dependent
362                                                          */
363
364
365 typedef struct pal_process_state_info_s {
366         u64             reserved1       : 2,
367                         rz              : 1,    /* PAL_CHECK processor
368                                                  * rendezvous
369                                                  * successful.
370                                                  */
371
372                         ra              : 1,    /* PAL_CHECK attempted
373                                                  * a rendezvous.
374                                                  */
375                         me              : 1,    /* Distinct multiple
376                                                  * errors occurred
377                                                  */
378
379                         mn              : 1,    /* Min. state save
380                                                  * area has been
381                                                  * registered with PAL
382                                                  */
383
384                         sy              : 1,    /* Storage integrity
385                                                  * synched
386                                                  */
387
388
389                         co              : 1,    /* Continuable */
390                         ci              : 1,    /* MC isolated */
391                         us              : 1,    /* Uncontained storage
392                                                  * damage.
393                                                  */
394
395
396                         hd              : 1,    /* Non-essential hw
397                                                  * lost (no loss of
398                                                  * functionality)
399                                                  * causing the
400                                                  * processor to run in
401                                                  * degraded mode.
402                                                  */
403
404                         tl              : 1,    /* 1 => MC occurred
405                                                  * after an instr was
406                                                  * executed but before
407                                                  * the trap that
408                                                  * resulted from instr
409                                                  * execution was
410                                                  * generated.
411                                                  * (Trap Lost )
412                                                  */
413                         mi              : 1,    /* More information available
414                                                  * call PAL_MC_ERROR_INFO
415                                                  */
416                         pi              : 1,    /* Precise instruction pointer */
417                         pm              : 1,    /* Precise min-state save area */
418
419                         dy              : 1,    /* Processor dynamic
420                                                  * state valid
421                                                  */
422
423
424                         in              : 1,    /* 0 = MC, 1 = INIT */
425                         rs              : 1,    /* RSE valid */
426                         cm              : 1,    /* MC corrected */
427                         ex              : 1,    /* MC is expected */
428                         cr              : 1,    /* Control regs valid*/
429                         pc              : 1,    /* Perf cntrs valid */
430                         dr              : 1,    /* Debug regs valid */
431                         tr              : 1,    /* Translation regs
432                                                  * valid
433                                                  */
434                         rr              : 1,    /* Region regs valid */
435                         ar              : 1,    /* App regs valid */
436                         br              : 1,    /* Branch regs valid */
437                         pr              : 1,    /* Predicate registers
438                                                  * valid
439                                                  */
440
441                         fp              : 1,    /* fp registers valid*/
442                         b1              : 1,    /* Preserved bank one
443                                                  * general registers
444                                                  * are valid
445                                                  */
446                         b0              : 1,    /* Preserved bank zero
447                                                  * general registers
448                                                  * are valid
449                                                  */
450                         gr              : 1,    /* General registers
451                                                  * are valid
452                                                  * (excl. banked regs)
453                                                  */
454                         dsize           : 16,   /* size of dynamic
455                                                  * state returned
456                                                  * by the processor
457                                                  */
458
459                         reserved2       : 11,
460                         cc              : 1,    /* Cache check */
461                         tc              : 1,    /* TLB check */
462                         bc              : 1,    /* Bus check */
463                         rc              : 1,    /* Register file check */
464                         uc              : 1;    /* Uarch check */
465
466 } pal_processor_state_info_t;
467
468 typedef struct pal_cache_check_info_s {
469         u64             op              : 4,    /* Type of cache
470                                                  * operation that
471                                                  * caused the machine
472                                                  * check.
473                                                  */
474                         level           : 2,    /* Cache level */
475                         reserved1       : 2,
476                         dl              : 1,    /* Failure in data part
477                                                  * of cache line
478                                                  */
479                         tl              : 1,    /* Failure in tag part
480                                                  * of cache line
481                                                  */
482                         dc              : 1,    /* Failure in dcache */
483                         ic              : 1,    /* Failure in icache */
484                         mesi            : 3,    /* Cache line state */
485                         mv              : 1,    /* mesi valid */
486                         way             : 5,    /* Way in which the
487                                                  * error occurred
488                                                  */
489                         wiv             : 1,    /* Way field valid */
490                         reserved2       : 10,
491
492                         index           : 20,   /* Cache line index */
493                         reserved3       : 2,
494
495                         is              : 1,    /* instruction set (1 == ia32) */
496                         iv              : 1,    /* instruction set field valid */
497                         pl              : 2,    /* privilege level */
498                         pv              : 1,    /* privilege level field valid */
499                         mcc             : 1,    /* Machine check corrected */
500                         tv              : 1,    /* Target address
501                                                  * structure is valid
502                                                  */
503                         rq              : 1,    /* Requester identifier
504                                                  * structure is valid
505                                                  */
506                         rp              : 1,    /* Responder identifier
507                                                  * structure is valid
508                                                  */
509                         pi              : 1;    /* Precise instruction pointer
510                                                  * structure is valid
511                                                  */
512 } pal_cache_check_info_t;
513
514 typedef struct pal_tlb_check_info_s {
515
516         u64             tr_slot         : 8,    /* Slot# of TR where
517                                                  * error occurred
518                                                  */
519                         trv             : 1,    /* tr_slot field is valid */
520                         reserved1       : 1,
521                         level           : 2,    /* TLB level where failure occurred */
522                         reserved2       : 4,
523                         dtr             : 1,    /* Fail in data TR */
524                         itr             : 1,    /* Fail in inst TR */
525                         dtc             : 1,    /* Fail in data TC */
526                         itc             : 1,    /* Fail in inst. TC */
527                         op              : 4,    /* Cache operation */
528                         reserved3       : 30,
529
530                         is              : 1,    /* instruction set (1 == ia32) */
531                         iv              : 1,    /* instruction set field valid */
532                         pl              : 2,    /* privilege level */
533                         pv              : 1,    /* privilege level field valid */
534                         mcc             : 1,    /* Machine check corrected */
535                         tv              : 1,    /* Target address
536                                                  * structure is valid
537                                                  */
538                         rq              : 1,    /* Requester identifier
539                                                  * structure is valid
540                                                  */
541                         rp              : 1,    /* Responder identifier
542                                                  * structure is valid
543                                                  */
544                         pi              : 1;    /* Precise instruction pointer
545                                                  * structure is valid
546                                                  */
547 } pal_tlb_check_info_t;
548
549 typedef struct pal_bus_check_info_s {
550         u64             size            : 5,    /* Xaction size */
551                         ib              : 1,    /* Internal bus error */
552                         eb              : 1,    /* External bus error */
553                         cc              : 1,    /* Error occurred
554                                                  * during cache-cache
555                                                  * transfer.
556                                                  */
557                         type            : 8,    /* Bus xaction type*/
558                         sev             : 5,    /* Bus error severity*/
559                         hier            : 2,    /* Bus hierarchy level */
560                         reserved1       : 1,
561                         bsi             : 8,    /* Bus error status
562                                                  * info
563                                                  */
564                         reserved2       : 22,
565
566                         is              : 1,    /* instruction set (1 == ia32) */
567                         iv              : 1,    /* instruction set field valid */
568                         pl              : 2,    /* privilege level */
569                         pv              : 1,    /* privilege level field valid */
570                         mcc             : 1,    /* Machine check corrected */
571                         tv              : 1,    /* Target address
572                                                  * structure is valid
573                                                  */
574                         rq              : 1,    /* Requester identifier
575                                                  * structure is valid
576                                                  */
577                         rp              : 1,    /* Responder identifier
578                                                  * structure is valid
579                                                  */
580                         pi              : 1;    /* Precise instruction pointer
581                                                  * structure is valid
582                                                  */
583 } pal_bus_check_info_t;
584
585 typedef struct pal_reg_file_check_info_s {
586         u64             id              : 4,    /* Register file identifier */
587                         op              : 4,    /* Type of register
588                                                  * operation that
589                                                  * caused the machine
590                                                  * check.
591                                                  */
592                         reg_num         : 7,    /* Register number */
593                         rnv             : 1,    /* reg_num valid */
594                         reserved2       : 38,
595
596                         is              : 1,    /* instruction set (1 == ia32) */
597                         iv              : 1,    /* instruction set field valid */
598                         pl              : 2,    /* privilege level */
599                         pv              : 1,    /* privilege level field valid */
600                         mcc             : 1,    /* Machine check corrected */
601                         reserved3       : 3,
602                         pi              : 1;    /* Precise instruction pointer
603                                                  * structure is valid
604                                                  */
605 } pal_reg_file_check_info_t;
606
607 typedef struct pal_uarch_check_info_s {
608         u64             sid             : 5,    /* Structure identification */
609                         level           : 3,    /* Level of failure */
610                         array_id        : 4,    /* Array identification */
611                         op              : 4,    /* Type of
612                                                  * operation that
613                                                  * caused the machine
614                                                  * check.
615                                                  */
616                         way             : 6,    /* Way of structure */
617                         wv              : 1,    /* way valid */
618                         xv              : 1,    /* index valid */
619                         reserved1       : 8,
620                         index           : 8,    /* Index or set of the uarch
621                                                  * structure that failed.
622                                                  */
623                         reserved2       : 24,
624
625                         is              : 1,    /* instruction set (1 == ia32) */
626                         iv              : 1,    /* instruction set field valid */
627                         pl              : 2,    /* privilege level */
628                         pv              : 1,    /* privilege level field valid */
629                         mcc             : 1,    /* Machine check corrected */
630                         tv              : 1,    /* Target address
631                                                  * structure is valid
632                                                  */
633                         rq              : 1,    /* Requester identifier
634                                                  * structure is valid
635                                                  */
636                         rp              : 1,    /* Responder identifier
637                                                  * structure is valid
638                                                  */
639                         pi              : 1;    /* Precise instruction pointer
640                                                  * structure is valid
641                                                  */
642 } pal_uarch_check_info_t;
643
644 typedef union pal_mc_error_info_u {
645         u64                             pmei_data;
646         pal_processor_state_info_t      pme_processor;
647         pal_cache_check_info_t          pme_cache;
648         pal_tlb_check_info_t            pme_tlb;
649         pal_bus_check_info_t            pme_bus;
650         pal_reg_file_check_info_t       pme_reg_file;
651         pal_uarch_check_info_t          pme_uarch;
652 } pal_mc_error_info_t;
653
654 #define pmci_proc_unknown_check                 pme_processor.uc
655 #define pmci_proc_bus_check                     pme_processor.bc
656 #define pmci_proc_tlb_check                     pme_processor.tc
657 #define pmci_proc_cache_check                   pme_processor.cc
658 #define pmci_proc_dynamic_state_size            pme_processor.dsize
659 #define pmci_proc_gpr_valid                     pme_processor.gr
660 #define pmci_proc_preserved_bank0_gpr_valid     pme_processor.b0
661 #define pmci_proc_preserved_bank1_gpr_valid     pme_processor.b1
662 #define pmci_proc_fp_valid                      pme_processor.fp
663 #define pmci_proc_predicate_regs_valid          pme_processor.pr
664 #define pmci_proc_branch_regs_valid             pme_processor.br
665 #define pmci_proc_app_regs_valid                pme_processor.ar
666 #define pmci_proc_region_regs_valid             pme_processor.rr
667 #define pmci_proc_translation_regs_valid        pme_processor.tr
668 #define pmci_proc_debug_regs_valid              pme_processor.dr
669 #define pmci_proc_perf_counters_valid           pme_processor.pc
670 #define pmci_proc_control_regs_valid            pme_processor.cr
671 #define pmci_proc_machine_check_expected        pme_processor.ex
672 #define pmci_proc_machine_check_corrected       pme_processor.cm
673 #define pmci_proc_rse_valid                     pme_processor.rs
674 #define pmci_proc_machine_check_or_init         pme_processor.in
675 #define pmci_proc_dynamic_state_valid           pme_processor.dy
676 #define pmci_proc_operation                     pme_processor.op
677 #define pmci_proc_trap_lost                     pme_processor.tl
678 #define pmci_proc_hardware_damage               pme_processor.hd
679 #define pmci_proc_uncontained_storage_damage    pme_processor.us
680 #define pmci_proc_machine_check_isolated        pme_processor.ci
681 #define pmci_proc_continuable                   pme_processor.co
682 #define pmci_proc_storage_intergrity_synced     pme_processor.sy
683 #define pmci_proc_min_state_save_area_regd      pme_processor.mn
684 #define pmci_proc_distinct_multiple_errors      pme_processor.me
685 #define pmci_proc_pal_attempted_rendezvous      pme_processor.ra
686 #define pmci_proc_pal_rendezvous_complete       pme_processor.rz
687
688
689 #define pmci_cache_level                        pme_cache.level
690 #define pmci_cache_line_state                   pme_cache.mesi
691 #define pmci_cache_line_state_valid             pme_cache.mv
692 #define pmci_cache_line_index                   pme_cache.index
693 #define pmci_cache_instr_cache_fail             pme_cache.ic
694 #define pmci_cache_data_cache_fail              pme_cache.dc
695 #define pmci_cache_line_tag_fail                pme_cache.tl
696 #define pmci_cache_line_data_fail               pme_cache.dl
697 #define pmci_cache_operation                    pme_cache.op
698 #define pmci_cache_way_valid                    pme_cache.wv
699 #define pmci_cache_target_address_valid         pme_cache.tv
700 #define pmci_cache_way                          pme_cache.way
701 #define pmci_cache_mc                           pme_cache.mc
702
703 #define pmci_tlb_instr_translation_cache_fail   pme_tlb.itc
704 #define pmci_tlb_data_translation_cache_fail    pme_tlb.dtc
705 #define pmci_tlb_instr_translation_reg_fail     pme_tlb.itr
706 #define pmci_tlb_data_translation_reg_fail      pme_tlb.dtr
707 #define pmci_tlb_translation_reg_slot           pme_tlb.tr_slot
708 #define pmci_tlb_mc                             pme_tlb.mc
709
710 #define pmci_bus_status_info                    pme_bus.bsi
711 #define pmci_bus_req_address_valid              pme_bus.rq
712 #define pmci_bus_resp_address_valid             pme_bus.rp
713 #define pmci_bus_target_address_valid           pme_bus.tv
714 #define pmci_bus_error_severity                 pme_bus.sev
715 #define pmci_bus_transaction_type               pme_bus.type
716 #define pmci_bus_cache_cache_transfer           pme_bus.cc
717 #define pmci_bus_transaction_size               pme_bus.size
718 #define pmci_bus_internal_error                 pme_bus.ib
719 #define pmci_bus_external_error                 pme_bus.eb
720 #define pmci_bus_mc                             pme_bus.mc
721
722 /*
723  * NOTE: this min_state_save area struct only includes the 1KB
724  * architectural state save area.  The other 3 KB is scratch space
725  * for PAL.
726  */
727
728 typedef struct pal_min_state_area_s {
729         u64     pmsa_nat_bits;          /* nat bits for saved GRs  */
730         u64     pmsa_gr[15];            /* GR1  - GR15             */
731         u64     pmsa_bank0_gr[16];      /* GR16 - GR31             */
732         u64     pmsa_bank1_gr[16];      /* GR16 - GR31             */
733         u64     pmsa_pr;                /* predicate registers     */
734         u64     pmsa_br0;               /* branch register 0       */
735         u64     pmsa_rsc;               /* ar.rsc                  */
736         u64     pmsa_iip;               /* cr.iip                  */
737         u64     pmsa_ipsr;              /* cr.ipsr                 */
738         u64     pmsa_ifs;               /* cr.ifs                  */
739         u64     pmsa_xip;               /* previous iip            */
740         u64     pmsa_xpsr;              /* previous psr            */
741         u64     pmsa_xfs;               /* previous ifs            */
742         u64     pmsa_br1;               /* branch register 1       */
743         u64     pmsa_reserved[70];      /* pal_min_state_area should total to 1KB */
744 } pal_min_state_area_t;
745
746
747 struct ia64_pal_retval {
748         /*
749          * A zero status value indicates call completed without error.
750          * A negative status value indicates reason of call failure.
751          * A positive status value indicates success but an
752          * informational value should be printed (e.g., "reboot for
753          * change to take effect").
754          */
755         s64 status;
756         u64 v0;
757         u64 v1;
758         u64 v2;
759 };
760
761 /*
762  * Note: Currently unused PAL arguments are generally labeled
763  * "reserved" so the value specified in the PAL documentation
764  * (generally 0) MUST be passed.  Reserved parameters are not optional
765  * parameters.
766  */
767 extern struct ia64_pal_retval ia64_pal_call_static (u64, u64, u64, u64, u64);
768 extern struct ia64_pal_retval ia64_pal_call_stacked (u64, u64, u64, u64);
769 extern struct ia64_pal_retval ia64_pal_call_phys_static (u64, u64, u64, u64);
770 extern struct ia64_pal_retval ia64_pal_call_phys_stacked (u64, u64, u64, u64);
771 extern void ia64_save_scratch_fpregs (struct ia64_fpreg *);
772 extern void ia64_load_scratch_fpregs (struct ia64_fpreg *);
773
774 #define PAL_CALL(iprv,a0,a1,a2,a3) do {                 \
775         struct ia64_fpreg fr[6];                        \
776         ia64_save_scratch_fpregs(fr);                   \
777         iprv = ia64_pal_call_static(a0, a1, a2, a3, 0); \
778         ia64_load_scratch_fpregs(fr);                   \
779 } while (0)
780
781 #define PAL_CALL_IC_OFF(iprv,a0,a1,a2,a3) do {          \
782         struct ia64_fpreg fr[6];                        \
783         ia64_save_scratch_fpregs(fr);                   \
784         iprv = ia64_pal_call_static(a0, a1, a2, a3, 1); \
785         ia64_load_scratch_fpregs(fr);                   \
786 } while (0)
787
788 #define PAL_CALL_STK(iprv,a0,a1,a2,a3) do {             \
789         struct ia64_fpreg fr[6];                        \
790         ia64_save_scratch_fpregs(fr);                   \
791         iprv = ia64_pal_call_stacked(a0, a1, a2, a3);   \
792         ia64_load_scratch_fpregs(fr);                   \
793 } while (0)
794
795 #define PAL_CALL_PHYS(iprv,a0,a1,a2,a3) do {                    \
796         struct ia64_fpreg fr[6];                                \
797         ia64_save_scratch_fpregs(fr);                           \
798         iprv = ia64_pal_call_phys_static(a0, a1, a2, a3);       \
799         ia64_load_scratch_fpregs(fr);                           \
800 } while (0)
801
802 #define PAL_CALL_PHYS_STK(iprv,a0,a1,a2,a3) do {                \
803         struct ia64_fpreg fr[6];                                \
804         ia64_save_scratch_fpregs(fr);                           \
805         iprv = ia64_pal_call_phys_stacked(a0, a1, a2, a3);      \
806         ia64_load_scratch_fpregs(fr);                           \
807 } while (0)
808
809 typedef int (*ia64_pal_handler) (u64, ...);
810 extern ia64_pal_handler ia64_pal;
811 extern void ia64_pal_handler_init (void *);
812
813 extern ia64_pal_handler ia64_pal;
814
815 extern pal_cache_config_info_t          l0d_cache_config_info;
816 extern pal_cache_config_info_t          l0i_cache_config_info;
817 extern pal_cache_config_info_t          l1_cache_config_info;
818 extern pal_cache_config_info_t          l2_cache_config_info;
819
820 extern pal_cache_protection_info_t      l0d_cache_protection_info;
821 extern pal_cache_protection_info_t      l0i_cache_protection_info;
822 extern pal_cache_protection_info_t      l1_cache_protection_info;
823 extern pal_cache_protection_info_t      l2_cache_protection_info;
824
825 extern pal_cache_config_info_t          pal_cache_config_info_get(pal_cache_level_t,
826                                                                   pal_cache_type_t);
827
828 extern pal_cache_protection_info_t      pal_cache_protection_info_get(pal_cache_level_t,
829                                                                       pal_cache_type_t);
830
831
832 extern void                             pal_error(int);
833
834
835 /* Useful wrappers for the current list of pal procedures */
836
837 typedef union pal_bus_features_u {
838         u64     pal_bus_features_val;
839         struct {
840                 u64     pbf_reserved1                           :       29;
841                 u64     pbf_req_bus_parking                     :       1;
842                 u64     pbf_bus_lock_mask                       :       1;
843                 u64     pbf_enable_half_xfer_rate               :       1;
844                 u64     pbf_reserved2                           :       22;
845                 u64     pbf_disable_xaction_queueing            :       1;
846                 u64     pbf_disable_resp_err_check              :       1;
847                 u64     pbf_disable_berr_check                  :       1;
848                 u64     pbf_disable_bus_req_internal_err_signal :       1;
849                 u64     pbf_disable_bus_req_berr_signal         :       1;
850                 u64     pbf_disable_bus_init_event_check        :       1;
851                 u64     pbf_disable_bus_init_event_signal       :       1;
852                 u64     pbf_disable_bus_addr_err_check          :       1;
853                 u64     pbf_disable_bus_addr_err_signal         :       1;
854                 u64     pbf_disable_bus_data_err_check          :       1;
855         } pal_bus_features_s;
856 } pal_bus_features_u_t;
857
858 extern void pal_bus_features_print (u64);
859
860 /* Provide information about configurable processor bus features */
861 static inline s64
862 ia64_pal_bus_get_features (pal_bus_features_u_t *features_avail,
863                            pal_bus_features_u_t *features_status,
864                            pal_bus_features_u_t *features_control)
865 {
866         struct ia64_pal_retval iprv;
867         PAL_CALL_PHYS(iprv, PAL_BUS_GET_FEATURES, 0, 0, 0);
868         if (features_avail)
869                 features_avail->pal_bus_features_val = iprv.v0;
870         if (features_status)
871                 features_status->pal_bus_features_val = iprv.v1;
872         if (features_control)
873                 features_control->pal_bus_features_val = iprv.v2;
874         return iprv.status;
875 }
876
877 /* Enables/disables specific processor bus features */
878 static inline s64
879 ia64_pal_bus_set_features (pal_bus_features_u_t feature_select)
880 {
881         struct ia64_pal_retval iprv;
882         PAL_CALL_PHYS(iprv, PAL_BUS_SET_FEATURES, feature_select.pal_bus_features_val, 0, 0);
883         return iprv.status;
884 }
885
886 /* Get detailed cache information */
887 static inline s64
888 ia64_pal_cache_config_info (u64 cache_level, u64 cache_type, pal_cache_config_info_t *conf)
889 {
890         struct ia64_pal_retval iprv;
891
892         PAL_CALL(iprv, PAL_CACHE_INFO, cache_level, cache_type, 0);
893
894         if (iprv.status == 0) {
895                 conf->pcci_status                 = iprv.status;
896                 conf->pcci_info_1.pcci1_data      = iprv.v0;
897                 conf->pcci_info_2.pcci2_data      = iprv.v1;
898                 conf->pcci_reserved               = iprv.v2;
899         }
900         return iprv.status;
901
902 }
903
904 /* Get detailed cche protection information */
905 static inline s64
906 ia64_pal_cache_prot_info (u64 cache_level, u64 cache_type, pal_cache_protection_info_t *prot)
907 {
908         struct ia64_pal_retval iprv;
909
910         PAL_CALL(iprv, PAL_CACHE_PROT_INFO, cache_level, cache_type, 0);
911
912         if (iprv.status == 0) {
913                 prot->pcpi_status           = iprv.status;
914                 prot->pcp_info[0].pcpi_data = iprv.v0 & 0xffffffff;
915                 prot->pcp_info[1].pcpi_data = iprv.v0 >> 32;
916                 prot->pcp_info[2].pcpi_data = iprv.v1 & 0xffffffff;
917                 prot->pcp_info[3].pcpi_data = iprv.v1 >> 32;
918                 prot->pcp_info[4].pcpi_data = iprv.v2 & 0xffffffff;
919                 prot->pcp_info[5].pcpi_data = iprv.v2 >> 32;
920         }
921         return iprv.status;
922 }
923
924 /*
925  * Flush the processor instruction or data caches.  *PROGRESS must be
926  * initialized to zero before calling this for the first time..
927  */
928 static inline s64
929 ia64_pal_cache_flush (u64 cache_type, u64 invalidate, u64 *progress, u64 *vector)
930 {
931         struct ia64_pal_retval iprv;
932         PAL_CALL(iprv, PAL_CACHE_FLUSH, cache_type, invalidate, *progress);
933         if (vector)
934                 *vector = iprv.v0;
935         *progress = iprv.v1;
936         return iprv.status;
937 }
938
939
940 /* Initialize the processor controlled caches */
941 static inline s64
942 ia64_pal_cache_init (u64 level, u64 cache_type, u64 rest)
943 {
944         struct ia64_pal_retval iprv;
945         PAL_CALL(iprv, PAL_CACHE_INIT, level, cache_type, rest);
946         return iprv.status;
947 }
948
949 /* Initialize the tags and data of a data or unified cache line of
950  * processor controlled cache to known values without the availability
951  * of backing memory.
952  */
953 static inline s64
954 ia64_pal_cache_line_init (u64 physical_addr, u64 data_value)
955 {
956         struct ia64_pal_retval iprv;
957         PAL_CALL(iprv, PAL_CACHE_LINE_INIT, physical_addr, data_value, 0);
958         return iprv.status;
959 }
960
961
962 /* Read the data and tag of a processor controlled cache line for diags */
963 static inline s64
964 ia64_pal_cache_read (pal_cache_line_id_u_t line_id, u64 physical_addr)
965 {
966         struct ia64_pal_retval iprv;
967         PAL_CALL(iprv, PAL_CACHE_READ, line_id.pclid_data, physical_addr, 0);
968         return iprv.status;
969 }
970
971 /* Return summary information about the heirarchy of caches controlled by the processor */
972 static inline s64
973 ia64_pal_cache_summary (u64 *cache_levels, u64 *unique_caches)
974 {
975         struct ia64_pal_retval iprv;
976         PAL_CALL(iprv, PAL_CACHE_SUMMARY, 0, 0, 0);
977         if (cache_levels)
978                 *cache_levels = iprv.v0;
979         if (unique_caches)
980                 *unique_caches = iprv.v1;
981         return iprv.status;
982 }
983
984 /* Write the data and tag of a processor-controlled cache line for diags */
985 static inline s64
986 ia64_pal_cache_write (pal_cache_line_id_u_t line_id, u64 physical_addr, u64 data)
987 {
988         struct ia64_pal_retval iprv;
989         PAL_CALL(iprv, PAL_CACHE_WRITE, line_id.pclid_data, physical_addr, data);
990         return iprv.status;
991 }
992
993
994 /* Return the parameters needed to copy relocatable PAL procedures from ROM to memory */
995 static inline s64
996 ia64_pal_copy_info (u64 copy_type, u64 num_procs, u64 num_iopics,
997                     u64 *buffer_size, u64 *buffer_align)
998 {
999         struct ia64_pal_retval iprv;
1000         PAL_CALL(iprv, PAL_COPY_INFO, copy_type, num_procs, num_iopics);
1001         if (buffer_size)
1002                 *buffer_size = iprv.v0;
1003         if (buffer_align)
1004                 *buffer_align = iprv.v1;
1005         return iprv.status;
1006 }
1007
1008 /* Copy relocatable PAL procedures from ROM to memory */
1009 static inline s64
1010 ia64_pal_copy_pal (u64 target_addr, u64 alloc_size, u64 processor, u64 *pal_proc_offset)
1011 {
1012         struct ia64_pal_retval iprv;
1013         PAL_CALL(iprv, PAL_COPY_PAL, target_addr, alloc_size, processor);
1014         if (pal_proc_offset)
1015                 *pal_proc_offset = iprv.v0;
1016         return iprv.status;
1017 }
1018
1019 /* Return the number of instruction and data debug register pairs */
1020 static inline s64
1021 ia64_pal_debug_info (u64 *inst_regs,  u64 *data_regs)
1022 {
1023         struct ia64_pal_retval iprv;
1024         PAL_CALL(iprv, PAL_DEBUG_INFO, 0, 0, 0);
1025         if (inst_regs)
1026                 *inst_regs = iprv.v0;
1027         if (data_regs)
1028                 *data_regs = iprv.v1;
1029
1030         return iprv.status;
1031 }
1032
1033 #ifdef TBD
1034 /* Switch from IA64-system environment to IA-32 system environment */
1035 static inline s64
1036 ia64_pal_enter_ia32_env (ia32_env1, ia32_env2, ia32_env3)
1037 {
1038         struct ia64_pal_retval iprv;
1039         PAL_CALL(iprv, PAL_ENTER_IA_32_ENV, ia32_env1, ia32_env2, ia32_env3);
1040         return iprv.status;
1041 }
1042 #endif
1043
1044 /* Get unique geographical address of this processor on its bus */
1045 static inline s64
1046 ia64_pal_fixed_addr (u64 *global_unique_addr)
1047 {
1048         struct ia64_pal_retval iprv;
1049         PAL_CALL(iprv, PAL_FIXED_ADDR, 0, 0, 0);
1050         if (global_unique_addr)
1051                 *global_unique_addr = iprv.v0;
1052         return iprv.status;
1053 }
1054
1055 /* Get base frequency of the platform if generated by the processor */
1056 static inline s64
1057 ia64_pal_freq_base (u64 *platform_base_freq)
1058 {
1059         struct ia64_pal_retval iprv;
1060         PAL_CALL(iprv, PAL_FREQ_BASE, 0, 0, 0);
1061         if (platform_base_freq)
1062                 *platform_base_freq = iprv.v0;
1063         return iprv.status;
1064 }
1065
1066 /*
1067  * Get the ratios for processor frequency, bus frequency and interval timer to
1068  * to base frequency of the platform
1069  */
1070 static inline s64
1071 ia64_pal_freq_ratios (struct pal_freq_ratio *proc_ratio, struct pal_freq_ratio *bus_ratio,
1072                       struct pal_freq_ratio *itc_ratio)
1073 {
1074         struct ia64_pal_retval iprv;
1075         PAL_CALL(iprv, PAL_FREQ_RATIOS, 0, 0, 0);
1076         if (proc_ratio)
1077                 *(u64 *)proc_ratio = iprv.v0;
1078         if (bus_ratio)
1079                 *(u64 *)bus_ratio = iprv.v1;
1080         if (itc_ratio)
1081                 *(u64 *)itc_ratio = iprv.v2;
1082         return iprv.status;
1083 }
1084
1085 /* Make the processor enter HALT or one of the implementation dependent low
1086  * power states where prefetching and execution are suspended and cache and
1087  * TLB coherency is not maintained.
1088  */
1089 static inline s64
1090 ia64_pal_halt (u64 halt_state)
1091 {
1092         struct ia64_pal_retval iprv;
1093         PAL_CALL(iprv, PAL_HALT, halt_state, 0, 0);
1094         return iprv.status;
1095 }
1096
1097 typedef union pal_power_mgmt_info_u {
1098         u64                     ppmi_data;
1099         struct {
1100                u64              exit_latency            : 16,
1101                                 entry_latency           : 16,
1102                                 power_consumption       : 28,
1103                                 im                      : 1,
1104                                 co                      : 1,
1105                                 reserved                : 2;
1106         } pal_power_mgmt_info_s;
1107 } pal_power_mgmt_info_u_t;
1108
1109 /* Return information about processor's optional power management capabilities. */
1110 static inline s64
1111 ia64_pal_halt_info (pal_power_mgmt_info_u_t *power_buf)
1112 {
1113         struct ia64_pal_retval iprv;
1114         PAL_CALL_STK(iprv, PAL_HALT_INFO, (unsigned long) power_buf, 0, 0);
1115         return iprv.status;
1116 }
1117
1118 /* Get the current P-state information */
1119 static inline s64
1120 ia64_pal_get_pstate (u64 *pstate_index)
1121 {
1122         struct ia64_pal_retval iprv;
1123         PAL_CALL_STK(iprv, PAL_GET_PSTATE, 0, 0, 0);
1124         *pstate_index = iprv.v0;
1125         return iprv.status;
1126 }
1127
1128 /* Set the P-state */
1129 static inline s64
1130 ia64_pal_set_pstate (u64 pstate_index)
1131 {
1132         struct ia64_pal_retval iprv;
1133         PAL_CALL_STK(iprv, PAL_SET_PSTATE, pstate_index, 0, 0);
1134         return iprv.status;
1135 }
1136
1137 /* Processor branding information*/
1138 static inline s64
1139 ia64_pal_get_brand_info (char *brand_info)
1140 {
1141         struct ia64_pal_retval iprv;
1142         PAL_CALL_STK(iprv, PAL_BRAND_INFO, 0, (u64)brand_info, 0);
1143         return iprv.status;
1144 }
1145
1146 /* Cause the processor to enter LIGHT HALT state, where prefetching and execution are
1147  * suspended, but cache and TLB coherency is maintained.
1148  */
1149 static inline s64
1150 ia64_pal_halt_light (void)
1151 {
1152         struct ia64_pal_retval iprv;
1153         PAL_CALL(iprv, PAL_HALT_LIGHT, 0, 0, 0);
1154         return iprv.status;
1155 }
1156
1157 /* Clear all the processor error logging   registers and reset the indicator that allows
1158  * the error logging registers to be written. This procedure also checks the pending
1159  * machine check bit and pending INIT bit and reports their states.
1160  */
1161 static inline s64
1162 ia64_pal_mc_clear_log (u64 *pending_vector)
1163 {
1164         struct ia64_pal_retval iprv;
1165         PAL_CALL(iprv, PAL_MC_CLEAR_LOG, 0, 0, 0);
1166         if (pending_vector)
1167                 *pending_vector = iprv.v0;
1168         return iprv.status;
1169 }
1170
1171 /* Ensure that all outstanding transactions in a processor are completed or that any
1172  * MCA due to thes outstanding transaction is taken.
1173  */
1174 static inline s64
1175 ia64_pal_mc_drain (void)
1176 {
1177         struct ia64_pal_retval iprv;
1178         PAL_CALL(iprv, PAL_MC_DRAIN, 0, 0, 0);
1179         return iprv.status;
1180 }
1181
1182 /* Return the machine check dynamic processor state */
1183 static inline s64
1184 ia64_pal_mc_dynamic_state (u64 offset, u64 *size, u64 *pds)
1185 {
1186         struct ia64_pal_retval iprv;
1187         PAL_CALL(iprv, PAL_MC_DYNAMIC_STATE, offset, 0, 0);
1188         if (size)
1189                 *size = iprv.v0;
1190         if (pds)
1191                 *pds = iprv.v1;
1192         return iprv.status;
1193 }
1194
1195 /* Return processor machine check information */
1196 static inline s64
1197 ia64_pal_mc_error_info (u64 info_index, u64 type_index, u64 *size, u64 *error_info)
1198 {
1199         struct ia64_pal_retval iprv;
1200         PAL_CALL(iprv, PAL_MC_ERROR_INFO, info_index, type_index, 0);
1201         if (size)
1202                 *size = iprv.v0;
1203         if (error_info)
1204                 *error_info = iprv.v1;
1205         return iprv.status;
1206 }
1207
1208 /* Inform PALE_CHECK whether a machine check is expected so that PALE_CHECK willnot
1209  * attempt to correct any expected machine checks.
1210  */
1211 static inline s64
1212 ia64_pal_mc_expected (u64 expected, u64 *previous)
1213 {
1214         struct ia64_pal_retval iprv;
1215         PAL_CALL(iprv, PAL_MC_EXPECTED, expected, 0, 0);
1216         if (previous)
1217                 *previous = iprv.v0;
1218         return iprv.status;
1219 }
1220
1221 /* Register a platform dependent location with PAL to which it can save
1222  * minimal processor state in the event of a machine check or initialization
1223  * event.
1224  */
1225 static inline s64
1226 ia64_pal_mc_register_mem (u64 physical_addr)
1227 {
1228         struct ia64_pal_retval iprv;
1229         PAL_CALL(iprv, PAL_MC_REGISTER_MEM, physical_addr, 0, 0);
1230         return iprv.status;
1231 }
1232
1233 /* Restore minimal architectural processor state, set CMC interrupt if necessary
1234  * and resume execution
1235  */
1236 static inline s64
1237 ia64_pal_mc_resume (u64 set_cmci, u64 save_ptr)
1238 {
1239         struct ia64_pal_retval iprv;
1240         PAL_CALL(iprv, PAL_MC_RESUME, set_cmci, save_ptr, 0);
1241         return iprv.status;
1242 }
1243
1244 /* Return the memory attributes implemented by the processor */
1245 static inline s64
1246 ia64_pal_mem_attrib (u64 *mem_attrib)
1247 {
1248         struct ia64_pal_retval iprv;
1249         PAL_CALL(iprv, PAL_MEM_ATTRIB, 0, 0, 0);
1250         if (mem_attrib)
1251                 *mem_attrib = iprv.v0 & 0xff;
1252         return iprv.status;
1253 }
1254
1255 /* Return the amount of memory needed for second phase of processor
1256  * self-test and the required alignment of memory.
1257  */
1258 static inline s64
1259 ia64_pal_mem_for_test (u64 *bytes_needed, u64 *alignment)
1260 {
1261         struct ia64_pal_retval iprv;
1262         PAL_CALL(iprv, PAL_MEM_FOR_TEST, 0, 0, 0);
1263         if (bytes_needed)
1264                 *bytes_needed = iprv.v0;
1265         if (alignment)
1266                 *alignment = iprv.v1;
1267         return iprv.status;
1268 }
1269
1270 typedef union pal_perf_mon_info_u {
1271         u64                       ppmi_data;
1272         struct {
1273                u64              generic         : 8,
1274                                 width           : 8,
1275                                 cycles          : 8,
1276                                 retired         : 8,
1277                                 reserved        : 32;
1278         } pal_perf_mon_info_s;
1279 } pal_perf_mon_info_u_t;
1280
1281 /* Return the performance monitor information about what can be counted
1282  * and how to configure the monitors to count the desired events.
1283  */
1284 static inline s64
1285 ia64_pal_perf_mon_info (u64 *pm_buffer, pal_perf_mon_info_u_t *pm_info)
1286 {
1287         struct ia64_pal_retval iprv;
1288         PAL_CALL(iprv, PAL_PERF_MON_INFO, (unsigned long) pm_buffer, 0, 0);
1289         if (pm_info)
1290                 pm_info->ppmi_data = iprv.v0;
1291         return iprv.status;
1292 }
1293
1294 /* Specifies the physical address of the processor interrupt block
1295  * and I/O port space.
1296  */
1297 static inline s64
1298 ia64_pal_platform_addr (u64 type, u64 physical_addr)
1299 {
1300         struct ia64_pal_retval iprv;
1301         PAL_CALL(iprv, PAL_PLATFORM_ADDR, type, physical_addr, 0);
1302         return iprv.status;
1303 }
1304
1305 /* Set the SAL PMI entrypoint in memory */
1306 static inline s64
1307 ia64_pal_pmi_entrypoint (u64 sal_pmi_entry_addr)
1308 {
1309         struct ia64_pal_retval iprv;
1310         PAL_CALL(iprv, PAL_PMI_ENTRYPOINT, sal_pmi_entry_addr, 0, 0);
1311         return iprv.status;
1312 }
1313
1314 struct pal_features_s;
1315 /* Provide information about configurable processor features */
1316 static inline s64
1317 ia64_pal_proc_get_features (u64 *features_avail,
1318                             u64 *features_status,
1319                             u64 *features_control)
1320 {
1321         struct ia64_pal_retval iprv;
1322         PAL_CALL_PHYS(iprv, PAL_PROC_GET_FEATURES, 0, 0, 0);
1323         if (iprv.status == 0) {
1324                 *features_avail   = iprv.v0;
1325                 *features_status  = iprv.v1;
1326                 *features_control = iprv.v2;
1327         }
1328         return iprv.status;
1329 }
1330
1331 /* Enable/disable processor dependent features */
1332 static inline s64
1333 ia64_pal_proc_set_features (u64 feature_select)
1334 {
1335         struct ia64_pal_retval iprv;
1336         PAL_CALL_PHYS(iprv, PAL_PROC_SET_FEATURES, feature_select, 0, 0);
1337         return iprv.status;
1338 }
1339
1340 /*
1341  * Put everything in a struct so we avoid the global offset table whenever
1342  * possible.
1343  */
1344 typedef struct ia64_ptce_info_s {
1345         u64             base;
1346         u32             count[2];
1347         u32             stride[2];
1348 } ia64_ptce_info_t;
1349
1350 /* Return the information required for the architected loop used to purge
1351  * (initialize) the entire TC
1352  */
1353 static inline s64
1354 ia64_get_ptce (ia64_ptce_info_t *ptce)
1355 {
1356         struct ia64_pal_retval iprv;
1357
1358         if (!ptce)
1359                 return -1;
1360
1361         PAL_CALL(iprv, PAL_PTCE_INFO, 0, 0, 0);
1362         if (iprv.status == 0) {
1363                 ptce->base = iprv.v0;
1364                 ptce->count[0] = iprv.v1 >> 32;
1365                 ptce->count[1] = iprv.v1 & 0xffffffff;
1366                 ptce->stride[0] = iprv.v2 >> 32;
1367                 ptce->stride[1] = iprv.v2 & 0xffffffff;
1368         }
1369         return iprv.status;
1370 }
1371
1372 /* Return info about implemented application and control registers. */
1373 static inline s64
1374 ia64_pal_register_info (u64 info_request, u64 *reg_info_1, u64 *reg_info_2)
1375 {
1376         struct ia64_pal_retval iprv;
1377         PAL_CALL(iprv, PAL_REGISTER_INFO, info_request, 0, 0);
1378         if (reg_info_1)
1379                 *reg_info_1 = iprv.v0;
1380         if (reg_info_2)
1381                 *reg_info_2 = iprv.v1;
1382         return iprv.status;
1383 }
1384
1385 typedef union pal_hints_u {
1386         u64                     ph_data;
1387         struct {
1388                u64              si              : 1,
1389                                 li              : 1,
1390                                 reserved        : 62;
1391         } pal_hints_s;
1392 } pal_hints_u_t;
1393
1394 /* Return information about the register stack and RSE for this processor
1395  * implementation.
1396  */
1397 static inline s64
1398 ia64_pal_rse_info (u64 *num_phys_stacked, pal_hints_u_t *hints)
1399 {
1400         struct ia64_pal_retval iprv;
1401         PAL_CALL(iprv, PAL_RSE_INFO, 0, 0, 0);
1402         if (num_phys_stacked)
1403                 *num_phys_stacked = iprv.v0;
1404         if (hints)
1405                 hints->ph_data = iprv.v1;
1406         return iprv.status;
1407 }
1408
1409 /* Cause the processor to enter SHUTDOWN state, where prefetching and execution are
1410  * suspended, but cause cache and TLB coherency to be maintained.
1411  * This is usually called in IA-32 mode.
1412  */
1413 static inline s64
1414 ia64_pal_shutdown (void)
1415 {
1416         struct ia64_pal_retval iprv;
1417         PAL_CALL(iprv, PAL_SHUTDOWN, 0, 0, 0);
1418         return iprv.status;
1419 }
1420
1421 /* Perform the second phase of processor self-test. */
1422 static inline s64
1423 ia64_pal_test_proc (u64 test_addr, u64 test_size, u64 attributes, u64 *self_test_state)
1424 {
1425         struct ia64_pal_retval iprv;
1426         PAL_CALL(iprv, PAL_TEST_PROC, test_addr, test_size, attributes);
1427         if (self_test_state)
1428                 *self_test_state = iprv.v0;
1429         return iprv.status;
1430 }
1431
1432 typedef union  pal_version_u {
1433         u64     pal_version_val;
1434         struct {
1435                 u64     pv_pal_b_rev            :       8;
1436                 u64     pv_pal_b_model          :       8;
1437                 u64     pv_reserved1            :       8;
1438                 u64     pv_pal_vendor           :       8;
1439                 u64     pv_pal_a_rev            :       8;
1440                 u64     pv_pal_a_model          :       8;
1441                 u64     pv_reserved2            :       16;
1442         } pal_version_s;
1443 } pal_version_u_t;
1444
1445
1446 /*
1447  * Return PAL version information.  While the documentation states that
1448  * PAL_VERSION can be called in either physical or virtual mode, some
1449  * implementations only allow physical calls.  We don't call it very often,
1450  * so the overhead isn't worth eliminating.
1451  */
1452 static inline s64
1453 ia64_pal_version (pal_version_u_t *pal_min_version, pal_version_u_t *pal_cur_version)
1454 {
1455         struct ia64_pal_retval iprv;
1456         PAL_CALL_PHYS(iprv, PAL_VERSION, 0, 0, 0);
1457         if (pal_min_version)
1458                 pal_min_version->pal_version_val = iprv.v0;
1459
1460         if (pal_cur_version)
1461                 pal_cur_version->pal_version_val = iprv.v1;
1462
1463         return iprv.status;
1464 }
1465
1466 typedef union pal_tc_info_u {
1467         u64                     pti_val;
1468         struct {
1469                u64              num_sets        :       8,
1470                                 associativity   :       8,
1471                                 num_entries     :       16,
1472                                 pf              :       1,
1473                                 unified         :       1,
1474                                 reduce_tr       :       1,
1475                                 reserved        :       29;
1476         } pal_tc_info_s;
1477 } pal_tc_info_u_t;
1478
1479 #define tc_reduce_tr            pal_tc_info_s.reduce_tr
1480 #define tc_unified              pal_tc_info_s.unified
1481 #define tc_pf                   pal_tc_info_s.pf
1482 #define tc_num_entries          pal_tc_info_s.num_entries
1483 #define tc_associativity        pal_tc_info_s.associativity
1484 #define tc_num_sets             pal_tc_info_s.num_sets
1485
1486
1487 /* Return information about the virtual memory characteristics of the processor
1488  * implementation.
1489  */
1490 static inline s64
1491 ia64_pal_vm_info (u64 tc_level, u64 tc_type,  pal_tc_info_u_t *tc_info, u64 *tc_pages)
1492 {
1493         struct ia64_pal_retval iprv;
1494         PAL_CALL(iprv, PAL_VM_INFO, tc_level, tc_type, 0);
1495         if (tc_info)
1496                 tc_info->pti_val = iprv.v0;
1497         if (tc_pages)
1498                 *tc_pages = iprv.v1;
1499         return iprv.status;
1500 }
1501
1502 /* Get page size information about the virtual memory characteristics of the processor
1503  * implementation.
1504  */
1505 static inline s64
1506 ia64_pal_vm_page_size (u64 *tr_pages, u64 *vw_pages)
1507 {
1508         struct ia64_pal_retval iprv;
1509         PAL_CALL(iprv, PAL_VM_PAGE_SIZE, 0, 0, 0);
1510         if (tr_pages)
1511                 *tr_pages = iprv.v0;
1512         if (vw_pages)
1513                 *vw_pages = iprv.v1;
1514         return iprv.status;
1515 }
1516
1517 typedef union pal_vm_info_1_u {
1518         u64                     pvi1_val;
1519         struct {
1520                 u64             vw              : 1,
1521                                 phys_add_size   : 7,
1522                                 key_size        : 8,
1523                                 max_pkr         : 8,
1524                                 hash_tag_id     : 8,
1525                                 max_dtr_entry   : 8,
1526                                 max_itr_entry   : 8,
1527                                 max_unique_tcs  : 8,
1528                                 num_tc_levels   : 8;
1529         } pal_vm_info_1_s;
1530 } pal_vm_info_1_u_t;
1531
1532 typedef union pal_vm_info_2_u {
1533         u64                     pvi2_val;
1534         struct {
1535                 u64             impl_va_msb     : 8,
1536                                 rid_size        : 8,
1537                                 reserved        : 48;
1538         } pal_vm_info_2_s;
1539 } pal_vm_info_2_u_t;
1540
1541 /* Get summary information about the virtual memory characteristics of the processor
1542  * implementation.
1543  */
1544 static inline s64
1545 ia64_pal_vm_summary (pal_vm_info_1_u_t *vm_info_1, pal_vm_info_2_u_t *vm_info_2)
1546 {
1547         struct ia64_pal_retval iprv;
1548         PAL_CALL(iprv, PAL_VM_SUMMARY, 0, 0, 0);
1549         if (vm_info_1)
1550                 vm_info_1->pvi1_val = iprv.v0;
1551         if (vm_info_2)
1552                 vm_info_2->pvi2_val = iprv.v1;
1553         return iprv.status;
1554 }
1555
1556 typedef union pal_itr_valid_u {
1557         u64                     piv_val;
1558         struct {
1559                u64              access_rights_valid     : 1,
1560                                 priv_level_valid        : 1,
1561                                 dirty_bit_valid         : 1,
1562                                 mem_attr_valid          : 1,
1563                                 reserved                : 60;
1564         } pal_tr_valid_s;
1565 } pal_tr_valid_u_t;
1566
1567 /* Read a translation register */
1568 static inline s64
1569 ia64_pal_tr_read (u64 reg_num, u64 tr_type, u64 *tr_buffer, pal_tr_valid_u_t *tr_valid)
1570 {
1571         struct ia64_pal_retval iprv;
1572         PAL_CALL_PHYS_STK(iprv, PAL_VM_TR_READ, reg_num, tr_type,(u64)ia64_tpa(tr_buffer));
1573         if (tr_valid)
1574                 tr_valid->piv_val = iprv.v0;
1575         return iprv.status;
1576 }
1577
1578 /*
1579  * PAL_PREFETCH_VISIBILITY transaction types
1580  */
1581 #define PAL_VISIBILITY_VIRTUAL          0
1582 #define PAL_VISIBILITY_PHYSICAL         1
1583
1584 /*
1585  * PAL_PREFETCH_VISIBILITY return codes
1586  */
1587 #define PAL_VISIBILITY_OK               1
1588 #define PAL_VISIBILITY_OK_REMOTE_NEEDED 0
1589 #define PAL_VISIBILITY_INVAL_ARG        -2
1590 #define PAL_VISIBILITY_ERROR            -3
1591
1592 static inline s64
1593 ia64_pal_prefetch_visibility (s64 trans_type)
1594 {
1595         struct ia64_pal_retval iprv;
1596         PAL_CALL(iprv, PAL_PREFETCH_VISIBILITY, trans_type, 0, 0);
1597         return iprv.status;
1598 }
1599
1600 /* data structure for getting information on logical to physical mappings */
1601 typedef union pal_log_overview_u {
1602         struct {
1603                 u64     num_log         :16,    /* Total number of logical
1604                                                  * processors on this die
1605                                                  */
1606                         tpc             :8,     /* Threads per core */
1607                         reserved3       :8,     /* Reserved */
1608                         cpp             :8,     /* Cores per processor */
1609                         reserved2       :8,     /* Reserved */
1610                         ppid            :8,     /* Physical processor ID */
1611                         reserved1       :8;     /* Reserved */
1612         } overview_bits;
1613         u64 overview_data;
1614 } pal_log_overview_t;
1615
1616 typedef union pal_proc_n_log_info1_u{
1617         struct {
1618                 u64     tid             :16,    /* Thread id */
1619                         reserved2       :16,    /* Reserved */
1620                         cid             :16,    /* Core id */
1621                         reserved1       :16;    /* Reserved */
1622         } ppli1_bits;
1623         u64     ppli1_data;
1624 } pal_proc_n_log_info1_t;
1625
1626 typedef union pal_proc_n_log_info2_u {
1627         struct {
1628                 u64     la              :16,    /* Logical address */
1629                         reserved        :48;    /* Reserved */
1630         } ppli2_bits;
1631         u64     ppli2_data;
1632 } pal_proc_n_log_info2_t;
1633
1634 typedef struct pal_logical_to_physical_s
1635 {
1636         pal_log_overview_t overview;
1637         pal_proc_n_log_info1_t ppli1;
1638         pal_proc_n_log_info2_t ppli2;
1639 } pal_logical_to_physical_t;
1640
1641 #define overview_num_log        overview.overview_bits.num_log
1642 #define overview_tpc            overview.overview_bits.tpc
1643 #define overview_cpp            overview.overview_bits.cpp
1644 #define overview_ppid           overview.overview_bits.ppid
1645 #define log1_tid                ppli1.ppli1_bits.tid
1646 #define log1_cid                ppli1.ppli1_bits.cid
1647 #define log2_la                 ppli2.ppli2_bits.la
1648
1649 /* Get information on logical to physical processor mappings. */
1650 static inline s64
1651 ia64_pal_logical_to_phys(u64 proc_number, pal_logical_to_physical_t *mapping)
1652 {
1653         struct ia64_pal_retval iprv;
1654
1655         PAL_CALL(iprv, PAL_LOGICAL_TO_PHYSICAL, proc_number, 0, 0);
1656
1657         if (iprv.status == PAL_STATUS_SUCCESS)
1658         {
1659                 mapping->overview.overview_data = iprv.v0;
1660                 mapping->ppli1.ppli1_data = iprv.v1;
1661                 mapping->ppli2.ppli2_data = iprv.v2;
1662         }
1663
1664         return iprv.status;
1665 }
1666
1667 typedef struct pal_cache_shared_info_s
1668 {
1669         u64 num_shared;
1670         pal_proc_n_log_info1_t ppli1;
1671         pal_proc_n_log_info2_t ppli2;
1672 } pal_cache_shared_info_t;
1673
1674 /* Get information on logical to physical processor mappings. */
1675 static inline s64
1676 ia64_pal_cache_shared_info(u64 level,
1677                 u64 type,
1678                 u64 proc_number,
1679                 pal_cache_shared_info_t *info)
1680 {
1681         struct ia64_pal_retval iprv;
1682
1683         PAL_CALL(iprv, PAL_CACHE_SHARED_INFO, level, type, proc_number);
1684
1685         if (iprv.status == PAL_STATUS_SUCCESS) {
1686                 info->num_shared = iprv.v0;
1687                 info->ppli1.ppli1_data = iprv.v1;
1688                 info->ppli2.ppli2_data = iprv.v2;
1689         }
1690
1691         return iprv.status;
1692 }
1693 #endif /* __ASSEMBLY__ */
1694
1695 #endif /* _ASM_IA64_PAL_H */