Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * System Abstraction Layer (SAL) interface routines.
4 *
5 * Copyright (C) 1998, 1999, 2001, 2003 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 * Copyright (C) 1999 VA Linux Systems
8 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/spinlock.h>
15#include <linux/string.h>
16
17#include <asm/delay.h>
18#include <asm/page.h>
19#include <asm/sal.h>
20#include <asm/pal.h>
21#include <asm/xtp.h>
22
23 __cacheline_aligned DEFINE_SPINLOCK(sal_lock);
24unsigned long sal_platform_features;
25
26unsigned short sal_revision;
27unsigned short sal_version;
28
29#define SAL_MAJOR(x) ((x) >> 8)
30#define SAL_MINOR(x) ((x) & 0xff)
31
32static struct {
33 void *addr; /* function entry point */
34 void *gpval; /* gp value to use */
35} pdesc;
36
37static long
38default_handler (void)
39{
40 return -1;
41}
42
43ia64_sal_handler ia64_sal = (ia64_sal_handler) default_handler;
44ia64_sal_desc_ptc_t *ia64_ptc_domain_info;
45
46const char *
47ia64_sal_strerror (long status)
48{
49 const char *str;
50 switch (status) {
51 case 0: str = "Call completed without error"; break;
52 case 1: str = "Effect a warm boot of the system to complete "
53 "the update"; break;
54 case -1: str = "Not implemented"; break;
55 case -2: str = "Invalid argument"; break;
56 case -3: str = "Call completed with error"; break;
57 case -4: str = "Virtual address not registered"; break;
58 case -5: str = "No information available"; break;
59 case -6: str = "Insufficient space to add the entry"; break;
60 case -7: str = "Invalid entry_addr value"; break;
61 case -8: str = "Invalid interrupt vector"; break;
62 case -9: str = "Requested memory not available"; break;
63 case -10: str = "Unable to write to the NVM device"; break;
64 case -11: str = "Invalid partition type specified"; break;
65 case -12: str = "Invalid NVM_Object id specified"; break;
66 case -13: str = "NVM_Object already has the maximum number "
67 "of partitions"; break;
68 case -14: str = "Insufficient space in partition for the "
69 "requested write sub-function"; break;
70 case -15: str = "Insufficient data buffer space for the "
71 "requested read record sub-function"; break;
72 case -16: str = "Scratch buffer required for the write/delete "
73 "sub-function"; break;
74 case -17: str = "Insufficient space in the NVM_Object for the "
75 "requested create sub-function"; break;
76 case -18: str = "Invalid value specified in the partition_rec "
77 "argument"; break;
78 case -19: str = "Record oriented I/O not supported for this "
79 "partition"; break;
80 case -20: str = "Bad format of record to be written or "
81 "required keyword variable not "
82 "specified"; break;
83 default: str = "Unknown SAL status code"; break;
84 }
85 return str;
86}
87
88void __init
89ia64_sal_handler_init (void *entry_point, void *gpval)
90{
91 /* fill in the SAL procedure descriptor and point ia64_sal to it: */
92 pdesc.addr = entry_point;
93 pdesc.gpval = gpval;
94 ia64_sal = (ia64_sal_handler) &pdesc;
95}
96
97static void __init
98check_versions (struct ia64_sal_systab *systab)
99{
100 sal_revision = (systab->sal_rev_major << 8) | systab->sal_rev_minor;
101 sal_version = (systab->sal_b_rev_major << 8) | systab->sal_b_rev_minor;
102
103 /* Check for broken firmware */
104 if ((sal_revision == SAL_VERSION_CODE(49, 29))
105 && (sal_version == SAL_VERSION_CODE(49, 29)))
106 {
107 /*
108 * Old firmware for zx2000 prototypes have this weird version number,
109 * reset it to something sane.
110 */
111 sal_revision = SAL_VERSION_CODE(2, 8);
112 sal_version = SAL_VERSION_CODE(0, 0);
113 }
114}
115
116static void __init
117sal_desc_entry_point (void *p)
118{
119 struct ia64_sal_desc_entry_point *ep = p;
120 ia64_pal_handler_init(__va(ep->pal_proc));
121 ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp));
122}
123
124#ifdef CONFIG_SMP
125static void __init
126set_smp_redirect (int flag)
127{
128#ifndef CONFIG_HOTPLUG_CPU
129 if (no_int_routing)
130 smp_int_redirect &= ~flag;
131 else
132 smp_int_redirect |= flag;
133#else
134 /*
135 * For CPU Hotplug we dont want to do any chipset supported
136 * interrupt redirection. The reason is this would require that
137 * All interrupts be stopped and hard bind the irq to a cpu.
138 * Later when the interrupt is fired we need to set the redir hint
139 * on again in the vector. This is cumbersome for something that the
140 * user mode irq balancer will solve anyways.
141 */
142 no_int_routing=1;
143 smp_int_redirect &= ~flag;
144#endif
145}
146#else
147#define set_smp_redirect(flag) do { } while (0)
148#endif
149
150static void __init
151sal_desc_platform_feature (void *p)
152{
153 struct ia64_sal_desc_platform_feature *pf = p;
154 sal_platform_features = pf->feature_mask;
155
156 printk(KERN_INFO "SAL Platform features:");
157 if (!sal_platform_features) {
158 printk(" None\n");
159 return;
160 }
161
162 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_BUS_LOCK)
163 printk(" BusLock");
164 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_IRQ_REDIR_HINT) {
165 printk(" IRQ_Redirection");
166 set_smp_redirect(SMP_IRQ_REDIRECTION);
167 }
168 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_IPI_REDIR_HINT) {
169 printk(" IPI_Redirection");
170 set_smp_redirect(SMP_IPI_REDIRECTION);
171 }
172 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT)
173 printk(" ITC_Drift");
174 printk("\n");
175}
176
177#ifdef CONFIG_SMP
178static void __init
179sal_desc_ap_wakeup (void *p)
180{
181 struct ia64_sal_desc_ap_wakeup *ap = p;
182
183 switch (ap->mechanism) {
184 case IA64_SAL_AP_EXTERNAL_INT:
185 ap_wakeup_vector = ap->vector;
186 printk(KERN_INFO "SAL: AP wakeup using external interrupt "
187 "vector 0x%lx\n", ap_wakeup_vector);
188 break;
189 default:
190 printk(KERN_ERR "SAL: AP wakeup mechanism unsupported!\n");
191 break;
192 }
193}
194
195static void __init
196chk_nointroute_opt(void)
197{
198 char *cp;
199
200 for (cp = boot_command_line; *cp; ) {
201 if (memcmp(cp, "nointroute", 10) == 0) {
202 no_int_routing = 1;
203 printk ("no_int_routing on\n");
204 break;
205 } else {
206 while (*cp != ' ' && *cp)
207 ++cp;
208 while (*cp == ' ')
209 ++cp;
210 }
211 }
212}
213
214#else
215static void __init sal_desc_ap_wakeup(void *p) { }
216#endif
217
218/*
219 * HP rx5670 firmware polls for interrupts during SAL_CACHE_FLUSH by reading
220 * cr.ivr, but it never writes cr.eoi. This leaves any interrupt marked as
221 * "in-service" and masks other interrupts of equal or lower priority.
222 *
223 * HP internal defect reports: F1859, F2775, F3031.
224 */
225static int sal_cache_flush_drops_interrupts;
226
227static int __init
228force_pal_cache_flush(char *str)
229{
230 sal_cache_flush_drops_interrupts = 1;
231 return 0;
232}
233early_param("force_pal_cache_flush", force_pal_cache_flush);
234
235void __init
236check_sal_cache_flush (void)
237{
238 unsigned long flags;
239 int cpu;
240 u64 vector, cache_type = 3;
241 struct ia64_sal_retval isrv;
242
243 if (sal_cache_flush_drops_interrupts)
244 return;
245
246 cpu = get_cpu();
247 local_irq_save(flags);
248
249 /*
250 * Send ourselves a timer interrupt, wait until it's reported, and see
251 * if SAL_CACHE_FLUSH drops it.
252 */
253 ia64_send_ipi(cpu, IA64_TIMER_VECTOR, IA64_IPI_DM_INT, 0);
254
255 while (!ia64_get_irr(IA64_TIMER_VECTOR))
256 cpu_relax();
257
258 SAL_CALL(isrv, SAL_CACHE_FLUSH, cache_type, 0, 0, 0, 0, 0, 0);
259
260 if (isrv.status)
261 printk(KERN_ERR "SAL_CAL_FLUSH failed with %ld\n", isrv.status);
262
263 if (ia64_get_irr(IA64_TIMER_VECTOR)) {
264 vector = ia64_get_ivr();
265 ia64_eoi();
266 WARN_ON(vector != IA64_TIMER_VECTOR);
267 } else {
268 sal_cache_flush_drops_interrupts = 1;
269 printk(KERN_ERR "SAL: SAL_CACHE_FLUSH drops interrupts; "
270 "PAL_CACHE_FLUSH will be used instead\n");
271 ia64_eoi();
272 }
273
274 local_irq_restore(flags);
275 put_cpu();
276}
277
278s64
279ia64_sal_cache_flush (u64 cache_type)
280{
281 struct ia64_sal_retval isrv;
282
283 if (sal_cache_flush_drops_interrupts) {
284 unsigned long flags;
285 u64 progress;
286 s64 rc;
287
288 progress = 0;
289 local_irq_save(flags);
290 rc = ia64_pal_cache_flush(cache_type,
291 PAL_CACHE_FLUSH_INVALIDATE, &progress, NULL);
292 local_irq_restore(flags);
293 return rc;
294 }
295
296 SAL_CALL(isrv, SAL_CACHE_FLUSH, cache_type, 0, 0, 0, 0, 0, 0);
297 return isrv.status;
298}
299EXPORT_SYMBOL_GPL(ia64_sal_cache_flush);
300
301void __init
302ia64_sal_init (struct ia64_sal_systab *systab)
303{
304 char *p;
305 int i;
306
307 if (!systab) {
308 printk(KERN_WARNING "Hmm, no SAL System Table.\n");
309 return;
310 }
311
312 if (strncmp(systab->signature, "SST_", 4) != 0)
313 printk(KERN_ERR "bad signature in system table!");
314
315 check_versions(systab);
316#ifdef CONFIG_SMP
317 chk_nointroute_opt();
318#endif
319
320 /* revisions are coded in BCD, so %x does the job for us */
321 printk(KERN_INFO "SAL %x.%x: %.32s %.32s%sversion %x.%x\n",
322 SAL_MAJOR(sal_revision), SAL_MINOR(sal_revision),
323 systab->oem_id, systab->product_id,
324 systab->product_id[0] ? " " : "",
325 SAL_MAJOR(sal_version), SAL_MINOR(sal_version));
326
327 p = (char *) (systab + 1);
328 for (i = 0; i < systab->entry_count; i++) {
329 /*
330 * The first byte of each entry type contains the type
331 * descriptor.
332 */
333 switch (*p) {
334 case SAL_DESC_ENTRY_POINT:
335 sal_desc_entry_point(p);
336 break;
337 case SAL_DESC_PLATFORM_FEATURE:
338 sal_desc_platform_feature(p);
339 break;
340 case SAL_DESC_PTC:
341 ia64_ptc_domain_info = (ia64_sal_desc_ptc_t *)p;
342 break;
343 case SAL_DESC_AP_WAKEUP:
344 sal_desc_ap_wakeup(p);
345 break;
346 }
347 p += SAL_DESC_SIZE(*p);
348 }
349
350}
351
352int
353ia64_sal_oemcall(struct ia64_sal_retval *isrvp, u64 oemfunc, u64 arg1,
354 u64 arg2, u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7)
355{
356 if (oemfunc < IA64_SAL_OEMFUNC_MIN || oemfunc > IA64_SAL_OEMFUNC_MAX)
357 return -1;
358 SAL_CALL(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
359 return 0;
360}
361EXPORT_SYMBOL(ia64_sal_oemcall);
362
363int
364ia64_sal_oemcall_nolock(struct ia64_sal_retval *isrvp, u64 oemfunc, u64 arg1,
365 u64 arg2, u64 arg3, u64 arg4, u64 arg5, u64 arg6,
366 u64 arg7)
367{
368 if (oemfunc < IA64_SAL_OEMFUNC_MIN || oemfunc > IA64_SAL_OEMFUNC_MAX)
369 return -1;
370 SAL_CALL_NOLOCK(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6,
371 arg7);
372 return 0;
373}
374EXPORT_SYMBOL(ia64_sal_oemcall_nolock);
375
376int
377ia64_sal_oemcall_reentrant(struct ia64_sal_retval *isrvp, u64 oemfunc,
378 u64 arg1, u64 arg2, u64 arg3, u64 arg4, u64 arg5,
379 u64 arg6, u64 arg7)
380{
381 if (oemfunc < IA64_SAL_OEMFUNC_MIN || oemfunc > IA64_SAL_OEMFUNC_MAX)
382 return -1;
383 SAL_CALL_REENTRANT(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6,
384 arg7);
385 return 0;
386}
387EXPORT_SYMBOL(ia64_sal_oemcall_reentrant);
388
389long
390ia64_sal_freq_base (unsigned long which, unsigned long *ticks_per_second,
391 unsigned long *drift_info)
392{
393 struct ia64_sal_retval isrv;
394
395 SAL_CALL(isrv, SAL_FREQ_BASE, which, 0, 0, 0, 0, 0, 0);
396 *ticks_per_second = isrv.v0;
397 *drift_info = isrv.v1;
398 return isrv.status;
399}
400EXPORT_SYMBOL_GPL(ia64_sal_freq_base);
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * System Abstraction Layer (SAL) interface routines.
4 *
5 * Copyright (C) 1998, 1999, 2001, 2003 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 * Copyright (C) 1999 VA Linux Systems
8 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/spinlock.h>
15#include <linux/string.h>
16
17#include <asm/delay.h>
18#include <asm/page.h>
19#include <asm/sal.h>
20#include <asm/pal.h>
21
22 __cacheline_aligned DEFINE_SPINLOCK(sal_lock);
23unsigned long sal_platform_features;
24
25unsigned short sal_revision;
26unsigned short sal_version;
27
28#define SAL_MAJOR(x) ((x) >> 8)
29#define SAL_MINOR(x) ((x) & 0xff)
30
31static struct {
32 void *addr; /* function entry point */
33 void *gpval; /* gp value to use */
34} pdesc;
35
36static long
37default_handler (void)
38{
39 return -1;
40}
41
42ia64_sal_handler ia64_sal = (ia64_sal_handler) default_handler;
43ia64_sal_desc_ptc_t *ia64_ptc_domain_info;
44
45const char *
46ia64_sal_strerror (long status)
47{
48 const char *str;
49 switch (status) {
50 case 0: str = "Call completed without error"; break;
51 case 1: str = "Effect a warm boot of the system to complete "
52 "the update"; break;
53 case -1: str = "Not implemented"; break;
54 case -2: str = "Invalid argument"; break;
55 case -3: str = "Call completed with error"; break;
56 case -4: str = "Virtual address not registered"; break;
57 case -5: str = "No information available"; break;
58 case -6: str = "Insufficient space to add the entry"; break;
59 case -7: str = "Invalid entry_addr value"; break;
60 case -8: str = "Invalid interrupt vector"; break;
61 case -9: str = "Requested memory not available"; break;
62 case -10: str = "Unable to write to the NVM device"; break;
63 case -11: str = "Invalid partition type specified"; break;
64 case -12: str = "Invalid NVM_Object id specified"; break;
65 case -13: str = "NVM_Object already has the maximum number "
66 "of partitions"; break;
67 case -14: str = "Insufficient space in partition for the "
68 "requested write sub-function"; break;
69 case -15: str = "Insufficient data buffer space for the "
70 "requested read record sub-function"; break;
71 case -16: str = "Scratch buffer required for the write/delete "
72 "sub-function"; break;
73 case -17: str = "Insufficient space in the NVM_Object for the "
74 "requested create sub-function"; break;
75 case -18: str = "Invalid value specified in the partition_rec "
76 "argument"; break;
77 case -19: str = "Record oriented I/O not supported for this "
78 "partition"; break;
79 case -20: str = "Bad format of record to be written or "
80 "required keyword variable not "
81 "specified"; break;
82 default: str = "Unknown SAL status code"; break;
83 }
84 return str;
85}
86
87void __init
88ia64_sal_handler_init (void *entry_point, void *gpval)
89{
90 /* fill in the SAL procedure descriptor and point ia64_sal to it: */
91 pdesc.addr = entry_point;
92 pdesc.gpval = gpval;
93 ia64_sal = (ia64_sal_handler) &pdesc;
94}
95
96static void __init
97check_versions (struct ia64_sal_systab *systab)
98{
99 sal_revision = (systab->sal_rev_major << 8) | systab->sal_rev_minor;
100 sal_version = (systab->sal_b_rev_major << 8) | systab->sal_b_rev_minor;
101
102 /* Check for broken firmware */
103 if ((sal_revision == SAL_VERSION_CODE(49, 29))
104 && (sal_version == SAL_VERSION_CODE(49, 29)))
105 {
106 /*
107 * Old firmware for zx2000 prototypes have this weird version number,
108 * reset it to something sane.
109 */
110 sal_revision = SAL_VERSION_CODE(2, 8);
111 sal_version = SAL_VERSION_CODE(0, 0);
112 }
113}
114
115static void __init
116sal_desc_entry_point (void *p)
117{
118 struct ia64_sal_desc_entry_point *ep = p;
119 ia64_pal_handler_init(__va(ep->pal_proc));
120 ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp));
121}
122
123#ifdef CONFIG_SMP
124static void __init
125set_smp_redirect (int flag)
126{
127#ifndef CONFIG_HOTPLUG_CPU
128 if (no_int_routing)
129 smp_int_redirect &= ~flag;
130 else
131 smp_int_redirect |= flag;
132#else
133 /*
134 * For CPU Hotplug we dont want to do any chipset supported
135 * interrupt redirection. The reason is this would require that
136 * All interrupts be stopped and hard bind the irq to a cpu.
137 * Later when the interrupt is fired we need to set the redir hint
138 * on again in the vector. This is cumbersome for something that the
139 * user mode irq balancer will solve anyways.
140 */
141 no_int_routing=1;
142 smp_int_redirect &= ~flag;
143#endif
144}
145#else
146#define set_smp_redirect(flag) do { } while (0)
147#endif
148
149static void __init
150sal_desc_platform_feature (void *p)
151{
152 struct ia64_sal_desc_platform_feature *pf = p;
153 sal_platform_features = pf->feature_mask;
154
155 printk(KERN_INFO "SAL Platform features:");
156 if (!sal_platform_features) {
157 printk(" None\n");
158 return;
159 }
160
161 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_BUS_LOCK)
162 printk(" BusLock");
163 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_IRQ_REDIR_HINT) {
164 printk(" IRQ_Redirection");
165 set_smp_redirect(SMP_IRQ_REDIRECTION);
166 }
167 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_IPI_REDIR_HINT) {
168 printk(" IPI_Redirection");
169 set_smp_redirect(SMP_IPI_REDIRECTION);
170 }
171 if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT)
172 printk(" ITC_Drift");
173 printk("\n");
174}
175
176#ifdef CONFIG_SMP
177static void __init
178sal_desc_ap_wakeup (void *p)
179{
180 struct ia64_sal_desc_ap_wakeup *ap = p;
181
182 switch (ap->mechanism) {
183 case IA64_SAL_AP_EXTERNAL_INT:
184 ap_wakeup_vector = ap->vector;
185 printk(KERN_INFO "SAL: AP wakeup using external interrupt "
186 "vector 0x%lx\n", ap_wakeup_vector);
187 break;
188 default:
189 printk(KERN_ERR "SAL: AP wakeup mechanism unsupported!\n");
190 break;
191 }
192}
193
194static void __init
195chk_nointroute_opt(void)
196{
197 char *cp;
198
199 for (cp = boot_command_line; *cp; ) {
200 if (memcmp(cp, "nointroute", 10) == 0) {
201 no_int_routing = 1;
202 printk ("no_int_routing on\n");
203 break;
204 } else {
205 while (*cp != ' ' && *cp)
206 ++cp;
207 while (*cp == ' ')
208 ++cp;
209 }
210 }
211}
212
213#else
214static void __init sal_desc_ap_wakeup(void *p) { }
215#endif
216
217/*
218 * HP rx5670 firmware polls for interrupts during SAL_CACHE_FLUSH by reading
219 * cr.ivr, but it never writes cr.eoi. This leaves any interrupt marked as
220 * "in-service" and masks other interrupts of equal or lower priority.
221 *
222 * HP internal defect reports: F1859, F2775, F3031.
223 */
224static int sal_cache_flush_drops_interrupts;
225
226static int __init
227force_pal_cache_flush(char *str)
228{
229 sal_cache_flush_drops_interrupts = 1;
230 return 0;
231}
232early_param("force_pal_cache_flush", force_pal_cache_flush);
233
234void __init
235check_sal_cache_flush (void)
236{
237 unsigned long flags;
238 int cpu;
239 u64 vector, cache_type = 3;
240 struct ia64_sal_retval isrv;
241
242 if (sal_cache_flush_drops_interrupts)
243 return;
244
245 cpu = get_cpu();
246 local_irq_save(flags);
247
248 /*
249 * Send ourselves a timer interrupt, wait until it's reported, and see
250 * if SAL_CACHE_FLUSH drops it.
251 */
252 ia64_send_ipi(cpu, IA64_TIMER_VECTOR, IA64_IPI_DM_INT, 0);
253
254 while (!ia64_get_irr(IA64_TIMER_VECTOR))
255 cpu_relax();
256
257 SAL_CALL(isrv, SAL_CACHE_FLUSH, cache_type, 0, 0, 0, 0, 0, 0);
258
259 if (isrv.status)
260 printk(KERN_ERR "SAL_CAL_FLUSH failed with %ld\n", isrv.status);
261
262 if (ia64_get_irr(IA64_TIMER_VECTOR)) {
263 vector = ia64_get_ivr();
264 ia64_eoi();
265 WARN_ON(vector != IA64_TIMER_VECTOR);
266 } else {
267 sal_cache_flush_drops_interrupts = 1;
268 printk(KERN_ERR "SAL: SAL_CACHE_FLUSH drops interrupts; "
269 "PAL_CACHE_FLUSH will be used instead\n");
270 ia64_eoi();
271 }
272
273 local_irq_restore(flags);
274 put_cpu();
275}
276
277s64
278ia64_sal_cache_flush (u64 cache_type)
279{
280 struct ia64_sal_retval isrv;
281
282 if (sal_cache_flush_drops_interrupts) {
283 unsigned long flags;
284 u64 progress;
285 s64 rc;
286
287 progress = 0;
288 local_irq_save(flags);
289 rc = ia64_pal_cache_flush(cache_type,
290 PAL_CACHE_FLUSH_INVALIDATE, &progress, NULL);
291 local_irq_restore(flags);
292 return rc;
293 }
294
295 SAL_CALL(isrv, SAL_CACHE_FLUSH, cache_type, 0, 0, 0, 0, 0, 0);
296 return isrv.status;
297}
298EXPORT_SYMBOL_GPL(ia64_sal_cache_flush);
299
300void __init
301ia64_sal_init (struct ia64_sal_systab *systab)
302{
303 char *p;
304 int i;
305
306 if (!systab) {
307 printk(KERN_WARNING "Hmm, no SAL System Table.\n");
308 return;
309 }
310
311 if (strncmp(systab->signature, "SST_", 4) != 0)
312 printk(KERN_ERR "bad signature in system table!");
313
314 check_versions(systab);
315#ifdef CONFIG_SMP
316 chk_nointroute_opt();
317#endif
318
319 /* revisions are coded in BCD, so %x does the job for us */
320 printk(KERN_INFO "SAL %x.%x: %.32s %.32s%sversion %x.%x\n",
321 SAL_MAJOR(sal_revision), SAL_MINOR(sal_revision),
322 systab->oem_id, systab->product_id,
323 systab->product_id[0] ? " " : "",
324 SAL_MAJOR(sal_version), SAL_MINOR(sal_version));
325
326 p = (char *) (systab + 1);
327 for (i = 0; i < systab->entry_count; i++) {
328 /*
329 * The first byte of each entry type contains the type
330 * descriptor.
331 */
332 switch (*p) {
333 case SAL_DESC_ENTRY_POINT:
334 sal_desc_entry_point(p);
335 break;
336 case SAL_DESC_PLATFORM_FEATURE:
337 sal_desc_platform_feature(p);
338 break;
339 case SAL_DESC_PTC:
340 ia64_ptc_domain_info = (ia64_sal_desc_ptc_t *)p;
341 break;
342 case SAL_DESC_AP_WAKEUP:
343 sal_desc_ap_wakeup(p);
344 break;
345 }
346 p += SAL_DESC_SIZE(*p);
347 }
348
349}
350
351int
352ia64_sal_oemcall(struct ia64_sal_retval *isrvp, u64 oemfunc, u64 arg1,
353 u64 arg2, u64 arg3, u64 arg4, u64 arg5, u64 arg6, u64 arg7)
354{
355 if (oemfunc < IA64_SAL_OEMFUNC_MIN || oemfunc > IA64_SAL_OEMFUNC_MAX)
356 return -1;
357 SAL_CALL(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
358 return 0;
359}
360EXPORT_SYMBOL(ia64_sal_oemcall);
361
362int
363ia64_sal_oemcall_nolock(struct ia64_sal_retval *isrvp, u64 oemfunc, u64 arg1,
364 u64 arg2, u64 arg3, u64 arg4, u64 arg5, u64 arg6,
365 u64 arg7)
366{
367 if (oemfunc < IA64_SAL_OEMFUNC_MIN || oemfunc > IA64_SAL_OEMFUNC_MAX)
368 return -1;
369 SAL_CALL_NOLOCK(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6,
370 arg7);
371 return 0;
372}
373EXPORT_SYMBOL(ia64_sal_oemcall_nolock);
374
375int
376ia64_sal_oemcall_reentrant(struct ia64_sal_retval *isrvp, u64 oemfunc,
377 u64 arg1, u64 arg2, u64 arg3, u64 arg4, u64 arg5,
378 u64 arg6, u64 arg7)
379{
380 if (oemfunc < IA64_SAL_OEMFUNC_MIN || oemfunc > IA64_SAL_OEMFUNC_MAX)
381 return -1;
382 SAL_CALL_REENTRANT(*isrvp, oemfunc, arg1, arg2, arg3, arg4, arg5, arg6,
383 arg7);
384 return 0;
385}
386EXPORT_SYMBOL(ia64_sal_oemcall_reentrant);
387
388long
389ia64_sal_freq_base (unsigned long which, unsigned long *ticks_per_second,
390 unsigned long *drift_info)
391{
392 struct ia64_sal_retval isrv;
393
394 SAL_CALL(isrv, SAL_FREQ_BASE, which, 0, 0, 0, 0, 0, 0);
395 *ticks_per_second = isrv.v0;
396 *drift_info = isrv.v1;
397 return isrv.status;
398}
399EXPORT_SYMBOL_GPL(ia64_sal_freq_base);