s3c2412.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* linux/arch/arm/mach-s3c2410/s3c2412.c
  2. *
  3. * Copyright (c) 2006 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * http://armlinux.simtec.co.uk/.
  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 <asm/arch/regs-gpio.h>
  40. #include <asm/arch/regs-gpioj.h>
  41. #include <asm/arch/regs-dsc.h>
  42. #include "s3c2412.h"
  43. #include "cpu.h"
  44. #include "devs.h"
  45. #include "clock.h"
  46. #include "pm.h"
  47. #ifndef CONFIG_CPU_S3C2412_ONLY
  48. void __iomem *s3c24xx_va_gpio2 = S3C24XX_VA_GPIO;
  49. #endif
  50. /* Initial IO mappings */
  51. static struct map_desc s3c2412_iodesc[] __initdata = {
  52. IODESC_ENT(CLKPWR),
  53. IODESC_ENT(LCD),
  54. IODESC_ENT(TIMER),
  55. IODESC_ENT(ADC),
  56. IODESC_ENT(WATCHDOG),
  57. };
  58. /* uart registration process */
  59. void __init s3c2412_init_uarts(struct s3c2410_uartcfg *cfg, int no)
  60. {
  61. s3c24xx_init_uartdevs("s3c2412-uart", s3c2410_uart_resources, cfg, no);
  62. /* rename devices that are s3c2412/s3c2413 specific */
  63. s3c_device_sdi.name = "s3c2412-sdi";
  64. s3c_device_nand.name = "s3c2412-nand";
  65. }
  66. /* s3c2412_map_io
  67. *
  68. * register the standard cpu IO areas, and any passed in from the
  69. * machine specific initialisation.
  70. */
  71. void __init s3c2412_map_io(struct map_desc *mach_desc, int mach_size)
  72. {
  73. /* move base of IO */
  74. s3c24xx_va_gpio2 = S3C24XX_VA_GPIO + 0x10;
  75. /* register our io-tables */
  76. iotable_init(s3c2412_iodesc, ARRAY_SIZE(s3c2412_iodesc));
  77. iotable_init(mach_desc, mach_size);
  78. }
  79. void __init s3c2412_init_clocks(int xtal)
  80. {
  81. unsigned long tmp;
  82. unsigned long fclk;
  83. unsigned long hclk;
  84. unsigned long pclk;
  85. /* now we've got our machine bits initialised, work out what
  86. * clocks we've got */
  87. fclk = s3c2410_get_pll(__raw_readl(S3C2410_MPLLCON), xtal*2);
  88. tmp = __raw_readl(S3C2410_CLKDIVN);
  89. /* work out clock scalings */
  90. hclk = fclk / ((tmp & S3C2412_CLKDIVN_HDIVN_MASK) + 1);
  91. hclk /= ((tmp & S3C2421_CLKDIVN_ARMDIVN) ? 2 : 1);
  92. pclk = hclk / ((tmp & S3C2412_CLKDIVN_PDIVN) ? 2 : 1);
  93. /* print brieft summary of clocks, etc */
  94. printk("S3C2412: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n",
  95. print_mhz(fclk), print_mhz(hclk), print_mhz(pclk));
  96. /* initialise the clocks here, to allow other things like the
  97. * console to use them
  98. */
  99. s3c24xx_setup_clocks(xtal, fclk, hclk, pclk);
  100. s3c2412_baseclk_add();
  101. }
  102. /* need to register class before we actually register the device, and
  103. * we also need to ensure that it has been initialised before any of the
  104. * drivers even try to use it (even if not on an s3c2412 based system)
  105. * as a driver which may support both 2410 and 2440 may try and use it.
  106. */
  107. #ifdef CONFIG_PM
  108. static struct sleep_save s3c2412_sleep[] = {
  109. SAVE_ITEM(S3C2412_DSC0),
  110. SAVE_ITEM(S3C2412_DSC1),
  111. SAVE_ITEM(S3C2413_GPJDAT),
  112. SAVE_ITEM(S3C2413_GPJCON),
  113. SAVE_ITEM(S3C2413_GPJUP),
  114. /* save the sleep configuration anyway, just in case these
  115. * get damaged during wakeup */
  116. SAVE_ITEM(S3C2412_GPBSLPCON),
  117. SAVE_ITEM(S3C2412_GPCSLPCON),
  118. SAVE_ITEM(S3C2412_GPDSLPCON),
  119. SAVE_ITEM(S3C2412_GPESLPCON),
  120. SAVE_ITEM(S3C2412_GPFSLPCON),
  121. SAVE_ITEM(S3C2412_GPGSLPCON),
  122. SAVE_ITEM(S3C2412_GPHSLPCON),
  123. SAVE_ITEM(S3C2413_GPJSLPCON),
  124. };
  125. static int s3c2412_suspend(struct sys_device *dev, pm_message_t state)
  126. {
  127. s3c2410_pm_do_save(s3c2412_sleep, ARRAY_SIZE(s3c2412_sleep));
  128. return 0;
  129. }
  130. static int s3c2412_resume(struct sys_device *dev)
  131. {
  132. s3c2410_pm_do_restore(s3c2412_sleep, ARRAY_SIZE(s3c2412_sleep));
  133. return 0;
  134. }
  135. #else
  136. #define s3c2412_suspend NULL
  137. #define s3c2412_resume NULL
  138. #endif
  139. struct sysdev_class s3c2412_sysclass = {
  140. set_kset_name("s3c2412-core"),
  141. .suspend = s3c2412_suspend,
  142. .resume = s3c2412_resume
  143. };
  144. static int __init s3c2412_core_init(void)
  145. {
  146. return sysdev_class_register(&s3c2412_sysclass);
  147. }
  148. core_initcall(s3c2412_core_init);
  149. static struct sys_device s3c2412_sysdev = {
  150. .cls = &s3c2412_sysclass,
  151. };
  152. int __init s3c2412_init(void)
  153. {
  154. printk("S3C2412: Initialising architecture\n");
  155. return sysdev_register(&s3c2412_sysdev);
  156. }