bf533_string.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * U-boot - bf533_string.c Contains library routines.
  3. *
  4. * Copyright (c) 2005 blackfin.uclinux.org
  5. *
  6. * (C) Copyright 2000-2004
  7. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <asm/setup.h>
  29. #include <asm/page.h>
  30. #include <config.h>
  31. #include <asm/blackfin.h>
  32. #include <asm/io.h>
  33. extern void blackfin_icache_flush_range(const void *, const void *);
  34. extern void blackfin_dcache_flush_range(const void *, const void *);
  35. extern void *memcpy_ASM(void *dest, const void *src, size_t count);
  36. void *dma_memcpy(void *, const void *, size_t);
  37. char *strcpy(char *dest, const char *src)
  38. {
  39. char *xdest = dest;
  40. char temp = 0;
  41. __asm__ __volatile__
  42. ("1:\t%2 = B [%1++] (Z);\n\t"
  43. "B [%0++] = %2;\n\t"
  44. "CC = %2;\n\t"
  45. "if cc jump 1b (bp);\n":"=a"(dest), "=a"(src), "=d"(temp)
  46. :"0"(dest), "1"(src), "2"(temp):"memory");
  47. return xdest;
  48. }
  49. char *strncpy(char *dest, const char *src, size_t n)
  50. {
  51. char *xdest = dest;
  52. char temp = 0;
  53. if (n == 0)
  54. return xdest;
  55. __asm__ __volatile__
  56. ("1:\t%3 = B [%1++] (Z);\n\t"
  57. "B [%0++] = %3;\n\t"
  58. "CC = %3;\n\t"
  59. "if ! cc jump 2f;\n\t"
  60. "%2 += -1;\n\t"
  61. "CC = %2 == 0;\n\t"
  62. "if ! cc jump 1b (bp);\n"
  63. "2:\n":"=a"(dest), "=a"(src), "=da"(n), "=d"(temp)
  64. :"0"(dest), "1"(src), "2"(n), "3"(temp)
  65. :"memory");
  66. return xdest;
  67. }
  68. int strcmp(const char *cs, const char *ct)
  69. {
  70. char __res1, __res2;
  71. __asm__("1:\t%2 = B[%0++] (Z);\n\t" /* get *cs */
  72. "%3 = B[%1++] (Z);\n\t" /* get *ct */
  73. "CC = %2 == %3;\n\t" /* compare a byte */
  74. "if ! cc jump 2f;\n\t" /* not equal, break out */
  75. "CC = %2;\n\t" /* at end of cs? */
  76. "if cc jump 1b (bp);\n\t" /* no, keep going */
  77. "jump.s 3f;\n" /* strings are equal */
  78. "2:\t%2 = %2 - %3;\n" /* *cs - *ct */
  79. "3:\n": "=a"(cs), "=a"(ct), "=d"(__res1), "=d"(__res2)
  80. : "0"(cs), "1"(ct));
  81. return __res1;
  82. }
  83. int strncmp(const char *cs, const char *ct, size_t count)
  84. {
  85. char __res1, __res2;
  86. if (!count)
  87. return 0;
  88. __asm__("1:\t%3 = B[%0++] (Z);\n\t" /* get *cs */
  89. "%4 = B[%1++] (Z);\n\t" /* get *ct */
  90. "CC = %3 == %4;\n\t" /* compare a byte */
  91. "if ! cc jump 3f;\n\t" /* not equal, break out */
  92. "CC = %3;\n\t" /* at end of cs? */
  93. "if ! cc jump 4f;\n\t" /* yes, all done */
  94. "%2 += -1;\n\t" /* no, adjust count */
  95. "CC = %2 == 0;\n\t" "if ! cc jump 1b;\n" /* more to do, keep going */
  96. "2:\t%3 = 0;\n\t" /* strings are equal */
  97. "jump.s 4f;\n" "3:\t%3 = %3 - %4;\n" /* *cs - *ct */
  98. "4:": "=a"(cs), "=a"(ct), "=da"(count), "=d"(__res1),
  99. "=d"(__res2)
  100. : "0"(cs), "1"(ct), "2"(count));
  101. return __res1;
  102. }
  103. /*
  104. * memcpy - Copy one area of memory to another
  105. * @dest: Where to copy to
  106. * @src: Where to copy from
  107. * @count: The size of the area.
  108. *
  109. * You should not use this function to access IO space, use memcpy_toio()
  110. * or memcpy_fromio() instead.
  111. */
  112. void *memcpy(void *dest, const void *src, size_t count)
  113. {
  114. char *tmp = (char *)dest, *s = (char *)src;
  115. /* L1_ISRAM can only be accessed via dma */
  116. if ((tmp >= (char *)L1_ISRAM) && (tmp < (char *)L1_ISRAM_END)) {
  117. /* L1 is the destination */
  118. dma_memcpy(dest, src, count);
  119. if (icache_status()) {
  120. blackfin_icache_flush_range(src, src + count);
  121. }
  122. } else if ((s >= (char *)L1_ISRAM) && (s < (char *)L1_ISRAM_END)) {
  123. /* L1 is the source */
  124. dma_memcpy(dest, src, count);
  125. if (icache_status()) {
  126. blackfin_icache_flush_range(dest, dest + count);
  127. }
  128. if (dcache_status()) {
  129. blackfin_dcache_flush_range(dest, dest + count);
  130. }
  131. } else {
  132. memcpy_ASM(dest, src, count);
  133. }
  134. return dest;
  135. }
  136. void *dma_memcpy(void *dest, const void *src, size_t count)
  137. {
  138. *pMDMA_D0_IRQ_STATUS = DMA_DONE | DMA_ERR;
  139. /* Copy sram functions from sdram to sram */
  140. /* Setup destination start address */
  141. *pMDMA_D0_START_ADDR = (volatile void **)dest;
  142. /* Setup destination xcount */
  143. *pMDMA_D0_X_COUNT = count;
  144. /* Setup destination xmodify */
  145. *pMDMA_D0_X_MODIFY = 1;
  146. /* Setup Source start address */
  147. *pMDMA_S0_START_ADDR = (volatile void **)src;
  148. /* Setup Source xcount */
  149. *pMDMA_S0_X_COUNT = count;
  150. /* Setup Source xmodify */
  151. *pMDMA_S0_X_MODIFY = 1;
  152. /* Enable source DMA */
  153. *pMDMA_S0_CONFIG = (DMAEN);
  154. sync();
  155. *pMDMA_D0_CONFIG = (WNR | DMAEN);
  156. while (*pMDMA_D0_IRQ_STATUS & DMA_RUN) {
  157. *pMDMA_D0_IRQ_STATUS |= (DMA_DONE | DMA_ERR);
  158. }
  159. *pMDMA_D0_IRQ_STATUS |= (DMA_DONE | DMA_ERR);
  160. dest += count;
  161. src += count;
  162. return dest;
  163. }