blob: 6c6a3a8df07a84e490f184a4b29662173de4451b [file] [log] [blame]
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +09001/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#include <linux/delay.h>
18#include <linux/io.h>
Rafael J. Wysocki9c646cf2011-07-26 20:51:01 +020019#include <linux/scatterlist.h>
Paul Bollecc502bb2012-06-03 18:39:13 +020020#include "common.h"
21#include "pipe.h"
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090022
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090023#define usbhsf_get_cfifo(p) (&((p)->fifo_info.cfifo))
Shimoda, Yoshihiro5ea43992012-01-05 15:37:22 +090024#define usbhsf_is_cfifo(p, f) (usbhsf_get_cfifo(p) == f)
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090025
Kuninori Morimotod77e3f42011-06-06 14:18:50 +090026#define usbhsf_fifo_is_busy(f) ((f)->pipe) /* see usbhs_pipe_select_fifo */
27
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090028/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -070029 * packet initialize
30 */
31void usbhs_pkt_init(struct usbhs_pkt *pkt)
32{
Kuninori Morimoto233f5192011-07-07 00:23:24 -070033 INIT_LIST_HEAD(&pkt->node);
34}
35
36/*
37 * packet control function
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090038 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +090039static int usbhsf_null_handle(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotodad67392011-06-06 14:18:28 +090040{
41 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
42 struct device *dev = usbhs_priv_to_dev(priv);
43
44 dev_err(dev, "null handler\n");
45
46 return -EINVAL;
47}
48
Julia Lawallfcb42e22015-12-27 21:50:29 +010049static const struct usbhs_pkt_handle usbhsf_null_handler = {
Kuninori Morimotodad67392011-06-06 14:18:28 +090050 .prepare = usbhsf_null_handle,
51 .try_run = usbhsf_null_handle,
52};
53
Kuninori Morimoto659d4952011-06-06 14:18:23 +090054void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
Kuninori Morimotob3318722011-10-10 22:04:41 -070055 void (*done)(struct usbhs_priv *priv,
56 struct usbhs_pkt *pkt),
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080057 void *buf, int len, int zero, int sequence)
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090058{
Kuninori Morimotodad67392011-06-06 14:18:28 +090059 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
60 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto97664a22011-06-06 14:18:38 +090061 unsigned long flags;
62
Kuninori Morimotob3318722011-10-10 22:04:41 -070063 if (!done) {
64 dev_err(dev, "no done function\n");
65 return;
66 }
67
Kuninori Morimotoa2c76b82011-10-18 20:05:50 -070068 /******************** spin lock ********************/
69 usbhs_lock(priv, flags);
70
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070071 if (!pipe->handler) {
Kuninori Morimotodad67392011-06-06 14:18:28 +090072 dev_err(dev, "no handler function\n");
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070073 pipe->handler = &usbhsf_null_handler;
Kuninori Morimotodad67392011-06-06 14:18:28 +090074 }
75
Guennadi Liakhovetskid5261282012-02-14 11:37:17 +010076 list_move_tail(&pkt->node, &pipe->list);
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090077
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070078 /*
79 * each pkt must hold own handler.
80 * because handler might be changed by its situation.
81 * dma handler -> pio handler.
82 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +090083 pkt->pipe = pipe;
84 pkt->buf = buf;
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070085 pkt->handler = pipe->handler;
Kuninori Morimoto659d4952011-06-06 14:18:23 +090086 pkt->length = len;
87 pkt->zero = zero;
88 pkt->actual = 0;
Kuninori Morimotob3318722011-10-10 22:04:41 -070089 pkt->done = done;
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080090 pkt->sequence = sequence;
Kuninori Morimoto97664a22011-06-06 14:18:38 +090091
92 usbhs_unlock(priv, flags);
93 /******************** spin unlock ******************/
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090094}
95
Kuninori Morimoto97664a22011-06-06 14:18:38 +090096static void __usbhsf_pkt_del(struct usbhs_pkt *pkt)
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090097{
98 list_del_init(&pkt->node);
99}
100
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900101static struct usbhs_pkt *__usbhsf_pkt_get(struct usbhs_pipe *pipe)
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900102{
103 if (list_empty(&pipe->list))
104 return NULL;
105
Guennadi Liakhovetskid5261282012-02-14 11:37:17 +0100106 return list_first_entry(&pipe->list, struct usbhs_pkt, node);
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900107}
108
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900109static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
110 struct usbhs_fifo *fifo);
111static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
112 struct usbhs_fifo *fifo);
113static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
114 struct usbhs_pkt *pkt);
115#define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1)
116#define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0)
117static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900118struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt)
119{
120 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900121 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900122 unsigned long flags;
123
124 /******************** spin lock ********************/
125 usbhs_lock(priv, flags);
126
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900127 usbhs_pipe_disable(pipe);
128
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900129 if (!pkt)
130 pkt = __usbhsf_pkt_get(pipe);
131
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900132 if (pkt) {
133 struct dma_chan *chan = NULL;
134
135 if (fifo)
136 chan = usbhsf_dma_chan_get(fifo, pkt);
137 if (chan) {
138 dmaengine_terminate_all(chan);
139 usbhsf_fifo_clear(pipe, fifo);
140 usbhsf_dma_unmap(pkt);
141 }
142
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900143 __usbhsf_pkt_del(pkt);
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900144 }
145
146 if (fifo)
147 usbhsf_fifo_unselect(pipe, fifo);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900148
149 usbhs_unlock(priv, flags);
150 /******************** spin unlock ******************/
151
152 return pkt;
153}
154
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700155enum {
156 USBHSF_PKT_PREPARE,
157 USBHSF_PKT_TRY_RUN,
158 USBHSF_PKT_DMA_DONE,
159};
160
161static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900162{
163 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900164 struct usbhs_pkt *pkt;
165 struct device *dev = usbhs_priv_to_dev(priv);
166 int (*func)(struct usbhs_pkt *pkt, int *is_done);
167 unsigned long flags;
168 int ret = 0;
169 int is_done = 0;
170
171 /******************** spin lock ********************/
172 usbhs_lock(priv, flags);
173
174 pkt = __usbhsf_pkt_get(pipe);
175 if (!pkt)
176 goto __usbhs_pkt_handler_end;
177
178 switch (type) {
179 case USBHSF_PKT_PREPARE:
180 func = pkt->handler->prepare;
181 break;
182 case USBHSF_PKT_TRY_RUN:
183 func = pkt->handler->try_run;
184 break;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900185 case USBHSF_PKT_DMA_DONE:
186 func = pkt->handler->dma_done;
187 break;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900188 default:
Masanari Iida984e8332012-11-01 00:03:51 +0900189 dev_err(dev, "unknown pkt handler\n");
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900190 goto __usbhs_pkt_handler_end;
191 }
192
Yoshihiro Shimoda894f2fc2016-03-10 11:30:14 +0900193 if (likely(func))
194 ret = func(pkt, &is_done);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900195
196 if (is_done)
197 __usbhsf_pkt_del(pkt);
198
199__usbhs_pkt_handler_end:
200 usbhs_unlock(priv, flags);
201 /******************** spin unlock ******************/
202
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900203 if (is_done) {
Kuninori Morimotob3318722011-10-10 22:04:41 -0700204 pkt->done(priv, pkt);
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900205 usbhs_pkt_start(pipe);
206 }
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900207
208 return ret;
209}
210
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700211void usbhs_pkt_start(struct usbhs_pipe *pipe)
212{
213 usbhsf_pkt_handler(pipe, USBHSF_PKT_PREPARE);
214}
215
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900216/*
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900217 * irq enable/disable function
218 */
Kuninori Morimoto3192fcb2012-10-29 00:45:07 -0700219#define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_bempsts, e)
220#define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_brdysts, e)
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900221#define usbhsf_irq_callback_ctrl(pipe, status, enable) \
222 ({ \
223 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
224 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
225 u16 status = (1 << usbhs_pipe_number(pipe)); \
226 if (!mod) \
227 return; \
228 if (enable) \
Kuninori Morimoto3192fcb2012-10-29 00:45:07 -0700229 mod->status |= status; \
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900230 else \
Kuninori Morimoto3192fcb2012-10-29 00:45:07 -0700231 mod->status &= ~status; \
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900232 usbhs_irq_callback_update(priv, mod); \
233 })
234
235static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
236{
237 /*
238 * And DCP pipe can NOT use "ready interrupt" for "send"
239 * it should use "empty" interrupt.
240 * see
241 * "Operation" - "Interrupt Function" - "BRDY Interrupt"
242 *
243 * on the other hand, normal pipe can use "ready interrupt" for "send"
244 * even though it is single/double buffer
245 */
246 if (usbhs_pipe_is_dcp(pipe))
247 usbhsf_irq_empty_ctrl(pipe, enable);
248 else
249 usbhsf_irq_ready_ctrl(pipe, enable);
250}
251
252static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
253{
254 usbhsf_irq_ready_ctrl(pipe, enable);
255}
256
257/*
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900258 * FIFO ctrl
259 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900260static void usbhsf_send_terminator(struct usbhs_pipe *pipe,
261 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900262{
263 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
264
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900265 usbhs_bset(priv, fifo->ctr, BVAL, BVAL);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900266}
267
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900268static int usbhsf_fifo_barrier(struct usbhs_priv *priv,
269 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900270{
271 int timeout = 1024;
272
273 do {
274 /* The FIFO port is accessible */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900275 if (usbhs_read(priv, fifo->ctr) & FRDY)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900276 return 0;
277
278 udelay(10);
279 } while (timeout--);
280
281 return -EBUSY;
282}
283
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900284static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
285 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900286{
287 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Yoshihiro Shimoda4661c9b2017-09-27 18:47:12 +0900288 int ret = 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900289
Yoshihiro Shimodaeb5df142017-09-27 18:47:13 +0900290 if (!usbhs_pipe_is_dcp(pipe)) {
291 /*
292 * This driver checks the pipe condition first to avoid -EBUSY
293 * from usbhsf_fifo_barrier() with about 10 msec delay in
294 * the interrupt handler if the pipe is RX direction and empty.
295 */
296 if (usbhs_pipe_is_dir_in(pipe))
297 ret = usbhs_pipe_is_accessible(pipe);
298 if (!ret)
299 ret = usbhsf_fifo_barrier(priv, fifo);
300 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900301
Yoshihiro Shimoda4661c9b2017-09-27 18:47:12 +0900302 /*
303 * if non-DCP pipe, this driver should set BCLR when
304 * usbhsf_fifo_barrier() returns 0.
305 */
306 if (!ret)
307 usbhs_write(priv, fifo->ctr, BCLR);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900308}
309
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900310static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv,
311 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900312{
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900313 return usbhs_read(priv, fifo->ctr) & DTLN_MASK;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900314}
315
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900316static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
317 struct usbhs_fifo *fifo)
318{
319 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
320
321 usbhs_pipe_select_fifo(pipe, NULL);
322 usbhs_write(priv, fifo->sel, 0);
323}
324
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900325static int usbhsf_fifo_select(struct usbhs_pipe *pipe,
326 struct usbhs_fifo *fifo,
327 int write)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900328{
329 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
330 struct device *dev = usbhs_priv_to_dev(priv);
331 int timeout = 1024;
332 u16 mask = ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
333 u16 base = usbhs_pipe_number(pipe); /* CURPIPE */
334
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900335 if (usbhs_pipe_is_busy(pipe) ||
336 usbhsf_fifo_is_busy(fifo))
337 return -EBUSY;
338
Kuninori Morimoto92352072011-10-10 22:02:57 -0700339 if (usbhs_pipe_is_dcp(pipe)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900340 base |= (1 == write) << 5; /* ISEL */
341
Kuninori Morimoto92352072011-10-10 22:02:57 -0700342 if (usbhs_mod_is_host(priv))
343 usbhs_dcp_dir_for_host(pipe, write);
344 }
345
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900346 /* "base" will be used below */
Shimoda, Yoshihiro5ea43992012-01-05 15:37:22 +0900347 if (usbhs_get_dparam(priv, has_sudmac) && !usbhsf_is_cfifo(priv, fifo))
348 usbhs_write(priv, fifo->sel, base);
349 else
350 usbhs_write(priv, fifo->sel, base | MBW_32);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900351
352 /* check ISEL and CURPIPE value */
353 while (timeout--) {
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900354 if (base == (mask & usbhs_read(priv, fifo->sel))) {
355 usbhs_pipe_select_fifo(pipe, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900356 return 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900357 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900358 udelay(10);
359 }
360
361 dev_err(dev, "fifo select error\n");
362
363 return -EIO;
364}
365
366/*
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700367 * DCP status stage
368 */
369static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt *pkt, int *is_done)
370{
371 struct usbhs_pipe *pipe = pkt->pipe;
372 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
373 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
374 struct device *dev = usbhs_priv_to_dev(priv);
375 int ret;
376
377 usbhs_pipe_disable(pipe);
378
379 ret = usbhsf_fifo_select(pipe, fifo, 1);
380 if (ret < 0) {
381 dev_err(dev, "%s() faile\n", __func__);
382 return ret;
383 }
384
385 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
386
387 usbhsf_fifo_clear(pipe, fifo);
388 usbhsf_send_terminator(pipe, fifo);
389
390 usbhsf_fifo_unselect(pipe, fifo);
391
392 usbhsf_tx_irq_ctrl(pipe, 1);
393 usbhs_pipe_enable(pipe);
394
395 return ret;
396}
397
398static int usbhs_dcp_dir_switch_to_read(struct usbhs_pkt *pkt, int *is_done)
399{
400 struct usbhs_pipe *pipe = pkt->pipe;
401 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
402 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
403 struct device *dev = usbhs_priv_to_dev(priv);
404 int ret;
405
406 usbhs_pipe_disable(pipe);
407
408 ret = usbhsf_fifo_select(pipe, fifo, 0);
409 if (ret < 0) {
410 dev_err(dev, "%s() fail\n", __func__);
411 return ret;
412 }
413
414 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
415 usbhsf_fifo_clear(pipe, fifo);
416
417 usbhsf_fifo_unselect(pipe, fifo);
418
419 usbhsf_rx_irq_ctrl(pipe, 1);
420 usbhs_pipe_enable(pipe);
421
422 return ret;
423
424}
425
426static int usbhs_dcp_dir_switch_done(struct usbhs_pkt *pkt, int *is_done)
427{
428 struct usbhs_pipe *pipe = pkt->pipe;
429
430 if (pkt->handler == &usbhs_dcp_status_stage_in_handler)
431 usbhsf_tx_irq_ctrl(pipe, 0);
432 else
433 usbhsf_rx_irq_ctrl(pipe, 0);
434
435 pkt->actual = pkt->length;
436 *is_done = 1;
437
438 return 0;
439}
440
Julia Lawallfcb42e22015-12-27 21:50:29 +0100441const struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700442 .prepare = usbhs_dcp_dir_switch_to_write,
443 .try_run = usbhs_dcp_dir_switch_done,
444};
445
Julia Lawallfcb42e22015-12-27 21:50:29 +0100446const struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700447 .prepare = usbhs_dcp_dir_switch_to_read,
448 .try_run = usbhs_dcp_dir_switch_done,
449};
450
451/*
452 * DCP data stage (push)
453 */
454static int usbhsf_dcp_data_stage_try_push(struct usbhs_pkt *pkt, int *is_done)
455{
456 struct usbhs_pipe *pipe = pkt->pipe;
457
458 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
459
460 /*
461 * change handler to PIO push
462 */
463 pkt->handler = &usbhs_fifo_pio_push_handler;
464
465 return pkt->handler->prepare(pkt, is_done);
466}
467
Julia Lawallfcb42e22015-12-27 21:50:29 +0100468const struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700469 .prepare = usbhsf_dcp_data_stage_try_push,
470};
471
472/*
473 * DCP data stage (pop)
474 */
475static int usbhsf_dcp_data_stage_prepare_pop(struct usbhs_pkt *pkt,
476 int *is_done)
477{
478 struct usbhs_pipe *pipe = pkt->pipe;
479 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
480 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
481
482 if (usbhs_pipe_is_busy(pipe))
483 return 0;
484
485 /*
486 * prepare pop for DCP should
487 * - change DCP direction,
488 * - clear fifo
489 * - DATA1
490 */
491 usbhs_pipe_disable(pipe);
492
493 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
494
495 usbhsf_fifo_select(pipe, fifo, 0);
496 usbhsf_fifo_clear(pipe, fifo);
497 usbhsf_fifo_unselect(pipe, fifo);
498
499 /*
500 * change handler to PIO pop
501 */
502 pkt->handler = &usbhs_fifo_pio_pop_handler;
503
504 return pkt->handler->prepare(pkt, is_done);
505}
506
Julia Lawallfcb42e22015-12-27 21:50:29 +0100507const struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700508 .prepare = usbhsf_dcp_data_stage_prepare_pop,
509};
510
511/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700512 * PIO push handler
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900513 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900514static int usbhsf_pio_try_push(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900515{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900516 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900517 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900518 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900519 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
520 void __iomem *addr = priv->base + fifo->port;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900521 u8 *buf;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900522 int maxp = usbhs_pipe_get_maxpacket(pipe);
523 int total_len;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900524 int i, ret, len;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900525 int is_short;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900526
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800527 usbhs_pipe_data_sequence(pipe, pkt->sequence);
528 pkt->sequence = -1; /* -1 sequence will be ignored */
529
Kuninori Morimoto1c90ee02012-11-06 16:15:09 -0800530 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
531
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900532 ret = usbhsf_fifo_select(pipe, fifo, 1);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900533 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900534 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900535
Kuninori Morimotodad67392011-06-06 14:18:28 +0900536 ret = usbhs_pipe_is_accessible(pipe);
Kuninori Morimoto4ef85e02011-07-03 17:42:47 -0700537 if (ret < 0) {
538 /* inaccessible pipe is not an error */
539 ret = 0;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900540 goto usbhs_fifo_write_busy;
Kuninori Morimoto4ef85e02011-07-03 17:42:47 -0700541 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900542
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900543 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900544 if (ret < 0)
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900545 goto usbhs_fifo_write_busy;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900546
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900547 buf = pkt->buf + pkt->actual;
548 len = pkt->length - pkt->actual;
549 len = min(len, maxp);
550 total_len = len;
551 is_short = total_len < maxp;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900552
553 /*
554 * FIXME
555 *
556 * 32-bit access only
557 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900558 if (len >= 4 && !((unsigned long)buf & 0x03)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900559 iowrite32_rep(addr, buf, len / 4);
560 len %= 4;
561 buf += total_len - len;
562 }
563
564 /* the rest operation */
565 for (i = 0; i < len; i++)
566 iowrite8(buf[i], addr + (0x03 - (i & 0x03)));
567
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900568 /*
569 * variable update
570 */
571 pkt->actual += total_len;
572
573 if (pkt->actual < pkt->length)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900574 *is_done = 0; /* there are remainder data */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900575 else if (is_short)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900576 *is_done = 1; /* short packet */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900577 else
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900578 *is_done = !pkt->zero; /* send zero packet ? */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900579
580 /*
581 * pipe/irq handling
582 */
583 if (is_short)
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900584 usbhsf_send_terminator(pipe, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900585
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900586 usbhsf_tx_irq_ctrl(pipe, !*is_done);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900587 usbhs_pipe_running(pipe, !*is_done);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900588 usbhs_pipe_enable(pipe);
589
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900590 dev_dbg(dev, " send %d (%d/ %d/ %d/ %d)\n",
591 usbhs_pipe_number(pipe),
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900592 pkt->length, pkt->actual, *is_done, pkt->zero);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900593
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900594 usbhsf_fifo_unselect(pipe, fifo);
595
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900596 return 0;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900597
598usbhs_fifo_write_busy:
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900599 usbhsf_fifo_unselect(pipe, fifo);
600
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900601 /*
602 * pipe is busy.
603 * retry in interrupt
604 */
605 usbhsf_tx_irq_ctrl(pipe, 1);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900606 usbhs_pipe_running(pipe, 1);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900607
608 return ret;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900609}
610
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900611static int usbhsf_pio_prepare_push(struct usbhs_pkt *pkt, int *is_done)
612{
613 if (usbhs_pipe_is_running(pkt->pipe))
614 return 0;
615
616 return usbhsf_pio_try_push(pkt, is_done);
617}
618
Julia Lawallfcb42e22015-12-27 21:50:29 +0100619const struct usbhs_pkt_handle usbhs_fifo_pio_push_handler = {
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900620 .prepare = usbhsf_pio_prepare_push,
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900621 .try_run = usbhsf_pio_try_push,
Kuninori Morimotodad67392011-06-06 14:18:28 +0900622};
623
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700624/*
625 * PIO pop handler
626 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900627static int usbhsf_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900628{
Kuninori Morimotodad67392011-06-06 14:18:28 +0900629 struct usbhs_pipe *pipe = pkt->pipe;
Kazuya Mizuguchie73d42f2015-05-26 20:13:42 +0900630 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
631 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900632
633 if (usbhs_pipe_is_busy(pipe))
634 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900635
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900636 if (usbhs_pipe_is_running(pipe))
637 return 0;
638
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900639 /*
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900640 * pipe enable to prepare packet receive
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900641 */
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800642 usbhs_pipe_data_sequence(pipe, pkt->sequence);
643 pkt->sequence = -1; /* -1 sequence will be ignored */
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900644
Kazuya Mizuguchie73d42f2015-05-26 20:13:42 +0900645 if (usbhs_pipe_is_dcp(pipe))
646 usbhsf_fifo_clear(pipe, fifo);
647
Kuninori Morimoto1c90ee02012-11-06 16:15:09 -0800648 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900649 usbhs_pipe_enable(pipe);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900650 usbhs_pipe_running(pipe, 1);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900651 usbhsf_rx_irq_ctrl(pipe, 1);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900652
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900653 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900654}
655
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900656static int usbhsf_pio_try_pop(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900657{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900658 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900659 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900660 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900661 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
662 void __iomem *addr = priv->base + fifo->port;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900663 u8 *buf;
664 u32 data = 0;
665 int maxp = usbhs_pipe_get_maxpacket(pipe);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900666 int rcv_len, len;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900667 int i, ret;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900668 int total_len = 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900669
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900670 ret = usbhsf_fifo_select(pipe, fifo, 0);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900671 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900672 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900673
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900674 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900675 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900676 goto usbhs_fifo_read_busy;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900677
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900678 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900679
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900680 buf = pkt->buf + pkt->actual;
681 len = pkt->length - pkt->actual;
682 len = min(len, rcv_len);
683 total_len = len;
684
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900685 /*
Kuninori Morimoto6ff5d092011-10-10 22:05:51 -0700686 * update actual length first here to decide disable pipe.
687 * if this pipe keeps BUF status and all data were popped,
688 * then, next interrupt/token will be issued again
689 */
690 pkt->actual += total_len;
691
692 if ((pkt->actual == pkt->length) || /* receive all data */
693 (total_len < maxp)) { /* short packet */
694 *is_done = 1;
695 usbhsf_rx_irq_ctrl(pipe, 0);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900696 usbhs_pipe_running(pipe, 0);
Yoshihiro Shimoda93fb9122015-05-26 20:13:43 +0900697 /*
698 * If function mode, since this controller is possible to enter
699 * Control Write status stage at this timing, this driver
700 * should not disable the pipe. If such a case happens, this
701 * controller is not able to complete the status stage.
702 */
703 if (!usbhs_mod_is_host(priv) && !usbhs_pipe_is_dcp(pipe))
704 usbhs_pipe_disable(pipe); /* disable pipe first */
Kuninori Morimoto6ff5d092011-10-10 22:05:51 -0700705 }
706
707 /*
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900708 * Buffer clear if Zero-Length packet
709 *
710 * see
711 * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
712 */
713 if (0 == rcv_len) {
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800714 pkt->zero = 1;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900715 usbhsf_fifo_clear(pipe, fifo);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900716 goto usbhs_fifo_read_end;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900717 }
718
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900719 /*
720 * FIXME
721 *
722 * 32-bit access only
723 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900724 if (len >= 4 && !((unsigned long)buf & 0x03)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900725 ioread32_rep(addr, buf, len / 4);
726 len %= 4;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900727 buf += total_len - len;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900728 }
729
730 /* the rest operation */
731 for (i = 0; i < len; i++) {
732 if (!(i & 0x03))
733 data = ioread32(addr);
734
735 buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
736 }
737
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900738usbhs_fifo_read_end:
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900739 dev_dbg(dev, " recv %d (%d/ %d/ %d/ %d)\n",
740 usbhs_pipe_number(pipe),
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900741 pkt->length, pkt->actual, *is_done, pkt->zero);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900742
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900743usbhs_fifo_read_busy:
744 usbhsf_fifo_unselect(pipe, fifo);
745
746 return ret;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900747}
Kuninori Morimotodad67392011-06-06 14:18:28 +0900748
Julia Lawallfcb42e22015-12-27 21:50:29 +0100749const struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler = {
Kuninori Morimotodad67392011-06-06 14:18:28 +0900750 .prepare = usbhsf_prepare_pop,
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900751 .try_run = usbhsf_pio_try_pop,
Kuninori Morimotodad67392011-06-06 14:18:28 +0900752};
753
754/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700755 * DCP ctrol statge handler
Kuninori Morimotodad67392011-06-06 14:18:28 +0900756 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900757static int usbhsf_ctrl_stage_end(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotodad67392011-06-06 14:18:28 +0900758{
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900759 usbhs_dcp_control_transfer_done(pkt->pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900760
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900761 *is_done = 1;
Kuninori Morimotodad67392011-06-06 14:18:28 +0900762
763 return 0;
764}
765
Julia Lawallfcb42e22015-12-27 21:50:29 +0100766const struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler = {
Kuninori Morimotodad67392011-06-06 14:18:28 +0900767 .prepare = usbhsf_ctrl_stage_end,
768 .try_run = usbhsf_ctrl_stage_end,
769};
770
771/*
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900772 * DMA fifo functions
773 */
774static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
775 struct usbhs_pkt *pkt)
776{
777 if (&usbhs_fifo_dma_push_handler == pkt->handler)
778 return fifo->tx_chan;
779
780 if (&usbhs_fifo_dma_pop_handler == pkt->handler)
781 return fifo->rx_chan;
782
783 return NULL;
784}
785
786static struct usbhs_fifo *usbhsf_get_dma_fifo(struct usbhs_priv *priv,
787 struct usbhs_pkt *pkt)
788{
789 struct usbhs_fifo *fifo;
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +0900790 int i;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900791
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +0900792 usbhs_for_each_dfifo(priv, fifo, i) {
793 if (usbhsf_dma_chan_get(fifo, pkt) &&
794 !usbhsf_fifo_is_busy(fifo))
795 return fifo;
796 }
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900797
798 return NULL;
799}
800
801#define usbhsf_dma_start(p, f) __usbhsf_dma_ctrl(p, f, DREQE)
802#define usbhsf_dma_stop(p, f) __usbhsf_dma_ctrl(p, f, 0)
803static void __usbhsf_dma_ctrl(struct usbhs_pipe *pipe,
804 struct usbhs_fifo *fifo,
805 u16 dreqe)
806{
807 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
808
809 usbhs_bset(priv, fifo->sel, DREQE, dreqe);
810}
811
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900812static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
813{
814 struct usbhs_pipe *pipe = pkt->pipe;
815 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
816 struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
Yoshihiro Shimodac3cdcac2016-04-18 16:53:41 +0900817 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
818 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900819
Yoshihiro Shimodac3cdcac2016-04-18 16:53:41 +0900820 return info->dma_map_ctrl(chan->device->dev, pkt, map);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900821}
822
823static void usbhsf_dma_complete(void *arg);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +0100824static void xfer_work(struct work_struct *work)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900825{
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +0100826 struct usbhs_pkt *pkt = container_of(work, struct usbhs_pkt, work);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900827 struct usbhs_pipe *pipe = pkt->pipe;
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900828 struct usbhs_fifo *fifo;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900829 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900830 struct dma_async_tx_descriptor *desc;
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900831 struct dma_chan *chan;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900832 struct device *dev = usbhs_priv_to_dev(priv);
Vinod Koul55ba4e52011-10-14 21:57:58 +0530833 enum dma_transfer_direction dir;
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900834 unsigned long flags;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900835
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900836 usbhs_lock(priv, flags);
837 fifo = usbhs_pipe_to_fifo(pipe);
838 if (!fifo)
839 goto xfer_work_end;
840
841 chan = usbhsf_dma_chan_get(fifo, pkt);
Vinod Koul55ba4e52011-10-14 21:57:58 +0530842 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_DEV_TO_MEM : DMA_MEM_TO_DEV;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900843
Kuninori Morimoto2f0de9d2012-07-08 23:10:28 -0700844 desc = dmaengine_prep_slave_single(chan, pkt->dma + pkt->actual,
845 pkt->trans, dir,
Alexandre Bounine16052822012-03-08 16:11:18 -0500846 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900847 if (!desc)
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900848 goto xfer_work_end;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900849
850 desc->callback = usbhsf_dma_complete;
851 desc->callback_param = pipe;
852
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900853 pkt->cookie = dmaengine_submit(desc);
854 if (pkt->cookie < 0) {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900855 dev_err(dev, "Failed to submit dma descriptor\n");
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900856 goto xfer_work_end;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900857 }
858
859 dev_dbg(dev, " %s %d (%d/ %d)\n",
860 fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero);
861
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900862 usbhs_pipe_running(pipe, 1);
Yoshihiro Shimoda9b53d9a2015-03-12 15:35:19 +0900863 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->trans);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900864 dma_async_issue_pending(chan);
Kazuya Mizuguchif4753e02017-10-02 14:01:41 +0900865 usbhsf_dma_start(pipe, fifo);
Yoshihiro Shimoda9b53d9a2015-03-12 15:35:19 +0900866 usbhs_pipe_enable(pipe);
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900867
868xfer_work_end:
869 usbhs_unlock(priv, flags);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900870}
871
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700872/*
873 * DMA push handler
874 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900875static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done)
876{
877 struct usbhs_pipe *pipe = pkt->pipe;
878 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
879 struct usbhs_fifo *fifo;
880 int len = pkt->length - pkt->actual;
881 int ret;
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900882 uintptr_t align_mask;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900883
884 if (usbhs_pipe_is_busy(pipe))
885 return 0;
886
887 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
888 if ((len < usbhs_get_dparam(priv, pio_dma_border)) ||
Yoshihiro Shimoda700aa7f2016-08-08 21:50:53 +0900889 usbhs_pipe_type_is(pipe, USB_ENDPOINT_XFER_ISOC))
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900890 goto usbhsf_pio_prepare_push;
891
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900892 /* check data length if this driver don't use USB-DMAC */
893 if (!usbhs_get_dparam(priv, has_usb_dmac) && len & 0x7)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900894 goto usbhsf_pio_prepare_push;
895
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900896 /* check buffer alignment */
897 align_mask = usbhs_get_dparam(priv, has_usb_dmac) ?
898 USBHS_USB_DMAC_XFER_SIZE - 1 : 0x7;
899 if ((uintptr_t)(pkt->buf + pkt->actual) & align_mask)
Kuninori Morimoto9a12d092011-07-03 17:42:19 -0700900 goto usbhsf_pio_prepare_push;
901
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900902 /* return at this time if the pipe is running */
903 if (usbhs_pipe_is_running(pipe))
904 return 0;
905
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900906 /* get enable DMA fifo */
907 fifo = usbhsf_get_dma_fifo(priv, pkt);
908 if (!fifo)
909 goto usbhsf_pio_prepare_push;
910
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900911 ret = usbhsf_fifo_select(pipe, fifo, 0);
912 if (ret < 0)
Yoshihiro Shimodae789ece2016-04-18 16:53:40 +0900913 goto usbhsf_pio_prepare_push;
914
915 if (usbhsf_dma_map(pkt) < 0)
916 goto usbhsf_pio_prepare_push_unselect;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900917
918 pkt->trans = len;
919
Yoshihiro Shimoda64908652016-03-10 11:30:15 +0900920 usbhsf_tx_irq_ctrl(pipe, 0);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +0100921 INIT_WORK(&pkt->work, xfer_work);
922 schedule_work(&pkt->work);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900923
924 return 0;
925
Yoshihiro Shimodae789ece2016-04-18 16:53:40 +0900926usbhsf_pio_prepare_push_unselect:
927 usbhsf_fifo_unselect(pipe, fifo);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900928usbhsf_pio_prepare_push:
929 /*
930 * change handler to PIO
931 */
932 pkt->handler = &usbhs_fifo_pio_push_handler;
933
934 return pkt->handler->prepare(pkt, is_done);
935}
936
937static int usbhsf_dma_push_done(struct usbhs_pkt *pkt, int *is_done)
938{
939 struct usbhs_pipe *pipe = pkt->pipe;
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900940 int is_short = pkt->trans % usbhs_pipe_get_maxpacket(pipe);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900941
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900942 pkt->actual += pkt->trans;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900943
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900944 if (pkt->actual < pkt->length)
945 *is_done = 0; /* there are remainder data */
946 else if (is_short)
947 *is_done = 1; /* short packet */
948 else
949 *is_done = !pkt->zero; /* send zero packet? */
950
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900951 usbhs_pipe_running(pipe, !*is_done);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900952
953 usbhsf_dma_stop(pipe, pipe->fifo);
954 usbhsf_dma_unmap(pkt);
955 usbhsf_fifo_unselect(pipe, pipe->fifo);
956
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900957 if (!*is_done) {
958 /* change handler to PIO */
959 pkt->handler = &usbhs_fifo_pio_push_handler;
960 return pkt->handler->try_run(pkt, is_done);
961 }
962
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900963 return 0;
964}
965
Julia Lawallfcb42e22015-12-27 21:50:29 +0100966const struct usbhs_pkt_handle usbhs_fifo_dma_push_handler = {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900967 .prepare = usbhsf_dma_prepare_push,
968 .dma_done = usbhsf_dma_push_done,
969};
970
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700971/*
972 * DMA pop handler
973 */
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900974
975static int usbhsf_dma_prepare_pop_with_rx_irq(struct usbhs_pkt *pkt,
976 int *is_done)
977{
978 return usbhsf_prepare_pop(pkt, is_done);
979}
980
981static int usbhsf_dma_prepare_pop_with_usb_dmac(struct usbhs_pkt *pkt,
982 int *is_done)
983{
984 struct usbhs_pipe *pipe = pkt->pipe;
985 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
986 struct usbhs_fifo *fifo;
987 int ret;
988
989 if (usbhs_pipe_is_busy(pipe))
990 return 0;
991
992 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
993 if ((pkt->length < usbhs_get_dparam(priv, pio_dma_border)) ||
Yoshihiro Shimoda700aa7f2016-08-08 21:50:53 +0900994 usbhs_pipe_type_is(pipe, USB_ENDPOINT_XFER_ISOC))
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900995 goto usbhsf_pio_prepare_pop;
996
997 fifo = usbhsf_get_dma_fifo(priv, pkt);
998 if (!fifo)
999 goto usbhsf_pio_prepare_pop;
1000
1001 if ((uintptr_t)pkt->buf & (USBHS_USB_DMAC_XFER_SIZE - 1))
1002 goto usbhsf_pio_prepare_pop;
1003
1004 usbhs_pipe_config_change_bfre(pipe, 1);
1005
1006 ret = usbhsf_fifo_select(pipe, fifo, 0);
1007 if (ret < 0)
1008 goto usbhsf_pio_prepare_pop;
1009
1010 if (usbhsf_dma_map(pkt) < 0)
1011 goto usbhsf_pio_prepare_pop_unselect;
1012
1013 /* DMA */
1014
1015 /*
1016 * usbhs_fifo_dma_pop_handler :: prepare
1017 * enabled irq to come here.
1018 * but it is no longer needed for DMA. disable it.
1019 */
1020 usbhsf_rx_irq_ctrl(pipe, 0);
1021
1022 pkt->trans = pkt->length;
1023
1024 INIT_WORK(&pkt->work, xfer_work);
1025 schedule_work(&pkt->work);
1026
1027 return 0;
1028
1029usbhsf_pio_prepare_pop_unselect:
1030 usbhsf_fifo_unselect(pipe, fifo);
1031usbhsf_pio_prepare_pop:
1032
1033 /*
1034 * change handler to PIO
1035 */
1036 pkt->handler = &usbhs_fifo_pio_pop_handler;
1037 usbhs_pipe_config_change_bfre(pipe, 0);
1038
1039 return pkt->handler->prepare(pkt, is_done);
1040}
1041
1042static int usbhsf_dma_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
1043{
1044 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1045
1046 if (usbhs_get_dparam(priv, has_usb_dmac))
1047 return usbhsf_dma_prepare_pop_with_usb_dmac(pkt, is_done);
1048 else
1049 return usbhsf_dma_prepare_pop_with_rx_irq(pkt, is_done);
1050}
1051
1052static int usbhsf_dma_try_pop_with_rx_irq(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001053{
1054 struct usbhs_pipe *pipe = pkt->pipe;
1055 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1056 struct usbhs_fifo *fifo;
1057 int len, ret;
1058
1059 if (usbhs_pipe_is_busy(pipe))
1060 return 0;
1061
1062 if (usbhs_pipe_is_dcp(pipe))
1063 goto usbhsf_pio_prepare_pop;
1064
1065 /* get enable DMA fifo */
1066 fifo = usbhsf_get_dma_fifo(priv, pkt);
1067 if (!fifo)
1068 goto usbhsf_pio_prepare_pop;
1069
Kuninori Morimotoc9ae0c92011-10-26 01:21:07 -07001070 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
Kuninori Morimoto9a12d092011-07-03 17:42:19 -07001071 goto usbhsf_pio_prepare_pop;
1072
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001073 ret = usbhsf_fifo_select(pipe, fifo, 0);
1074 if (ret < 0)
1075 goto usbhsf_pio_prepare_pop;
1076
1077 /* use PIO if packet is less than pio_dma_border */
1078 len = usbhsf_fifo_rcv_len(priv, fifo);
1079 len = min(pkt->length - pkt->actual, len);
Kuninori Morimoto77975ee2012-08-22 18:01:13 -07001080 if (len & 0x7) /* 8byte alignment */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001081 goto usbhsf_pio_prepare_pop_unselect;
1082
1083 if (len < usbhs_get_dparam(priv, pio_dma_border))
1084 goto usbhsf_pio_prepare_pop_unselect;
1085
1086 ret = usbhsf_fifo_barrier(priv, fifo);
1087 if (ret < 0)
1088 goto usbhsf_pio_prepare_pop_unselect;
1089
1090 if (usbhsf_dma_map(pkt) < 0)
1091 goto usbhsf_pio_prepare_pop_unselect;
1092
1093 /* DMA */
1094
1095 /*
1096 * usbhs_fifo_dma_pop_handler :: prepare
1097 * enabled irq to come here.
1098 * but it is no longer needed for DMA. disable it.
1099 */
1100 usbhsf_rx_irq_ctrl(pipe, 0);
1101
1102 pkt->trans = len;
1103
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +01001104 INIT_WORK(&pkt->work, xfer_work);
1105 schedule_work(&pkt->work);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001106
1107 return 0;
1108
1109usbhsf_pio_prepare_pop_unselect:
1110 usbhsf_fifo_unselect(pipe, fifo);
1111usbhsf_pio_prepare_pop:
1112
1113 /*
1114 * change handler to PIO
1115 */
1116 pkt->handler = &usbhs_fifo_pio_pop_handler;
1117
1118 return pkt->handler->try_run(pkt, is_done);
1119}
1120
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +09001121static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
1122{
1123 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1124
1125 BUG_ON(usbhs_get_dparam(priv, has_usb_dmac));
1126
1127 return usbhsf_dma_try_pop_with_rx_irq(pkt, is_done);
1128}
1129
1130static int usbhsf_dma_pop_done_with_rx_irq(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001131{
1132 struct usbhs_pipe *pipe = pkt->pipe;
1133 int maxp = usbhs_pipe_get_maxpacket(pipe);
1134
1135 usbhsf_dma_stop(pipe, pipe->fifo);
1136 usbhsf_dma_unmap(pkt);
1137 usbhsf_fifo_unselect(pipe, pipe->fifo);
1138
1139 pkt->actual += pkt->trans;
1140
1141 if ((pkt->actual == pkt->length) || /* receive all data */
1142 (pkt->trans < maxp)) { /* short packet */
1143 *is_done = 1;
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +09001144 usbhs_pipe_running(pipe, 0);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001145 } else {
1146 /* re-enable */
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +09001147 usbhs_pipe_running(pipe, 0);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001148 usbhsf_prepare_pop(pkt, is_done);
1149 }
1150
1151 return 0;
1152}
1153
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +09001154static size_t usbhs_dma_calc_received_size(struct usbhs_pkt *pkt,
1155 struct dma_chan *chan, int dtln)
1156{
1157 struct usbhs_pipe *pipe = pkt->pipe;
1158 struct dma_tx_state state;
1159 size_t received_size;
1160 int maxp = usbhs_pipe_get_maxpacket(pipe);
1161
1162 dmaengine_tx_status(chan, pkt->cookie, &state);
1163 received_size = pkt->length - state.residue;
1164
1165 if (dtln) {
1166 received_size -= USBHS_USB_DMAC_XFER_SIZE;
1167 received_size &= ~(maxp - 1);
1168 received_size += dtln;
1169 }
1170
1171 return received_size;
1172}
1173
1174static int usbhsf_dma_pop_done_with_usb_dmac(struct usbhs_pkt *pkt,
1175 int *is_done)
1176{
1177 struct usbhs_pipe *pipe = pkt->pipe;
1178 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1179 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
1180 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
1181 int rcv_len;
1182
1183 /*
1184 * Since the driver disables rx_irq in DMA mode, the interrupt handler
1185 * cannot the BRDYSTS. So, the function clears it here because the
1186 * driver may use PIO mode next time.
1187 */
1188 usbhs_xxxsts_clear(priv, BRDYSTS, usbhs_pipe_number(pipe));
1189
1190 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
1191 usbhsf_fifo_clear(pipe, fifo);
1192 pkt->actual = usbhs_dma_calc_received_size(pkt, chan, rcv_len);
1193
1194 usbhsf_dma_stop(pipe, fifo);
1195 usbhsf_dma_unmap(pkt);
1196 usbhsf_fifo_unselect(pipe, pipe->fifo);
1197
1198 /* The driver can assume the rx transaction is always "done" */
1199 *is_done = 1;
1200
1201 return 0;
1202}
1203
1204static int usbhsf_dma_pop_done(struct usbhs_pkt *pkt, int *is_done)
1205{
1206 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1207
1208 if (usbhs_get_dparam(priv, has_usb_dmac))
1209 return usbhsf_dma_pop_done_with_usb_dmac(pkt, is_done);
1210 else
1211 return usbhsf_dma_pop_done_with_rx_irq(pkt, is_done);
1212}
1213
Julia Lawallfcb42e22015-12-27 21:50:29 +01001214const struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler = {
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +09001215 .prepare = usbhsf_dma_prepare_pop,
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001216 .try_run = usbhsf_dma_try_pop,
1217 .dma_done = usbhsf_dma_pop_done
1218};
1219
1220/*
1221 * DMA setting
1222 */
1223static bool usbhsf_dma_filter(struct dma_chan *chan, void *param)
1224{
1225 struct sh_dmae_slave *slave = param;
1226
1227 /*
1228 * FIXME
1229 *
1230 * usbhs doesn't recognize id = 0 as valid DMA
1231 */
Guennadi Liakhovetskif19b7e02012-05-09 17:09:19 +02001232 if (0 == slave->shdma_slave.slave_id)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001233 return false;
1234
1235 chan->private = slave;
1236
1237 return true;
1238}
1239
1240static void usbhsf_dma_quit(struct usbhs_priv *priv, struct usbhs_fifo *fifo)
1241{
1242 if (fifo->tx_chan)
1243 dma_release_channel(fifo->tx_chan);
1244 if (fifo->rx_chan)
1245 dma_release_channel(fifo->rx_chan);
1246
1247 fifo->tx_chan = NULL;
1248 fifo->rx_chan = NULL;
1249}
1250
Yoshihiro Shimoda6e3f53a2015-01-19 12:53:16 +09001251static void usbhsf_dma_init_pdev(struct usbhs_fifo *fifo)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001252{
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001253 dma_cap_mask_t mask;
1254
1255 dma_cap_zero(mask);
1256 dma_cap_set(DMA_SLAVE, mask);
1257 fifo->tx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1258 &fifo->tx_slave);
1259
1260 dma_cap_zero(mask);
1261 dma_cap_set(DMA_SLAVE, mask);
1262 fifo->rx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1263 &fifo->rx_slave);
Yoshihiro Shimoda6e3f53a2015-01-19 12:53:16 +09001264}
1265
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001266static void usbhsf_dma_init_dt(struct device *dev, struct usbhs_fifo *fifo,
1267 int channel)
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001268{
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001269 char name[16];
1270
Yoshihiro Shimoda7cc99f12015-04-08 19:42:24 +09001271 /*
1272 * To avoid complex handing for DnFIFOs, the driver uses each
1273 * DnFIFO as TX or RX direction (not bi-direction).
1274 * So, the driver uses odd channels for TX, even channels for RX.
1275 */
1276 snprintf(name, sizeof(name), "ch%d", channel);
1277 if (channel & 1) {
1278 fifo->tx_chan = dma_request_slave_channel_reason(dev, name);
1279 if (IS_ERR(fifo->tx_chan))
1280 fifo->tx_chan = NULL;
1281 } else {
1282 fifo->rx_chan = dma_request_slave_channel_reason(dev, name);
1283 if (IS_ERR(fifo->rx_chan))
1284 fifo->rx_chan = NULL;
1285 }
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001286}
1287
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001288static void usbhsf_dma_init(struct usbhs_priv *priv, struct usbhs_fifo *fifo,
1289 int channel)
Yoshihiro Shimoda6e3f53a2015-01-19 12:53:16 +09001290{
1291 struct device *dev = usbhs_priv_to_dev(priv);
1292
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001293 if (dev->of_node)
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001294 usbhsf_dma_init_dt(dev, fifo, channel);
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001295 else
1296 usbhsf_dma_init_pdev(fifo);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001297
1298 if (fifo->tx_chan || fifo->rx_chan)
Kuninori Morimoto4ce68802011-06-21 09:33:43 +09001299 dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001300 fifo->name,
1301 fifo->tx_chan ? "[TX]" : " ",
1302 fifo->rx_chan ? "[RX]" : " ");
1303}
1304
1305/*
Kuninori Morimotodad67392011-06-06 14:18:28 +09001306 * irq functions
1307 */
1308static int usbhsf_irq_empty(struct usbhs_priv *priv,
1309 struct usbhs_irq_state *irq_state)
1310{
1311 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001312 struct device *dev = usbhs_priv_to_dev(priv);
1313 int i, ret;
1314
1315 if (!irq_state->bempsts) {
1316 dev_err(dev, "debug %s !!\n", __func__);
1317 return -EIO;
1318 }
1319
1320 dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
1321
1322 /*
1323 * search interrupted "pipe"
1324 * not "uep".
1325 */
1326 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1327 if (!(irq_state->bempsts & (1 << i)))
1328 continue;
1329
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001330 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001331 if (ret < 0)
1332 dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
1333 }
1334
1335 return 0;
1336}
1337
1338static int usbhsf_irq_ready(struct usbhs_priv *priv,
1339 struct usbhs_irq_state *irq_state)
1340{
1341 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001342 struct device *dev = usbhs_priv_to_dev(priv);
1343 int i, ret;
1344
1345 if (!irq_state->brdysts) {
1346 dev_err(dev, "debug %s !!\n", __func__);
1347 return -EIO;
1348 }
1349
1350 dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
1351
1352 /*
1353 * search interrupted "pipe"
1354 * not "uep".
1355 */
1356 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1357 if (!(irq_state->brdysts & (1 << i)))
1358 continue;
1359
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001360 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001361 if (ret < 0)
1362 dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
1363 }
1364
1365 return 0;
1366}
1367
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001368static void usbhsf_dma_complete(void *arg)
1369{
1370 struct usbhs_pipe *pipe = arg;
1371 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1372 struct device *dev = usbhs_priv_to_dev(priv);
1373 int ret;
1374
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001375 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_DMA_DONE);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001376 if (ret < 0)
1377 dev_err(dev, "dma_complete run_error %d : %d\n",
1378 usbhs_pipe_number(pipe), ret);
1379}
1380
Yoshihiro Shimodacdeb7942014-11-04 10:05:45 +09001381void usbhs_fifo_clear_dcp(struct usbhs_pipe *pipe)
1382{
1383 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1384 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
1385
1386 /* clear DCP FIFO of transmission */
1387 if (usbhsf_fifo_select(pipe, fifo, 1) < 0)
1388 return;
1389 usbhsf_fifo_clear(pipe, fifo);
1390 usbhsf_fifo_unselect(pipe, fifo);
1391
1392 /* clear DCP FIFO of reception */
1393 if (usbhsf_fifo_select(pipe, fifo, 0) < 0)
1394 return;
1395 usbhsf_fifo_clear(pipe, fifo);
1396 usbhsf_fifo_unselect(pipe, fifo);
1397}
1398
Kuninori Morimotodad67392011-06-06 14:18:28 +09001399/*
1400 * fifo init
1401 */
1402void usbhs_fifo_init(struct usbhs_priv *priv)
1403{
1404 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001405 struct usbhs_fifo *cfifo = usbhsf_get_cfifo(priv);
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001406 struct usbhs_fifo *dfifo;
1407 int i;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001408
1409 mod->irq_empty = usbhsf_irq_empty;
1410 mod->irq_ready = usbhsf_irq_ready;
1411 mod->irq_bempsts = 0;
1412 mod->irq_brdysts = 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001413
1414 cfifo->pipe = NULL;
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001415 usbhs_for_each_dfifo(priv, dfifo, i)
1416 dfifo->pipe = NULL;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001417}
1418
1419void usbhs_fifo_quit(struct usbhs_priv *priv)
1420{
1421 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1422
1423 mod->irq_empty = NULL;
1424 mod->irq_ready = NULL;
1425 mod->irq_bempsts = 0;
1426 mod->irq_brdysts = 0;
1427}
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001428
Yoshihiro Shimoda53e734b2014-11-10 20:02:46 +09001429#define __USBHS_DFIFO_INIT(priv, fifo, channel, fifo_port) \
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001430do { \
1431 fifo = usbhsf_get_dnfifo(priv, channel); \
1432 fifo->name = "D"#channel"FIFO"; \
Yoshihiro Shimoda53e734b2014-11-10 20:02:46 +09001433 fifo->port = fifo_port; \
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001434 fifo->sel = D##channel##FIFOSEL; \
1435 fifo->ctr = D##channel##FIFOCTR; \
1436 fifo->tx_slave.shdma_slave.slave_id = \
1437 usbhs_get_dparam(priv, d##channel##_tx_id); \
1438 fifo->rx_slave.shdma_slave.slave_id = \
1439 usbhs_get_dparam(priv, d##channel##_rx_id); \
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001440 usbhsf_dma_init(priv, fifo, channel); \
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001441} while (0)
1442
Yoshihiro Shimoda53e734b2014-11-10 20:02:46 +09001443#define USBHS_DFIFO_INIT(priv, fifo, channel) \
1444 __USBHS_DFIFO_INIT(priv, fifo, channel, D##channel##FIFO)
1445#define USBHS_DFIFO_INIT_NO_PORT(priv, fifo, channel) \
1446 __USBHS_DFIFO_INIT(priv, fifo, channel, 0)
1447
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001448int usbhs_fifo_probe(struct usbhs_priv *priv)
1449{
1450 struct usbhs_fifo *fifo;
1451
1452 /* CFIFO */
1453 fifo = usbhsf_get_cfifo(priv);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001454 fifo->name = "CFIFO";
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001455 fifo->port = CFIFO;
1456 fifo->sel = CFIFOSEL;
1457 fifo->ctr = CFIFOCTR;
1458
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001459 /* DFIFO */
1460 USBHS_DFIFO_INIT(priv, fifo, 0);
1461 USBHS_DFIFO_INIT(priv, fifo, 1);
Yoshihiro Shimodad3cf6a42014-11-10 20:02:47 +09001462 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 2);
1463 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 3);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001464
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001465 return 0;
1466}
1467
1468void usbhs_fifo_remove(struct usbhs_priv *priv)
1469{
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001470 struct usbhs_fifo *fifo;
1471 int i;
1472
1473 usbhs_for_each_dfifo(priv, fifo, i)
1474 usbhsf_dma_quit(priv, fifo);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001475}