blob: 5b7ac0b91abaf506b0c300a0213e1b5a746f4373 [file] [log] [blame]
Mike Frysinger9171fc82008-03-30 15:46:13 -04001/*
2 * U-boot - string.c Contains library routines.
3 *
Mike Frysingerd31eb382008-08-07 15:30:49 -04004 * Copyright (c) 2005-2008 Analog Devices Inc.
Mike Frysinger9171fc82008-03-30 15:46:13 -04005 *
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., 51 Franklin St, Fifth Floor, Boston,
25 * MA 02110-1301 USA
26 */
27
28#include <common.h>
29#include <config.h>
30#include <asm/blackfin.h>
31#include <asm/io.h>
Bob Liuee825962012-08-16 11:19:08 +080032#include <asm/dma.h>
Mike Frysinger9171fc82008-03-30 15:46:13 -040033
34char *strcpy(char *dest, const char *src)
35{
36 char *xdest = dest;
37 char temp = 0;
38
39 __asm__ __volatile__ (
40 "1:\t%2 = B [%1++] (Z);\n\t"
41 "B [%0++] = %2;\n\t"
42 "CC = %2;\n\t"
43 "if cc jump 1b (bp);\n"
44 : "=a"(dest), "=a"(src), "=d"(temp)
45 : "0"(dest), "1"(src), "2"(temp)
46 : "memory");
47
48 return xdest;
49}
50
51char *strncpy(char *dest, const char *src, size_t n)
52{
53 char *xdest = dest;
54 char temp = 0;
55
56 if (n == 0)
57 return xdest;
58
59 __asm__ __volatile__ (
60 "1:\t%3 = B [%1++] (Z);\n\t"
61 "B [%0++] = %3;\n\t"
62 "CC = %3;\n\t"
63 "if ! cc jump 2f;\n\t"
64 "%2 += -1;\n\t"
65 "CC = %2 == 0;\n\t"
66 "if ! cc jump 1b (bp);\n"
67 "2:\n"
68 : "=a"(dest), "=a"(src), "=da"(n), "=d"(temp)
69 : "0"(dest), "1"(src), "2"(n), "3"(temp)
70 : "memory");
71
72 return xdest;
73}
74
75int strcmp(const char *cs, const char *ct)
76{
77 char __res1, __res2;
78
79 __asm__ (
80 "1:\t%2 = B[%0++] (Z);\n\t" /* get *cs */
81 "%3 = B[%1++] (Z);\n\t" /* get *ct */
82 "CC = %2 == %3;\n\t" /* compare a byte */
83 "if ! cc jump 2f;\n\t" /* not equal, break out */
84 "CC = %2;\n\t" /* at end of cs? */
85 "if cc jump 1b (bp);\n\t" /* no, keep going */
86 "jump.s 3f;\n" /* strings are equal */
87 "2:\t%2 = %2 - %3;\n" /* *cs - *ct */
88 "3:\n"
89 : "=a"(cs), "=a"(ct), "=d"(__res1), "=d"(__res2)
90 : "0"(cs), "1"(ct));
91
92 return __res1;
93}
94
95int strncmp(const char *cs, const char *ct, size_t count)
96{
97 char __res1, __res2;
98
99 if (!count)
100 return 0;
101
102 __asm__(
103 "1:\t%3 = B[%0++] (Z);\n\t" /* get *cs */
104 "%4 = B[%1++] (Z);\n\t" /* get *ct */
105 "CC = %3 == %4;\n\t" /* compare a byte */
106 "if ! cc jump 3f;\n\t" /* not equal, break out */
107 "CC = %3;\n\t" /* at end of cs? */
108 "if ! cc jump 4f;\n\t" /* yes, all done */
109 "%2 += -1;\n\t" /* no, adjust count */
110 "CC = %2 == 0;\n\t" "if ! cc jump 1b;\n" /* more to do, keep going */
111 "2:\t%3 = 0;\n\t" /* strings are equal */
112 "jump.s 4f;\n" "3:\t%3 = %3 - %4;\n" /* *cs - *ct */
113 "4:"
114 : "=a"(cs), "=a"(ct), "=da"(count), "=d"(__res1), "=d"(__res2)
115 : "0"(cs), "1"(ct), "2"(count));
116
117 return __res1;
118}
119
Bob Liuee825962012-08-16 11:19:08 +0800120#ifdef MDMA1_D0_NEXT_DESC_PTR
121# define MDMA_D0_NEXT_DESC_PTR MDMA1_D0_NEXT_DESC_PTR
122# define MDMA_S0_NEXT_DESC_PTR MDMA1_S0_NEXT_DESC_PTR
Mike Frysinger9171fc82008-03-30 15:46:13 -0400123#endif
Bob Liuee825962012-08-16 11:19:08 +0800124
125static void dma_calc_size(unsigned long ldst, unsigned long lsrc, size_t count,
126 unsigned long *dshift, unsigned long *bpos)
127{
128 unsigned long limit;
129
130#ifdef MSIZE
Sonic Zhangc4239b52012-12-11 16:51:23 +0800131 /* The max memory DMA memory transfer size is 32 bytes. */
132 limit = 5;
Bob Liuee825962012-08-16 11:19:08 +0800133 *dshift = MSIZE_P;
134#else
Sonic Zhangc4239b52012-12-11 16:51:23 +0800135 /* The max memory DMA memory transfer size is 4 bytes. */
136 limit = 2;
Bob Liuee825962012-08-16 11:19:08 +0800137 *dshift = WDSIZE_P;
138#endif
139
140 *bpos = min(limit, ffs(ldst | lsrc | count)) - 1;
141}
142
Mike Frysingerd31eb382008-08-07 15:30:49 -0400143/* This version misbehaves for count values of 0 and 2^16+.
144 * Perhaps we should detect that ? Nowhere do we actually
145 * use dma memcpy for those types of lengths though ...
146 */
Mike Frysinger21d63132008-08-07 15:31:13 -0400147void dma_memcpy_nocache(void *dst, const void *src, size_t count)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400148{
Bob Liuee825962012-08-16 11:19:08 +0800149 struct dma_register *mdma_d0 = (void *)MDMA_D0_NEXT_DESC_PTR;
150 struct dma_register *mdma_s0 = (void *)MDMA_S0_NEXT_DESC_PTR;
151 unsigned long ldst = (unsigned long)dst;
152 unsigned long lsrc = (unsigned long)src;
153 unsigned long dshift, bpos;
154 uint32_t dsize, mod;
Mike Frysinger961954e2008-11-05 12:45:24 -0500155
Mike Frysingere347c092008-11-05 07:20:37 -0500156 /* Disable DMA in case it's still running (older u-boot's did not
157 * always turn them off). Do it before the if statement below so
158 * we can be cheap and not do a SSYNC() due to the forced abort.
159 */
Bob Liuee825962012-08-16 11:19:08 +0800160 bfin_write(&mdma_d0->config, 0);
161 bfin_write(&mdma_s0->config, 0);
162 bfin_write(&mdma_d0->status, DMA_RUN | DMA_DONE | DMA_ERR);
Mike Frysingere347c092008-11-05 07:20:37 -0500163
Mike Frysingerd31eb382008-08-07 15:30:49 -0400164 /* Scratchpad cannot be a DMA source or destination */
Bob Liuee825962012-08-16 11:19:08 +0800165 if ((lsrc >= L1_SRAM_SCRATCH && lsrc < L1_SRAM_SCRATCH_END) ||
166 (ldst >= L1_SRAM_SCRATCH && ldst < L1_SRAM_SCRATCH_END))
Mike Frysingerd31eb382008-08-07 15:30:49 -0400167 hang();
168
Bob Liuee825962012-08-16 11:19:08 +0800169 dma_calc_size(ldst, lsrc, count, &dshift, &bpos);
170 dsize = bpos << dshift;
171 count >>= bpos;
172 mod = 1 << bpos;
173
174#ifdef PSIZE
Sonic Zhangc4239b52012-12-11 16:51:23 +0800175 /* The max memory DMA peripheral transfer size is 4 bytes. */
176 dsize |= min(2, bpos) << PSIZE_P;
Bob Liuee825962012-08-16 11:19:08 +0800177#endif
Mike Frysinger961954e2008-11-05 12:45:24 -0500178
Mike Frysinger9171fc82008-03-30 15:46:13 -0400179 /* Copy sram functions from sdram to sram */
180 /* Setup destination start address */
Bob Liuee825962012-08-16 11:19:08 +0800181 bfin_write(&mdma_d0->start_addr, ldst);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400182 /* Setup destination xcount */
Bob Liuee825962012-08-16 11:19:08 +0800183 bfin_write(&mdma_d0->x_count, count);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400184 /* Setup destination xmodify */
Bob Liuee825962012-08-16 11:19:08 +0800185 bfin_write(&mdma_d0->x_modify, mod);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400186
187 /* Setup Source start address */
Bob Liuee825962012-08-16 11:19:08 +0800188 bfin_write(&mdma_s0->start_addr, lsrc);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400189 /* Setup Source xcount */
Bob Liuee825962012-08-16 11:19:08 +0800190 bfin_write(&mdma_s0->x_count, count);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400191 /* Setup Source xmodify */
Bob Liuee825962012-08-16 11:19:08 +0800192 bfin_write(&mdma_s0->x_modify, mod);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400193
194 /* Enable source DMA */
Bob Liuee825962012-08-16 11:19:08 +0800195 bfin_write(&mdma_s0->config, dsize | DMAEN);
196 bfin_write(&mdma_d0->config, dsize | DMAEN | WNR | DI_EN);
Mike Frysinger21d63132008-08-07 15:31:13 -0400197 SSYNC();
Mike Frysinger9171fc82008-03-30 15:46:13 -0400198
Bob Liuee825962012-08-16 11:19:08 +0800199 while (!(bfin_read(&mdma_d0->status) & DMA_DONE))
Mike Frysinger21d63132008-08-07 15:31:13 -0400200 continue;
201
Bob Liuee825962012-08-16 11:19:08 +0800202 bfin_write(&mdma_d0->status, DMA_RUN | DMA_DONE | DMA_ERR);
203 bfin_write(&mdma_d0->config, 0);
204 bfin_write(&mdma_s0->config, 0);
Mike Frysinger21d63132008-08-07 15:31:13 -0400205}
Mike Frysinger05b75e42008-10-06 03:35:44 -0400206/* We should do a dcache invalidate on the destination after the dma, but since
207 * we lack such hardware capability, we'll flush/invalidate the destination
208 * before the dma and bank on the idea that u-boot is single threaded.
209 */
Mike Frysinger21d63132008-08-07 15:31:13 -0400210void *dma_memcpy(void *dst, const void *src, size_t count)
211{
Mike Frysinger05b75e42008-10-06 03:35:44 -0400212 if (dcache_status()) {
Mike Frysinger21d63132008-08-07 15:31:13 -0400213 blackfin_dcache_flush_range(src, src + count);
Mike Frysinger05b75e42008-10-06 03:35:44 -0400214 blackfin_dcache_flush_invalidate_range(dst, dst + count);
215 }
Mike Frysinger21d63132008-08-07 15:31:13 -0400216
217 dma_memcpy_nocache(dst, src, count);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400218
219 if (icache_status())
220 blackfin_icache_flush_range(dst, dst + count);
221
Mike Frysinger9171fc82008-03-30 15:46:13 -0400222 return dst;
223}
224
225/*
226 * memcpy - Copy one area of memory to another
227 * @dest: Where to copy to
228 * @src: Where to copy from
229 * @count: The size of the area.
230 *
231 * We need to have this wrapper in memcpy() as common code may call memcpy()
232 * to load up L1 regions. Consider loading an ELF which has sections with
233 * LMA's pointing to L1. The common code ELF loader will simply use memcpy()
234 * to move the ELF's sections into the right place. We need to catch that
235 * here and redirect to dma_memcpy().
236 */
237extern void *memcpy_ASM(void *dst, const void *src, size_t count);
238void *memcpy(void *dst, const void *src, size_t count)
239{
240 if (!count)
241 return dst;
242
Robin Getzf19fd872009-12-21 16:35:48 -0500243#ifdef CONFIG_CMD_KGDB
244 if (src >= (void *)SYSMMR_BASE) {
245 if (count == 2 && (unsigned long)src % 2 == 0) {
246 u16 mmr = bfin_read16(src);
247 memcpy(dst, &mmr, sizeof(mmr));
248 return dst;
249 }
250 if (count == 4 && (unsigned long)src % 4 == 0) {
251 u32 mmr = bfin_read32(src);
252 memcpy(dst, &mmr, sizeof(mmr));
253 return dst;
254 }
255 /* Failed for some reason */
256 memset(dst, 0xad, count);
257 return dst;
258 }
259 if (dst >= (void *)SYSMMR_BASE) {
260 if (count == 2 && (unsigned long)dst % 2 == 0) {
261 u16 mmr;
262 memcpy(&mmr, src, sizeof(mmr));
263 bfin_write16(dst, mmr);
264 return dst;
265 }
266 if (count == 4 && (unsigned long)dst % 4 == 0) {
267 u32 mmr;
268 memcpy(&mmr, src, sizeof(mmr));
269 bfin_write32(dst, mmr);
270 return dst;
271 }
272 /* Failed for some reason */
273 memset(dst, 0xad, count);
274 return dst;
275 }
276#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400277
Robin Getzf19fd872009-12-21 16:35:48 -0500278 /* if L1 is the source or dst, use DMA */
279 if (addr_bfin_on_chip_mem(dst) || addr_bfin_on_chip_mem(src))
Mike Frysinger9171fc82008-03-30 15:46:13 -0400280 return dma_memcpy(dst, src, count);
Robin Getzf19fd872009-12-21 16:35:48 -0500281 else
Mike Frysinger9171fc82008-03-30 15:46:13 -0400282 /* No L1 is involved, so just call regular memcpy */
283 return memcpy_ASM(dst, src, count);
284}