core.c 6.1 KB

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