x86/mm/pat: Don't report PAT on CPUs that don't support it
[linux/fpc-iii.git] / arch / arm / plat-samsung / cpu.c
bloba107b3a0b095dc58877b33ce2a8851c65414fdbf
1 /* linux/arch/arm/plat-samsung/cpu.c
3 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Samsung CPU Support
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/io.h>
18 #include <plat/map-base.h>
19 #include <plat/cpu.h>
21 unsigned long samsung_cpu_id;
22 static unsigned int samsung_cpu_rev;
24 unsigned int samsung_rev(void)
26 return samsung_cpu_rev;
28 EXPORT_SYMBOL(samsung_rev);
30 void __init s3c64xx_init_cpu(void)
32 samsung_cpu_id = readl_relaxed(S3C_VA_SYS + 0x118);
33 if (!samsung_cpu_id) {
35 * S3C6400 has the ID register in a different place,
36 * and needs a write before it can be read.
38 writel_relaxed(0x0, S3C_VA_SYS + 0xA1C);
39 samsung_cpu_id = readl_relaxed(S3C_VA_SYS + 0xA1C);
42 samsung_cpu_rev = 0;
44 pr_info("Samsung CPU ID: 0x%08lx\n", samsung_cpu_id);
47 void __init s5p_init_cpu(const void __iomem *cpuid_addr)
49 samsung_cpu_id = readl_relaxed(cpuid_addr);
50 samsung_cpu_rev = samsung_cpu_id & 0xFF;
52 pr_info("Samsung CPU ID: 0x%08lx\n", samsung_cpu_id);