perf, x86: Fix key indexing in Pentium-4 PMU
[linux-2.6-block.git] / arch / arm / plat-s3c / include / plat / cpu.h
CommitLineData
a503059c 1/* linux/arch/arm/plat-s3c/include/plat/cpu.h
1da177e4
LT
2 *
3 * Copyright (c) 2004-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * Header file for S3C24XX CPU support
7 *
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.
1da177e4
LT
11*/
12
13/* todo - fix when rmk changes iodescs to use `void __iomem *` */
14
c3fcf5d1
KP
15#ifndef __SAMSUNG_PLAT_CPU_H
16#define __SAMSUNG_PLAT_CPU_H
17
0367a8d3 18#define IODESC_ENT(x) { (unsigned long)S3C24XX_VA_##x, __phys_to_pfn(S3C24XX_PA_##x), S3C24XX_SZ_##x, MT_DEVICE }
1da177e4
LT
19
20#ifndef MHZ
21#define MHZ (1000*1000)
22#endif
23
a503059c 24#define print_mhz(m) ((m) / MHZ), (((m) / 1000) % 1000)
1da177e4
LT
25
26/* forward declaration */
66a9b49a
BD
27struct s3c24xx_uart_resources;
28struct platform_device;
1da177e4
LT
29struct s3c2410_uartcfg;
30struct map_desc;
31
74b265d4
BD
32/* per-cpu initialisation function table. */
33
34struct cpu_table {
35 unsigned long idcode;
36 unsigned long idmask;
37 void (*map_io)(void);
38 void (*init_uarts)(struct s3c2410_uartcfg *cfg, int no);
39 void (*init_clocks)(int xtal);
40 int (*init)(void);
41 const char *name;
42};
43
44extern void s3c_init_cpu(unsigned long idcode,
45 struct cpu_table *cpus, unsigned int cputab_size);
46
1da177e4
LT
47/* core initialisation functions */
48
49extern void s3c24xx_init_irq(void);
d9b79fb5 50extern void s3c64xx_init_irq(u32 vic0, u32 vic1);
1da177e4
LT
51
52extern void s3c24xx_init_io(struct map_desc *mach_desc, int size);
6a5f4b85 53extern void s3c64xx_init_io(struct map_desc *mach_desc, int size);
1da177e4
LT
54
55extern void s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no);
56
57extern void s3c24xx_init_clocks(int xtal);
58
66a9b49a
BD
59extern void s3c24xx_init_uartdevs(char *name,
60 struct s3c24xx_uart_resources *res,
61 struct s3c2410_uartcfg *cfg, int no);
62
1da177e4
LT
63/* timer for 2410/2440 */
64
65struct sys_timer;
66extern struct sys_timer s3c24xx_timer;
67
68/* system device classes */
69
a341305e 70extern struct sysdev_class s3c2410_sysclass;
f0176794 71extern struct sysdev_class s3c2410a_sysclass;
68d9ab39 72extern struct sysdev_class s3c2412_sysclass;
1da177e4 73extern struct sysdev_class s3c2440_sysclass;
96ce2385 74extern struct sysdev_class s3c2442_sysclass;
e4d06e39 75extern struct sysdev_class s3c2443_sysclass;
0abfe9aa 76extern struct sysdev_class s3c6410_sysclass;
1deb507d
BD
77extern struct sysdev_class s3c64xx_sysclass;
78
c3fcf5d1
KP
79extern void (*s5pc1xx_idle)(void);
80
81#endif