pxa168.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * linux/arch/arm/mach-mmp/pxa168.c
  3. *
  4. * Code specific to PXA168
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/module.h>
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/list.h>
  14. #include <linux/io.h>
  15. #include <linux/clk.h>
  16. #include <asm/mach/time.h>
  17. #include <mach/addr-map.h>
  18. #include <mach/cputype.h>
  19. #include <mach/regs-apbc.h>
  20. #include <mach/regs-apmu.h>
  21. #include <mach/irqs.h>
  22. #include <mach/gpio.h>
  23. #include <mach/dma.h>
  24. #include <mach/devices.h>
  25. #include <mach/mfp.h>
  26. #include "common.h"
  27. #include "clock.h"
  28. #define MFPR_VIRT_BASE (APB_VIRT_BASE + 0x1e000)
  29. static struct mfp_addr_map pxa168_mfp_addr_map[] __initdata =
  30. {
  31. MFP_ADDR_X(GPIO0, GPIO36, 0x04c),
  32. MFP_ADDR_X(GPIO37, GPIO55, 0x000),
  33. MFP_ADDR_X(GPIO56, GPIO123, 0x0e0),
  34. MFP_ADDR_X(GPIO124, GPIO127, 0x0f4),
  35. MFP_ADDR_END,
  36. };
  37. #define APMASK(i) (GPIO_REGS_VIRT + BANK_OFF(i) + 0x09c)
  38. static void __init pxa168_init_gpio(void)
  39. {
  40. int i;
  41. /* enable GPIO clock */
  42. __raw_writel(APBC_APBCLK | APBC_FNCLK, APBC_PXA168_GPIO);
  43. /* unmask GPIO edge detection for all 4 banks - APMASKx */
  44. for (i = 0; i < 4; i++)
  45. __raw_writel(0xffffffff, APMASK(i));
  46. pxa_init_gpio(IRQ_PXA168_GPIOX, 0, 127, NULL);
  47. }
  48. void __init pxa168_init_irq(void)
  49. {
  50. icu_init_irq();
  51. pxa168_init_gpio();
  52. }
  53. /* APB peripheral clocks */
  54. static APBC_CLK(uart1, PXA168_UART1, 1, 14745600);
  55. static APBC_CLK(uart2, PXA168_UART2, 1, 14745600);
  56. static APBC_CLK(twsi0, PXA168_TWSI0, 1, 33000000);
  57. static APBC_CLK(twsi1, PXA168_TWSI1, 1, 33000000);
  58. static APBC_CLK(pwm1, PXA168_PWM1, 1, 13000000);
  59. static APBC_CLK(pwm2, PXA168_PWM2, 1, 13000000);
  60. static APBC_CLK(pwm3, PXA168_PWM3, 1, 13000000);
  61. static APBC_CLK(pwm4, PXA168_PWM4, 1, 13000000);
  62. static APBC_CLK(ssp1, PXA168_SSP1, 4, 0);
  63. static APBC_CLK(ssp2, PXA168_SSP2, 4, 0);
  64. static APBC_CLK(ssp3, PXA168_SSP3, 4, 0);
  65. static APBC_CLK(ssp4, PXA168_SSP4, 4, 0);
  66. static APBC_CLK(ssp5, PXA168_SSP5, 4, 0);
  67. static APMU_CLK(nand, NAND, 0x01db, 208000000);
  68. /* device and clock bindings */
  69. static struct clk_lookup pxa168_clkregs[] = {
  70. INIT_CLKREG(&clk_uart1, "pxa2xx-uart.0", NULL),
  71. INIT_CLKREG(&clk_uart2, "pxa2xx-uart.1", NULL),
  72. INIT_CLKREG(&clk_twsi0, "pxa2xx-i2c.0", NULL),
  73. INIT_CLKREG(&clk_twsi1, "pxa2xx-i2c.1", NULL),
  74. INIT_CLKREG(&clk_pwm1, "pxa168-pwm.0", NULL),
  75. INIT_CLKREG(&clk_pwm2, "pxa168-pwm.1", NULL),
  76. INIT_CLKREG(&clk_pwm3, "pxa168-pwm.2", NULL),
  77. INIT_CLKREG(&clk_pwm4, "pxa168-pwm.3", NULL),
  78. INIT_CLKREG(&clk_ssp1, "pxa168-ssp.0", NULL),
  79. INIT_CLKREG(&clk_ssp2, "pxa168-ssp.1", NULL),
  80. INIT_CLKREG(&clk_ssp3, "pxa168-ssp.2", NULL),
  81. INIT_CLKREG(&clk_ssp4, "pxa168-ssp.3", NULL),
  82. INIT_CLKREG(&clk_ssp5, "pxa168-ssp.4", NULL),
  83. INIT_CLKREG(&clk_nand, "pxa3xx-nand", NULL),
  84. };
  85. static int __init pxa168_init(void)
  86. {
  87. if (cpu_is_pxa168()) {
  88. mfp_init_base(MFPR_VIRT_BASE);
  89. mfp_init_addr(pxa168_mfp_addr_map);
  90. pxa_init_dma(IRQ_PXA168_DMA_INT0, 32);
  91. clkdev_add_table(ARRAY_AND_SIZE(pxa168_clkregs));
  92. }
  93. return 0;
  94. }
  95. postcore_initcall(pxa168_init);
  96. /* system timer - clock enabled, 3.25MHz */
  97. #define TIMER_CLK_RST (APBC_APBCLK | APBC_FNCLK | APBC_FNCLKSEL(3))
  98. static void __init pxa168_timer_init(void)
  99. {
  100. /* this is early, we have to initialize the CCU registers by
  101. * ourselves instead of using clk_* API. Clock rate is defined
  102. * by APBC_TIMERS_CLK_RST (3.25MHz) and enabled free-running
  103. */
  104. __raw_writel(APBC_APBCLK | APBC_RST, APBC_PXA168_TIMERS);
  105. /* 3.25MHz, bus/functional clock enabled, release reset */
  106. __raw_writel(TIMER_CLK_RST, APBC_PXA168_TIMERS);
  107. timer_init(IRQ_PXA168_TIMER1);
  108. }
  109. struct sys_timer pxa168_timer = {
  110. .init = pxa168_timer_init,
  111. };
  112. /* on-chip devices */
  113. PXA168_DEVICE(uart1, "pxa2xx-uart", 0, UART1, 0xd4017000, 0x30, 21, 22);
  114. PXA168_DEVICE(uart2, "pxa2xx-uart", 1, UART2, 0xd4018000, 0x30, 23, 24);
  115. PXA168_DEVICE(twsi0, "pxa2xx-i2c", 0, TWSI0, 0xd4011000, 0x28);
  116. PXA168_DEVICE(twsi1, "pxa2xx-i2c", 1, TWSI1, 0xd4025000, 0x28);
  117. PXA168_DEVICE(pwm1, "pxa168-pwm", 0, NONE, 0xd401a000, 0x10);
  118. PXA168_DEVICE(pwm2, "pxa168-pwm", 1, NONE, 0xd401a400, 0x10);
  119. PXA168_DEVICE(pwm3, "pxa168-pwm", 2, NONE, 0xd401a800, 0x10);
  120. PXA168_DEVICE(pwm4, "pxa168-pwm", 3, NONE, 0xd401ac00, 0x10);
  121. PXA168_DEVICE(nand, "pxa3xx-nand", -1, NAND, 0xd4283000, 0x80, 97, 99);
  122. PXA168_DEVICE(ssp1, "pxa168-ssp", 0, SSP1, 0xd401b000, 0x40, 52, 53);
  123. PXA168_DEVICE(ssp2, "pxa168-ssp", 1, SSP2, 0xd401c000, 0x40, 54, 55);
  124. PXA168_DEVICE(ssp3, "pxa168-ssp", 2, SSP3, 0xd401f000, 0x40, 56, 57);
  125. PXA168_DEVICE(ssp4, "pxa168-ssp", 3, SSP4, 0xd4020000, 0x40, 58, 59);
  126. PXA168_DEVICE(ssp5, "pxa168-ssp", 4, SSP5, 0xd4021000, 0x40, 60, 61);