head.S 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. * File: arch/blackfin/mach-bf548/head.S
  3. * Based on: arch/blackfin/mach-bf537/head.S
  4. * Author: Jeff Dionne <jeff@uclinux.org> COPYRIGHT 1998 D. Jeff Dionne
  5. *
  6. * Created: 1998
  7. * Description: Startup code for Blackfin BF548
  8. *
  9. * Modified:
  10. * Copyright 2004-2007 Analog Devices Inc.
  11. *
  12. * Bugs: Enter bugs at http://blackfin.uclinux.org/
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, see the file COPYING, or write
  26. * to the Free Software Foundation, Inc.,
  27. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  28. */
  29. #include <linux/linkage.h>
  30. #include <linux/init.h>
  31. #include <asm/blackfin.h>
  32. #ifdef CONFIG_BFIN_KERNEL_CLOCK
  33. #include <asm/mach-common/clocks.h>
  34. #include <asm/mach/mem_init.h>
  35. #endif
  36. .extern _bf53x_relocate_l1_mem
  37. __INIT
  38. ENTRY(_mach_early_start)
  39. rts;
  40. ENDPROC(_mach_early_start)
  41. __FINIT
  42. .section .l1.text
  43. #ifdef CONFIG_BFIN_KERNEL_CLOCK
  44. ENTRY(_start_dma_code)
  45. /* Enable PHY CLK buffer output */
  46. p0.h = hi(VR_CTL);
  47. p0.l = lo(VR_CTL);
  48. r0.l = w[p0];
  49. bitset(r0, 14);
  50. w[p0] = r0.l;
  51. ssync;
  52. p0.h = hi(SIC_IWR0);
  53. p0.l = lo(SIC_IWR0);
  54. r0.l = 0x1;
  55. r0.h = 0x0;
  56. [p0] = r0;
  57. SSYNC;
  58. /*
  59. * Set PLL_CTL
  60. * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
  61. * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
  62. * - [7] = output delay (add 200ps of delay to mem signals)
  63. * - [6] = input delay (add 200ps of input delay to mem signals)
  64. * - [5] = PDWN : 1=All Clocks off
  65. * - [3] = STOPCK : 1=Core Clock off
  66. * - [1] = PLL_OFF : 1=Disable Power to PLL
  67. * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
  68. * all other bits set to zero
  69. */
  70. p0.h = hi(PLL_LOCKCNT);
  71. p0.l = lo(PLL_LOCKCNT);
  72. r0 = 0x300(Z);
  73. w[p0] = r0.l;
  74. ssync;
  75. #if defined(CONFIG_BF54x)
  76. P2.H = hi(EBIU_RSTCTL);
  77. P2.L = lo(EBIU_RSTCTL);
  78. R0 = [P2];
  79. BITSET (R0, 3);
  80. #else
  81. P2.H = hi(EBIU_SDGCTL);
  82. P2.L = lo(EBIU_SDGCTL);
  83. R0 = [P2];
  84. BITSET (R0, 24);
  85. #endif
  86. [P2] = R0;
  87. SSYNC;
  88. #if defined(CONFIG_BF54x)
  89. .LSRR_MODE:
  90. R0 = [P2];
  91. CC = BITTST(R0, 4);
  92. if !CC JUMP .LSRR_MODE;
  93. #endif
  94. r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
  95. r0 = r0 << 9; /* Shift it over, */
  96. r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
  97. r0 = r1 | r0;
  98. r1 = PLL_BYPASS; /* Bypass the PLL? */
  99. r1 = r1 << 8; /* Shift it over */
  100. r0 = r1 | r0; /* add them all together */
  101. p0.h = hi(PLL_CTL);
  102. p0.l = lo(PLL_CTL); /* Load the address */
  103. cli r2; /* Disable interrupts */
  104. ssync;
  105. w[p0] = r0.l; /* Set the value */
  106. idle; /* Wait for the PLL to stablize */
  107. sti r2; /* Enable interrupts */
  108. .Lcheck_again:
  109. p0.h = hi(PLL_STAT);
  110. p0.l = lo(PLL_STAT);
  111. R0 = W[P0](Z);
  112. CC = BITTST(R0,5);
  113. if ! CC jump .Lcheck_again;
  114. /* Configure SCLK & CCLK Dividers */
  115. r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
  116. p0.h = hi(PLL_DIV);
  117. p0.l = lo(PLL_DIV);
  118. w[p0] = r0.l;
  119. ssync;
  120. #if defined(CONFIG_BF54x)
  121. P2.H = hi(EBIU_RSTCTL);
  122. P2.L = lo(EBIU_RSTCTL);
  123. R0 = [P2];
  124. CC = BITTST(R0, 0);
  125. if CC jump .Lskipddrrst;
  126. BITSET (R0, 0);
  127. .Lskipddrrst:
  128. BITCLR (R0, 3);
  129. [P2] = R0;
  130. SSYNC;
  131. p0.l = lo(EBIU_DDRCTL0);
  132. p0.h = hi(EBIU_DDRCTL0);
  133. r0.l = lo(mem_DDRCTL0);
  134. r0.h = hi(mem_DDRCTL0);
  135. [p0] = r0;
  136. ssync;
  137. p0.l = lo(EBIU_DDRCTL1);
  138. p0.h = hi(EBIU_DDRCTL1);
  139. r0.l = lo(mem_DDRCTL1);
  140. r0.h = hi(mem_DDRCTL1);
  141. [p0] = r0;
  142. ssync;
  143. p0.l = lo(EBIU_DDRCTL2);
  144. p0.h = hi(EBIU_DDRCTL2);
  145. r0.l = lo(mem_DDRCTL2);
  146. r0.h = hi(mem_DDRCTL2);
  147. [p0] = r0;
  148. ssync;
  149. #else
  150. p0.l = lo(EBIU_SDRRC);
  151. p0.h = hi(EBIU_SDRRC);
  152. r0 = mem_SDRRC;
  153. w[p0] = r0.l;
  154. ssync;
  155. p0.l = LO(EBIU_SDBCTL);
  156. p0.h = HI(EBIU_SDBCTL); /* SDRAM Memory Bank Control Register */
  157. r0 = mem_SDBCTL;
  158. w[p0] = r0.l;
  159. ssync;
  160. P2.H = hi(EBIU_SDGCTL);
  161. P2.L = lo(EBIU_SDGCTL);
  162. R0 = [P2];
  163. BITCLR (R0, 24);
  164. p0.h = hi(EBIU_SDSTAT);
  165. p0.l = lo(EBIU_SDSTAT);
  166. r2.l = w[p0];
  167. cc = bittst(r2,3);
  168. if !cc jump .Lskip;
  169. NOP;
  170. BITSET (R0, 23);
  171. .Lskip:
  172. [P2] = R0;
  173. SSYNC;
  174. R0.L = lo(mem_SDGCTL);
  175. R0.H = hi(mem_SDGCTL);
  176. R1 = [p2];
  177. R1 = R1 | R0;
  178. [P2] = R1;
  179. SSYNC;
  180. #endif
  181. RTS;
  182. ENDPROC(_start_dma_code)
  183. #endif /* CONFIG_BFIN_KERNEL_CLOCK */