cpu-sa1110.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-sa1100/cpu-sa1110.c
  3.  *
  4.  *  Copyright (C) 2001 Russell King
  5.  *
  6.  *  $Id: cpu-sa1110.c,v 1.6 2001/10/22 11:53:47 rmk Exp $
  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.  * Note: there are two erratas that apply to the SA1110 here:
  13.  *  7 - SDRAM auto-power-up failure (rev A0)
  14.  * 13 - Corruption of internal register reads/writes following
  15.  *      SDRAM reads (rev A0, B0, B1)
  16.  *
  17.  * We ignore rev. A0 and B0 devices; I don't think they're worth supporting.
  18.  */
  19. #include <linux/types.h>
  20. #include <linux/kernel.h>
  21. #include <linux/sched.h>
  22. #include <linux/cpufreq.h>
  23. #include <linux/delay.h>
  24. #include <linux/init.h>
  25. #include <asm/hardware.h>
  26. #include <asm/io.h>
  27. #include <asm/system.h>
  28. #undef DEBUG
  29. extern unsigned int sa11x0_freq_to_ppcr(unsigned int khz);
  30. extern unsigned int sa11x0_validatespeed(unsigned int khz);
  31. struct sdram_params {
  32. u_char  rows; /* bits  */
  33. u_char  cas_latency; /* cycles  */
  34. u_char  tck; /* clock cycle time (ns)  */
  35. u_char  trcd; /* activate to r/w (ns)  */
  36. u_char  trp; /* precharge to activate (ns)  */
  37. u_char  twr; /* write recovery time (ns)  */
  38. u_short refresh; /* refresh time for array (us)  */
  39. };
  40. struct sdram_info {
  41. u_int mdcnfg;
  42. u_int mdrefr;
  43. u_int mdcas[3];
  44. };
  45. static struct sdram_params tc59sm716_cl2_params __initdata = {
  46. rows:     12,
  47. tck:     10,
  48. trcd:     20,
  49. trp:     20,
  50. twr:     10,
  51. refresh:  64000,
  52. cas_latency:      2,
  53. };
  54. static struct sdram_params tc59sm716_cl3_params __initdata = {
  55. rows:     12,
  56. tck:      8,
  57. trcd:     20,
  58. trp:     20,
  59. twr:      8,
  60. refresh:  64000,
  61. cas_latency:      3,
  62. };
  63. static struct sdram_params samsung_k4s641632d_tc75 __initdata = {
  64. rows:     14,
  65. tck:      9,
  66. trcd:     27,
  67. trp:     20,
  68. twr:      9,
  69. refresh:  64000,
  70. cas_latency:      3,
  71. };
  72. static struct sdram_params sdram_params;
  73. /*
  74.  * Given a period in ns and frequency in khz, calculate the number of
  75.  * cycles of frequency in period.  Note that we round up to the next
  76.  * cycle, even if we are only slightly over.
  77.  */
  78. static inline u_int ns_to_cycles(u_int ns, u_int khz)
  79. {
  80. return (ns * khz + 999999) / 1000000;
  81. }
  82. /*
  83.  * Create the MDCAS register bit pattern.
  84.  */
  85. static inline void set_mdcas(u_int *mdcas, int delayed, u_int rcd)
  86. {
  87. u_int shift;
  88. rcd = 2 * rcd - 1;
  89. shift = delayed + 1 + rcd;
  90. mdcas[0]  = (1 << rcd) - 1;
  91. mdcas[0] |= 0x55555555 << shift;
  92. mdcas[1]  = mdcas[2] = 0x55555555 << (shift & 1);
  93. }
  94. static void
  95. sdram_calculate_timing(struct sdram_info *sd, u_int cpu_khz,
  96.        struct sdram_params *sdram)
  97. {
  98. u_int mem_khz, sd_khz, trp, twr;
  99. mem_khz = cpu_khz / 2;
  100. sd_khz = mem_khz;
  101. /*
  102.  * If SDCLK would invalidate the SDRAM timings,
  103.  * run SDCLK at half speed.
  104.  *
  105.  * CPU steppings prior to B2 must either run the memory at
  106.  * half speed or use delayed read latching (errata 13).
  107.  */
  108. if ((ns_to_cycles(sdram->tck, sd_khz) > 1) ||
  109.     (CPU_REVISION < CPU_SA1110_B2 && sd_khz < 62000))
  110. sd_khz /= 2;
  111. sd->mdcnfg = MDCNFG & 0x007f007f;
  112. twr = ns_to_cycles(sdram->twr, mem_khz);
  113. /* trp should always be >1 */
  114. trp = ns_to_cycles(sdram->trp, mem_khz) - 1;
  115. if (trp < 1)
  116. trp = 1;
  117. sd->mdcnfg |= trp << 8;
  118. sd->mdcnfg |= trp << 24;
  119. sd->mdcnfg |= sdram->cas_latency << 12;
  120. sd->mdcnfg |= sdram->cas_latency << 28;
  121. sd->mdcnfg |= twr << 14;
  122. sd->mdcnfg |= twr << 30;
  123. sd->mdrefr = MDREFR & 0xffbffff0;
  124. sd->mdrefr |= 7;
  125. if (sd_khz != mem_khz)
  126. sd->mdrefr |= MDREFR_K1DB2;
  127. /* initial number of '1's in MDCAS + 1 */
  128. set_mdcas(sd->mdcas, sd_khz >= 62000, ns_to_cycles(sdram->trcd, mem_khz));
  129. #ifdef DEBUG
  130. printk("MDCNFG: %08x MDREFR: %08x MDCAS0: %08x MDCAS1: %08x MDCAS2: %08xn",
  131. sd->mdcnfg, sd->mdrefr, sd->mdcas[0], sd->mdcas[1], sd->mdcas[2]);
  132. #endif
  133. }
  134. /*
  135.  * Set the SDRAM refresh rate.
  136.  */
  137. static inline void sdram_set_refresh(u_int dri)
  138. {
  139. MDREFR = (MDREFR & 0xffff000f) | (dri << 4);
  140. (void) MDREFR;
  141. }
  142. /*
  143.  * Update the refresh period.  We do this such that we always refresh
  144.  * the SDRAMs within their permissible period.  The refresh period is
  145.  * always a multiple of the memory clock (fixed at cpu_clock / 2).
  146.  *
  147.  * FIXME: we don't currently take account of burst accesses here,
  148.  * but neither do Intels DM nor Angel.
  149.  */
  150. static void
  151. sdram_update_refresh(u_int cpu_khz, struct sdram_params *sdram)
  152. {
  153. u_int ns_row = (sdram->refresh * 1000) >> sdram->rows;
  154. u_int dri = ns_to_cycles(ns_row, cpu_khz / 2) / 32;
  155. #ifdef DEBUG
  156. mdelay(250);
  157. printk("new dri value = %dn", dri);
  158. #endif
  159. sdram_set_refresh(dri);
  160. }
  161. /*
  162.  * Ok, set the CPU frequency.  Since we've done the validation
  163.  * above, we can match for an exact frequency.  If we don't find
  164.  * an exact match, we will to set the lowest frequency to be safe.
  165.  */
  166. static void sa1110_setspeed(unsigned int khz)
  167. {
  168. struct sdram_params *sdram = &sdram_params;
  169. struct sdram_info sd;
  170. unsigned long flags;
  171. unsigned int ppcr, unused;
  172. ppcr = sa11x0_freq_to_ppcr(khz);
  173. sdram_calculate_timing(&sd, khz, sdram);
  174. #if 0
  175. /*
  176.  * These values are wrong according to the SA1110 documentation
  177.  * and errata, but they seem to work.  Need to get a storage
  178.  * scope on to the SDRAM signals to work out why.
  179.  */
  180. if (khz < 147500) {
  181. sd.mdrefr |= MDREFR_K1DB2;
  182. sd.mdcas[0] = 0xaaaaaa7f;
  183. } else {
  184. sd.mdrefr &= ~MDREFR_K1DB2;
  185. sd.mdcas[0] = 0xaaaaaa9f;
  186. }
  187. sd.mdcas[1] = 0xaaaaaaaa;
  188. sd.mdcas[2] = 0xaaaaaaaa;
  189. #endif
  190. /*
  191.  * The clock could be going away for some time.  Set the SDRAMs
  192.  * to refresh rapidly (every 64 memory clock cycles).  To get
  193.  * through the whole array, we need to wait 262144 mclk cycles.
  194.  * We wait 20ms to be safe.
  195.  */
  196. sdram_set_refresh(2);
  197. set_current_state(TASK_UNINTERRUPTIBLE);
  198. schedule_timeout(20 * HZ / 1000);
  199. /*
  200.  * Reprogram the DRAM timings with interrupts disabled, and
  201.  * ensure that we are doing this within a complete cache line.
  202.  * This means that we won't access SDRAM for the duration of
  203.  * the programming.
  204.  */
  205. local_irq_save(flags);
  206. asm("mcr p15, 0, %0, c10, c4" : : "r" (0));
  207. udelay(10);
  208. __asm__ __volatile__("
  209. b 2f
  210. .align 5
  211. 1: str %3, [%1, #0] @ MDCNFG
  212. str %4, [%1, #28] @ MDREFR
  213. str %5, [%1, #4] @ MDCAS0
  214. str %6, [%1, #8] @ MDCAS1
  215. str %7, [%1, #12] @ MDCAS2
  216. str %8, [%2, #0] @ PPCR
  217. ldr %0, [%1, #0]
  218. b 3f
  219. 2: b 1b
  220. 3: nop
  221. nop"
  222. : "=&r" (unused)
  223. : "r" (&MDCNFG), "r" (&PPCR), "0" (sd.mdcnfg),
  224.   "r" (sd.mdrefr), "r" (sd.mdcas[0]),
  225.   "r" (sd.mdcas[1]), "r" (sd.mdcas[2]), "r" (ppcr));
  226. local_irq_restore(flags);
  227. /*
  228.  * Now, return the SDRAM refresh back to normal.
  229.  */
  230. sdram_update_refresh(khz, sdram);
  231. }
  232. static int __init sa1110_clk_init(void)
  233. {
  234. struct sdram_params *sdram = NULL;
  235. if (machine_is_assabet())
  236. sdram = &tc59sm716_cl3_params;
  237. if (machine_is_pt_system3())
  238. sdram = &samsung_k4s641632d_tc75;
  239. if (sdram) {
  240. printk(KERN_DEBUG "SDRAM: tck: %d trcd: %d trp: %d"
  241. " twr: %d refresh: %d cas_latency: %dn",
  242. sdram->tck, sdram->trcd, sdram->trp,
  243. sdram->twr, sdram->refresh, sdram->cas_latency);
  244. memcpy(&sdram_params, sdram, sizeof(sdram_params));
  245. sa1110_setspeed(cpufreq_get(0));
  246. cpufreq_setfunctions(sa11x0_validatespeed, sa1110_setspeed);
  247. }
  248. return 0;
  249. }
  250. __initcall(sa1110_clk_init);