clock-pxa910.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #include <linux/module.h>
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. #include <linux/list.h>
  5. #include <linux/io.h>
  6. #include <linux/clk.h>
  7. #include <mach/addr-map.h>
  8. #include "common.h"
  9. #include "clock.h"
  10. /*
  11. * APB Clock register offsets for PXA910
  12. */
  13. #define APBC_UART0 APBC_REG(0x000)
  14. #define APBC_UART1 APBC_REG(0x004)
  15. #define APBC_GPIO APBC_REG(0x008)
  16. #define APBC_PWM1 APBC_REG(0x00c)
  17. #define APBC_PWM2 APBC_REG(0x010)
  18. #define APBC_PWM3 APBC_REG(0x014)
  19. #define APBC_PWM4 APBC_REG(0x018)
  20. #define APBC_SSP1 APBC_REG(0x01c)
  21. #define APBC_SSP2 APBC_REG(0x020)
  22. #define APBC_RTC APBC_REG(0x028)
  23. #define APBC_TWSI0 APBC_REG(0x02c)
  24. #define APBC_KPC APBC_REG(0x030)
  25. #define APBC_SSP3 APBC_REG(0x04c)
  26. #define APBC_TWSI1 APBC_REG(0x06c)
  27. #define APMU_NAND APMU_REG(0x060)
  28. #define APMU_USB APMU_REG(0x05c)
  29. static APBC_CLK(uart1, UART0, 1, 14745600);
  30. static APBC_CLK(uart2, UART1, 1, 14745600);
  31. static APBC_CLK(twsi0, TWSI0, 1, 33000000);
  32. static APBC_CLK(twsi1, TWSI1, 1, 33000000);
  33. static APBC_CLK(pwm1, PWM1, 1, 13000000);
  34. static APBC_CLK(pwm2, PWM2, 1, 13000000);
  35. static APBC_CLK(pwm3, PWM3, 1, 13000000);
  36. static APBC_CLK(pwm4, PWM4, 1, 13000000);
  37. static APBC_CLK(gpio, GPIO, 0, 13000000);
  38. static APBC_CLK(rtc, RTC, 8, 32768);
  39. static APMU_CLK(nand, NAND, 0x19b, 156000000);
  40. static APMU_CLK(u2o, USB, 0x1b, 480000000);
  41. /* device and clock bindings */
  42. static struct clk_lookup pxa910_clkregs[] = {
  43. INIT_CLKREG(&clk_uart1, "pxa2xx-uart.0", NULL),
  44. INIT_CLKREG(&clk_uart2, "pxa2xx-uart.1", NULL),
  45. INIT_CLKREG(&clk_twsi0, "pxa2xx-i2c.0", NULL),
  46. INIT_CLKREG(&clk_twsi1, "pxa2xx-i2c.1", NULL),
  47. INIT_CLKREG(&clk_pwm1, "pxa910-pwm.0", NULL),
  48. INIT_CLKREG(&clk_pwm2, "pxa910-pwm.1", NULL),
  49. INIT_CLKREG(&clk_pwm3, "pxa910-pwm.2", NULL),
  50. INIT_CLKREG(&clk_pwm4, "pxa910-pwm.3", NULL),
  51. INIT_CLKREG(&clk_nand, "pxa3xx-nand", NULL),
  52. INIT_CLKREG(&clk_gpio, "pxa-gpio", NULL),
  53. INIT_CLKREG(&clk_u2o, NULL, "U2OCLK"),
  54. INIT_CLKREG(&clk_rtc, "sa1100-rtc", NULL),
  55. };
  56. void __init pxa910_clk_init(void)
  57. {
  58. clkdev_add_table(ARRAY_AND_SIZE(pxa910_clkregs));
  59. }