core.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /*
  2. * linux/arch/arm/mach-aaec2000/core.c
  3. *
  4. * Code common to all AAEC-2000 machines
  5. *
  6. * Copyright (c) 2005 Nicolas Bellido Y Ortega
  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. #include <linux/config.h>
  13. #include <linux/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/list.h>
  18. #include <linux/errno.h>
  19. #include <linux/dma-mapping.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/timex.h>
  22. #include <linux/signal.h>
  23. #include <asm/hardware.h>
  24. #include <asm/irq.h>
  25. #include <asm/sizes.h>
  26. #include <asm/mach/flash.h>
  27. #include <asm/mach/irq.h>
  28. #include <asm/mach/time.h>
  29. #include <asm/mach/map.h>
  30. #include "core.h"
  31. #include "clock.h"
  32. /*
  33. * Common I/O mapping:
  34. *
  35. * Static virtual address mappings are as follow:
  36. *
  37. * 0xf8000000-0xf8001ffff: Devices connected to APB bus
  38. * 0xf8002000-0xf8003ffff: Devices connected to AHB bus
  39. *
  40. * Below 0xe8000000 is reserved for vm allocation.
  41. *
  42. * The machine specific code must provide the extra mapping beside the
  43. * default mapping provided here.
  44. */
  45. static struct map_desc standard_io_desc[] __initdata = {
  46. {
  47. .virtual = VIO_APB_BASE,
  48. .pfn = __phys_to_pfn(PIO_APB_BASE),
  49. .length = IO_APB_LENGTH,
  50. .type = MT_DEVICE
  51. }, {
  52. .virtual = VIO_AHB_BASE,
  53. .pfn = __phys_to_pfn(PIO_AHB_BASE),
  54. .length = IO_AHB_LENGTH,
  55. .type = MT_DEVICE
  56. }
  57. };
  58. void __init aaec2000_map_io(void)
  59. {
  60. iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
  61. }
  62. /*
  63. * Interrupt handling routines
  64. */
  65. static void aaec2000_int_ack(unsigned int irq)
  66. {
  67. IRQ_INTSR = 1 << irq;
  68. }
  69. static void aaec2000_int_mask(unsigned int irq)
  70. {
  71. IRQ_INTENC |= (1 << irq);
  72. }
  73. static void aaec2000_int_unmask(unsigned int irq)
  74. {
  75. IRQ_INTENS |= (1 << irq);
  76. }
  77. static struct irqchip aaec2000_irq_chip = {
  78. .ack = aaec2000_int_ack,
  79. .mask = aaec2000_int_mask,
  80. .unmask = aaec2000_int_unmask,
  81. };
  82. void __init aaec2000_init_irq(void)
  83. {
  84. unsigned int i;
  85. for (i = 0; i < NR_IRQS; i++) {
  86. set_irq_handler(i, do_level_IRQ);
  87. set_irq_chip(i, &aaec2000_irq_chip);
  88. set_irq_flags(i, IRQF_VALID);
  89. }
  90. /* Disable all interrupts */
  91. IRQ_INTENC = 0xffffffff;
  92. /* Clear any pending interrupts */
  93. IRQ_INTSR = IRQ_INTSR;
  94. }
  95. /*
  96. * Time keeping
  97. */
  98. /* IRQs are disabled before entering here from do_gettimeofday() */
  99. static unsigned long aaec2000_gettimeoffset(void)
  100. {
  101. unsigned long ticks_to_match, elapsed, usec;
  102. /* Get ticks before next timer match */
  103. ticks_to_match = TIMER1_LOAD - TIMER1_VAL;
  104. /* We need elapsed ticks since last match */
  105. elapsed = LATCH - ticks_to_match;
  106. /* Now, convert them to usec */
  107. usec = (unsigned long)(elapsed * (tick_nsec / 1000))/LATCH;
  108. return usec;
  109. }
  110. /* We enter here with IRQs enabled */
  111. static irqreturn_t
  112. aaec2000_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  113. {
  114. /* TODO: Check timer accuracy */
  115. write_seqlock(&xtime_lock);
  116. timer_tick(regs);
  117. TIMER1_CLEAR = 1;
  118. write_sequnlock(&xtime_lock);
  119. return IRQ_HANDLED;
  120. }
  121. static struct irqaction aaec2000_timer_irq = {
  122. .name = "AAEC-2000 Timer Tick",
  123. .flags = SA_INTERRUPT | SA_TIMER,
  124. .handler = aaec2000_timer_interrupt,
  125. };
  126. static void __init aaec2000_timer_init(void)
  127. {
  128. /* Disable timer 1 */
  129. TIMER1_CTRL = 0;
  130. /* We have somehow to generate a 100Hz clock.
  131. * We then use the 508KHz timer in periodic mode.
  132. */
  133. TIMER1_LOAD = LATCH;
  134. TIMER1_CLEAR = 1; /* Clear interrupt */
  135. setup_irq(INT_TMR1_OFL, &aaec2000_timer_irq);
  136. TIMER1_CTRL = TIMER_CTRL_ENABLE |
  137. TIMER_CTRL_PERIODIC |
  138. TIMER_CTRL_CLKSEL_508K;
  139. }
  140. struct sys_timer aaec2000_timer = {
  141. .init = aaec2000_timer_init,
  142. .offset = aaec2000_gettimeoffset,
  143. };
  144. static struct clcd_panel mach_clcd_panel;
  145. static int aaec2000_clcd_setup(struct clcd_fb *fb)
  146. {
  147. dma_addr_t dma;
  148. fb->panel = &mach_clcd_panel;
  149. fb->fb.screen_base = dma_alloc_writecombine(&fb->dev->dev, SZ_1M,
  150. &dma, GFP_KERNEL);
  151. if (!fb->fb.screen_base) {
  152. printk(KERN_ERR "CLCD: unable to map framebuffer\n");
  153. return -ENOMEM;
  154. }
  155. fb->fb.fix.smem_start = dma;
  156. fb->fb.fix.smem_len = SZ_1M;
  157. return 0;
  158. }
  159. static int aaec2000_clcd_mmap(struct clcd_fb *fb, struct vm_area_struct *vma)
  160. {
  161. return dma_mmap_writecombine(&fb->dev->dev, vma,
  162. fb->fb.screen_base,
  163. fb->fb.fix.smem_start,
  164. fb->fb.fix.smem_len);
  165. }
  166. static void aaec2000_clcd_remove(struct clcd_fb *fb)
  167. {
  168. dma_free_writecombine(&fb->dev->dev, fb->fb.fix.smem_len,
  169. fb->fb.screen_base, fb->fb.fix.smem_start);
  170. }
  171. static struct clcd_board clcd_plat_data = {
  172. .name = "AAEC-2000",
  173. .check = clcdfb_check,
  174. .decode = clcdfb_decode,
  175. .setup = aaec2000_clcd_setup,
  176. .mmap = aaec2000_clcd_mmap,
  177. .remove = aaec2000_clcd_remove,
  178. };
  179. static struct amba_device clcd_device = {
  180. .dev = {
  181. .bus_id = "mb:16",
  182. .coherent_dma_mask = ~0,
  183. .platform_data = &clcd_plat_data,
  184. },
  185. .res = {
  186. .start = AAEC_CLCD_PHYS,
  187. .end = AAEC_CLCD_PHYS + SZ_4K - 1,
  188. .flags = IORESOURCE_MEM,
  189. },
  190. .irq = { INT_LCD, NO_IRQ },
  191. .periphid = 0x41110,
  192. };
  193. static struct amba_device *amba_devs[] __initdata = {
  194. &clcd_device,
  195. };
  196. static struct clk aaec2000_clcd_clk = {
  197. .name = "CLCDCLK",
  198. };
  199. void __init aaec2000_set_clcd_plat_data(struct aaec2000_clcd_info *clcd)
  200. {
  201. clcd_plat_data.enable = clcd->enable;
  202. clcd_plat_data.disable = clcd->disable;
  203. memcpy(&mach_clcd_panel, &clcd->panel, sizeof(struct clcd_panel));
  204. }
  205. static struct flash_platform_data aaec2000_flash_data = {
  206. .map_name = "cfi_probe",
  207. .width = 4,
  208. };
  209. static struct resource aaec2000_flash_resource = {
  210. .start = AAEC_FLASH_BASE,
  211. .end = AAEC_FLASH_BASE + AAEC_FLASH_SIZE,
  212. .flags = IORESOURCE_MEM,
  213. };
  214. static struct platform_device aaec2000_flash_device = {
  215. .name = "armflash",
  216. .id = 0,
  217. .dev = {
  218. .platform_data = &aaec2000_flash_data,
  219. },
  220. .num_resources = 1,
  221. .resource = &aaec2000_flash_resource,
  222. };
  223. static int __init aaec2000_init(void)
  224. {
  225. int i;
  226. clk_register(&aaec2000_clcd_clk);
  227. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  228. struct amba_device *d = amba_devs[i];
  229. amba_device_register(d, &iomem_resource);
  230. }
  231. platform_device_register(&aaec2000_flash_device);
  232. return 0;
  233. };
  234. arch_initcall(aaec2000_init);