pxa27x.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. /*
  2. * linux/arch/arm/mach-pxa/pxa27x.c
  3. *
  4. * Author: Nicolas Pitre
  5. * Created: Nov 05, 2002
  6. * Copyright: MontaVista Software Inc.
  7. *
  8. * Code specific to PXA27x aka Bulverde.
  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. #include <linux/module.h>
  15. #include <linux/kernel.h>
  16. #include <linux/init.h>
  17. #include <linux/suspend.h>
  18. #include <linux/platform_device.h>
  19. #include <linux/sysdev.h>
  20. #include <mach/hardware.h>
  21. #include <asm/irq.h>
  22. #include <mach/irqs.h>
  23. #include <mach/gpio.h>
  24. #include <mach/pxa27x.h>
  25. #include <mach/reset.h>
  26. #include <mach/ohci.h>
  27. #include <mach/pm.h>
  28. #include <mach/dma.h>
  29. #include <plat/i2c.h>
  30. #include "generic.h"
  31. #include "devices.h"
  32. #include "clock.h"
  33. void pxa27x_clear_otgph(void)
  34. {
  35. if (cpu_is_pxa27x() && (PSSR & PSSR_OTGPH))
  36. PSSR |= PSSR_OTGPH;
  37. }
  38. EXPORT_SYMBOL(pxa27x_clear_otgph);
  39. /* Crystal clock: 13MHz */
  40. #define BASE_CLK 13000000
  41. /*
  42. * Get the clock frequency as reflected by CCSR and the turbo flag.
  43. * We assume these values have been applied via a fcs.
  44. * If info is not 0 we also display the current settings.
  45. */
  46. unsigned int pxa27x_get_clk_frequency_khz(int info)
  47. {
  48. unsigned long ccsr, clkcfg;
  49. unsigned int l, L, m, M, n2, N, S;
  50. int cccr_a, t, ht, b;
  51. ccsr = CCSR;
  52. cccr_a = CCCR & (1 << 25);
  53. /* Read clkcfg register: it has turbo, b, half-turbo (and f) */
  54. asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (clkcfg) );
  55. t = clkcfg & (1 << 0);
  56. ht = clkcfg & (1 << 2);
  57. b = clkcfg & (1 << 3);
  58. l = ccsr & 0x1f;
  59. n2 = (ccsr>>7) & 0xf;
  60. m = (l <= 10) ? 1 : (l <= 20) ? 2 : 4;
  61. L = l * BASE_CLK;
  62. N = (L * n2) / 2;
  63. M = (!cccr_a) ? (L/m) : ((b) ? L : (L/2));
  64. S = (b) ? L : (L/2);
  65. if (info) {
  66. printk( KERN_INFO "Run Mode clock: %d.%02dMHz (*%d)\n",
  67. L / 1000000, (L % 1000000) / 10000, l );
  68. printk( KERN_INFO "Turbo Mode clock: %d.%02dMHz (*%d.%d, %sactive)\n",
  69. N / 1000000, (N % 1000000)/10000, n2 / 2, (n2 % 2)*5,
  70. (t) ? "" : "in" );
  71. printk( KERN_INFO "Memory clock: %d.%02dMHz (/%d)\n",
  72. M / 1000000, (M % 1000000) / 10000, m );
  73. printk( KERN_INFO "System bus clock: %d.%02dMHz \n",
  74. S / 1000000, (S % 1000000) / 10000 );
  75. }
  76. return (t) ? (N/1000) : (L/1000);
  77. }
  78. /*
  79. * Return the current mem clock frequency in units of 10kHz as
  80. * reflected by CCCR[A], B, and L
  81. */
  82. unsigned int pxa27x_get_memclk_frequency_10khz(void)
  83. {
  84. unsigned long ccsr, clkcfg;
  85. unsigned int l, L, m, M;
  86. int cccr_a, b;
  87. ccsr = CCSR;
  88. cccr_a = CCCR & (1 << 25);
  89. /* Read clkcfg register: it has turbo, b, half-turbo (and f) */
  90. asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (clkcfg) );
  91. b = clkcfg & (1 << 3);
  92. l = ccsr & 0x1f;
  93. m = (l <= 10) ? 1 : (l <= 20) ? 2 : 4;
  94. L = l * BASE_CLK;
  95. M = (!cccr_a) ? (L/m) : ((b) ? L : (L/2));
  96. return (M / 10000);
  97. }
  98. /*
  99. * Return the current LCD clock frequency in units of 10kHz as
  100. */
  101. static unsigned int pxa27x_get_lcdclk_frequency_10khz(void)
  102. {
  103. unsigned long ccsr;
  104. unsigned int l, L, k, K;
  105. ccsr = CCSR;
  106. l = ccsr & 0x1f;
  107. k = (l <= 7) ? 1 : (l <= 16) ? 2 : 4;
  108. L = l * BASE_CLK;
  109. K = L / k;
  110. return (K / 10000);
  111. }
  112. static unsigned long clk_pxa27x_lcd_getrate(struct clk *clk)
  113. {
  114. return pxa27x_get_lcdclk_frequency_10khz() * 10000;
  115. }
  116. static const struct clkops clk_pxa27x_lcd_ops = {
  117. .enable = clk_cken_enable,
  118. .disable = clk_cken_disable,
  119. .getrate = clk_pxa27x_lcd_getrate,
  120. };
  121. static DEFINE_CK(pxa27x_lcd, LCD, &clk_pxa27x_lcd_ops);
  122. static DEFINE_CK(pxa27x_camera, CAMERA, &clk_pxa27x_lcd_ops);
  123. static DEFINE_CKEN(pxa27x_ffuart, FFUART, 14857000, 1);
  124. static DEFINE_CKEN(pxa27x_btuart, BTUART, 14857000, 1);
  125. static DEFINE_CKEN(pxa27x_stuart, STUART, 14857000, 1);
  126. static DEFINE_CKEN(pxa27x_i2s, I2S, 14682000, 0);
  127. static DEFINE_CKEN(pxa27x_i2c, I2C, 32842000, 0);
  128. static DEFINE_CKEN(pxa27x_usb, USB, 48000000, 5);
  129. static DEFINE_CKEN(pxa27x_mmc, MMC, 19500000, 0);
  130. static DEFINE_CKEN(pxa27x_ficp, FICP, 48000000, 0);
  131. static DEFINE_CKEN(pxa27x_usbhost, USBHOST, 48000000, 0);
  132. static DEFINE_CKEN(pxa27x_pwri2c, PWRI2C, 13000000, 0);
  133. static DEFINE_CKEN(pxa27x_keypad, KEYPAD, 32768, 0);
  134. static DEFINE_CKEN(pxa27x_ssp1, SSP1, 13000000, 0);
  135. static DEFINE_CKEN(pxa27x_ssp2, SSP2, 13000000, 0);
  136. static DEFINE_CKEN(pxa27x_ssp3, SSP3, 13000000, 0);
  137. static DEFINE_CKEN(pxa27x_pwm0, PWM0, 13000000, 0);
  138. static DEFINE_CKEN(pxa27x_pwm1, PWM1, 13000000, 0);
  139. static DEFINE_CKEN(pxa27x_ac97, AC97, 24576000, 0);
  140. static DEFINE_CKEN(pxa27x_ac97conf, AC97CONF, 24576000, 0);
  141. static DEFINE_CKEN(pxa27x_msl, MSL, 48000000, 0);
  142. static DEFINE_CKEN(pxa27x_usim, USIM, 48000000, 0);
  143. static DEFINE_CKEN(pxa27x_memstk, MEMSTK, 19500000, 0);
  144. static DEFINE_CKEN(pxa27x_im, IM, 0, 0);
  145. static DEFINE_CKEN(pxa27x_memc, MEMC, 0, 0);
  146. static struct clk_lookup pxa27x_clkregs[] = {
  147. INIT_CLKREG(&clk_pxa27x_lcd, "pxa2xx-fb", NULL),
  148. INIT_CLKREG(&clk_pxa27x_camera, "pxa27x-camera.0", NULL),
  149. INIT_CLKREG(&clk_pxa27x_ffuart, "pxa2xx-uart.0", NULL),
  150. INIT_CLKREG(&clk_pxa27x_btuart, "pxa2xx-uart.1", NULL),
  151. INIT_CLKREG(&clk_pxa27x_stuart, "pxa2xx-uart.2", NULL),
  152. INIT_CLKREG(&clk_pxa27x_i2s, "pxa2xx-i2s", NULL),
  153. INIT_CLKREG(&clk_pxa27x_i2c, "pxa2xx-i2c.0", NULL),
  154. INIT_CLKREG(&clk_pxa27x_usb, "pxa27x-udc", NULL),
  155. INIT_CLKREG(&clk_pxa27x_mmc, "pxa2xx-mci.0", NULL),
  156. INIT_CLKREG(&clk_pxa27x_stuart, "pxa2xx-ir", "UARTCLK"),
  157. INIT_CLKREG(&clk_pxa27x_ficp, "pxa2xx-ir", "FICPCLK"),
  158. INIT_CLKREG(&clk_pxa27x_usbhost, "pxa27x-ohci", NULL),
  159. INIT_CLKREG(&clk_pxa27x_pwri2c, "pxa2xx-i2c.1", NULL),
  160. INIT_CLKREG(&clk_pxa27x_keypad, "pxa27x-keypad", NULL),
  161. INIT_CLKREG(&clk_pxa27x_ssp1, "pxa27x-ssp.0", NULL),
  162. INIT_CLKREG(&clk_pxa27x_ssp2, "pxa27x-ssp.1", NULL),
  163. INIT_CLKREG(&clk_pxa27x_ssp3, "pxa27x-ssp.2", NULL),
  164. INIT_CLKREG(&clk_pxa27x_pwm0, "pxa27x-pwm.0", NULL),
  165. INIT_CLKREG(&clk_pxa27x_pwm1, "pxa27x-pwm.1", NULL),
  166. INIT_CLKREG(&clk_pxa27x_ac97, NULL, "AC97CLK"),
  167. INIT_CLKREG(&clk_pxa27x_ac97conf, NULL, "AC97CONFCLK"),
  168. INIT_CLKREG(&clk_pxa27x_msl, NULL, "MSLCLK"),
  169. INIT_CLKREG(&clk_pxa27x_usim, NULL, "USIMCLK"),
  170. INIT_CLKREG(&clk_pxa27x_memstk, NULL, "MSTKCLK"),
  171. INIT_CLKREG(&clk_pxa27x_im, NULL, "IMCLK"),
  172. INIT_CLKREG(&clk_pxa27x_memc, NULL, "MEMCLK"),
  173. };
  174. #ifdef CONFIG_PM
  175. #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x
  176. #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x]
  177. /*
  178. * allow platforms to override default PWRMODE setting used for PM_SUSPEND_MEM
  179. */
  180. static unsigned int pwrmode = PWRMODE_SLEEP;
  181. int __init pxa27x_set_pwrmode(unsigned int mode)
  182. {
  183. switch (mode) {
  184. case PWRMODE_SLEEP:
  185. case PWRMODE_DEEPSLEEP:
  186. pwrmode = mode;
  187. return 0;
  188. }
  189. return -EINVAL;
  190. }
  191. /*
  192. * List of global PXA peripheral registers to preserve.
  193. * More ones like CP and general purpose register values are preserved
  194. * with the stack pointer in sleep.S.
  195. */
  196. enum {
  197. SLEEP_SAVE_PSTR,
  198. SLEEP_SAVE_CKEN,
  199. SLEEP_SAVE_MDREFR,
  200. SLEEP_SAVE_PCFR,
  201. SLEEP_SAVE_COUNT
  202. };
  203. void pxa27x_cpu_pm_save(unsigned long *sleep_save)
  204. {
  205. SAVE(MDREFR);
  206. SAVE(PCFR);
  207. SAVE(CKEN);
  208. SAVE(PSTR);
  209. }
  210. void pxa27x_cpu_pm_restore(unsigned long *sleep_save)
  211. {
  212. RESTORE(MDREFR);
  213. RESTORE(PCFR);
  214. PSSR = PSSR_RDH | PSSR_PH;
  215. RESTORE(CKEN);
  216. RESTORE(PSTR);
  217. }
  218. void pxa27x_cpu_pm_enter(suspend_state_t state)
  219. {
  220. extern void pxa_cpu_standby(void);
  221. /* ensure voltage-change sequencer not initiated, which hangs */
  222. PCFR &= ~PCFR_FVC;
  223. /* Clear edge-detect status register. */
  224. PEDR = 0xDF12FE1B;
  225. /* Clear reset status */
  226. RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
  227. switch (state) {
  228. case PM_SUSPEND_STANDBY:
  229. pxa_cpu_standby();
  230. break;
  231. case PM_SUSPEND_MEM:
  232. pxa27x_cpu_suspend(pwrmode);
  233. break;
  234. }
  235. }
  236. static int pxa27x_cpu_pm_valid(suspend_state_t state)
  237. {
  238. return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
  239. }
  240. static int pxa27x_cpu_pm_prepare(void)
  241. {
  242. /* set resume return address */
  243. PSPR = virt_to_phys(pxa_cpu_resume);
  244. return 0;
  245. }
  246. static void pxa27x_cpu_pm_finish(void)
  247. {
  248. /* ensure not to come back here if it wasn't intended */
  249. PSPR = 0;
  250. }
  251. static struct pxa_cpu_pm_fns pxa27x_cpu_pm_fns = {
  252. .save_count = SLEEP_SAVE_COUNT,
  253. .save = pxa27x_cpu_pm_save,
  254. .restore = pxa27x_cpu_pm_restore,
  255. .valid = pxa27x_cpu_pm_valid,
  256. .enter = pxa27x_cpu_pm_enter,
  257. .prepare = pxa27x_cpu_pm_prepare,
  258. .finish = pxa27x_cpu_pm_finish,
  259. };
  260. static void __init pxa27x_init_pm(void)
  261. {
  262. pxa_cpu_pm_fns = &pxa27x_cpu_pm_fns;
  263. }
  264. #else
  265. static inline void pxa27x_init_pm(void) {}
  266. #endif
  267. /* PXA27x: Various gpios can issue wakeup events. This logic only
  268. * handles the simple cases, not the WEMUX2 and WEMUX3 options
  269. */
  270. static int pxa27x_set_wake(unsigned int irq, unsigned int on)
  271. {
  272. int gpio = IRQ_TO_GPIO(irq);
  273. uint32_t mask;
  274. if (gpio >= 0 && gpio < 128)
  275. return gpio_set_wake(gpio, on);
  276. if (irq == IRQ_KEYPAD)
  277. return keypad_set_wake(on);
  278. switch (irq) {
  279. case IRQ_RTCAlrm:
  280. mask = PWER_RTC;
  281. break;
  282. case IRQ_USB:
  283. mask = 1u << 26;
  284. break;
  285. default:
  286. return -EINVAL;
  287. }
  288. if (on)
  289. PWER |= mask;
  290. else
  291. PWER &=~mask;
  292. return 0;
  293. }
  294. void __init pxa27x_init_irq(void)
  295. {
  296. pxa_init_irq(34, pxa27x_set_wake);
  297. pxa_init_gpio(IRQ_GPIO_2_x, 2, 120, pxa27x_set_wake);
  298. }
  299. /*
  300. * device registration specific to PXA27x.
  301. */
  302. void __init pxa27x_set_i2c_power_info(struct i2c_pxa_platform_data *info)
  303. {
  304. local_irq_disable();
  305. PCFR |= PCFR_PI2CEN;
  306. local_irq_enable();
  307. pxa_register_device(&pxa27x_device_i2c_power, info);
  308. }
  309. static struct platform_device *devices[] __initdata = {
  310. &pxa27x_device_udc,
  311. &pxa_device_ffuart,
  312. &pxa_device_btuart,
  313. &pxa_device_stuart,
  314. &pxa_device_i2s,
  315. &sa1100_device_rtc,
  316. &pxa_device_rtc,
  317. &pxa27x_device_ssp1,
  318. &pxa27x_device_ssp2,
  319. &pxa27x_device_ssp3,
  320. &pxa27x_device_pwm0,
  321. &pxa27x_device_pwm1,
  322. };
  323. static struct sys_device pxa27x_sysdev[] = {
  324. {
  325. .cls = &pxa_irq_sysclass,
  326. }, {
  327. .cls = &pxa2xx_mfp_sysclass,
  328. }, {
  329. .cls = &pxa_gpio_sysclass,
  330. },
  331. };
  332. static int __init pxa27x_init(void)
  333. {
  334. int i, ret = 0;
  335. if (cpu_is_pxa27x()) {
  336. reset_status = RCSR;
  337. clks_register(pxa27x_clkregs, ARRAY_SIZE(pxa27x_clkregs));
  338. if ((ret = pxa_init_dma(IRQ_DMA, 32)))
  339. return ret;
  340. pxa27x_init_pm();
  341. for (i = 0; i < ARRAY_SIZE(pxa27x_sysdev); i++) {
  342. ret = sysdev_register(&pxa27x_sysdev[i]);
  343. if (ret)
  344. pr_err("failed to register sysdev[%d]\n", i);
  345. }
  346. ret = platform_add_devices(devices, ARRAY_SIZE(devices));
  347. }
  348. return ret;
  349. }
  350. postcore_initcall(pxa27x_init);