linux/arch/arm/plat-samsung/include/plat/cpu.h
<<
>>
Prefs
   1/* linux/arch/arm/plat-samsung/include/plat/cpu.h
   2 *
   3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
   4 *              http://www.samsung.com/
   5 *
   6 * Copyright (c) 2004-2005 Simtec Electronics
   7 *      Ben Dooks <ben@simtec.co.uk>
   8 *
   9 * Header file for Samsung CPU support
  10 *
  11 * This program is free software; you can redistribute it and/or modify
  12 * it under the terms of the GNU General Public License version 2 as
  13 * published by the Free Software Foundation.
  14*/
  15
  16/* todo - fix when rmk changes iodescs to use `void __iomem *` */
  17
  18#ifndef __SAMSUNG_PLAT_CPU_H
  19#define __SAMSUNG_PLAT_CPU_H
  20
  21extern unsigned long samsung_cpu_id;
  22
  23#define S3C24XX_CPU_ID          0x32400000
  24#define S3C24XX_CPU_MASK        0xFFF00000
  25
  26#define S3C2412_CPU_ID          0x32412000
  27#define S3C2412_CPU_MASK        0xFFFFF000
  28
  29#define S3C6400_CPU_ID          0x36400000
  30#define S3C6410_CPU_ID          0x36410000
  31#define S3C64XX_CPU_MASK        0xFFFFF000
  32
  33#define S5P6440_CPU_ID          0x56440000
  34#define S5P6450_CPU_ID          0x36450000
  35#define S5P64XX_CPU_MASK        0xFFFFF000
  36
  37#define S5PC100_CPU_ID          0x43100000
  38#define S5PC100_CPU_MASK        0xFFFFF000
  39
  40#define S5PV210_CPU_ID          0x43110000
  41#define S5PV210_CPU_MASK        0xFFFFF000
  42
  43#define EXYNOS4210_CPU_ID       0x43210000
  44#define EXYNOS4212_CPU_ID       0x43220000
  45#define EXYNOS4412_CPU_ID       0xE4412200
  46#define EXYNOS4_CPU_MASK        0xFFFE0000
  47
  48#define EXYNOS5250_SOC_ID       0x43520000
  49#define EXYNOS5420_SOC_ID       0xE5420000
  50#define EXYNOS5440_SOC_ID       0xE5440000
  51#define EXYNOS5_SOC_MASK        0xFFFFF000
  52
  53#define IS_SAMSUNG_CPU(name, id, mask)          \
  54static inline int is_samsung_##name(void)       \
  55{                                               \
  56        return ((samsung_cpu_id & mask) == (id & mask));        \
  57}
  58
  59IS_SAMSUNG_CPU(s3c24xx, S3C24XX_CPU_ID, S3C24XX_CPU_MASK)
  60IS_SAMSUNG_CPU(s3c2412, S3C2412_CPU_ID, S3C2412_CPU_MASK)
  61IS_SAMSUNG_CPU(s3c6400, S3C6400_CPU_ID, S3C64XX_CPU_MASK)
  62IS_SAMSUNG_CPU(s3c6410, S3C6410_CPU_ID, S3C64XX_CPU_MASK)
  63IS_SAMSUNG_CPU(s5p6440, S5P6440_CPU_ID, S5P64XX_CPU_MASK)
  64IS_SAMSUNG_CPU(s5p6450, S5P6450_CPU_ID, S5P64XX_CPU_MASK)
  65IS_SAMSUNG_CPU(s5pc100, S5PC100_CPU_ID, S5PC100_CPU_MASK)
  66IS_SAMSUNG_CPU(s5pv210, S5PV210_CPU_ID, S5PV210_CPU_MASK)
  67IS_SAMSUNG_CPU(exynos4210, EXYNOS4210_CPU_ID, EXYNOS4_CPU_MASK)
  68IS_SAMSUNG_CPU(exynos4212, EXYNOS4212_CPU_ID, EXYNOS4_CPU_MASK)
  69IS_SAMSUNG_CPU(exynos4412, EXYNOS4412_CPU_ID, EXYNOS4_CPU_MASK)
  70IS_SAMSUNG_CPU(exynos5250, EXYNOS5250_SOC_ID, EXYNOS5_SOC_MASK)
  71IS_SAMSUNG_CPU(exynos5420, EXYNOS5420_SOC_ID, EXYNOS5_SOC_MASK)
  72IS_SAMSUNG_CPU(exynos5440, EXYNOS5440_SOC_ID, EXYNOS5_SOC_MASK)
  73
  74#if defined(CONFIG_CPU_S3C2410) || defined(CONFIG_CPU_S3C2412) || \
  75    defined(CONFIG_CPU_S3C2416) || defined(CONFIG_CPU_S3C2440) || \
  76    defined(CONFIG_CPU_S3C2442) || defined(CONFIG_CPU_S3C244X) || \
  77    defined(CONFIG_CPU_S3C2443)
  78# define soc_is_s3c24xx()       is_samsung_s3c24xx()
  79#else
  80# define soc_is_s3c24xx()       0
  81#endif
  82
  83#if defined(CONFIG_CPU_S3C2412)
  84# define soc_is_s3c2412()       is_samsung_s3c2412()
  85#else
  86# define soc_is_s3c2412()       0
  87#endif
  88
  89#if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410)
  90# define soc_is_s3c6400()       is_samsung_s3c6400()
  91# define soc_is_s3c6410()       is_samsung_s3c6410()
  92# define soc_is_s3c64xx()       (is_samsung_s3c6400() || is_samsung_s3c6410())
  93#else
  94# define soc_is_s3c6400()       0
  95# define soc_is_s3c6410()       0
  96# define soc_is_s3c64xx()       0
  97#endif
  98
  99#if defined(CONFIG_CPU_S5P6440)
 100# define soc_is_s5p6440()       is_samsung_s5p6440()
 101#else
 102# define soc_is_s5p6440()       0
 103#endif
 104
 105#if defined(CONFIG_CPU_S5P6450)
 106# define soc_is_s5p6450()       is_samsung_s5p6450()
 107#else
 108# define soc_is_s5p6450()       0
 109#endif
 110
 111#if defined(CONFIG_CPU_S5PC100)
 112# define soc_is_s5pc100()       is_samsung_s5pc100()
 113#else
 114# define soc_is_s5pc100()       0
 115#endif
 116
 117#if defined(CONFIG_CPU_S5PV210)
 118# define soc_is_s5pv210()       is_samsung_s5pv210()
 119#else
 120# define soc_is_s5pv210()       0
 121#endif
 122
 123#if defined(CONFIG_CPU_EXYNOS4210)
 124# define soc_is_exynos4210()    is_samsung_exynos4210()
 125#else
 126# define soc_is_exynos4210()    0
 127#endif
 128
 129#if defined(CONFIG_SOC_EXYNOS4212)
 130# define soc_is_exynos4212()    is_samsung_exynos4212()
 131#else
 132# define soc_is_exynos4212()    0
 133#endif
 134
 135#if defined(CONFIG_SOC_EXYNOS4412)
 136# define soc_is_exynos4412()    is_samsung_exynos4412()
 137#else
 138# define soc_is_exynos4412()    0
 139#endif
 140
 141#define EXYNOS4210_REV_0        (0x0)
 142#define EXYNOS4210_REV_1_0      (0x10)
 143#define EXYNOS4210_REV_1_1      (0x11)
 144
 145#if defined(CONFIG_SOC_EXYNOS5250)
 146# define soc_is_exynos5250()    is_samsung_exynos5250()
 147#else
 148# define soc_is_exynos5250()    0
 149#endif
 150
 151#if defined(CONFIG_SOC_EXYNOS5420)
 152# define soc_is_exynos5420()    is_samsung_exynos5420()
 153#else
 154# define soc_is_exynos5420()    0
 155#endif
 156
 157#if defined(CONFIG_SOC_EXYNOS5440)
 158# define soc_is_exynos5440()    is_samsung_exynos5440()
 159#else
 160# define soc_is_exynos5440()    0
 161#endif
 162
 163#define IODESC_ENT(x) { (unsigned long)S3C24XX_VA_##x, __phys_to_pfn(S3C24XX_PA_##x), S3C24XX_SZ_##x, MT_DEVICE }
 164
 165#ifndef KHZ
 166#define KHZ (1000)
 167#endif
 168
 169#ifndef MHZ
 170#define MHZ (1000*1000)
 171#endif
 172
 173#define print_mhz(m) ((m) / MHZ), (((m) / 1000) % 1000)
 174
 175/* forward declaration */
 176struct s3c24xx_uart_resources;
 177struct platform_device;
 178struct s3c2410_uartcfg;
 179struct map_desc;
 180
 181/* per-cpu initialisation function table. */
 182
 183struct cpu_table {
 184        unsigned long   idcode;
 185        unsigned long   idmask;
 186        void            (*map_io)(void);
 187        void            (*init_uarts)(struct s3c2410_uartcfg *cfg, int no);
 188        void            (*init_clocks)(int xtal);
 189        int             (*init)(void);
 190        const char      *name;
 191};
 192
 193extern void s3c_init_cpu(unsigned long idcode,
 194                         struct cpu_table *cpus, unsigned int cputab_size);
 195
 196/* core initialisation functions */
 197
 198extern void s5p_init_irq(u32 *vic, u32 num_vic);
 199
 200extern void s3c24xx_init_io(struct map_desc *mach_desc, int size);
 201
 202extern void s3c24xx_init_cpu(void);
 203extern void s3c64xx_init_cpu(void);
 204extern void s5p_init_cpu(void __iomem *cpuid_addr);
 205
 206extern unsigned int samsung_rev(void);
 207
 208extern void s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no);
 209
 210extern void s3c24xx_init_clocks(int xtal);
 211
 212extern void s3c24xx_init_uartdevs(char *name,
 213                                  struct s3c24xx_uart_resources *res,
 214                                  struct s3c2410_uartcfg *cfg, int no);
 215
 216extern struct syscore_ops s3c2410_pm_syscore_ops;
 217extern struct syscore_ops s3c2412_pm_syscore_ops;
 218extern struct syscore_ops s3c2416_pm_syscore_ops;
 219extern struct syscore_ops s3c244x_pm_syscore_ops;
 220
 221/* system device subsystems */
 222
 223extern struct bus_type s3c2410_subsys;
 224extern struct bus_type s3c2410a_subsys;
 225extern struct bus_type s3c2412_subsys;
 226extern struct bus_type s3c2416_subsys;
 227extern struct bus_type s3c2440_subsys;
 228extern struct bus_type s3c2442_subsys;
 229extern struct bus_type s3c2443_subsys;
 230extern struct bus_type s3c6410_subsys;
 231extern struct bus_type s5p64x0_subsys;
 232extern struct bus_type s5pv210_subsys;
 233extern struct bus_type exynos_subsys;
 234
 235extern void (*s5pc1xx_idle)(void);
 236
 237#endif
 238