blob: 9ceeeef80c4dce8057ffb7d940938d221687a1ca [file] [log] [blame]
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01001/*
2 * U-boot - bf533_string.c Contains library routines.
3 *
Aubrey Li155fd762007-04-05 18:31:18 +08004 * Copyright (c) 2005-2007 Analog Devices Inc.
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01005 *
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
Aubrey Li155fd762007-04-05 18:31:18 +080024 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 * MA 02110-1301 USA
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010026 */
27
28#include <common.h>
Aubrey.Li3f0606a2007-03-09 13:38:44 +080029#include <config.h>
30#include <asm/blackfin.h>
Aubrey Li8440bb12007-03-12 00:25:14 +080031#include <asm/io.h>
Aubrey Lic0707ce2007-04-05 18:34:06 +080032#include "cache.h"
Mike Frysingerd4d77302008-02-04 19:26:55 -050033#include <asm/mach-common/bits/dma.h>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010034
35char *strcpy(char *dest, const char *src)
36{
37 char *xdest = dest;
38 char temp = 0;
39
40 __asm__ __volatile__
Aubrey.Li3f0606a2007-03-09 13:38:44 +080041 ("1:\t%2 = B [%1++] (Z);\n\t"
42 "B [%0++] = %2;\n\t"
43 "CC = %2;\n\t"
44 "if cc jump 1b (bp);\n":"=a"(dest), "=a"(src), "=d"(temp)
45 :"0"(dest), "1"(src), "2"(temp):"memory");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010046
47 return xdest;
48}
49
50char *strncpy(char *dest, const char *src, size_t n)
51{
52 char *xdest = dest;
53 char temp = 0;
54
55 if (n == 0)
56 return xdest;
57
58 __asm__ __volatile__
Aubrey.Li3f0606a2007-03-09 13:38:44 +080059 ("1:\t%3 = B [%1++] (Z);\n\t"
60 "B [%0++] = %3;\n\t"
61 "CC = %3;\n\t"
62 "if ! cc jump 2f;\n\t"
63 "%2 += -1;\n\t"
64 "CC = %2 == 0;\n\t"
65 "if ! cc jump 1b (bp);\n"
66 "2:\n":"=a"(dest), "=a"(src), "=da"(n), "=d"(temp)
67 :"0"(dest), "1"(src), "2"(n), "3"(temp)
68 :"memory");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010069
70 return xdest;
71}
72
73int strcmp(const char *cs, const char *ct)
74{
75 char __res1, __res2;
76
Aubrey.Li3f0606a2007-03-09 13:38:44 +080077 __asm__("1:\t%2 = B[%0++] (Z);\n\t" /* get *cs */
78 "%3 = B[%1++] (Z);\n\t" /* get *ct */
79 "CC = %2 == %3;\n\t" /* compare a byte */
80 "if ! cc jump 2f;\n\t" /* not equal, break out */
81 "CC = %2;\n\t" /* at end of cs? */
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010082 "if cc jump 1b (bp);\n\t" /* no, keep going */
Aubrey.Li3f0606a2007-03-09 13:38:44 +080083 "jump.s 3f;\n" /* strings are equal */
84 "2:\t%2 = %2 - %3;\n" /* *cs - *ct */
85 "3:\n": "=a"(cs), "=a"(ct), "=d"(__res1), "=d"(__res2)
86 : "0"(cs), "1"(ct));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010087
88 return __res1;
89}
90
91int strncmp(const char *cs, const char *ct, size_t count)
92{
93 char __res1, __res2;
94
95 if (!count)
96 return 0;
97
Aubrey.Li3f0606a2007-03-09 13:38:44 +080098 __asm__("1:\t%3 = B[%0++] (Z);\n\t" /* get *cs */
99 "%4 = B[%1++] (Z);\n\t" /* get *ct */
100 "CC = %3 == %4;\n\t" /* compare a byte */
101 "if ! cc jump 3f;\n\t" /* not equal, break out */
102 "CC = %3;\n\t" /* at end of cs? */
103 "if ! cc jump 4f;\n\t" /* yes, all done */
104 "%2 += -1;\n\t" /* no, adjust count */
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100105 "CC = %2 == 0;\n\t" "if ! cc jump 1b;\n" /* more to do, keep going */
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800106 "2:\t%3 = 0;\n\t" /* strings are equal */
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100107 "jump.s 4f;\n" "3:\t%3 = %3 - %4;\n" /* *cs - *ct */
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800108 "4:": "=a"(cs), "=a"(ct), "=da"(count), "=d"(__res1),
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100109 "=d"(__res2)
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800110 : "0"(cs), "1"(ct), "2"(count));
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100111
112 return __res1;
113}
114
Mike Frysingerd4d77302008-02-04 19:26:55 -0500115#ifndef pMDMA_D0_IRQ_STATUS
116# define pMDMA_D0_IRQ_STATUS pMDMA1_D0_IRQ_STATUS
117# define pMDMA_D0_START_ADDR pMDMA1_D0_START_ADDR
118# define pMDMA_D0_X_COUNT pMDMA1_D0_X_COUNT
119# define pMDMA_D0_X_MODIFY pMDMA1_D0_X_MODIFY
120# define pMDMA_D0_CONFIG pMDMA1_D0_CONFIG
121# define pMDMA_S0_IRQ_STATUS pMDMA1_S0_IRQ_STATUS
122# define pMDMA_S0_START_ADDR pMDMA1_S0_START_ADDR
123# define pMDMA_S0_X_COUNT pMDMA1_S0_X_COUNT
124# define pMDMA_S0_X_MODIFY pMDMA1_S0_X_MODIFY
125# define pMDMA_S0_CONFIG pMDMA1_S0_CONFIG
126#endif
127
Aubrey Lic0707ce2007-04-05 18:34:06 +0800128static void *dma_memcpy(void *dest, const void *src, size_t count)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100129{
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800130 *pMDMA_D0_IRQ_STATUS = DMA_DONE | DMA_ERR;
Wolfgang Denk8e7b7032006-03-12 02:55:22 +0100131
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800132 /* Copy sram functions from sdram to sram */
133 /* Setup destination start address */
134 *pMDMA_D0_START_ADDR = (volatile void **)dest;
135 /* Setup destination xcount */
136 *pMDMA_D0_X_COUNT = count;
137 /* Setup destination xmodify */
138 *pMDMA_D0_X_MODIFY = 1;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100139
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800140 /* Setup Source start address */
141 *pMDMA_S0_START_ADDR = (volatile void **)src;
142 /* Setup Source xcount */
143 *pMDMA_S0_X_COUNT = count;
144 /* Setup Source xmodify */
145 *pMDMA_S0_X_MODIFY = 1;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100146
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800147 /* Enable source DMA */
148 *pMDMA_S0_CONFIG = (DMAEN);
Mike Frysingerd4d77302008-02-04 19:26:55 -0500149 SSYNC();
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100150
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800151 *pMDMA_D0_CONFIG = (WNR | DMAEN);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100152
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800153 while (*pMDMA_D0_IRQ_STATUS & DMA_RUN) {
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100154 *pMDMA_D0_IRQ_STATUS |= (DMA_DONE | DMA_ERR);
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800155 }
156 *pMDMA_D0_IRQ_STATUS |= (DMA_DONE | DMA_ERR);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100157
Aubrey.Li3f0606a2007-03-09 13:38:44 +0800158 dest += count;
159 src += count;
160 return dest;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +0100161}
Aubrey Lic0707ce2007-04-05 18:34:06 +0800162
163/*
164 * memcpy - Copy one area of memory to another
165 * @dest: Where to copy to
166 * @src: Where to copy from
167 * @count: The size of the area.
168 *
169 * You should not use this function to access IO space, use memcpy_toio()
170 * or memcpy_fromio() instead.
171 */
172extern void *memcpy_ASM(void *dest, const void *src, size_t count);
173void *memcpy(void *dest, const void *src, size_t count)
174{
175 char *tmp = (char *) dest, *s = (char *) src;
176
177 if (dcache_status()) {
178 blackfin_dcache_flush_range(src, src+count);
179 }
Mike Frysingerd4d77302008-02-04 19:26:55 -0500180 /* L1_INST_SRAM can only be accessed via dma */
181 if ((tmp >= (char *)L1_INST_SRAM) && (tmp < (char *)L1_INST_SRAM_END)) {
Aubrey Lic0707ce2007-04-05 18:34:06 +0800182 /* L1 is the destination */
183 dma_memcpy(dest,src,count);
Mike Frysingerd4d77302008-02-04 19:26:55 -0500184 } else if ((s >= (char *)L1_INST_SRAM) && (s < (char *)L1_INST_SRAM_END)) {
Aubrey Lic0707ce2007-04-05 18:34:06 +0800185 /* L1 is the source */
186 dma_memcpy(dest,src,count);
187
188 if (icache_status()) {
189 blackfin_icache_flush_range(dest, dest+count);
190 }
191 if (dcache_status()) {
192 blackfin_dcache_invalidate_range(dest, dest+count);
193 }
194 } else {
195 memcpy_ASM(dest,src,count);
196 }
197 return dest;
198}