head.S 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * File: arch/blackfin/mach-bf533/head.S
  3. * Based on:
  4. * Author: Jeff Dionne <jeff@uclinux.org> COPYRIGHT 1998 D. Jeff Dionne
  5. *
  6. * Created: 1998
  7. * Description: bf533 startup file
  8. *
  9. * Modified:
  10. * Copyright 2004-2006 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. p0.h = hi(FIO_MASKA_C);
  40. p0.l = lo(FIO_MASKA_C);
  41. r0 = 0xFFFF(Z);
  42. w[p0] = r0.L; /* Disable all interrupts */
  43. ssync;
  44. p0.h = hi(FIO_MASKB_C);
  45. p0.l = lo(FIO_MASKB_C);
  46. r0 = 0xFFFF(Z);
  47. w[p0] = r0.L; /* Disable all interrupts */
  48. ssync;
  49. /* Initialise UART - when booting from u-boot, the UART is not disabled
  50. * so if we dont initalize here, our serial console gets hosed */
  51. p0.h = hi(BFIN_UART_LCR);
  52. p0.l = lo(BFIN_UART_LCR);
  53. r0 = 0x0(Z);
  54. w[p0] = r0.L; /* To enable DLL writes */
  55. ssync;
  56. p0.h = hi(BFIN_UART_DLL);
  57. p0.l = lo(BFIN_UART_DLL);
  58. r0 = 0x0(Z);
  59. w[p0] = r0.L;
  60. ssync;
  61. p0.h = hi(BFIN_UART_DLH);
  62. p0.l = lo(BFIN_UART_DLH);
  63. r0 = 0x00(Z);
  64. w[p0] = r0.L;
  65. ssync;
  66. p0.h = hi(BFIN_UART_GCTL);
  67. p0.l = lo(BFIN_UART_GCTL);
  68. r0 = 0x0(Z);
  69. w[p0] = r0.L; /* To enable UART clock */
  70. ssync;
  71. rts;
  72. ENDPROC(_mach_early_start)
  73. __FINIT
  74. .section .l1.text
  75. #ifdef CONFIG_BFIN_KERNEL_CLOCK
  76. ENTRY(_start_dma_code)
  77. p0.h = hi(SIC_IWR);
  78. p0.l = lo(SIC_IWR);
  79. r0.l = 0x1;
  80. r0.h = 0x0;
  81. [p0] = r0;
  82. SSYNC;
  83. /*
  84. * Set PLL_CTL
  85. * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
  86. * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
  87. * - [7] = output delay (add 200ps of delay to mem signals)
  88. * - [6] = input delay (add 200ps of input delay to mem signals)
  89. * - [5] = PDWN : 1=All Clocks off
  90. * - [3] = STOPCK : 1=Core Clock off
  91. * - [1] = PLL_OFF : 1=Disable Power to PLL
  92. * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
  93. * all other bits set to zero
  94. */
  95. p0.h = hi(PLL_LOCKCNT);
  96. p0.l = lo(PLL_LOCKCNT);
  97. r0 = 0x300(Z);
  98. w[p0] = r0.l;
  99. ssync;
  100. P2.H = hi(EBIU_SDGCTL);
  101. P2.L = lo(EBIU_SDGCTL);
  102. R0 = [P2];
  103. BITSET (R0, 24);
  104. [P2] = R0;
  105. SSYNC;
  106. r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
  107. r0 = r0 << 9; /* Shift it over, */
  108. r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
  109. r0 = r1 | r0;
  110. r1 = PLL_BYPASS; /* Bypass the PLL? */
  111. r1 = r1 << 8; /* Shift it over */
  112. r0 = r1 | r0; /* add them all together */
  113. p0.h = hi(PLL_CTL);
  114. p0.l = lo(PLL_CTL); /* Load the address */
  115. cli r2; /* Disable interrupts */
  116. ssync;
  117. w[p0] = r0.l; /* Set the value */
  118. idle; /* Wait for the PLL to stablize */
  119. sti r2; /* Enable interrupts */
  120. .Lcheck_again:
  121. p0.h = hi(PLL_STAT);
  122. p0.l = lo(PLL_STAT);
  123. R0 = W[P0](Z);
  124. CC = BITTST(R0,5);
  125. if ! CC jump .Lcheck_again;
  126. /* Configure SCLK & CCLK Dividers */
  127. r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
  128. p0.h = hi(PLL_DIV);
  129. p0.l = lo(PLL_DIV);
  130. w[p0] = r0.l;
  131. ssync;
  132. p0.l = lo(EBIU_SDRRC);
  133. p0.h = hi(EBIU_SDRRC);
  134. r0 = mem_SDRRC;
  135. w[p0] = r0.l;
  136. ssync;
  137. P2.H = hi(EBIU_SDGCTL);
  138. P2.L = lo(EBIU_SDGCTL);
  139. R0 = [P2];
  140. BITCLR (R0, 24);
  141. p0.h = hi(EBIU_SDSTAT);
  142. p0.l = lo(EBIU_SDSTAT);
  143. r2.l = w[p0];
  144. cc = bittst(r2,3);
  145. if !cc jump .Lskip;
  146. NOP;
  147. BITSET (R0, 23);
  148. .Lskip:
  149. [P2] = R0;
  150. SSYNC;
  151. R0.L = lo(mem_SDGCTL);
  152. R0.H = hi(mem_SDGCTL);
  153. R1 = [p2];
  154. R1 = R1 | R0;
  155. [P2] = R1;
  156. SSYNC;
  157. RTS;
  158. ENDPROC(_start_dma_code)
  159. #endif /* CONFIG_BFIN_KERNEL_CLOCK */