Commit a4d9b33b authored by Linus Walleij's avatar Linus Walleij

ARM: ux500: add a U8520 detection macro

In line with the other macros this detects the DB8520
ASIC variant.
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent a8035217
......@@ -41,6 +41,11 @@ static inline bool __attribute_const__ cpu_is_u8500(void)
return dbx500_partnumber() == 0x8500;
}
static inline bool __attribute_const__ cpu_is_u8520(void)
{
return dbx500_partnumber() == 0x8520;
}
static inline bool __attribute_const__ cpu_is_u9540(void)
{
return dbx500_partnumber() == 0x9540;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment