Re: [PATCH] do firmware feature fixups after features are initialised
From: Arnd Bergmann <arnd@arndb.de>
Date: 2007-07-11 11:31:58
Subsystem:
linux for powerpc (32-bit and 64-bit), the rest · Maintainers:
Madhavan Srinivasan, Linus Torvalds
On Wednesday 11 July 2007, Benjamin Herrenschmidt wrote:
There are two possibly solutions I see in the long run: =20 =A0- We could set the FW features earlier on pseries, though that is a bit annoying because that means doing it before the device-tree is unflattened. =20 =A0- We could constraint lmb_alloc to the first segment until the FW fixup occurs, either within lmb_alloc itself, or fixup the callers such as unflatten_device_tree, to pass an explicit limit. =20 What do you think ?
If I'm understanding this right, the first solution should be something along the lines of the patch below (not tested), which even removes more lines than it adds. It doesn't seem that annoying to me, and it makes sense to assume that the fw_features are set up after returning from the ppc_md probe. Arnd <>< Index: linux-2.6/arch/powerpc/platforms/pseries/setup.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =2D-- linux-2.6.orig/arch/powerpc/platforms/pseries/setup.c
+++ linux-2.6/arch/powerpc/platforms/pseries/setup.c@@ -327,8 +327,6 @@ static void __init pSeries_init_early(vo { DBG(" -> pSeries_init_early()\n");
=20 =2D fw_feature_init(); =2D if (firmware_has_feature(FW_FEATURE_LPAR)) find_udbg_vterm(); =20
@@ -350,14 +348,21 @@ static int __init pSeries_probe_hypertas const char *uname, int depth, void *data) { + const char *hypertas; + unsigned long len; + if (depth !=3D 1 || (strcmp(uname, "rtas") !=3D 0 && strcmp(uname, "rtas@0") !=3D 0))
=2D return 0; + return 0; + + hypertas =3D of_get_flat_dt_prop(node, "ibm,hypertas-functions", &len); + if (!hypertas) + return 1; =20 =2D if (of_get_flat_dt_prop(node, "ibm,hypertas-functions", NULL) !=3D NULL) =2D powerpc_firmware_features |=3D FW_FEATURE_LPAR; + powerpc_firmware_features |=3D FW_FEATURE_LPAR; + fw_feature_init(hypertas, len); =20 =2D return 1; + return 1; } =20 static int __init pSeries_probe(void) Index: linux-2.6/arch/powerpc/platforms/pseries/pseries.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =2D-- linux-2.6.orig/arch/powerpc/platforms/pseries/pseries.h
+++ linux-2.6/arch/powerpc/platforms/pseries/pseries.h@@ -10,7 +10,7 @@ #ifndef _PSERIES_PSERIES_H #define _PSERIES_PSERIES_H
=20 =2Dextern void __init fw_feature_init(void); +extern void __init fw_feature_init(const char *, unsigned long); =20 struct pt_regs; =20
diff --git a/arch/powerpc/platforms/pseries/firmware.c b/arch/powerpc/platf=orms/pseries/firmware.c index 29bf83b..b0c8dbd 100644 =2D-- a/arch/powerpc/platforms/pseries/firmware.c
+++ b/arch/powerpc/platforms/pseries/firmware.c@@ -66,24 +66,14 @@ firmware_features_table[FIRMWARE_MAX_FEATURES] =3D { * device-tree/ibm,hypertas-functions. Ultimately this functionality may * be moved into prom.c prom_init(). */
=2Dvoid __init fw_feature_init(void)
+void __init fw_feature_init(const char *hypertas, unsigned long len)
{
struct device_node *dn;
const char *hypertas, *s;
=2D int len, i;
+ int i;
=20
DBG(" -> fw_feature_init()\n");
=20
=2D dn =3D of_find_node_by_path("/rtas");
=2D if (dn =3D=3D NULL) {
=2D printk(KERN_ERR "WARNING! Cannot find RTAS in device-tree!\n");
=2D goto out;
=2D }
=2D
=2D hypertas =3D of_get_property(dn, "ibm,hypertas-functions", &len);
=2D if (hypertas =3D=3D NULL)
=2D goto out;
=2D
for (s =3D hypertas; s < hypertas + len; s +=3D strlen(s) + 1) {
for (i =3D 0; i < FIRMWARE_MAX_FEATURES; i++) {
/* check value against table of strings */