diff options
author | Paul Mackerras <paulus@samba.org> | 2006-11-10 04:38:53 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-12-04 04:40:16 -0500 |
commit | 974a76f51355d22f4f63d83d6bb1ccecd019ec58 (patch) | |
tree | 9a6c5745d8e1f592427d96fbf64d8546af4feb39 /arch/powerpc/kernel/prom_init.c | |
parent | 18f2190d796198fbb5d4bc4c87511acf3ced7d47 (diff) |
[POWERPC] Distinguish POWER6 partition modes and tell userspace
This adds code to look at the properties firmware puts in the device
tree to determine what compatibility mode the partition is in on
POWER6 machines, and set the ELF aux vector AT_HWCAP and AT_PLATFORM
entries appropriately.
Specifically, we look at the cpu-version property in the cpu node(s).
If that contains a "logical" PVR value (of the form 0x0f00000x), we
call identify_cpu again with this PVR value. A value of 0x0f000001
indicates the partition is in POWER5+ compatibility mode, and a value
of 0x0f000002 indicates "POWER6 architected" mode, with various
extensions disabled. We also look for various other properties:
ibm,dfp, ibm,purr and ibm,spurr.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/prom_init.c')
-rw-r--r-- | arch/powerpc/kernel/prom_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index 8671eb634a92..396109a537cd 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
@@ -627,6 +627,7 @@ static void __init early_cmdline_parse(void) | |||
627 | /* Option vector 3: processor options supported */ | 627 | /* Option vector 3: processor options supported */ |
628 | #define OV3_FP 0x80 /* floating point */ | 628 | #define OV3_FP 0x80 /* floating point */ |
629 | #define OV3_VMX 0x40 /* VMX/Altivec */ | 629 | #define OV3_VMX 0x40 /* VMX/Altivec */ |
630 | #define OV3_DFP 0x20 /* decimal FP */ | ||
630 | 631 | ||
631 | /* Option vector 5: PAPR/OF options supported */ | 632 | /* Option vector 5: PAPR/OF options supported */ |
632 | #define OV5_LPAR 0x80 /* logical partitioning supported */ | 633 | #define OV5_LPAR 0x80 /* logical partitioning supported */ |
@@ -668,7 +669,7 @@ static unsigned char ibm_architecture_vec[] = { | |||
668 | /* option vector 3: processor options supported */ | 669 | /* option vector 3: processor options supported */ |
669 | 3 - 2, /* length */ | 670 | 3 - 2, /* length */ |
670 | 0, /* don't ignore, don't halt */ | 671 | 0, /* don't ignore, don't halt */ |
671 | OV3_FP | OV3_VMX, | 672 | OV3_FP | OV3_VMX | OV3_DFP, |
672 | 673 | ||
673 | /* option vector 4: IBM PAPR implementation */ | 674 | /* option vector 4: IBM PAPR implementation */ |
674 | 2 - 2, /* length */ | 675 | 2 - 2, /* length */ |