cpu.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* linux/arch/arm/plat-samsung/include/plat/cpu.h
  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.
  11. */
  12. /* todo - fix when rmk changes iodescs to use `void __iomem *` */
  13. #ifndef __SAMSUNG_PLAT_CPU_H
  14. #define __SAMSUNG_PLAT_CPU_H
  15. #define IODESC_ENT(x) { (unsigned long)S3C24XX_VA_##x, __phys_to_pfn(S3C24XX_PA_##x), S3C24XX_SZ_##x, MT_DEVICE }
  16. #ifndef MHZ
  17. #define MHZ (1000*1000)
  18. #endif
  19. #define print_mhz(m) ((m) / MHZ), (((m) / 1000) % 1000)
  20. /* forward declaration */
  21. struct s3c24xx_uart_resources;
  22. struct platform_device;
  23. struct s3c2410_uartcfg;
  24. struct map_desc;
  25. /* per-cpu initialisation function table. */
  26. struct cpu_table {
  27. unsigned long idcode;
  28. unsigned long idmask;
  29. void (*map_io)(void);
  30. void (*init_uarts)(struct s3c2410_uartcfg *cfg, int no);
  31. void (*init_clocks)(int xtal);
  32. int (*init)(void);
  33. const char *name;
  34. };
  35. extern void s3c_init_cpu(unsigned long idcode,
  36. struct cpu_table *cpus, unsigned int cputab_size);
  37. /* core initialisation functions */
  38. extern void s3c24xx_init_irq(void);
  39. extern void s3c64xx_init_irq(u32 vic0, u32 vic1);
  40. extern void s5p_init_irq(u32 *vic, u32 num_vic);
  41. extern void s3c24xx_init_io(struct map_desc *mach_desc, int size);
  42. extern void s3c64xx_init_io(struct map_desc *mach_desc, int size);
  43. extern void s5p_init_io(struct map_desc *mach_desc,
  44. int size, void __iomem *cpuid_addr);
  45. extern void s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no);
  46. extern void s3c24xx_init_clocks(int xtal);
  47. extern void s3c24xx_init_uartdevs(char *name,
  48. struct s3c24xx_uart_resources *res,
  49. struct s3c2410_uartcfg *cfg, int no);
  50. /* timer for 2410/2440 */
  51. struct sys_timer;
  52. extern struct sys_timer s3c24xx_timer;
  53. /* system device classes */
  54. extern struct sysdev_class s3c2410_sysclass;
  55. extern struct sysdev_class s3c2410a_sysclass;
  56. extern struct sysdev_class s3c2412_sysclass;
  57. extern struct sysdev_class s3c2416_sysclass;
  58. extern struct sysdev_class s3c2440_sysclass;
  59. extern struct sysdev_class s3c2442_sysclass;
  60. extern struct sysdev_class s3c2443_sysclass;
  61. extern struct sysdev_class s3c6410_sysclass;
  62. extern struct sysdev_class s3c64xx_sysclass;
  63. extern struct sysdev_class s5p6440_sysclass;
  64. extern struct sysdev_class s5p6442_sysclass;
  65. extern struct sysdev_class s5pv210_sysclass;
  66. extern void (*s5pc1xx_idle)(void);
  67. #endif