1 // SPDX-License-Identifier: GPL-2.0-only
3 * System Abstraction Layer (SAL) interface routines.
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>
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>
17 #include <asm/delay.h>
23 __cacheline_aligned
DEFINE_SPINLOCK(sal_lock
);
24 unsigned long sal_platform_features
;
26 unsigned short sal_revision
;
27 unsigned short sal_version
;
29 #define SAL_MAJOR(x) ((x) >> 8)
30 #define SAL_MINOR(x) ((x) & 0xff)
33 void *addr
; /* function entry point */
34 void *gpval
; /* gp value to use */
38 default_handler (void)
43 ia64_sal_handler ia64_sal
= (ia64_sal_handler
) default_handler
;
44 ia64_sal_desc_ptc_t
*ia64_ptc_domain_info
;
47 ia64_sal_strerror (long status
)
51 case 0: str
= "Call completed without error"; break;
52 case 1: str
= "Effect a warm boot of the system to complete "
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 "
78 case -19: str
= "Record oriented I/O not supported for this "
80 case -20: str
= "Bad format of record to be written or "
81 "required keyword variable not "
83 default: str
= "Unknown SAL status code"; break;
89 ia64_sal_handler_init (void *entry_point
, void *gpval
)
91 /* fill in the SAL procedure descriptor and point ia64_sal to it: */
92 pdesc
.addr
= entry_point
;
94 ia64_sal
= (ia64_sal_handler
) &pdesc
;
98 check_versions (struct ia64_sal_systab
*systab
)
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
;
103 /* Check for broken firmware */
104 if ((sal_revision
== SAL_VERSION_CODE(49, 29))
105 && (sal_version
== SAL_VERSION_CODE(49, 29)))
108 * Old firmware for zx2000 prototypes have this weird version number,
109 * reset it to something sane.
111 sal_revision
= SAL_VERSION_CODE(2, 8);
112 sal_version
= SAL_VERSION_CODE(0, 0);
117 sal_desc_entry_point (void *p
)
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
));
126 set_smp_redirect (int flag
)
128 #ifndef CONFIG_HOTPLUG_CPU
130 smp_int_redirect
&= ~flag
;
132 smp_int_redirect
|= flag
;
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.
143 smp_int_redirect
&= ~flag
;
147 #define set_smp_redirect(flag) do { } while (0)
151 sal_desc_platform_feature (void *p
)
153 struct ia64_sal_desc_platform_feature
*pf
= p
;
154 sal_platform_features
= pf
->feature_mask
;
156 printk(KERN_INFO
"SAL Platform features:");
157 if (!sal_platform_features
) {
162 if (sal_platform_features
& IA64_SAL_PLATFORM_FEATURE_BUS_LOCK
)
164 if (sal_platform_features
& IA64_SAL_PLATFORM_FEATURE_IRQ_REDIR_HINT
) {
165 printk(" IRQ_Redirection");
166 set_smp_redirect(SMP_IRQ_REDIRECTION
);
168 if (sal_platform_features
& IA64_SAL_PLATFORM_FEATURE_IPI_REDIR_HINT
) {
169 printk(" IPI_Redirection");
170 set_smp_redirect(SMP_IPI_REDIRECTION
);
172 if (sal_platform_features
& IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT
)
173 printk(" ITC_Drift");
179 sal_desc_ap_wakeup (void *p
)
181 struct ia64_sal_desc_ap_wakeup
*ap
= p
;
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
);
190 printk(KERN_ERR
"SAL: AP wakeup mechanism unsupported!\n");
196 chk_nointroute_opt(void)
200 for (cp
= boot_command_line
; *cp
; ) {
201 if (memcmp(cp
, "nointroute", 10) == 0) {
203 printk ("no_int_routing on\n");
206 while (*cp
!= ' ' && *cp
)
215 static void __init
sal_desc_ap_wakeup(void *p
) { }
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.
223 * HP internal defect reports: F1859, F2775, F3031.
225 static int sal_cache_flush_drops_interrupts
;
228 force_pal_cache_flush(char *str
)
230 sal_cache_flush_drops_interrupts
= 1;
233 early_param("force_pal_cache_flush", force_pal_cache_flush
);
236 check_sal_cache_flush (void)
240 u64 vector
, cache_type
= 3;
241 struct ia64_sal_retval isrv
;
243 if (sal_cache_flush_drops_interrupts
)
247 local_irq_save(flags
);
250 * Send ourselves a timer interrupt, wait until it's reported, and see
251 * if SAL_CACHE_FLUSH drops it.
253 ia64_send_ipi(cpu
, IA64_TIMER_VECTOR
, IA64_IPI_DM_INT
, 0);
255 while (!ia64_get_irr(IA64_TIMER_VECTOR
))
258 SAL_CALL(isrv
, SAL_CACHE_FLUSH
, cache_type
, 0, 0, 0, 0, 0, 0);
261 printk(KERN_ERR
"SAL_CAL_FLUSH failed with %ld\n", isrv
.status
);
263 if (ia64_get_irr(IA64_TIMER_VECTOR
)) {
264 vector
= ia64_get_ivr();
266 WARN_ON(vector
!= IA64_TIMER_VECTOR
);
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");
274 local_irq_restore(flags
);
279 ia64_sal_cache_flush (u64 cache_type
)
281 struct ia64_sal_retval isrv
;
283 if (sal_cache_flush_drops_interrupts
) {
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
);
296 SAL_CALL(isrv
, SAL_CACHE_FLUSH
, cache_type
, 0, 0, 0, 0, 0, 0);
299 EXPORT_SYMBOL_GPL(ia64_sal_cache_flush
);
302 ia64_sal_init (struct ia64_sal_systab
*systab
)
308 printk(KERN_WARNING
"Hmm, no SAL System Table.\n");
312 if (strncmp(systab
->signature
, "SST_", 4) != 0)
313 printk(KERN_ERR
"bad signature in system table!");
315 check_versions(systab
);
317 chk_nointroute_opt();
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
));
327 p
= (char *) (systab
+ 1);
328 for (i
= 0; i
< systab
->entry_count
; i
++) {
330 * The first byte of each entry type contains the type
334 case SAL_DESC_ENTRY_POINT
:
335 sal_desc_entry_point(p
);
337 case SAL_DESC_PLATFORM_FEATURE
:
338 sal_desc_platform_feature(p
);
341 ia64_ptc_domain_info
= (ia64_sal_desc_ptc_t
*)p
;
343 case SAL_DESC_AP_WAKEUP
:
344 sal_desc_ap_wakeup(p
);
347 p
+= SAL_DESC_SIZE(*p
);
353 ia64_sal_oemcall(struct ia64_sal_retval
*isrvp
, u64 oemfunc
, u64 arg1
,
354 u64 arg2
, u64 arg3
, u64 arg4
, u64 arg5
, u64 arg6
, u64 arg7
)
356 if (oemfunc
< IA64_SAL_OEMFUNC_MIN
|| oemfunc
> IA64_SAL_OEMFUNC_MAX
)
358 SAL_CALL(*isrvp
, oemfunc
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
, arg7
);
361 EXPORT_SYMBOL(ia64_sal_oemcall
);
364 ia64_sal_oemcall_nolock(struct ia64_sal_retval
*isrvp
, u64 oemfunc
, u64 arg1
,
365 u64 arg2
, u64 arg3
, u64 arg4
, u64 arg5
, u64 arg6
,
368 if (oemfunc
< IA64_SAL_OEMFUNC_MIN
|| oemfunc
> IA64_SAL_OEMFUNC_MAX
)
370 SAL_CALL_NOLOCK(*isrvp
, oemfunc
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
,
374 EXPORT_SYMBOL(ia64_sal_oemcall_nolock
);
377 ia64_sal_oemcall_reentrant(struct ia64_sal_retval
*isrvp
, u64 oemfunc
,
378 u64 arg1
, u64 arg2
, u64 arg3
, u64 arg4
, u64 arg5
,
381 if (oemfunc
< IA64_SAL_OEMFUNC_MIN
|| oemfunc
> IA64_SAL_OEMFUNC_MAX
)
383 SAL_CALL_REENTRANT(*isrvp
, oemfunc
, arg1
, arg2
, arg3
, arg4
, arg5
, arg6
,
387 EXPORT_SYMBOL(ia64_sal_oemcall_reentrant
);
390 ia64_sal_freq_base (unsigned long which
, unsigned long *ticks_per_second
,
391 unsigned long *drift_info
)
393 struct ia64_sal_retval isrv
;
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
;
400 EXPORT_SYMBOL_GPL(ia64_sal_freq_base
);