pxa168.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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/clk.h>
  15. #include <asm/mach/time.h>
  16. #include <mach/addr-map.h>
  17. #include <mach/cputype.h>
  18. #include <mach/regs-apbc.h>
  19. #include <mach/irqs.h>
  20. #include <mach/dma.h>
  21. #include <mach/devices.h>
  22. #include "common.h"
  23. #include "clock.h"
  24. void __init pxa168_init_irq(void)
  25. {
  26. icu_init_irq();
  27. }
  28. /* APB peripheral clocks */
  29. static APBC_CLK(uart1, PXA168_UART1, 1, 14745600);
  30. static APBC_CLK(uart2, PXA168_UART2, 1, 14745600);
  31. /* device and clock bindings */
  32. static struct clk_lookup pxa168_clkregs[] = {
  33. INIT_CLKREG(&clk_uart1, "pxa2xx-uart.0", NULL),
  34. INIT_CLKREG(&clk_uart2, "pxa2xx-uart.1", NULL),
  35. };
  36. static int __init pxa168_init(void)
  37. {
  38. if (cpu_is_pxa168()) {
  39. pxa_init_dma(IRQ_PXA168_DMA_INT0, 32);
  40. clks_register(ARRAY_AND_SIZE(pxa168_clkregs));
  41. }
  42. return 0;
  43. }
  44. postcore_initcall(pxa168_init);
  45. /* system timer - clock enabled, 3.25MHz */
  46. #define TIMER_CLK_RST (APBC_APBCLK | APBC_FNCLK | APBC_FNCLKSEL(3))
  47. static void __init pxa168_timer_init(void)
  48. {
  49. /* this is early, we have to initialize the CCU registers by
  50. * ourselves instead of using clk_* API. Clock rate is defined
  51. * by APBC_TIMERS_CLK_RST (3.25MHz) and enabled free-running
  52. */
  53. __raw_writel(APBC_APBCLK | APBC_RST, APBC_PXA168_TIMERS);
  54. /* 3.25MHz, bus/functional clock enabled, release reset */
  55. __raw_writel(TIMER_CLK_RST, APBC_PXA168_TIMERS);
  56. timer_init(IRQ_PXA168_TIMER1);
  57. }
  58. struct sys_timer pxa168_timer = {
  59. .init = pxa168_timer_init,
  60. };
  61. /* on-chip devices */
  62. PXA168_DEVICE(uart1, "pxa2xx-uart", 0, UART1, 0xd4017000, 0x30, 21, 22);
  63. PXA168_DEVICE(uart2, "pxa2xx-uart", 1, UART2, 0xd4018000, 0x30, 23, 24);