s3c2410.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* linux/arch/arm/mach-s3c2410/s3c2410.c
  2. *
  3. * Copyright (c) 2003-2005 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * http://www.simtec.co.uk/products/EB2410ITX/
  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. * Modifications:
  13. * 16-May-2003 BJD Created initial version
  14. * 16-Aug-2003 BJD Fixed header files and copyright, added URL
  15. * 05-Sep-2003 BJD Moved to kernel v2.6
  16. * 18-Jan-2004 BJD Added serial port configuration
  17. * 21-Aug-2004 BJD Added new struct s3c2410_board handler
  18. * 28-Sep-2004 BJD Updates for new serial port bits
  19. * 04-Nov-2004 BJD Updated UART configuration process
  20. * 10-Jan-2005 BJD Removed s3c2410_clock_tick_rate
  21. * 13-Aug-2005 DA Removed UART from initial I/O mappings
  22. */
  23. #include <linux/kernel.h>
  24. #include <linux/types.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/list.h>
  27. #include <linux/timer.h>
  28. #include <linux/init.h>
  29. #include <linux/sysdev.h>
  30. #include <linux/platform_device.h>
  31. #include <asm/mach/arch.h>
  32. #include <asm/mach/map.h>
  33. #include <asm/mach/irq.h>
  34. #include <asm/hardware.h>
  35. #include <asm/io.h>
  36. #include <asm/irq.h>
  37. #include <asm/arch/regs-clock.h>
  38. #include <asm/arch/regs-serial.h>
  39. #include "s3c2410.h"
  40. #include "cpu.h"
  41. #include "devs.h"
  42. #include "clock.h"
  43. /* Initial IO mappings */
  44. static struct map_desc s3c2410_iodesc[] __initdata = {
  45. IODESC_ENT(USBHOST),
  46. IODESC_ENT(CLKPWR),
  47. IODESC_ENT(LCD),
  48. IODESC_ENT(TIMER),
  49. IODESC_ENT(ADC),
  50. IODESC_ENT(WATCHDOG),
  51. };
  52. /* our uart devices */
  53. /* uart registration process */
  54. void __init s3c2410_init_uarts(struct s3c2410_uartcfg *cfg, int no)
  55. {
  56. s3c24xx_init_uartdevs("s3c2410-uart", s3c2410_uart_resources, cfg, no);
  57. }
  58. /* s3c2410_map_io
  59. *
  60. * register the standard cpu IO areas, and any passed in from the
  61. * machine specific initialisation.
  62. */
  63. void __init s3c2410_map_io(struct map_desc *mach_desc, int mach_size)
  64. {
  65. /* register our io-tables */
  66. iotable_init(s3c2410_iodesc, ARRAY_SIZE(s3c2410_iodesc));
  67. iotable_init(mach_desc, mach_size);
  68. }
  69. void __init s3c2410_init_clocks(int xtal)
  70. {
  71. unsigned long tmp;
  72. unsigned long fclk;
  73. unsigned long hclk;
  74. unsigned long pclk;
  75. /* now we've got our machine bits initialised, work out what
  76. * clocks we've got */
  77. fclk = s3c2410_get_pll(__raw_readl(S3C2410_MPLLCON), xtal);
  78. tmp = __raw_readl(S3C2410_CLKDIVN);
  79. /* work out clock scalings */
  80. hclk = fclk / ((tmp & S3C2410_CLKDIVN_HDIVN) ? 2 : 1);
  81. pclk = hclk / ((tmp & S3C2410_CLKDIVN_PDIVN) ? 2 : 1);
  82. /* print brieft summary of clocks, etc */
  83. printk("S3C2410: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n",
  84. print_mhz(fclk), print_mhz(hclk), print_mhz(pclk));
  85. /* initialise the clocks here, to allow other things like the
  86. * console to use them
  87. */
  88. s3c24xx_setup_clocks(xtal, fclk, hclk, pclk);
  89. s3c2410_baseclk_add();
  90. }
  91. struct sysdev_class s3c2410_sysclass = {
  92. set_kset_name("s3c2410-core"),
  93. };
  94. static struct sys_device s3c2410_sysdev = {
  95. .cls = &s3c2410_sysclass,
  96. };
  97. /* need to register class before we actually register the device, and
  98. * we also need to ensure that it has been initialised before any of the
  99. * drivers even try to use it (even if not on an s3c2440 based system)
  100. * as a driver which may support both 2410 and 2440 may try and use it.
  101. */
  102. static int __init s3c2410_core_init(void)
  103. {
  104. return sysdev_class_register(&s3c2410_sysclass);
  105. }
  106. core_initcall(s3c2410_core_init);
  107. int __init s3c2410_init(void)
  108. {
  109. printk("S3C2410: Initialising architecture\n");
  110. return sysdev_register(&s3c2410_sysdev);
  111. }