generic.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * linux/arch/arm/mach-pxa/generic.c
  3. *
  4. * Author: Nicolas Pitre
  5. * Created: Jun 15, 2001
  6. * Copyright: MontaVista Software Inc.
  7. *
  8. * Code common to all PXA machines.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. *
  14. * Since this file should be linked before any other machine specific file,
  15. * the __initcall() here will be executed first. This serves as default
  16. * initialization stuff for PXA machines which can be overridden later if
  17. * need be.
  18. */
  19. #include <linux/module.h>
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/delay.h>
  23. #include <linux/ioport.h>
  24. #include <linux/pm.h>
  25. #include <linux/string.h>
  26. #include <asm/hardware.h>
  27. #include <asm/irq.h>
  28. #include <asm/system.h>
  29. #include <asm/pgtable.h>
  30. #include <asm/mach/map.h>
  31. #include <asm/arch/pxa-regs.h>
  32. #include <asm/arch/gpio.h>
  33. #include "generic.h"
  34. /*
  35. * Get the clock frequency as reflected by CCCR and the turbo flag.
  36. * We assume these values have been applied via a fcs.
  37. * If info is not 0 we also display the current settings.
  38. */
  39. unsigned int get_clk_frequency_khz(int info)
  40. {
  41. if (cpu_is_pxa21x() || cpu_is_pxa25x())
  42. return pxa25x_get_clk_frequency_khz(info);
  43. else if (cpu_is_pxa27x())
  44. return pxa27x_get_clk_frequency_khz(info);
  45. else
  46. return pxa3xx_get_clk_frequency_khz(info);
  47. }
  48. EXPORT_SYMBOL(get_clk_frequency_khz);
  49. /*
  50. * Return the current memory clock frequency in units of 10kHz
  51. */
  52. unsigned int get_memclk_frequency_10khz(void)
  53. {
  54. if (cpu_is_pxa21x() || cpu_is_pxa25x())
  55. return pxa25x_get_memclk_frequency_10khz();
  56. else if (cpu_is_pxa27x())
  57. return pxa27x_get_memclk_frequency_10khz();
  58. else
  59. return pxa3xx_get_memclk_frequency_10khz();
  60. }
  61. EXPORT_SYMBOL(get_memclk_frequency_10khz);
  62. /*
  63. * Handy function to set GPIO alternate functions
  64. */
  65. int pxa_last_gpio;
  66. int pxa_gpio_mode(int gpio_mode)
  67. {
  68. unsigned long flags;
  69. int gpio = gpio_mode & GPIO_MD_MASK_NR;
  70. int fn = (gpio_mode & GPIO_MD_MASK_FN) >> 8;
  71. int gafr;
  72. if (gpio > pxa_last_gpio)
  73. return -EINVAL;
  74. local_irq_save(flags);
  75. if (gpio_mode & GPIO_DFLT_LOW)
  76. GPCR(gpio) = GPIO_bit(gpio);
  77. else if (gpio_mode & GPIO_DFLT_HIGH)
  78. GPSR(gpio) = GPIO_bit(gpio);
  79. if (gpio_mode & GPIO_MD_MASK_DIR)
  80. GPDR(gpio) |= GPIO_bit(gpio);
  81. else
  82. GPDR(gpio) &= ~GPIO_bit(gpio);
  83. gafr = GAFR(gpio) & ~(0x3 << (((gpio) & 0xf)*2));
  84. GAFR(gpio) = gafr | (fn << (((gpio) & 0xf)*2));
  85. local_irq_restore(flags);
  86. return 0;
  87. }
  88. EXPORT_SYMBOL(pxa_gpio_mode);
  89. int gpio_direction_input(unsigned gpio)
  90. {
  91. unsigned long flags;
  92. u32 mask;
  93. if (gpio > pxa_last_gpio)
  94. return -EINVAL;
  95. mask = GPIO_bit(gpio);
  96. local_irq_save(flags);
  97. GPDR(gpio) &= ~mask;
  98. local_irq_restore(flags);
  99. return 0;
  100. }
  101. EXPORT_SYMBOL(gpio_direction_input);
  102. int gpio_direction_output(unsigned gpio, int value)
  103. {
  104. unsigned long flags;
  105. u32 mask;
  106. if (gpio > pxa_last_gpio)
  107. return -EINVAL;
  108. mask = GPIO_bit(gpio);
  109. local_irq_save(flags);
  110. if (value)
  111. GPSR(gpio) = mask;
  112. else
  113. GPCR(gpio) = mask;
  114. GPDR(gpio) |= mask;
  115. local_irq_restore(flags);
  116. return 0;
  117. }
  118. EXPORT_SYMBOL(gpio_direction_output);
  119. /*
  120. * Return GPIO level
  121. */
  122. int pxa_gpio_get_value(unsigned gpio)
  123. {
  124. return __gpio_get_value(gpio);
  125. }
  126. EXPORT_SYMBOL(pxa_gpio_get_value);
  127. /*
  128. * Set output GPIO level
  129. */
  130. void pxa_gpio_set_value(unsigned gpio, int value)
  131. {
  132. __gpio_set_value(gpio, value);
  133. }
  134. EXPORT_SYMBOL(pxa_gpio_set_value);
  135. /*
  136. * Routine to safely enable or disable a clock in the CKEN
  137. */
  138. void __pxa_set_cken(int clock, int enable)
  139. {
  140. unsigned long flags;
  141. local_irq_save(flags);
  142. if (enable)
  143. CKEN |= (1 << clock);
  144. else
  145. CKEN &= ~(1 << clock);
  146. local_irq_restore(flags);
  147. }
  148. EXPORT_SYMBOL(__pxa_set_cken);
  149. /*
  150. * Intel PXA2xx internal register mapping.
  151. *
  152. * Note 1: not all PXA2xx variants implement all those addresses.
  153. *
  154. * Note 2: virtual 0xfffe0000-0xffffffff is reserved for the vector table
  155. * and cache flush area.
  156. */
  157. static struct map_desc standard_io_desc[] __initdata = {
  158. { /* Devs */
  159. .virtual = 0xf2000000,
  160. .pfn = __phys_to_pfn(0x40000000),
  161. .length = 0x02000000,
  162. .type = MT_DEVICE
  163. }, { /* LCD */
  164. .virtual = 0xf4000000,
  165. .pfn = __phys_to_pfn(0x44000000),
  166. .length = 0x00100000,
  167. .type = MT_DEVICE
  168. }, { /* Mem Ctl */
  169. .virtual = 0xf6000000,
  170. .pfn = __phys_to_pfn(0x48000000),
  171. .length = 0x00200000,
  172. .type = MT_DEVICE
  173. }, { /* USB host */
  174. .virtual = 0xf8000000,
  175. .pfn = __phys_to_pfn(0x4c000000),
  176. .length = 0x00100000,
  177. .type = MT_DEVICE
  178. }, { /* Camera */
  179. .virtual = 0xfa000000,
  180. .pfn = __phys_to_pfn(0x50000000),
  181. .length = 0x00100000,
  182. .type = MT_DEVICE
  183. }, { /* IMem ctl */
  184. .virtual = 0xfe000000,
  185. .pfn = __phys_to_pfn(0x58000000),
  186. .length = 0x00100000,
  187. .type = MT_DEVICE
  188. }, { /* UNCACHED_PHYS_0 */
  189. .virtual = 0xff000000,
  190. .pfn = __phys_to_pfn(0x00000000),
  191. .length = 0x00100000,
  192. .type = MT_DEVICE
  193. }
  194. };
  195. void __init pxa_map_io(void)
  196. {
  197. iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
  198. get_clk_frequency_khz(1);
  199. }