ARM: 6090/1: ux500: add U5500 support

Add basic support for the U5500 platform.

Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Acked-by: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Rabin Vincent
2010-05-03 08:46:51 +01:00
committed by Russell King
parent cb165c5256
commit 591d8dd71c
9 changed files with 166 additions and 6 deletions

View File

@@ -114,6 +114,15 @@ static inline bool cpu_is_u8500v1(void)
return cpu_is_u8500() && (read_cpuid_id() & 15) == 1;
}
static inline bool cpu_is_u5500(void)
{
#ifdef CONFIG_UX500_SOC_DB5500
return 1;
#else
return 0;
#endif
}
#endif
#endif /* __MACH_HARDWARE_H */