head.S 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * File: arch/blackfin/mach-bf561/head.S
  3. * Based on: arch/blackfin/mach-bf533/head.S
  4. * Author:
  5. *
  6. * Created:
  7. * Description: BF561 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/clocks.h>
  34. #include <mach/mem_init.h>
  35. #endif
  36. .section .l1.text
  37. #ifdef CONFIG_BFIN_KERNEL_CLOCK
  38. ENTRY(_start_dma_code)
  39. p0.h = hi(SICA_IWR0);
  40. p0.l = lo(SICA_IWR0);
  41. r0.l = 0x1;
  42. [p0] = r0;
  43. SSYNC;
  44. /*
  45. * Set PLL_CTL
  46. * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
  47. * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
  48. * - [7] = output delay (add 200ps of delay to mem signals)
  49. * - [6] = input delay (add 200ps of input delay to mem signals)
  50. * - [5] = PDWN : 1=All Clocks off
  51. * - [3] = STOPCK : 1=Core Clock off
  52. * - [1] = PLL_OFF : 1=Disable Power to PLL
  53. * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
  54. * all other bits set to zero
  55. */
  56. p0.h = hi(PLL_LOCKCNT);
  57. p0.l = lo(PLL_LOCKCNT);
  58. r0 = 0x300(Z);
  59. w[p0] = r0.l;
  60. ssync;
  61. P2.H = hi(EBIU_SDGCTL);
  62. P2.L = lo(EBIU_SDGCTL);
  63. R0 = [P2];
  64. BITSET (R0, 24);
  65. [P2] = R0;
  66. SSYNC;
  67. r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
  68. r0 = r0 << 9; /* Shift it over, */
  69. r1 = CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
  70. r0 = r1 | r0;
  71. r1 = PLL_BYPASS; /* Bypass the PLL? */
  72. r1 = r1 << 8; /* Shift it over */
  73. r0 = r1 | r0; /* add them all together */
  74. p0.h = hi(PLL_CTL);
  75. p0.l = lo(PLL_CTL); /* Load the address */
  76. cli r2; /* Disable interrupts */
  77. ssync;
  78. w[p0] = r0.l; /* Set the value */
  79. idle; /* Wait for the PLL to stablize */
  80. sti r2; /* Enable interrupts */
  81. .Lcheck_again:
  82. p0.h = hi(PLL_STAT);
  83. p0.l = lo(PLL_STAT);
  84. R0 = W[P0](Z);
  85. CC = BITTST(R0,5);
  86. if ! CC jump .Lcheck_again;
  87. /* Configure SCLK & CCLK Dividers */
  88. r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
  89. p0.h = hi(PLL_DIV);
  90. p0.l = lo(PLL_DIV);
  91. w[p0] = r0.l;
  92. ssync;
  93. p0.l = lo(EBIU_SDRRC);
  94. p0.h = hi(EBIU_SDRRC);
  95. r0 = mem_SDRRC;
  96. w[p0] = r0.l;
  97. ssync;
  98. P2.H = hi(EBIU_SDGCTL);
  99. P2.L = lo(EBIU_SDGCTL);
  100. R0 = [P2];
  101. BITCLR (R0, 24);
  102. p0.h = hi(EBIU_SDSTAT);
  103. p0.l = lo(EBIU_SDSTAT);
  104. r2.l = w[p0];
  105. cc = bittst(r2,3);
  106. if !cc jump .Lskip;
  107. NOP;
  108. BITSET (R0, 23);
  109. .Lskip:
  110. [P2] = R0;
  111. SSYNC;
  112. R0.L = lo(mem_SDGCTL);
  113. R0.H = hi(mem_SDGCTL);
  114. R1 = [p2];
  115. R1 = R1 | R0;
  116. [P2] = R1;
  117. SSYNC;
  118. RTS;
  119. ENDPROC(_start_dma_code)
  120. #endif /* CONFIG_BFIN_KERNEL_CLOCK */