]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
017f11f6 PT |
2 | /* |
3 | * Copyright 2004,2007,2008 Freescale Semiconductor, Inc. | |
4 | * (C) Copyright 2002, 2003 Motorola Inc. | |
5 | * Xianghua Xiao ([email protected]) | |
6 | * | |
7 | * (C) Copyright 2000 | |
8 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
017f11f6 PT |
9 | */ |
10 | ||
11 | #include <config.h> | |
12 | #include <common.h> | |
a730393a | 13 | #include <asm/io.h> |
017f11f6 PT |
14 | #include <asm/fsl_dma.h> |
15 | ||
51402ac1 PT |
16 | /* Controller can only transfer 2^26 - 1 bytes at a time */ |
17 | #define FSL_DMA_MAX_SIZE (0x3ffffff) | |
18 | ||
e94e460c PT |
19 | #if defined(CONFIG_MPC83xx) |
20 | #define FSL_DMA_MR_DEFAULT (FSL_DMA_MR_CTM_DIRECT | FSL_DMA_MR_DMSEN) | |
21 | #else | |
22 | #define FSL_DMA_MR_DEFAULT (FSL_DMA_MR_BWC_DIS | FSL_DMA_MR_CTM_DIRECT) | |
23 | #endif | |
24 | ||
25 | ||
26 | #if defined(CONFIG_MPC83xx) | |
27 | dma83xx_t *dma_base = (void *)(CONFIG_SYS_MPC83xx_DMA_ADDR); | |
28 | #elif defined(CONFIG_MPC85xx) | |
a730393a | 29 | ccsr_dma_t *dma_base = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR); |
017f11f6 | 30 | #elif defined(CONFIG_MPC86xx) |
a730393a | 31 | ccsr_dma_t *dma_base = (void *)(CONFIG_SYS_MPC86xx_DMA_ADDR); |
017f11f6 PT |
32 | #else |
33 | #error "Freescale DMA engine not supported on your processor" | |
34 | #endif | |
35 | ||
36 | static void dma_sync(void) | |
37 | { | |
38 | #if defined(CONFIG_MPC85xx) | |
39 | asm("sync; isync; msync"); | |
40 | #elif defined(CONFIG_MPC86xx) | |
41 | asm("sync; isync"); | |
42 | #endif | |
43 | } | |
44 | ||
e94e460c PT |
45 | static void out_dma32(volatile unsigned *addr, int val) |
46 | { | |
47 | #if defined(CONFIG_MPC83xx) | |
48 | out_le32(addr, val); | |
49 | #else | |
50 | out_be32(addr, val); | |
51 | #endif | |
52 | } | |
53 | ||
54 | static uint in_dma32(volatile unsigned *addr) | |
55 | { | |
56 | #if defined(CONFIG_MPC83xx) | |
57 | return in_le32(addr); | |
58 | #else | |
59 | return in_be32(addr); | |
60 | #endif | |
61 | } | |
62 | ||
017f11f6 PT |
63 | static uint dma_check(void) { |
64 | volatile fsl_dma_t *dma = &dma_base->dma[0]; | |
a730393a | 65 | uint status; |
017f11f6 PT |
66 | |
67 | /* While the channel is busy, spin */ | |
a730393a | 68 | do { |
e94e460c | 69 | status = in_dma32(&dma->sr); |
a730393a | 70 | } while (status & FSL_DMA_SR_CB); |
017f11f6 PT |
71 | |
72 | /* clear MR[CS] channel start bit */ | |
e94e460c | 73 | out_dma32(&dma->mr, in_dma32(&dma->mr) & ~FSL_DMA_MR_CS); |
017f11f6 PT |
74 | dma_sync(); |
75 | ||
76 | if (status != 0) | |
77 | printf ("DMA Error: status = %x\n", status); | |
78 | ||
79 | return status; | |
80 | } | |
81 | ||
e94e460c | 82 | #if !defined(CONFIG_MPC83xx) |
017f11f6 PT |
83 | void dma_init(void) { |
84 | volatile fsl_dma_t *dma = &dma_base->dma[0]; | |
85 | ||
e94e460c PT |
86 | out_dma32(&dma->satr, FSL_DMA_SATR_SREAD_SNOOP); |
87 | out_dma32(&dma->datr, FSL_DMA_DATR_DWRITE_SNOOP); | |
88 | out_dma32(&dma->sr, 0xffffffff); /* clear any errors */ | |
017f11f6 PT |
89 | dma_sync(); |
90 | } | |
e94e460c | 91 | #endif |
017f11f6 | 92 | |
7892f619 | 93 | int dmacpy(phys_addr_t dest, phys_addr_t src, phys_size_t count) { |
017f11f6 | 94 | volatile fsl_dma_t *dma = &dma_base->dma[0]; |
51402ac1 | 95 | uint xfer_size; |
017f11f6 | 96 | |
51402ac1 | 97 | while (count) { |
c79cba37 | 98 | xfer_size = min(FSL_DMA_MAX_SIZE, count); |
017f11f6 | 99 | |
359ec493 YS |
100 | out_dma32(&dma->dar, (u32) (dest & 0xFFFFFFFF)); |
101 | out_dma32(&dma->sar, (u32) (src & 0xFFFFFFFF)); | |
9a865fff | 102 | #if !defined(CONFIG_MPC83xx) |
359ec493 YS |
103 | out_dma32(&dma->satr, |
104 | in_dma32(&dma->satr) | (u32)((u64)src >> 32)); | |
105 | out_dma32(&dma->datr, | |
106 | in_dma32(&dma->datr) | (u32)((u64)dest >> 32)); | |
9a865fff | 107 | #endif |
e94e460c PT |
108 | out_dma32(&dma->bcr, xfer_size); |
109 | dma_sync(); | |
017f11f6 | 110 | |
e94e460c PT |
111 | /* Prepare mode register */ |
112 | out_dma32(&dma->mr, FSL_DMA_MR_DEFAULT); | |
51402ac1 PT |
113 | dma_sync(); |
114 | ||
115 | /* Start the transfer */ | |
e94e460c | 116 | out_dma32(&dma->mr, FSL_DMA_MR_DEFAULT | FSL_DMA_MR_CS); |
51402ac1 PT |
117 | |
118 | count -= xfer_size; | |
119 | src += xfer_size; | |
120 | dest += xfer_size; | |
121 | ||
122 | dma_sync(); | |
123 | ||
124 | if (dma_check()) | |
125 | return -1; | |
126 | } | |
017f11f6 | 127 | |
51402ac1 | 128 | return 0; |
017f11f6 | 129 | } |
0d595f76 | 130 | |
e94e460c PT |
131 | /* |
132 | * 85xx/86xx use dma to initialize SDRAM when !CONFIG_ECC_INIT_VIA_DDRCONTROLLER | |
133 | * while 83xx uses dma to initialize SDRAM when CONFIG_DDR_ECC_INIT_VIA_DMA | |
134 | */ | |
135 | #if ((!defined CONFIG_MPC83xx && defined(CONFIG_DDR_ECC) && \ | |
136 | !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)) || \ | |
137 | (defined(CONFIG_MPC83xx) && defined(CONFIG_DDR_ECC_INIT_VIA_DMA))) | |
0d595f76 PT |
138 | void dma_meminit(uint val, uint size) |
139 | { | |
140 | uint *p = 0; | |
141 | uint i = 0; | |
142 | ||
143 | for (*p = 0; p < (uint *)(8 * 1024); p++) { | |
144 | if (((uint)p & 0x1f) == 0) | |
145 | ppcDcbz((ulong)p); | |
146 | ||
147 | *p = (uint)CONFIG_MEM_INIT_VALUE; | |
148 | ||
149 | if (((uint)p & 0x1c) == 0x1c) | |
150 | ppcDcbf((ulong)p); | |
151 | } | |
152 | ||
153 | dmacpy(0x002000, 0, 0x002000); /* 8K */ | |
154 | dmacpy(0x004000, 0, 0x004000); /* 16K */ | |
155 | dmacpy(0x008000, 0, 0x008000); /* 32K */ | |
156 | dmacpy(0x010000, 0, 0x010000); /* 64K */ | |
157 | dmacpy(0x020000, 0, 0x020000); /* 128K */ | |
158 | dmacpy(0x040000, 0, 0x040000); /* 256K */ | |
159 | dmacpy(0x080000, 0, 0x080000); /* 512K */ | |
160 | dmacpy(0x100000, 0, 0x100000); /* 1M */ | |
161 | dmacpy(0x200000, 0, 0x200000); /* 2M */ | |
162 | dmacpy(0x400000, 0, 0x400000); /* 4M */ | |
163 | ||
164 | for (i = 1; i < size / 0x800000; i++) | |
165 | dmacpy((0x800000 * i), 0, 0x800000); | |
166 | } | |
167 | #endif |