blob: 03cac07f57b509a7c67089e5348e20d2251dbf92 [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{
Masahiro Yamada31faf872016-09-19 01:03:15 +0900103 return list_first_entry_or_null(&pipe->list, struct usbhs_pkt, node);
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900104}
105
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900106static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
107 struct usbhs_fifo *fifo);
108static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
109 struct usbhs_fifo *fifo);
110static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
111 struct usbhs_pkt *pkt);
112#define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1)
113#define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0)
114static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900115struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt)
116{
117 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900118 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900119 unsigned long flags;
120
121 /******************** spin lock ********************/
122 usbhs_lock(priv, flags);
123
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900124 usbhs_pipe_disable(pipe);
125
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900126 if (!pkt)
127 pkt = __usbhsf_pkt_get(pipe);
128
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900129 if (pkt) {
130 struct dma_chan *chan = NULL;
131
132 if (fifo)
133 chan = usbhsf_dma_chan_get(fifo, pkt);
134 if (chan) {
135 dmaengine_terminate_all(chan);
136 usbhsf_fifo_clear(pipe, fifo);
137 usbhsf_dma_unmap(pkt);
138 }
139
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900140 __usbhsf_pkt_del(pkt);
Yoshihiro Shimoda2743e7f2014-08-22 20:14:28 +0900141 }
142
143 if (fifo)
144 usbhsf_fifo_unselect(pipe, fifo);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900145
146 usbhs_unlock(priv, flags);
147 /******************** spin unlock ******************/
148
149 return pkt;
150}
151
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700152enum {
153 USBHSF_PKT_PREPARE,
154 USBHSF_PKT_TRY_RUN,
155 USBHSF_PKT_DMA_DONE,
156};
157
158static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900159{
160 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900161 struct usbhs_pkt *pkt;
162 struct device *dev = usbhs_priv_to_dev(priv);
163 int (*func)(struct usbhs_pkt *pkt, int *is_done);
164 unsigned long flags;
165 int ret = 0;
166 int is_done = 0;
167
168 /******************** spin lock ********************/
169 usbhs_lock(priv, flags);
170
171 pkt = __usbhsf_pkt_get(pipe);
172 if (!pkt)
173 goto __usbhs_pkt_handler_end;
174
175 switch (type) {
176 case USBHSF_PKT_PREPARE:
177 func = pkt->handler->prepare;
178 break;
179 case USBHSF_PKT_TRY_RUN:
180 func = pkt->handler->try_run;
181 break;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900182 case USBHSF_PKT_DMA_DONE:
183 func = pkt->handler->dma_done;
184 break;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900185 default:
Masanari Iida984e8332012-11-01 00:03:51 +0900186 dev_err(dev, "unknown pkt handler\n");
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900187 goto __usbhs_pkt_handler_end;
188 }
189
Yoshihiro Shimoda894f2fc2016-03-10 11:30:14 +0900190 if (likely(func))
191 ret = func(pkt, &is_done);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900192
193 if (is_done)
194 __usbhsf_pkt_del(pkt);
195
196__usbhs_pkt_handler_end:
197 usbhs_unlock(priv, flags);
198 /******************** spin unlock ******************/
199
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900200 if (is_done) {
Kuninori Morimotob3318722011-10-10 22:04:41 -0700201 pkt->done(priv, pkt);
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900202 usbhs_pkt_start(pipe);
203 }
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900204
205 return ret;
206}
207
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700208void usbhs_pkt_start(struct usbhs_pipe *pipe)
209{
210 usbhsf_pkt_handler(pipe, USBHSF_PKT_PREPARE);
211}
212
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900213/*
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900214 * irq enable/disable function
215 */
Kuninori Morimoto3192fcb2012-10-29 00:45:07 -0700216#define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_bempsts, e)
217#define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_brdysts, e)
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900218#define usbhsf_irq_callback_ctrl(pipe, status, enable) \
219 ({ \
220 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
221 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
222 u16 status = (1 << usbhs_pipe_number(pipe)); \
223 if (!mod) \
224 return; \
225 if (enable) \
Kuninori Morimoto3192fcb2012-10-29 00:45:07 -0700226 mod->status |= status; \
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900227 else \
Kuninori Morimoto3192fcb2012-10-29 00:45:07 -0700228 mod->status &= ~status; \
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900229 usbhs_irq_callback_update(priv, mod); \
230 })
231
232static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
233{
234 /*
235 * And DCP pipe can NOT use "ready interrupt" for "send"
236 * it should use "empty" interrupt.
237 * see
238 * "Operation" - "Interrupt Function" - "BRDY Interrupt"
239 *
240 * on the other hand, normal pipe can use "ready interrupt" for "send"
241 * even though it is single/double buffer
242 */
243 if (usbhs_pipe_is_dcp(pipe))
244 usbhsf_irq_empty_ctrl(pipe, enable);
245 else
246 usbhsf_irq_ready_ctrl(pipe, enable);
247}
248
249static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
250{
251 usbhsf_irq_ready_ctrl(pipe, enable);
252}
253
254/*
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900255 * FIFO ctrl
256 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900257static void usbhsf_send_terminator(struct usbhs_pipe *pipe,
258 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900259{
260 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
261
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900262 usbhs_bset(priv, fifo->ctr, BVAL, BVAL);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900263}
264
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900265static int usbhsf_fifo_barrier(struct usbhs_priv *priv,
266 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900267{
268 int timeout = 1024;
269
270 do {
271 /* The FIFO port is accessible */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900272 if (usbhs_read(priv, fifo->ctr) & FRDY)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900273 return 0;
274
275 udelay(10);
276 } while (timeout--);
277
278 return -EBUSY;
279}
280
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900281static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
282 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900283{
284 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Yoshihiro Shimoda61246072017-09-27 18:47:12 +0900285 int ret = 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900286
287 if (!usbhs_pipe_is_dcp(pipe))
Yoshihiro Shimoda61246072017-09-27 18:47:12 +0900288 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900289
Yoshihiro Shimoda61246072017-09-27 18:47:12 +0900290 /*
291 * if non-DCP pipe, this driver should set BCLR when
292 * usbhsf_fifo_barrier() returns 0.
293 */
294 if (!ret)
295 usbhs_write(priv, fifo->ctr, BCLR);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900296}
297
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900298static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv,
299 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900300{
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900301 return usbhs_read(priv, fifo->ctr) & DTLN_MASK;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900302}
303
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900304static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
305 struct usbhs_fifo *fifo)
306{
307 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
308
309 usbhs_pipe_select_fifo(pipe, NULL);
310 usbhs_write(priv, fifo->sel, 0);
311}
312
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900313static int usbhsf_fifo_select(struct usbhs_pipe *pipe,
314 struct usbhs_fifo *fifo,
315 int write)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900316{
317 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
318 struct device *dev = usbhs_priv_to_dev(priv);
319 int timeout = 1024;
320 u16 mask = ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
321 u16 base = usbhs_pipe_number(pipe); /* CURPIPE */
322
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900323 if (usbhs_pipe_is_busy(pipe) ||
324 usbhsf_fifo_is_busy(fifo))
325 return -EBUSY;
326
Kuninori Morimoto92352072011-10-10 22:02:57 -0700327 if (usbhs_pipe_is_dcp(pipe)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900328 base |= (1 == write) << 5; /* ISEL */
329
Kuninori Morimoto92352072011-10-10 22:02:57 -0700330 if (usbhs_mod_is_host(priv))
331 usbhs_dcp_dir_for_host(pipe, write);
332 }
333
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900334 /* "base" will be used below */
Shimoda, Yoshihiro5ea43992012-01-05 15:37:22 +0900335 if (usbhs_get_dparam(priv, has_sudmac) && !usbhsf_is_cfifo(priv, fifo))
336 usbhs_write(priv, fifo->sel, base);
337 else
338 usbhs_write(priv, fifo->sel, base | MBW_32);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900339
340 /* check ISEL and CURPIPE value */
341 while (timeout--) {
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900342 if (base == (mask & usbhs_read(priv, fifo->sel))) {
343 usbhs_pipe_select_fifo(pipe, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900344 return 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900345 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900346 udelay(10);
347 }
348
349 dev_err(dev, "fifo select error\n");
350
351 return -EIO;
352}
353
354/*
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700355 * DCP status stage
356 */
357static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt *pkt, int *is_done)
358{
359 struct usbhs_pipe *pipe = pkt->pipe;
360 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
361 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
362 struct device *dev = usbhs_priv_to_dev(priv);
363 int ret;
364
365 usbhs_pipe_disable(pipe);
366
367 ret = usbhsf_fifo_select(pipe, fifo, 1);
368 if (ret < 0) {
369 dev_err(dev, "%s() faile\n", __func__);
370 return ret;
371 }
372
373 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
374
375 usbhsf_fifo_clear(pipe, fifo);
376 usbhsf_send_terminator(pipe, fifo);
377
378 usbhsf_fifo_unselect(pipe, fifo);
379
380 usbhsf_tx_irq_ctrl(pipe, 1);
381 usbhs_pipe_enable(pipe);
382
383 return ret;
384}
385
386static int usbhs_dcp_dir_switch_to_read(struct usbhs_pkt *pkt, int *is_done)
387{
388 struct usbhs_pipe *pipe = pkt->pipe;
389 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
390 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
391 struct device *dev = usbhs_priv_to_dev(priv);
392 int ret;
393
394 usbhs_pipe_disable(pipe);
395
396 ret = usbhsf_fifo_select(pipe, fifo, 0);
397 if (ret < 0) {
398 dev_err(dev, "%s() fail\n", __func__);
399 return ret;
400 }
401
402 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
403 usbhsf_fifo_clear(pipe, fifo);
404
405 usbhsf_fifo_unselect(pipe, fifo);
406
407 usbhsf_rx_irq_ctrl(pipe, 1);
408 usbhs_pipe_enable(pipe);
409
410 return ret;
411
412}
413
414static int usbhs_dcp_dir_switch_done(struct usbhs_pkt *pkt, int *is_done)
415{
416 struct usbhs_pipe *pipe = pkt->pipe;
417
418 if (pkt->handler == &usbhs_dcp_status_stage_in_handler)
419 usbhsf_tx_irq_ctrl(pipe, 0);
420 else
421 usbhsf_rx_irq_ctrl(pipe, 0);
422
423 pkt->actual = pkt->length;
424 *is_done = 1;
425
426 return 0;
427}
428
Julia Lawallfcb42e22015-12-27 21:50:29 +0100429const struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700430 .prepare = usbhs_dcp_dir_switch_to_write,
431 .try_run = usbhs_dcp_dir_switch_done,
432};
433
Julia Lawallfcb42e22015-12-27 21:50:29 +0100434const struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700435 .prepare = usbhs_dcp_dir_switch_to_read,
436 .try_run = usbhs_dcp_dir_switch_done,
437};
438
439/*
440 * DCP data stage (push)
441 */
442static int usbhsf_dcp_data_stage_try_push(struct usbhs_pkt *pkt, int *is_done)
443{
444 struct usbhs_pipe *pipe = pkt->pipe;
445
446 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
447
448 /*
449 * change handler to PIO push
450 */
451 pkt->handler = &usbhs_fifo_pio_push_handler;
452
453 return pkt->handler->prepare(pkt, is_done);
454}
455
Julia Lawallfcb42e22015-12-27 21:50:29 +0100456const struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700457 .prepare = usbhsf_dcp_data_stage_try_push,
458};
459
460/*
461 * DCP data stage (pop)
462 */
463static int usbhsf_dcp_data_stage_prepare_pop(struct usbhs_pkt *pkt,
464 int *is_done)
465{
466 struct usbhs_pipe *pipe = pkt->pipe;
467 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
468 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
469
470 if (usbhs_pipe_is_busy(pipe))
471 return 0;
472
473 /*
474 * prepare pop for DCP should
475 * - change DCP direction,
476 * - clear fifo
477 * - DATA1
478 */
479 usbhs_pipe_disable(pipe);
480
481 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
482
483 usbhsf_fifo_select(pipe, fifo, 0);
484 usbhsf_fifo_clear(pipe, fifo);
485 usbhsf_fifo_unselect(pipe, fifo);
486
487 /*
488 * change handler to PIO pop
489 */
490 pkt->handler = &usbhs_fifo_pio_pop_handler;
491
492 return pkt->handler->prepare(pkt, is_done);
493}
494
Julia Lawallfcb42e22015-12-27 21:50:29 +0100495const struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler = {
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700496 .prepare = usbhsf_dcp_data_stage_prepare_pop,
497};
498
499/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700500 * PIO push handler
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900501 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900502static int usbhsf_pio_try_push(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900503{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900504 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900505 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900506 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900507 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
508 void __iomem *addr = priv->base + fifo->port;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900509 u8 *buf;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900510 int maxp = usbhs_pipe_get_maxpacket(pipe);
511 int total_len;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900512 int i, ret, len;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900513 int is_short;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900514
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800515 usbhs_pipe_data_sequence(pipe, pkt->sequence);
516 pkt->sequence = -1; /* -1 sequence will be ignored */
517
Kuninori Morimoto1c90ee02012-11-06 16:15:09 -0800518 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
519
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900520 ret = usbhsf_fifo_select(pipe, fifo, 1);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900521 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900522 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900523
Kuninori Morimotodad67392011-06-06 14:18:28 +0900524 ret = usbhs_pipe_is_accessible(pipe);
Kuninori Morimoto4ef85e02011-07-03 17:42:47 -0700525 if (ret < 0) {
526 /* inaccessible pipe is not an error */
527 ret = 0;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900528 goto usbhs_fifo_write_busy;
Kuninori Morimoto4ef85e02011-07-03 17:42:47 -0700529 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900530
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900531 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900532 if (ret < 0)
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900533 goto usbhs_fifo_write_busy;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900534
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900535 buf = pkt->buf + pkt->actual;
536 len = pkt->length - pkt->actual;
537 len = min(len, maxp);
538 total_len = len;
539 is_short = total_len < maxp;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900540
541 /*
542 * FIXME
543 *
544 * 32-bit access only
545 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900546 if (len >= 4 && !((unsigned long)buf & 0x03)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900547 iowrite32_rep(addr, buf, len / 4);
548 len %= 4;
549 buf += total_len - len;
550 }
551
552 /* the rest operation */
553 for (i = 0; i < len; i++)
554 iowrite8(buf[i], addr + (0x03 - (i & 0x03)));
555
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900556 /*
557 * variable update
558 */
559 pkt->actual += total_len;
560
561 if (pkt->actual < pkt->length)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900562 *is_done = 0; /* there are remainder data */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900563 else if (is_short)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900564 *is_done = 1; /* short packet */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900565 else
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900566 *is_done = !pkt->zero; /* send zero packet ? */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900567
568 /*
569 * pipe/irq handling
570 */
571 if (is_short)
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900572 usbhsf_send_terminator(pipe, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900573
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900574 usbhsf_tx_irq_ctrl(pipe, !*is_done);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900575 usbhs_pipe_running(pipe, !*is_done);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900576 usbhs_pipe_enable(pipe);
577
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900578 dev_dbg(dev, " send %d (%d/ %d/ %d/ %d)\n",
579 usbhs_pipe_number(pipe),
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900580 pkt->length, pkt->actual, *is_done, pkt->zero);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900581
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900582 usbhsf_fifo_unselect(pipe, fifo);
583
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900584 return 0;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900585
586usbhs_fifo_write_busy:
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900587 usbhsf_fifo_unselect(pipe, fifo);
588
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900589 /*
590 * pipe is busy.
591 * retry in interrupt
592 */
593 usbhsf_tx_irq_ctrl(pipe, 1);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900594 usbhs_pipe_running(pipe, 1);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900595
596 return ret;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900597}
598
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900599static int usbhsf_pio_prepare_push(struct usbhs_pkt *pkt, int *is_done)
600{
601 if (usbhs_pipe_is_running(pkt->pipe))
602 return 0;
603
604 return usbhsf_pio_try_push(pkt, is_done);
605}
606
Julia Lawallfcb42e22015-12-27 21:50:29 +0100607const struct usbhs_pkt_handle usbhs_fifo_pio_push_handler = {
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900608 .prepare = usbhsf_pio_prepare_push,
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900609 .try_run = usbhsf_pio_try_push,
Kuninori Morimotodad67392011-06-06 14:18:28 +0900610};
611
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700612/*
613 * PIO pop handler
614 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900615static int usbhsf_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900616{
Kuninori Morimotodad67392011-06-06 14:18:28 +0900617 struct usbhs_pipe *pipe = pkt->pipe;
Kazuya Mizuguchie73d42f2015-05-26 20:13:42 +0900618 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
619 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900620
621 if (usbhs_pipe_is_busy(pipe))
622 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900623
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900624 if (usbhs_pipe_is_running(pipe))
625 return 0;
626
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900627 /*
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900628 * pipe enable to prepare packet receive
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900629 */
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800630 usbhs_pipe_data_sequence(pipe, pkt->sequence);
631 pkt->sequence = -1; /* -1 sequence will be ignored */
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900632
Kazuya Mizuguchie73d42f2015-05-26 20:13:42 +0900633 if (usbhs_pipe_is_dcp(pipe))
634 usbhsf_fifo_clear(pipe, fifo);
635
Kuninori Morimoto1c90ee02012-11-06 16:15:09 -0800636 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->length);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900637 usbhs_pipe_enable(pipe);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900638 usbhs_pipe_running(pipe, 1);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900639 usbhsf_rx_irq_ctrl(pipe, 1);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900640
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900641 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900642}
643
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900644static int usbhsf_pio_try_pop(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900645{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900646 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900647 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900648 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900649 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
650 void __iomem *addr = priv->base + fifo->port;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900651 u8 *buf;
652 u32 data = 0;
653 int maxp = usbhs_pipe_get_maxpacket(pipe);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900654 int rcv_len, len;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900655 int i, ret;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900656 int total_len = 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900657
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900658 ret = usbhsf_fifo_select(pipe, fifo, 0);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900659 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900660 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900661
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900662 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900663 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900664 goto usbhs_fifo_read_busy;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900665
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900666 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900667
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900668 buf = pkt->buf + pkt->actual;
669 len = pkt->length - pkt->actual;
670 len = min(len, rcv_len);
671 total_len = len;
672
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900673 /*
Kuninori Morimoto6ff5d092011-10-10 22:05:51 -0700674 * update actual length first here to decide disable pipe.
675 * if this pipe keeps BUF status and all data were popped,
676 * then, next interrupt/token will be issued again
677 */
678 pkt->actual += total_len;
679
680 if ((pkt->actual == pkt->length) || /* receive all data */
681 (total_len < maxp)) { /* short packet */
682 *is_done = 1;
683 usbhsf_rx_irq_ctrl(pipe, 0);
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900684 usbhs_pipe_running(pipe, 0);
Yoshihiro Shimoda93fb9122015-05-26 20:13:43 +0900685 /*
686 * If function mode, since this controller is possible to enter
687 * Control Write status stage at this timing, this driver
688 * should not disable the pipe. If such a case happens, this
689 * controller is not able to complete the status stage.
690 */
691 if (!usbhs_mod_is_host(priv) && !usbhs_pipe_is_dcp(pipe))
692 usbhs_pipe_disable(pipe); /* disable pipe first */
Kuninori Morimoto6ff5d092011-10-10 22:05:51 -0700693 }
694
695 /*
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900696 * Buffer clear if Zero-Length packet
697 *
698 * see
699 * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
700 */
701 if (0 == rcv_len) {
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800702 pkt->zero = 1;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900703 usbhsf_fifo_clear(pipe, fifo);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900704 goto usbhs_fifo_read_end;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900705 }
706
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900707 /*
708 * FIXME
709 *
710 * 32-bit access only
711 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900712 if (len >= 4 && !((unsigned long)buf & 0x03)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900713 ioread32_rep(addr, buf, len / 4);
714 len %= 4;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900715 buf += total_len - len;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900716 }
717
718 /* the rest operation */
719 for (i = 0; i < len; i++) {
720 if (!(i & 0x03))
721 data = ioread32(addr);
722
723 buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
724 }
725
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900726usbhs_fifo_read_end:
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900727 dev_dbg(dev, " recv %d (%d/ %d/ %d/ %d)\n",
728 usbhs_pipe_number(pipe),
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900729 pkt->length, pkt->actual, *is_done, pkt->zero);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900730
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900731usbhs_fifo_read_busy:
732 usbhsf_fifo_unselect(pipe, fifo);
733
734 return ret;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900735}
Kuninori Morimotodad67392011-06-06 14:18:28 +0900736
Julia Lawallfcb42e22015-12-27 21:50:29 +0100737const struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler = {
Kuninori Morimotodad67392011-06-06 14:18:28 +0900738 .prepare = usbhsf_prepare_pop,
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900739 .try_run = usbhsf_pio_try_pop,
Kuninori Morimotodad67392011-06-06 14:18:28 +0900740};
741
742/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700743 * DCP ctrol statge handler
Kuninori Morimotodad67392011-06-06 14:18:28 +0900744 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900745static int usbhsf_ctrl_stage_end(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotodad67392011-06-06 14:18:28 +0900746{
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900747 usbhs_dcp_control_transfer_done(pkt->pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900748
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900749 *is_done = 1;
Kuninori Morimotodad67392011-06-06 14:18:28 +0900750
751 return 0;
752}
753
Julia Lawallfcb42e22015-12-27 21:50:29 +0100754const struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler = {
Kuninori Morimotodad67392011-06-06 14:18:28 +0900755 .prepare = usbhsf_ctrl_stage_end,
756 .try_run = usbhsf_ctrl_stage_end,
757};
758
759/*
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900760 * DMA fifo functions
761 */
762static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
763 struct usbhs_pkt *pkt)
764{
765 if (&usbhs_fifo_dma_push_handler == pkt->handler)
766 return fifo->tx_chan;
767
768 if (&usbhs_fifo_dma_pop_handler == pkt->handler)
769 return fifo->rx_chan;
770
771 return NULL;
772}
773
774static struct usbhs_fifo *usbhsf_get_dma_fifo(struct usbhs_priv *priv,
775 struct usbhs_pkt *pkt)
776{
777 struct usbhs_fifo *fifo;
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +0900778 int i;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900779
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +0900780 usbhs_for_each_dfifo(priv, fifo, i) {
781 if (usbhsf_dma_chan_get(fifo, pkt) &&
782 !usbhsf_fifo_is_busy(fifo))
783 return fifo;
784 }
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900785
786 return NULL;
787}
788
789#define usbhsf_dma_start(p, f) __usbhsf_dma_ctrl(p, f, DREQE)
790#define usbhsf_dma_stop(p, f) __usbhsf_dma_ctrl(p, f, 0)
791static void __usbhsf_dma_ctrl(struct usbhs_pipe *pipe,
792 struct usbhs_fifo *fifo,
793 u16 dreqe)
794{
795 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
796
797 usbhs_bset(priv, fifo->sel, DREQE, dreqe);
798}
799
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900800static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
801{
802 struct usbhs_pipe *pipe = pkt->pipe;
803 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
804 struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
Yoshihiro Shimodac3cdcac2016-04-18 16:53:41 +0900805 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
806 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900807
Yoshihiro Shimodac3cdcac2016-04-18 16:53:41 +0900808 return info->dma_map_ctrl(chan->device->dev, pkt, map);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900809}
810
811static void usbhsf_dma_complete(void *arg);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +0100812static void xfer_work(struct work_struct *work)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900813{
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +0100814 struct usbhs_pkt *pkt = container_of(work, struct usbhs_pkt, work);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900815 struct usbhs_pipe *pipe = pkt->pipe;
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900816 struct usbhs_fifo *fifo;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900817 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900818 struct dma_async_tx_descriptor *desc;
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900819 struct dma_chan *chan;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900820 struct device *dev = usbhs_priv_to_dev(priv);
Vinod Koul55ba4e52011-10-14 21:57:58 +0530821 enum dma_transfer_direction dir;
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900822 unsigned long flags;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900823
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900824 usbhs_lock(priv, flags);
825 fifo = usbhs_pipe_to_fifo(pipe);
826 if (!fifo)
827 goto xfer_work_end;
828
829 chan = usbhsf_dma_chan_get(fifo, pkt);
Vinod Koul55ba4e52011-10-14 21:57:58 +0530830 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_DEV_TO_MEM : DMA_MEM_TO_DEV;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900831
Kuninori Morimoto2f0de9d2012-07-08 23:10:28 -0700832 desc = dmaengine_prep_slave_single(chan, pkt->dma + pkt->actual,
833 pkt->trans, dir,
Alexandre Bounine16052822012-03-08 16:11:18 -0500834 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900835 if (!desc)
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900836 goto xfer_work_end;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900837
838 desc->callback = usbhsf_dma_complete;
839 desc->callback_param = pipe;
840
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900841 pkt->cookie = dmaengine_submit(desc);
842 if (pkt->cookie < 0) {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900843 dev_err(dev, "Failed to submit dma descriptor\n");
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900844 goto xfer_work_end;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900845 }
846
847 dev_dbg(dev, " %s %d (%d/ %d)\n",
848 fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero);
849
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900850 usbhs_pipe_running(pipe, 1);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900851 usbhsf_dma_start(pipe, fifo);
Yoshihiro Shimoda9b53d9a2015-03-12 15:35:19 +0900852 usbhs_pipe_set_trans_count_if_bulk(pipe, pkt->trans);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900853 dma_async_issue_pending(chan);
Yoshihiro Shimoda9b53d9a2015-03-12 15:35:19 +0900854 usbhs_pipe_enable(pipe);
Yoshihiro Shimoda4fdef692016-06-08 16:32:49 +0900855
856xfer_work_end:
857 usbhs_unlock(priv, flags);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900858}
859
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700860/*
861 * DMA push handler
862 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900863static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done)
864{
865 struct usbhs_pipe *pipe = pkt->pipe;
866 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
867 struct usbhs_fifo *fifo;
868 int len = pkt->length - pkt->actual;
869 int ret;
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900870 uintptr_t align_mask;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900871
872 if (usbhs_pipe_is_busy(pipe))
873 return 0;
874
875 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
876 if ((len < usbhs_get_dparam(priv, pio_dma_border)) ||
Yoshihiro Shimoda700aa7f2016-08-08 21:50:53 +0900877 usbhs_pipe_type_is(pipe, USB_ENDPOINT_XFER_ISOC))
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900878 goto usbhsf_pio_prepare_push;
879
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900880 /* check data length if this driver don't use USB-DMAC */
881 if (!usbhs_get_dparam(priv, has_usb_dmac) && len & 0x7)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900882 goto usbhsf_pio_prepare_push;
883
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900884 /* check buffer alignment */
885 align_mask = usbhs_get_dparam(priv, has_usb_dmac) ?
886 USBHS_USB_DMAC_XFER_SIZE - 1 : 0x7;
887 if ((uintptr_t)(pkt->buf + pkt->actual) & align_mask)
Kuninori Morimoto9a12d092011-07-03 17:42:19 -0700888 goto usbhsf_pio_prepare_push;
889
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900890 /* return at this time if the pipe is running */
891 if (usbhs_pipe_is_running(pipe))
892 return 0;
893
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900894 /* get enable DMA fifo */
895 fifo = usbhsf_get_dma_fifo(priv, pkt);
896 if (!fifo)
897 goto usbhsf_pio_prepare_push;
898
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900899 ret = usbhsf_fifo_select(pipe, fifo, 0);
900 if (ret < 0)
Yoshihiro Shimodae789ece2016-04-18 16:53:40 +0900901 goto usbhsf_pio_prepare_push;
902
903 if (usbhsf_dma_map(pkt) < 0)
904 goto usbhsf_pio_prepare_push_unselect;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900905
906 pkt->trans = len;
907
Yoshihiro Shimoda64908652016-03-10 11:30:15 +0900908 usbhsf_tx_irq_ctrl(pipe, 0);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +0100909 INIT_WORK(&pkt->work, xfer_work);
910 schedule_work(&pkt->work);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900911
912 return 0;
913
Yoshihiro Shimodae789ece2016-04-18 16:53:40 +0900914usbhsf_pio_prepare_push_unselect:
915 usbhsf_fifo_unselect(pipe, fifo);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900916usbhsf_pio_prepare_push:
917 /*
918 * change handler to PIO
919 */
920 pkt->handler = &usbhs_fifo_pio_push_handler;
921
922 return pkt->handler->prepare(pkt, is_done);
923}
924
925static int usbhsf_dma_push_done(struct usbhs_pkt *pkt, int *is_done)
926{
927 struct usbhs_pipe *pipe = pkt->pipe;
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900928 int is_short = pkt->trans % usbhs_pipe_get_maxpacket(pipe);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900929
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900930 pkt->actual += pkt->trans;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900931
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900932 if (pkt->actual < pkt->length)
933 *is_done = 0; /* there are remainder data */
934 else if (is_short)
935 *is_done = 1; /* short packet */
936 else
937 *is_done = !pkt->zero; /* send zero packet? */
938
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +0900939 usbhs_pipe_running(pipe, !*is_done);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900940
941 usbhsf_dma_stop(pipe, pipe->fifo);
942 usbhsf_dma_unmap(pkt);
943 usbhsf_fifo_unselect(pipe, pipe->fifo);
944
Yoshihiro Shimodac0ed8b22014-08-22 20:14:10 +0900945 if (!*is_done) {
946 /* change handler to PIO */
947 pkt->handler = &usbhs_fifo_pio_push_handler;
948 return pkt->handler->try_run(pkt, is_done);
949 }
950
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900951 return 0;
952}
953
Julia Lawallfcb42e22015-12-27 21:50:29 +0100954const struct usbhs_pkt_handle usbhs_fifo_dma_push_handler = {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900955 .prepare = usbhsf_dma_prepare_push,
956 .dma_done = usbhsf_dma_push_done,
957};
958
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700959/*
960 * DMA pop handler
961 */
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900962
963static int usbhsf_dma_prepare_pop_with_rx_irq(struct usbhs_pkt *pkt,
964 int *is_done)
965{
966 return usbhsf_prepare_pop(pkt, is_done);
967}
968
969static int usbhsf_dma_prepare_pop_with_usb_dmac(struct usbhs_pkt *pkt,
970 int *is_done)
971{
972 struct usbhs_pipe *pipe = pkt->pipe;
973 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
974 struct usbhs_fifo *fifo;
975 int ret;
976
977 if (usbhs_pipe_is_busy(pipe))
978 return 0;
979
980 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
981 if ((pkt->length < usbhs_get_dparam(priv, pio_dma_border)) ||
Yoshihiro Shimoda700aa7f2016-08-08 21:50:53 +0900982 usbhs_pipe_type_is(pipe, USB_ENDPOINT_XFER_ISOC))
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +0900983 goto usbhsf_pio_prepare_pop;
984
985 fifo = usbhsf_get_dma_fifo(priv, pkt);
986 if (!fifo)
987 goto usbhsf_pio_prepare_pop;
988
989 if ((uintptr_t)pkt->buf & (USBHS_USB_DMAC_XFER_SIZE - 1))
990 goto usbhsf_pio_prepare_pop;
991
992 usbhs_pipe_config_change_bfre(pipe, 1);
993
994 ret = usbhsf_fifo_select(pipe, fifo, 0);
995 if (ret < 0)
996 goto usbhsf_pio_prepare_pop;
997
998 if (usbhsf_dma_map(pkt) < 0)
999 goto usbhsf_pio_prepare_pop_unselect;
1000
1001 /* DMA */
1002
1003 /*
1004 * usbhs_fifo_dma_pop_handler :: prepare
1005 * enabled irq to come here.
1006 * but it is no longer needed for DMA. disable it.
1007 */
1008 usbhsf_rx_irq_ctrl(pipe, 0);
1009
1010 pkt->trans = pkt->length;
1011
1012 INIT_WORK(&pkt->work, xfer_work);
1013 schedule_work(&pkt->work);
1014
1015 return 0;
1016
1017usbhsf_pio_prepare_pop_unselect:
1018 usbhsf_fifo_unselect(pipe, fifo);
1019usbhsf_pio_prepare_pop:
1020
1021 /*
1022 * change handler to PIO
1023 */
1024 pkt->handler = &usbhs_fifo_pio_pop_handler;
1025 usbhs_pipe_config_change_bfre(pipe, 0);
1026
1027 return pkt->handler->prepare(pkt, is_done);
1028}
1029
1030static int usbhsf_dma_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
1031{
1032 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1033
1034 if (usbhs_get_dparam(priv, has_usb_dmac))
1035 return usbhsf_dma_prepare_pop_with_usb_dmac(pkt, is_done);
1036 else
1037 return usbhsf_dma_prepare_pop_with_rx_irq(pkt, is_done);
1038}
1039
1040static int usbhsf_dma_try_pop_with_rx_irq(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001041{
1042 struct usbhs_pipe *pipe = pkt->pipe;
1043 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1044 struct usbhs_fifo *fifo;
1045 int len, ret;
1046
1047 if (usbhs_pipe_is_busy(pipe))
1048 return 0;
1049
1050 if (usbhs_pipe_is_dcp(pipe))
1051 goto usbhsf_pio_prepare_pop;
1052
1053 /* get enable DMA fifo */
1054 fifo = usbhsf_get_dma_fifo(priv, pkt);
1055 if (!fifo)
1056 goto usbhsf_pio_prepare_pop;
1057
Kuninori Morimotoc9ae0c92011-10-26 01:21:07 -07001058 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
Kuninori Morimoto9a12d092011-07-03 17:42:19 -07001059 goto usbhsf_pio_prepare_pop;
1060
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001061 ret = usbhsf_fifo_select(pipe, fifo, 0);
1062 if (ret < 0)
1063 goto usbhsf_pio_prepare_pop;
1064
1065 /* use PIO if packet is less than pio_dma_border */
1066 len = usbhsf_fifo_rcv_len(priv, fifo);
1067 len = min(pkt->length - pkt->actual, len);
Kuninori Morimoto77975ee2012-08-22 18:01:13 -07001068 if (len & 0x7) /* 8byte alignment */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001069 goto usbhsf_pio_prepare_pop_unselect;
1070
1071 if (len < usbhs_get_dparam(priv, pio_dma_border))
1072 goto usbhsf_pio_prepare_pop_unselect;
1073
1074 ret = usbhsf_fifo_barrier(priv, fifo);
1075 if (ret < 0)
1076 goto usbhsf_pio_prepare_pop_unselect;
1077
1078 if (usbhsf_dma_map(pkt) < 0)
1079 goto usbhsf_pio_prepare_pop_unselect;
1080
1081 /* DMA */
1082
1083 /*
1084 * usbhs_fifo_dma_pop_handler :: prepare
1085 * enabled irq to come here.
1086 * but it is no longer needed for DMA. disable it.
1087 */
1088 usbhsf_rx_irq_ctrl(pipe, 0);
1089
1090 pkt->trans = len;
1091
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +01001092 INIT_WORK(&pkt->work, xfer_work);
1093 schedule_work(&pkt->work);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001094
1095 return 0;
1096
1097usbhsf_pio_prepare_pop_unselect:
1098 usbhsf_fifo_unselect(pipe, fifo);
1099usbhsf_pio_prepare_pop:
1100
1101 /*
1102 * change handler to PIO
1103 */
1104 pkt->handler = &usbhs_fifo_pio_pop_handler;
1105
1106 return pkt->handler->try_run(pkt, is_done);
1107}
1108
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +09001109static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
1110{
1111 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1112
1113 BUG_ON(usbhs_get_dparam(priv, has_usb_dmac));
1114
1115 return usbhsf_dma_try_pop_with_rx_irq(pkt, is_done);
1116}
1117
1118static int usbhsf_dma_pop_done_with_rx_irq(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001119{
1120 struct usbhs_pipe *pipe = pkt->pipe;
1121 int maxp = usbhs_pipe_get_maxpacket(pipe);
1122
1123 usbhsf_dma_stop(pipe, pipe->fifo);
1124 usbhsf_dma_unmap(pkt);
1125 usbhsf_fifo_unselect(pipe, pipe->fifo);
1126
1127 pkt->actual += pkt->trans;
1128
1129 if ((pkt->actual == pkt->length) || /* receive all data */
1130 (pkt->trans < maxp)) { /* short packet */
1131 *is_done = 1;
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +09001132 usbhs_pipe_running(pipe, 0);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001133 } else {
1134 /* re-enable */
Yoshihiro Shimoda8355b2b2014-08-22 20:13:50 +09001135 usbhs_pipe_running(pipe, 0);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001136 usbhsf_prepare_pop(pkt, is_done);
1137 }
1138
1139 return 0;
1140}
1141
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +09001142static size_t usbhs_dma_calc_received_size(struct usbhs_pkt *pkt,
1143 struct dma_chan *chan, int dtln)
1144{
1145 struct usbhs_pipe *pipe = pkt->pipe;
1146 struct dma_tx_state state;
1147 size_t received_size;
1148 int maxp = usbhs_pipe_get_maxpacket(pipe);
1149
1150 dmaengine_tx_status(chan, pkt->cookie, &state);
1151 received_size = pkt->length - state.residue;
1152
1153 if (dtln) {
1154 received_size -= USBHS_USB_DMAC_XFER_SIZE;
1155 received_size &= ~(maxp - 1);
1156 received_size += dtln;
1157 }
1158
1159 return received_size;
1160}
1161
1162static int usbhsf_dma_pop_done_with_usb_dmac(struct usbhs_pkt *pkt,
1163 int *is_done)
1164{
1165 struct usbhs_pipe *pipe = pkt->pipe;
1166 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1167 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
1168 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
1169 int rcv_len;
1170
1171 /*
1172 * Since the driver disables rx_irq in DMA mode, the interrupt handler
1173 * cannot the BRDYSTS. So, the function clears it here because the
1174 * driver may use PIO mode next time.
1175 */
1176 usbhs_xxxsts_clear(priv, BRDYSTS, usbhs_pipe_number(pipe));
1177
1178 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
1179 usbhsf_fifo_clear(pipe, fifo);
1180 pkt->actual = usbhs_dma_calc_received_size(pkt, chan, rcv_len);
1181
1182 usbhsf_dma_stop(pipe, fifo);
1183 usbhsf_dma_unmap(pkt);
1184 usbhsf_fifo_unselect(pipe, pipe->fifo);
1185
1186 /* The driver can assume the rx transaction is always "done" */
1187 *is_done = 1;
1188
1189 return 0;
1190}
1191
1192static int usbhsf_dma_pop_done(struct usbhs_pkt *pkt, int *is_done)
1193{
1194 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
1195
1196 if (usbhs_get_dparam(priv, has_usb_dmac))
1197 return usbhsf_dma_pop_done_with_usb_dmac(pkt, is_done);
1198 else
1199 return usbhsf_dma_pop_done_with_rx_irq(pkt, is_done);
1200}
1201
Julia Lawallfcb42e22015-12-27 21:50:29 +01001202const struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler = {
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +09001203 .prepare = usbhsf_dma_prepare_pop,
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001204 .try_run = usbhsf_dma_try_pop,
1205 .dma_done = usbhsf_dma_pop_done
1206};
1207
1208/*
1209 * DMA setting
1210 */
1211static bool usbhsf_dma_filter(struct dma_chan *chan, void *param)
1212{
1213 struct sh_dmae_slave *slave = param;
1214
1215 /*
1216 * FIXME
1217 *
1218 * usbhs doesn't recognize id = 0 as valid DMA
1219 */
Guennadi Liakhovetskif19b7e02012-05-09 17:09:19 +02001220 if (0 == slave->shdma_slave.slave_id)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001221 return false;
1222
1223 chan->private = slave;
1224
1225 return true;
1226}
1227
1228static void usbhsf_dma_quit(struct usbhs_priv *priv, struct usbhs_fifo *fifo)
1229{
1230 if (fifo->tx_chan)
1231 dma_release_channel(fifo->tx_chan);
1232 if (fifo->rx_chan)
1233 dma_release_channel(fifo->rx_chan);
1234
1235 fifo->tx_chan = NULL;
1236 fifo->rx_chan = NULL;
1237}
1238
Yoshihiro Shimoda6e3f53a2015-01-19 12:53:16 +09001239static void usbhsf_dma_init_pdev(struct usbhs_fifo *fifo)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001240{
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001241 dma_cap_mask_t mask;
1242
1243 dma_cap_zero(mask);
1244 dma_cap_set(DMA_SLAVE, mask);
1245 fifo->tx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1246 &fifo->tx_slave);
1247
1248 dma_cap_zero(mask);
1249 dma_cap_set(DMA_SLAVE, mask);
1250 fifo->rx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1251 &fifo->rx_slave);
Yoshihiro Shimoda6e3f53a2015-01-19 12:53:16 +09001252}
1253
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001254static void usbhsf_dma_init_dt(struct device *dev, struct usbhs_fifo *fifo,
1255 int channel)
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001256{
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001257 char name[16];
1258
Yoshihiro Shimoda7cc99f12015-04-08 19:42:24 +09001259 /*
1260 * To avoid complex handing for DnFIFOs, the driver uses each
1261 * DnFIFO as TX or RX direction (not bi-direction).
1262 * So, the driver uses odd channels for TX, even channels for RX.
1263 */
1264 snprintf(name, sizeof(name), "ch%d", channel);
1265 if (channel & 1) {
1266 fifo->tx_chan = dma_request_slave_channel_reason(dev, name);
1267 if (IS_ERR(fifo->tx_chan))
1268 fifo->tx_chan = NULL;
1269 } else {
1270 fifo->rx_chan = dma_request_slave_channel_reason(dev, name);
1271 if (IS_ERR(fifo->rx_chan))
1272 fifo->rx_chan = NULL;
1273 }
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001274}
1275
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001276static void usbhsf_dma_init(struct usbhs_priv *priv, struct usbhs_fifo *fifo,
1277 int channel)
Yoshihiro Shimoda6e3f53a2015-01-19 12:53:16 +09001278{
1279 struct device *dev = usbhs_priv_to_dev(priv);
1280
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001281 if (dev->of_node)
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001282 usbhsf_dma_init_dt(dev, fifo, channel);
Yoshihiro Shimodaabd2dbf2015-01-19 12:53:17 +09001283 else
1284 usbhsf_dma_init_pdev(fifo);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001285
1286 if (fifo->tx_chan || fifo->rx_chan)
Kuninori Morimoto4ce68802011-06-21 09:33:43 +09001287 dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001288 fifo->name,
1289 fifo->tx_chan ? "[TX]" : " ",
1290 fifo->rx_chan ? "[RX]" : " ");
1291}
1292
1293/*
Kuninori Morimotodad67392011-06-06 14:18:28 +09001294 * irq functions
1295 */
1296static int usbhsf_irq_empty(struct usbhs_priv *priv,
1297 struct usbhs_irq_state *irq_state)
1298{
1299 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001300 struct device *dev = usbhs_priv_to_dev(priv);
1301 int i, ret;
1302
1303 if (!irq_state->bempsts) {
1304 dev_err(dev, "debug %s !!\n", __func__);
1305 return -EIO;
1306 }
1307
1308 dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
1309
1310 /*
1311 * search interrupted "pipe"
1312 * not "uep".
1313 */
1314 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1315 if (!(irq_state->bempsts & (1 << i)))
1316 continue;
1317
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001318 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001319 if (ret < 0)
1320 dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
1321 }
1322
1323 return 0;
1324}
1325
1326static int usbhsf_irq_ready(struct usbhs_priv *priv,
1327 struct usbhs_irq_state *irq_state)
1328{
1329 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001330 struct device *dev = usbhs_priv_to_dev(priv);
1331 int i, ret;
1332
1333 if (!irq_state->brdysts) {
1334 dev_err(dev, "debug %s !!\n", __func__);
1335 return -EIO;
1336 }
1337
1338 dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
1339
1340 /*
1341 * search interrupted "pipe"
1342 * not "uep".
1343 */
1344 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1345 if (!(irq_state->brdysts & (1 << i)))
1346 continue;
1347
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001348 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001349 if (ret < 0)
1350 dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
1351 }
1352
1353 return 0;
1354}
1355
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001356static void usbhsf_dma_complete(void *arg)
1357{
1358 struct usbhs_pipe *pipe = arg;
1359 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1360 struct device *dev = usbhs_priv_to_dev(priv);
1361 int ret;
1362
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001363 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_DMA_DONE);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001364 if (ret < 0)
1365 dev_err(dev, "dma_complete run_error %d : %d\n",
1366 usbhs_pipe_number(pipe), ret);
1367}
1368
Yoshihiro Shimodacdeb7942014-11-04 10:05:45 +09001369void usbhs_fifo_clear_dcp(struct usbhs_pipe *pipe)
1370{
1371 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1372 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
1373
1374 /* clear DCP FIFO of transmission */
1375 if (usbhsf_fifo_select(pipe, fifo, 1) < 0)
1376 return;
1377 usbhsf_fifo_clear(pipe, fifo);
1378 usbhsf_fifo_unselect(pipe, fifo);
1379
1380 /* clear DCP FIFO of reception */
1381 if (usbhsf_fifo_select(pipe, fifo, 0) < 0)
1382 return;
1383 usbhsf_fifo_clear(pipe, fifo);
1384 usbhsf_fifo_unselect(pipe, fifo);
1385}
1386
Kuninori Morimotodad67392011-06-06 14:18:28 +09001387/*
1388 * fifo init
1389 */
1390void usbhs_fifo_init(struct usbhs_priv *priv)
1391{
1392 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001393 struct usbhs_fifo *cfifo = usbhsf_get_cfifo(priv);
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001394 struct usbhs_fifo *dfifo;
1395 int i;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001396
1397 mod->irq_empty = usbhsf_irq_empty;
1398 mod->irq_ready = usbhsf_irq_ready;
1399 mod->irq_bempsts = 0;
1400 mod->irq_brdysts = 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001401
1402 cfifo->pipe = NULL;
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001403 usbhs_for_each_dfifo(priv, dfifo, i)
1404 dfifo->pipe = NULL;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001405}
1406
1407void usbhs_fifo_quit(struct usbhs_priv *priv)
1408{
1409 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1410
1411 mod->irq_empty = NULL;
1412 mod->irq_ready = NULL;
1413 mod->irq_bempsts = 0;
1414 mod->irq_brdysts = 0;
1415}
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001416
Yoshihiro Shimoda53e734b2014-11-10 20:02:46 +09001417#define __USBHS_DFIFO_INIT(priv, fifo, channel, fifo_port) \
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001418do { \
1419 fifo = usbhsf_get_dnfifo(priv, channel); \
1420 fifo->name = "D"#channel"FIFO"; \
Yoshihiro Shimoda53e734b2014-11-10 20:02:46 +09001421 fifo->port = fifo_port; \
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001422 fifo->sel = D##channel##FIFOSEL; \
1423 fifo->ctr = D##channel##FIFOCTR; \
1424 fifo->tx_slave.shdma_slave.slave_id = \
1425 usbhs_get_dparam(priv, d##channel##_tx_id); \
1426 fifo->rx_slave.shdma_slave.slave_id = \
1427 usbhs_get_dparam(priv, d##channel##_rx_id); \
Yoshihiro Shimoda7a96b782015-03-12 15:35:18 +09001428 usbhsf_dma_init(priv, fifo, channel); \
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001429} while (0)
1430
Yoshihiro Shimoda53e734b2014-11-10 20:02:46 +09001431#define USBHS_DFIFO_INIT(priv, fifo, channel) \
1432 __USBHS_DFIFO_INIT(priv, fifo, channel, D##channel##FIFO)
1433#define USBHS_DFIFO_INIT_NO_PORT(priv, fifo, channel) \
1434 __USBHS_DFIFO_INIT(priv, fifo, channel, 0)
1435
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001436int usbhs_fifo_probe(struct usbhs_priv *priv)
1437{
1438 struct usbhs_fifo *fifo;
1439
1440 /* CFIFO */
1441 fifo = usbhsf_get_cfifo(priv);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001442 fifo->name = "CFIFO";
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001443 fifo->port = CFIFO;
1444 fifo->sel = CFIFOSEL;
1445 fifo->ctr = CFIFOCTR;
1446
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001447 /* DFIFO */
1448 USBHS_DFIFO_INIT(priv, fifo, 0);
1449 USBHS_DFIFO_INIT(priv, fifo, 1);
Yoshihiro Shimodad3cf6a42014-11-10 20:02:47 +09001450 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 2);
1451 USBHS_DFIFO_INIT_NO_PORT(priv, fifo, 3);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001452
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001453 return 0;
1454}
1455
1456void usbhs_fifo_remove(struct usbhs_priv *priv)
1457{
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +09001458 struct usbhs_fifo *fifo;
1459 int i;
1460
1461 usbhs_for_each_dfifo(priv, fifo, i)
1462 usbhsf_dma_quit(priv, fifo);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001463}