hardware.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /*
  2. * linux/include/asm-arm/arch-pxa/hardware.h
  3. *
  4. * Author: Nicolas Pitre
  5. * Created: Jun 15, 2001
  6. * Copyright: MontaVista Software Inc.
  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. #ifndef __ASM_ARCH_HARDWARE_H
  13. #define __ASM_ARCH_HARDWARE_H
  14. /*
  15. * We requires absolute addresses.
  16. */
  17. #define PCIO_BASE 0
  18. /*
  19. * Workarounds for at least 2 errata so far require this.
  20. * The mapping is set in mach-pxa/generic.c.
  21. */
  22. #define UNCACHED_PHYS_0 0xff000000
  23. #define UNCACHED_ADDR UNCACHED_PHYS_0
  24. /*
  25. * Intel PXA2xx internal register mapping:
  26. *
  27. * 0x40000000 - 0x41ffffff <--> 0xf2000000 - 0xf3ffffff
  28. * 0x44000000 - 0x45ffffff <--> 0xf4000000 - 0xf5ffffff
  29. * 0x48000000 - 0x49ffffff <--> 0xf6000000 - 0xf7ffffff
  30. * 0x4c000000 - 0x4dffffff <--> 0xf8000000 - 0xf9ffffff
  31. * 0x50000000 - 0x51ffffff <--> 0xfa000000 - 0xfbffffff
  32. * 0x54000000 - 0x55ffffff <--> 0xfc000000 - 0xfdffffff
  33. * 0x58000000 - 0x59ffffff <--> 0xfe000000 - 0xffffffff
  34. *
  35. * Note that not all PXA2xx chips implement all those addresses, and the
  36. * kernel only maps the minimum needed range of this mapping.
  37. */
  38. #define io_p2v(x) (0xf2000000 + ((x) & 0x01ffffff) + (((x) & 0x1c000000) >> 1))
  39. #define io_v2p(x) (0x3c000000 + ((x) & 0x01ffffff) + (((x) & 0x0e000000) << 1))
  40. #ifndef __ASSEMBLY__
  41. # define __REG(x) (*((volatile u32 *)io_p2v(x)))
  42. /* With indexed regs we don't want to feed the index through io_p2v()
  43. especially if it is a variable, otherwise horrible code will result. */
  44. # define __REG2(x,y) \
  45. (*(volatile u32 *)((u32)&__REG(x) + (y)))
  46. # define __PREG(x) (io_v2p((u32)&(x)))
  47. #else
  48. # define __REG(x) io_p2v(x)
  49. # define __PREG(x) io_v2p(x)
  50. #endif
  51. #ifndef __ASSEMBLY__
  52. #ifdef CONFIG_PXA25x
  53. #define __cpu_is_pxa21x(id) \
  54. ({ \
  55. unsigned int _id = (id) >> 4 & 0xf3f; \
  56. _id == 0x212; \
  57. })
  58. #define __cpu_is_pxa25x(id) \
  59. ({ \
  60. unsigned int _id = (id) >> 4 & 0xfff; \
  61. _id == 0x2d0 || _id == 0x290; \
  62. })
  63. #else
  64. #define __cpu_is_pxa21x(id) (0)
  65. #define __cpu_is_pxa25x(id) (0)
  66. #endif
  67. #ifdef CONFIG_PXA27x
  68. #define __cpu_is_pxa27x(id) \
  69. ({ \
  70. unsigned int _id = (id) >> 4 & 0xfff; \
  71. _id == 0x411; \
  72. })
  73. #else
  74. #define __cpu_is_pxa27x(id) (0)
  75. #endif
  76. #ifdef CONFIG_CPU_PXA300
  77. #define __cpu_is_pxa300(id) \
  78. ({ \
  79. unsigned int _id = (id) >> 4 & 0xfff; \
  80. _id == 0x688; \
  81. })
  82. #else
  83. #define __cpu_is_pxa300(id) (0)
  84. #endif
  85. #ifdef CONFIG_CPU_PXA310
  86. #define __cpu_is_pxa310(id) \
  87. ({ \
  88. unsigned int _id = (id) >> 4 & 0xfff; \
  89. _id == 0x689; \
  90. })
  91. #else
  92. #define __cpu_is_pxa310(id) (0)
  93. #endif
  94. #ifdef CONFIG_CPU_PXA320
  95. #define __cpu_is_pxa320(id) \
  96. ({ \
  97. unsigned int _id = (id) >> 4 & 0xfff; \
  98. _id == 0x603 || _id == 0x682; \
  99. })
  100. #else
  101. #define __cpu_is_pxa320(id) (0)
  102. #endif
  103. #define cpu_is_pxa21x() \
  104. ({ \
  105. unsigned int id = read_cpuid(CPUID_ID); \
  106. __cpu_is_pxa21x(id); \
  107. })
  108. #define cpu_is_pxa25x() \
  109. ({ \
  110. unsigned int id = read_cpuid(CPUID_ID); \
  111. __cpu_is_pxa25x(id); \
  112. })
  113. #define cpu_is_pxa27x() \
  114. ({ \
  115. unsigned int id = read_cpuid(CPUID_ID); \
  116. __cpu_is_pxa27x(id); \
  117. })
  118. #define cpu_is_pxa300() \
  119. ({ \
  120. unsigned int id = read_cpuid(CPUID_ID); \
  121. __cpu_is_pxa300(id); \
  122. })
  123. #define cpu_is_pxa310() \
  124. ({ \
  125. unsigned int id = read_cpuid(CPUID_ID); \
  126. __cpu_is_pxa310(id); \
  127. })
  128. #define cpu_is_pxa320() \
  129. ({ \
  130. unsigned int id = read_cpuid(CPUID_ID); \
  131. __cpu_is_pxa320(id); \
  132. })
  133. /*
  134. * CPUID Core Generation Bit
  135. * <= 0x2 for pxa21x/pxa25x/pxa26x/pxa27x
  136. * == 0x3 for pxa300/pxa310/pxa320
  137. */
  138. #define __cpu_is_pxa2xx(id) \
  139. ({ \
  140. unsigned int _id = (id) >> 13 & 0x7; \
  141. _id <= 0x2; \
  142. })
  143. #define __cpu_is_pxa3xx(id) \
  144. ({ \
  145. unsigned int _id = (id) >> 13 & 0x7; \
  146. _id == 0x3; \
  147. })
  148. #define cpu_is_pxa2xx() \
  149. ({ \
  150. unsigned int id = read_cpuid(CPUID_ID); \
  151. __cpu_is_pxa2xx(id); \
  152. })
  153. #define cpu_is_pxa3xx() \
  154. ({ \
  155. unsigned int id = read_cpuid(CPUID_ID); \
  156. __cpu_is_pxa3xx(id); \
  157. })
  158. /*
  159. * Handy routine to set GPIO alternate functions
  160. */
  161. extern int pxa_gpio_mode( int gpio_mode );
  162. /*
  163. * Return GPIO level, nonzero means high, zero is low
  164. */
  165. extern int pxa_gpio_get_value(unsigned gpio);
  166. /*
  167. * Set output GPIO level
  168. */
  169. extern void pxa_gpio_set_value(unsigned gpio, int value);
  170. /*
  171. * Routine to enable or disable CKEN
  172. */
  173. static inline void __deprecated pxa_set_cken(int clock, int enable)
  174. {
  175. extern void __pxa_set_cken(int clock, int enable);
  176. __pxa_set_cken(clock, enable);
  177. }
  178. /*
  179. * return current memory and LCD clock frequency in units of 10kHz
  180. */
  181. extern unsigned int get_memclk_frequency_10khz(void);
  182. #endif
  183. #if defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI)
  184. #define PCIBIOS_MIN_IO 0
  185. #define PCIBIOS_MIN_MEM 0
  186. #define pcibios_assign_all_busses() 1
  187. #endif
  188. #endif /* _ASM_ARCH_HARDWARE_H */