From: Matthew Wilcox <willy@debian.org>
To: linux-ia64@vger.kernel.org
Subject: Re: [PATCH] sal cleanup
Date: Thu, 26 Feb 2004 22:04:56 +0000 [thread overview]
Message-ID: <20040226220456.GX25779@parcelfarce.linux.theplanet.co.uk> (raw)
In-Reply-To: <20040226213704.GW25779@parcelfarce.linux.theplanet.co.uk>
On Thu, Feb 26, 2004 at 01:55:34PM -0800, David Mosberger wrote:
> How about printing "none" or something like that instead?
Sure.
This patch reorganises sal.c and adds two new functions:
- Split the body of the switch statement in ia64_sal_init() into
separate functions.
- Delete min/max since they were only assigned to, never used.
- Print the version of the SAL implementation as well as the spec version
it supports.
- Stop printing the pal_proc and sal_proc entry addresses.
- Print "none" if there are no platform features.
- Remember the sal revision and version and add two functions to compare them.
Index: arch/ia64/kernel/sal.c
=================================RCS file: /var/cvs/linux-2.6/arch/ia64/kernel/sal.c,v
retrieving revision 1.1
diff -u -p -r1.1 sal.c
--- a/arch/ia64/kernel/sal.c 29 Jul 2003 17:00:27 -0000 1.1
+++ b/arch/ia64/kernel/sal.c 26 Feb 2004 22:02:31 -0000
@@ -8,9 +8,9 @@
*/
#include <linux/config.h>
+#include <linux/bcd.h>
#include <linux/kernel.h>
#include <linux/init.h>
-#include <linux/smp.h>
#include <linux/spinlock.h>
#include <linux/string.h>
@@ -21,6 +21,9 @@
spinlock_t sal_lock __cacheline_aligned = SPIN_LOCK_UNLOCKED;
unsigned long sal_platform_features;
+int sal_rev_major, sal_rev_minor;
+int sal_b_rev_major, sal_b_rev_minor;
+
static struct {
void *addr; /* function entry point */
void *gpval; /* gp value to use */
@@ -86,13 +89,73 @@ ia64_sal_handler_init (void *entry_point
ia64_sal = (ia64_sal_handler) &pdesc;
}
+static void __init sal_desc_entry_point(void *p)
+{
+ struct ia64_sal_desc_entry_point *ep = p;
+ ia64_pal_handler_init(__va(ep->pal_proc));
+ ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp));
+}
+
+static void __init sal_desc_platform_feature(void *p)
+{
+ struct ia64_sal_desc_platform_feature *pf = p;
+ sal_platform_features = pf->feature_mask;
+
+ printk(KERN_INFO "SAL: Platform features");
+ if (!sal_platform_features) {
+ printk(" none\n");
+ return;
+ }
+
+ if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_BUS_LOCK)
+ printk(" BusLock");
+ if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_IRQ_REDIR_HINT) {
+ printk(" IRQ_Redirection");
+#ifdef CONFIG_SMP
+ if (no_int_routing)
+ smp_int_redirect &= ~SMP_IRQ_REDIRECTION;
+ else
+ smp_int_redirect |= SMP_IRQ_REDIRECTION;
+#endif
+ }
+ if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_IPI_REDIR_HINT) {
+ printk(" IPI_Redirection");
+#ifdef CONFIG_SMP
+ if (no_int_routing)
+ smp_int_redirect &= ~SMP_IPI_REDIRECTION;
+ else
+ smp_int_redirect |= SMP_IPI_REDIRECTION;
+#endif
+ }
+ if (sal_platform_features & IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT)
+ printk(" ITC_Drift");
+ printk("\n");
+}
+
+#ifdef CONFIG_SMP
+static void __init sal_desc_ap_wakeup(void *p)
+{
+ struct ia64_sal_desc_ap_wakeup *ap = p;
+
+ switch (ap->mechanism) {
+ case IA64_SAL_AP_EXTERNAL_INT:
+ ap_wakeup_vector = ap->vector;
+ printk(KERN_INFO "SAL: AP wakeup using external interrupt "
+ "vector 0x%lx\n", ap_wakeup_vector);
+ break;
+ default:
+ printk(KERN_ERR "SAL: AP wakeup mechanism unsupported!\n");
+ break;
+ }
+}
+#else
+static void __init sal_desc_ap_wakeup(void *p) { }
+#endif
void __init
ia64_sal_init (struct ia64_sal_systab *systab)
{
- unsigned long min, max;
char *p;
- struct ia64_sal_desc_entry_point *ep;
int i;
if (!systab) {
@@ -103,86 +166,73 @@ ia64_sal_init (struct ia64_sal_systab *s
if (strncmp(systab->signature, "SST_", 4) != 0)
printk(KERN_ERR "bad signature in system table!");
- /*
- * revisions are coded in BCD, so %x does the job for us
- */
- printk(KERN_INFO "SAL v%x.%02x: oem=%.32s, product=%.32s\n",
- systab->sal_rev_major, systab->sal_rev_minor,
- systab->oem_id, systab->product_id);
-
- min = ~0UL;
- max = 0;
+ sal_rev_major = BCD2BIN(systab->sal_rev_major);
+ sal_rev_minor = BCD2BIN(systab->sal_rev_minor);
+ sal_b_rev_major = BCD2BIN(systab->sal_b_rev_major);
+ sal_b_rev_minor = BCD2BIN(systab->sal_b_rev_minor);
+
+ printk(KERN_INFO "SAL %d.%d: oem=%.32s, product=%.32s, version %d.%d\n",
+ sal_rev_major, sal_rev_minor, systab->oem_id,
+ systab->product_id, sal_b_rev_major, sal_b_rev_minor);
p = (char *) (systab + 1);
for (i = 0; i < systab->entry_count; i++) {
/*
- * The first byte of each entry type contains the type descriptor.
+ * The first byte of each entry type contains the type
+ * descriptor.
*/
switch (*p) {
- case SAL_DESC_ENTRY_POINT:
- ep = (struct ia64_sal_desc_entry_point *) p;
- printk(KERN_INFO "SAL: entry: pal_proc=0x%lx, sal_proc=0x%lx\n",
- ep->pal_proc, ep->sal_proc);
- ia64_pal_handler_init(__va(ep->pal_proc));
- ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp));
+ case SAL_DESC_ENTRY_POINT:
+ sal_desc_entry_point(p);
break;
-
- case SAL_DESC_PTC:
+ case SAL_DESC_PLATFORM_FEATURE:
+ sal_desc_platform_feature(p);
+ break;
+ case SAL_DESC_PTC:
ia64_ptc_domain_info = (ia64_sal_desc_ptc_t *)p;
break;
-
- case SAL_DESC_AP_WAKEUP:
-#ifdef CONFIG_SMP
- {
- struct ia64_sal_desc_ap_wakeup *ap = (void *) p;
-
- switch (ap->mechanism) {
- case IA64_SAL_AP_EXTERNAL_INT:
- ap_wakeup_vector = ap->vector;
- printk(KERN_INFO "SAL: AP wakeup using external interrupt "
- "vector 0x%lx\n", ap_wakeup_vector);
- break;
-
- default:
- printk(KERN_ERR "SAL: AP wakeup mechanism unsupported!\n");
- break;
- }
- break;
- }
-#endif
- case SAL_DESC_PLATFORM_FEATURE:
- {
- struct ia64_sal_desc_platform_feature *pf = (void *) p;
- sal_platform_features = pf->feature_mask;
- printk(KERN_INFO "SAL: Platform features ");
-
- if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_BUS_LOCK)
- printk("BusLock ");
- if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_IRQ_REDIR_HINT) {
- printk("IRQ_Redirection ");
-#ifdef CONFIG_SMP
- if (no_int_routing)
- smp_int_redirect &= ~SMP_IRQ_REDIRECTION;
- else
- smp_int_redirect |= SMP_IRQ_REDIRECTION;
-#endif
- }
- if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_IPI_REDIR_HINT) {
- printk("IPI_Redirection ");
-#ifdef CONFIG_SMP
- if (no_int_routing)
- smp_int_redirect &= ~SMP_IPI_REDIRECTION;
- else
- smp_int_redirect |= SMP_IPI_REDIRECTION;
-#endif
- }
- if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT)
- printk("ITC_Drift ");
- printk("\n");
- break;
- }
-
+ case SAL_DESC_AP_WAKEUP:
+ sal_desc_ap_wakeup(p);
+ break;
}
p += SAL_DESC_SIZE(*p);
}
+}
+
+/**
+ * sal_check_revision - Check the revision of the SAL spec supported by firmware
+ * @major: The major number of the SAL spec
+ * @minor: The minor number of the SAL spec
+ *
+ * This function returns 1 if the SAL implementation on this machine
+ * supports the required revision. Use it as:
+ *
+ * if (sal_check_revision(3, 2)) { ... }
+ */
+int sal_check_revision(int major, int minor)
+{
+ if (major < sal_rev_major)
+ return 1;
+ if (major > sal_rev_major)
+ return 0;
+ return (minor <= sal_rev_minor);
+}
+
+/**
+ * sal_check_version - Check what version of SAL is installed
+ * @major: The major number of the implementation
+ * @minor: The minor number of the implementation
+ *
+ * This function returns 1 if the version of the implementation of SAL is
+ * equal or higher than the required version. You can only use this function
+ * if you already know what manufacturer your SAL comes from as every vendor
+ * may have a different version.
+ */
+int sal_check_version(int major, int minor)
+{
+ if (major < sal_b_rev_major)
+ return 1;
+ if (major > sal_b_rev_major)
+ return 0;
+ return (minor <= sal_b_rev_minor);
}
Index: include/asm-ia64/sal.h
=================================RCS file: /var/cvs/linux-2.6/include/asm-ia64/sal.h,v
retrieving revision 1.4
diff -u -p -r1.4 sal.h
--- a/include/asm-ia64/sal.h 7 Jan 2004 21:30:42 -0000 1.4
+++ b/include/asm-ia64/sal.h 26 Feb 2004 22:02:31 -0000
@@ -231,6 +231,8 @@ extern struct ia64_sal_desc_ptc *ia64_pt
extern const char *ia64_sal_strerror (long status);
extern void ia64_sal_init (struct ia64_sal_systab *sal_systab);
+extern int sal_check_revision(int major, int minor);
+extern int sal_check_version(int major, int minor);
/* SAL information type encodings */
enum {
@@ -741,10 +743,10 @@ ia64_sal_mc_set_params (u64 param_type,
/* Read from PCI configuration space */
static inline s64
-ia64_sal_pci_config_read (u64 pci_config_addr, u64 size, u64 *value)
+ia64_sal_pci_config_read (u64 pci_config_addr, u64 size, u64 *value, int type)
{
struct ia64_sal_retval isrv;
- SAL_CALL(isrv, SAL_PCI_CONFIG_READ, pci_config_addr, size, 0, 0, 0, 0, 0);
+ SAL_CALL(isrv, SAL_PCI_CONFIG_READ, pci_config_addr, size, type, 0, 0, 0, 0);
if (value)
*value = isrv.v0;
return isrv.status;
@@ -752,11 +754,11 @@ ia64_sal_pci_config_read (u64 pci_config
/* Write to PCI configuration space */
static inline s64
-ia64_sal_pci_config_write (u64 pci_config_addr, u64 size, u64 value)
+ia64_sal_pci_config_write (u64 pci_config_addr, u64 size, u64 value, int type)
{
struct ia64_sal_retval isrv;
SAL_CALL(isrv, SAL_PCI_CONFIG_WRITE, pci_config_addr, size, value,
- 0, 0, 0, 0);
+ type, 0, 0, 0);
return isrv.status;
}
--
"Next the statesmen will invent cheap lies, putting the blame upon
the nation that is attacked, and every man will be glad of those
conscience-soothing falsities, and will diligently study them, and refuse
to examine any refutations of them; and thus he will by and by convince
himself that the war is just, and will thank God for the better sleep
he enjoys after this process of grotesque self-deception." -- Mark Twain
next prev parent reply other threads:[~2004-02-26 22:04 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-02-26 21:37 [PATCH] sal cleanup Matthew Wilcox
2004-02-26 21:55 ` David Mosberger
2004-02-26 22:04 ` Matthew Wilcox [this message]
2004-02-27 18:52 ` David Mosberger
2004-02-27 19:24 ` Matthew Wilcox
2004-02-27 19:33 ` David Mosberger
2004-02-27 20:25 ` Matthew Wilcox
2004-02-27 21:48 ` Randy.Dunlap
2004-02-27 22:09 ` David Mosberger
2004-02-27 22:42 ` Matthew Wilcox
2004-02-27 23:02 ` David Mosberger
2004-03-01 16:03 ` Matthew Wilcox
2004-03-01 16:05 ` Matthew Wilcox
2004-03-02 1:30 ` David Mosberger
2004-03-02 7:46 ` David Mosberger
2004-03-02 15:56 ` Matthew Wilcox
2004-03-02 16:00 ` Matthew Wilcox
2004-03-02 17:42 ` David Mosberger
2004-03-02 17:57 ` Matthew Wilcox
2004-03-02 18:01 ` David Mosberger
2004-03-02 19:25 ` Matthew Wilcox
2004-03-03 2:53 ` David Mosberger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040226220456.GX25779@parcelfarce.linux.theplanet.co.uk \
--to=willy@debian.org \
--cc=linux-ia64@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox