Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / arch / arm / mach-tegra / apbio.c
blobdc0fe389be5645e632a669ee932f50140e43d80c
1 /*
2 * Copyright (C) 2010 NVIDIA Corporation.
3 * Copyright (C) 2010 Google, Inc.
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 #include <linux/kernel.h>
17 #include <linux/io.h>
18 #include <mach/iomap.h>
19 #include <linux/of.h>
20 #include <linux/dmaengine.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/spinlock.h>
23 #include <linux/completion.h>
24 #include <linux/sched.h>
25 #include <linux/mutex.h>
27 #include <mach/dma.h>
29 #include "apbio.h"
31 #if defined(CONFIG_TEGRA_SYSTEM_DMA) || defined(CONFIG_TEGRA20_APB_DMA)
32 static DEFINE_MUTEX(tegra_apb_dma_lock);
33 static u32 *tegra_apb_bb;
34 static dma_addr_t tegra_apb_bb_phys;
35 static DECLARE_COMPLETION(tegra_apb_wait);
37 static u32 tegra_apb_readl_direct(unsigned long offset);
38 static void tegra_apb_writel_direct(u32 value, unsigned long offset);
40 #if defined(CONFIG_TEGRA_SYSTEM_DMA)
41 static struct tegra_dma_channel *tegra_apb_dma;
43 bool tegra_apb_init(void)
45 struct tegra_dma_channel *ch;
47 mutex_lock(&tegra_apb_dma_lock);
49 /* Check to see if we raced to setup */
50 if (tegra_apb_dma)
51 goto out;
53 ch = tegra_dma_allocate_channel(TEGRA_DMA_MODE_ONESHOT |
54 TEGRA_DMA_SHARED);
56 if (!ch)
57 goto out_fail;
59 tegra_apb_bb = dma_alloc_coherent(NULL, sizeof(u32),
60 &tegra_apb_bb_phys, GFP_KERNEL);
61 if (!tegra_apb_bb) {
62 pr_err("%s: can not allocate bounce buffer\n", __func__);
63 tegra_dma_free_channel(ch);
64 goto out_fail;
67 tegra_apb_dma = ch;
68 out:
69 mutex_unlock(&tegra_apb_dma_lock);
70 return true;
72 out_fail:
73 mutex_unlock(&tegra_apb_dma_lock);
74 return false;
77 static void apb_dma_complete(struct tegra_dma_req *req)
79 complete(&tegra_apb_wait);
82 static u32 tegra_apb_readl_using_dma(unsigned long offset)
84 struct tegra_dma_req req;
85 int ret;
87 if (!tegra_apb_dma && !tegra_apb_init())
88 return tegra_apb_readl_direct(offset);
90 mutex_lock(&tegra_apb_dma_lock);
91 req.complete = apb_dma_complete;
92 req.to_memory = 1;
93 req.dest_addr = tegra_apb_bb_phys;
94 req.dest_bus_width = 32;
95 req.dest_wrap = 1;
96 req.source_addr = offset;
97 req.source_bus_width = 32;
98 req.source_wrap = 4;
99 req.req_sel = TEGRA_DMA_REQ_SEL_CNTR;
100 req.size = 4;
102 INIT_COMPLETION(tegra_apb_wait);
104 tegra_dma_enqueue_req(tegra_apb_dma, &req);
106 ret = wait_for_completion_timeout(&tegra_apb_wait,
107 msecs_to_jiffies(50));
109 if (WARN(ret == 0, "apb read dma timed out")) {
110 tegra_dma_dequeue_req(tegra_apb_dma, &req);
111 *(u32 *)tegra_apb_bb = 0;
114 mutex_unlock(&tegra_apb_dma_lock);
115 return *((u32 *)tegra_apb_bb);
118 static void tegra_apb_writel_using_dma(u32 value, unsigned long offset)
120 struct tegra_dma_req req;
121 int ret;
123 if (!tegra_apb_dma && !tegra_apb_init()) {
124 tegra_apb_writel_direct(value, offset);
125 return;
128 mutex_lock(&tegra_apb_dma_lock);
129 *((u32 *)tegra_apb_bb) = value;
130 req.complete = apb_dma_complete;
131 req.to_memory = 0;
132 req.dest_addr = offset;
133 req.dest_wrap = 4;
134 req.dest_bus_width = 32;
135 req.source_addr = tegra_apb_bb_phys;
136 req.source_bus_width = 32;
137 req.source_wrap = 1;
138 req.req_sel = TEGRA_DMA_REQ_SEL_CNTR;
139 req.size = 4;
141 INIT_COMPLETION(tegra_apb_wait);
143 tegra_dma_enqueue_req(tegra_apb_dma, &req);
145 ret = wait_for_completion_timeout(&tegra_apb_wait,
146 msecs_to_jiffies(50));
148 if (WARN(ret == 0, "apb write dma timed out"))
149 tegra_dma_dequeue_req(tegra_apb_dma, &req);
151 mutex_unlock(&tegra_apb_dma_lock);
154 #else
155 static struct dma_chan *tegra_apb_dma_chan;
156 static struct dma_slave_config dma_sconfig;
158 bool tegra_apb_dma_init(void)
160 dma_cap_mask_t mask;
162 mutex_lock(&tegra_apb_dma_lock);
164 /* Check to see if we raced to setup */
165 if (tegra_apb_dma_chan)
166 goto skip_init;
168 dma_cap_zero(mask);
169 dma_cap_set(DMA_SLAVE, mask);
170 tegra_apb_dma_chan = dma_request_channel(mask, NULL, NULL);
171 if (!tegra_apb_dma_chan) {
173 * This is common until the device is probed, so don't
174 * shout about it.
176 pr_debug("%s: can not allocate dma channel\n", __func__);
177 goto err_dma_alloc;
180 tegra_apb_bb = dma_alloc_coherent(NULL, sizeof(u32),
181 &tegra_apb_bb_phys, GFP_KERNEL);
182 if (!tegra_apb_bb) {
183 pr_err("%s: can not allocate bounce buffer\n", __func__);
184 goto err_buff_alloc;
187 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
188 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
189 dma_sconfig.slave_id = TEGRA_DMA_REQ_SEL_CNTR;
190 dma_sconfig.src_maxburst = 1;
191 dma_sconfig.dst_maxburst = 1;
193 skip_init:
194 mutex_unlock(&tegra_apb_dma_lock);
195 return true;
197 err_buff_alloc:
198 dma_release_channel(tegra_apb_dma_chan);
199 tegra_apb_dma_chan = NULL;
201 err_dma_alloc:
202 mutex_unlock(&tegra_apb_dma_lock);
203 return false;
206 static void apb_dma_complete(void *args)
208 complete(&tegra_apb_wait);
211 static int do_dma_transfer(unsigned long apb_add,
212 enum dma_transfer_direction dir)
214 struct dma_async_tx_descriptor *dma_desc;
215 int ret;
217 if (dir == DMA_DEV_TO_MEM)
218 dma_sconfig.src_addr = apb_add;
219 else
220 dma_sconfig.dst_addr = apb_add;
222 ret = dmaengine_slave_config(tegra_apb_dma_chan, &dma_sconfig);
223 if (ret)
224 return ret;
226 dma_desc = dmaengine_prep_slave_single(tegra_apb_dma_chan,
227 tegra_apb_bb_phys, sizeof(u32), dir,
228 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
229 if (!dma_desc)
230 return -EINVAL;
232 dma_desc->callback = apb_dma_complete;
233 dma_desc->callback_param = NULL;
235 INIT_COMPLETION(tegra_apb_wait);
237 dmaengine_submit(dma_desc);
238 dma_async_issue_pending(tegra_apb_dma_chan);
239 ret = wait_for_completion_timeout(&tegra_apb_wait,
240 msecs_to_jiffies(50));
242 if (WARN(ret == 0, "apb read dma timed out")) {
243 dmaengine_terminate_all(tegra_apb_dma_chan);
244 return -EFAULT;
246 return 0;
249 static u32 tegra_apb_readl_using_dma(unsigned long offset)
251 int ret;
253 if (!tegra_apb_dma_chan && !tegra_apb_dma_init())
254 return tegra_apb_readl_direct(offset);
256 mutex_lock(&tegra_apb_dma_lock);
257 ret = do_dma_transfer(offset, DMA_DEV_TO_MEM);
258 if (ret < 0) {
259 pr_err("error in reading offset 0x%08lx using dma\n", offset);
260 *(u32 *)tegra_apb_bb = 0;
262 mutex_unlock(&tegra_apb_dma_lock);
263 return *((u32 *)tegra_apb_bb);
266 static void tegra_apb_writel_using_dma(u32 value, unsigned long offset)
268 int ret;
270 if (!tegra_apb_dma_chan && !tegra_apb_dma_init()) {
271 tegra_apb_writel_direct(value, offset);
272 return;
275 mutex_lock(&tegra_apb_dma_lock);
276 *((u32 *)tegra_apb_bb) = value;
277 ret = do_dma_transfer(offset, DMA_MEM_TO_DEV);
278 if (ret < 0)
279 pr_err("error in writing offset 0x%08lx using dma\n", offset);
280 mutex_unlock(&tegra_apb_dma_lock);
282 #endif
283 #else
284 #define tegra_apb_readl_using_dma tegra_apb_readl_direct
285 #define tegra_apb_writel_using_dma tegra_apb_writel_direct
286 #endif
288 typedef u32 (*apbio_read_fptr)(unsigned long offset);
289 typedef void (*apbio_write_fptr)(u32 value, unsigned long offset);
291 static apbio_read_fptr apbio_read;
292 static apbio_write_fptr apbio_write;
294 static u32 tegra_apb_readl_direct(unsigned long offset)
296 return readl(IO_TO_VIRT(offset));
299 static void tegra_apb_writel_direct(u32 value, unsigned long offset)
301 writel(value, IO_TO_VIRT(offset));
304 void tegra_apb_io_init(void)
306 /* Need to use dma only when it is Tegra20 based platform */
307 if (of_machine_is_compatible("nvidia,tegra20") ||
308 !of_have_populated_dt()) {
309 apbio_read = tegra_apb_readl_using_dma;
310 apbio_write = tegra_apb_writel_using_dma;
311 } else {
312 apbio_read = tegra_apb_readl_direct;
313 apbio_write = tegra_apb_writel_direct;
317 u32 tegra_apb_readl(unsigned long offset)
319 return apbio_read(offset);
322 void tegra_apb_writel(u32 value, unsigned long offset)
324 apbio_write(value, offset);