From: Arnd Bergmann Date: Tue, 6 Dec 2005 03:52:29 +0000 (-0500) Subject: [PATCH] cell: add platform detection code X-Git-Tag: v2.6.16-rc1~666^2~64 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=dad482c25698134b79c80694c81f0495019e0842;p=~shefty%2Frdma-dev.git [PATCH] cell: add platform detection code I can't really get a conclusive answer from the firmware people what to check for, so I just try scanning for anything that starts with "IBM,CPB", which should be correct for all hardware produced so far and for systemsim. Signed-off-by: Arnd Bergmann Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index 2ae860c306d..6007d51d119 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c @@ -1539,6 +1539,8 @@ static int __init prom_find_machine_type(void) #ifdef CONFIG_PPC64 if (strstr(p, RELOC("Momentum,Maple"))) return PLATFORM_MAPLE; + if (strstr(p, RELOC("IBM,CPB"))) + return PLATFORM_CELL; #endif i += sl + 1; }