diff options
author | Nathan Fontenot <nfont@linux.vnet.ibm.com> | 2013-04-24 01:57:18 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-04-26 02:08:22 -0400 |
commit | f0ff7eb483b4c9b24b83aa682c4f42db256f9bdb (patch) | |
tree | d1733adf54ac7c44fa5d2dbb7107e2133c3f2c45 /arch/powerpc/platforms | |
parent | 43c0ea60537d9423f0f1b5c14b0cd0a0b4af5c81 (diff) |
powerpc/pseries: Update firmware_has_feature() to check architecture vector 5 bits
The firmware_has_feature() function makes it easy to check for supported
features of the hypervisor. This patch extends the capability of
firmware_has_feature() to include checking for specified bits
in vector 5 of the architecture vector as reported in the device tree.
As part of this the #defines used for the architecture vector are re-defined
such that each option has the index into vector 5 and the feature bit encoded
into it. This makes checking for architecture bits when initiating data
for firmware_has_feature much easier.
Signed-off-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r-- | arch/powerpc/platforms/pseries/firmware.c | 49 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/pseries.h | 5 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/setup.c | 40 |
3 files changed, 70 insertions, 24 deletions
diff --git a/arch/powerpc/platforms/pseries/firmware.c b/arch/powerpc/platforms/pseries/firmware.c index 1236a9d6146a..06639fa2d61d 100644 --- a/arch/powerpc/platforms/pseries/firmware.c +++ b/arch/powerpc/platforms/pseries/firmware.c | |||
@@ -28,18 +28,18 @@ | |||
28 | 28 | ||
29 | #include "pseries.h" | 29 | #include "pseries.h" |
30 | 30 | ||
31 | typedef struct { | 31 | struct hypertas_fw_feature { |
32 | unsigned long val; | 32 | unsigned long val; |
33 | char * name; | 33 | char * name; |
34 | } firmware_feature_t; | 34 | }; |
35 | 35 | ||
36 | /* | 36 | /* |
37 | * The names in this table match names in rtas/ibm,hypertas-functions. If the | 37 | * The names in this table match names in rtas/ibm,hypertas-functions. If the |
38 | * entry ends in a '*', only upto the '*' is matched. Otherwise the entire | 38 | * entry ends in a '*', only upto the '*' is matched. Otherwise the entire |
39 | * string must match. | 39 | * string must match. |
40 | */ | 40 | */ |
41 | static __initdata firmware_feature_t | 41 | static __initdata struct hypertas_fw_feature |
42 | firmware_features_table[] = { | 42 | hypertas_fw_features_table[] = { |
43 | {FW_FEATURE_PFT, "hcall-pft"}, | 43 | {FW_FEATURE_PFT, "hcall-pft"}, |
44 | {FW_FEATURE_TCE, "hcall-tce"}, | 44 | {FW_FEATURE_TCE, "hcall-tce"}, |
45 | {FW_FEATURE_SPRG0, "hcall-sprg0"}, | 45 | {FW_FEATURE_SPRG0, "hcall-sprg0"}, |
@@ -69,16 +69,16 @@ firmware_features_table[] = { | |||
69 | * device-tree/ibm,hypertas-functions. Ultimately this functionality may | 69 | * device-tree/ibm,hypertas-functions. Ultimately this functionality may |
70 | * be moved into prom.c prom_init(). | 70 | * be moved into prom.c prom_init(). |
71 | */ | 71 | */ |
72 | void __init fw_feature_init(const char *hypertas, unsigned long len) | 72 | void __init fw_hypertas_feature_init(const char *hypertas, unsigned long len) |
73 | { | 73 | { |
74 | const char *s; | 74 | const char *s; |
75 | int i; | 75 | int i; |
76 | 76 | ||
77 | pr_debug(" -> fw_feature_init()\n"); | 77 | pr_debug(" -> fw_hypertas_feature_init()\n"); |
78 | 78 | ||
79 | for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) { | 79 | for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) { |
80 | for (i = 0; i < ARRAY_SIZE(firmware_features_table); i++) { | 80 | for (i = 0; i < ARRAY_SIZE(hypertas_fw_features_table); i++) { |
81 | const char *name = firmware_features_table[i].name; | 81 | const char *name = hypertas_fw_features_table[i].name; |
82 | size_t size; | 82 | size_t size; |
83 | 83 | ||
84 | /* | 84 | /* |
@@ -94,10 +94,39 @@ void __init fw_feature_init(const char *hypertas, unsigned long len) | |||
94 | 94 | ||
95 | /* we have a match */ | 95 | /* we have a match */ |
96 | powerpc_firmware_features |= | 96 | powerpc_firmware_features |= |
97 | firmware_features_table[i].val; | 97 | hypertas_fw_features_table[i].val; |
98 | break; | 98 | break; |
99 | } | 99 | } |
100 | } | 100 | } |
101 | 101 | ||
102 | pr_debug(" <- fw_feature_init()\n"); | 102 | pr_debug(" <- fw_hypertas_feature_init()\n"); |
103 | } | ||
104 | |||
105 | struct vec5_fw_feature { | ||
106 | unsigned long val; | ||
107 | unsigned int feature; | ||
108 | }; | ||
109 | |||
110 | static __initdata struct vec5_fw_feature | ||
111 | vec5_fw_features_table[] = { | ||
112 | {FW_FEATURE_TYPE1_AFFINITY, OV5_TYPE1_AFFINITY}, | ||
113 | }; | ||
114 | |||
115 | void __init fw_vec5_feature_init(const char *vec5, unsigned long len) | ||
116 | { | ||
117 | unsigned int index, feat; | ||
118 | int i; | ||
119 | |||
120 | pr_debug(" -> fw_vec5_feature_init()\n"); | ||
121 | |||
122 | for (i = 0; i < ARRAY_SIZE(vec5_fw_features_table); i++) { | ||
123 | index = OV5_INDX(vec5_fw_features_table[i].feature); | ||
124 | feat = OV5_FEAT(vec5_fw_features_table[i].feature); | ||
125 | |||
126 | if (vec5[index] & feat) | ||
127 | powerpc_firmware_features |= | ||
128 | vec5_fw_features_table[i].val; | ||
129 | } | ||
130 | |||
131 | pr_debug(" <- fw_vec5_feature_init()\n"); | ||
103 | } | 132 | } |
diff --git a/arch/powerpc/platforms/pseries/pseries.h b/arch/powerpc/platforms/pseries/pseries.h index 9a3dda07566f..8af71e4cc17f 100644 --- a/arch/powerpc/platforms/pseries/pseries.h +++ b/arch/powerpc/platforms/pseries/pseries.h | |||
@@ -19,7 +19,10 @@ extern void request_event_sources_irqs(struct device_node *np, | |||
19 | 19 | ||
20 | #include <linux/of.h> | 20 | #include <linux/of.h> |
21 | 21 | ||
22 | extern void __init fw_feature_init(const char *hypertas, unsigned long len); | 22 | extern void __init fw_hypertas_feature_init(const char *hypertas, |
23 | unsigned long len); | ||
24 | extern void __init fw_vec5_feature_init(const char *hypertas, | ||
25 | unsigned long len); | ||
23 | 26 | ||
24 | struct pt_regs; | 27 | struct pt_regs; |
25 | 28 | ||
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 8bcc9ca6682f..ac932a9eb440 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
@@ -628,25 +628,39 @@ static void __init pSeries_init_early(void) | |||
628 | * Called very early, MMU is off, device-tree isn't unflattened | 628 | * Called very early, MMU is off, device-tree isn't unflattened |
629 | */ | 629 | */ |
630 | 630 | ||
631 | static int __init pSeries_probe_hypertas(unsigned long node, | 631 | static int __init pseries_probe_fw_features(unsigned long node, |
632 | const char *uname, int depth, | 632 | const char *uname, int depth, |
633 | void *data) | 633 | void *data) |
634 | { | 634 | { |
635 | const char *hypertas; | 635 | const char *prop; |
636 | unsigned long len; | 636 | unsigned long len; |
637 | static int hypertas_found; | ||
638 | static int vec5_found; | ||
637 | 639 | ||
638 | if (depth != 1 || | 640 | if (depth != 1) |
639 | (strcmp(uname, "rtas") != 0 && strcmp(uname, "rtas@0") != 0)) | ||
640 | return 0; | 641 | return 0; |
641 | 642 | ||
642 | hypertas = of_get_flat_dt_prop(node, "ibm,hypertas-functions", &len); | 643 | if (!strcmp(uname, "rtas") || !strcmp(uname, "rtas@0")) { |
643 | if (!hypertas) | 644 | prop = of_get_flat_dt_prop(node, "ibm,hypertas-functions", |
644 | return 1; | 645 | &len); |
646 | if (prop) { | ||
647 | powerpc_firmware_features |= FW_FEATURE_LPAR; | ||
648 | fw_hypertas_feature_init(prop, len); | ||
649 | } | ||
645 | 650 | ||
646 | powerpc_firmware_features |= FW_FEATURE_LPAR; | 651 | hypertas_found = 1; |
647 | fw_feature_init(hypertas, len); | 652 | } |
648 | 653 | ||
649 | return 1; | 654 | if (!strcmp(uname, "chosen")) { |
655 | prop = of_get_flat_dt_prop(node, "ibm,architecture-vec-5", | ||
656 | &len); | ||
657 | if (prop) | ||
658 | fw_vec5_feature_init(prop, len); | ||
659 | |||
660 | vec5_found = 1; | ||
661 | } | ||
662 | |||
663 | return hypertas_found && vec5_found; | ||
650 | } | 664 | } |
651 | 665 | ||
652 | static int __init pSeries_probe(void) | 666 | static int __init pSeries_probe(void) |
@@ -669,7 +683,7 @@ static int __init pSeries_probe(void) | |||
669 | pr_debug("pSeries detected, looking for LPAR capability...\n"); | 683 | pr_debug("pSeries detected, looking for LPAR capability...\n"); |
670 | 684 | ||
671 | /* Now try to figure out if we are running on LPAR */ | 685 | /* Now try to figure out if we are running on LPAR */ |
672 | of_scan_flat_dt(pSeries_probe_hypertas, NULL); | 686 | of_scan_flat_dt(pseries_probe_fw_features, NULL); |
673 | 687 | ||
674 | if (firmware_has_feature(FW_FEATURE_LPAR)) | 688 | if (firmware_has_feature(FW_FEATURE_LPAR)) |
675 | hpte_init_lpar(); | 689 | hpte_init_lpar(); |