blob: 7b4309339f3d652cf04520f247e5f8aa4643be7a [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>
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090020#include "./common.h"
21#include "./pipe.h"
22
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090023#define usbhsf_get_cfifo(p) (&((p)->fifo_info.cfifo))
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090024#define usbhsf_get_d0fifo(p) (&((p)->fifo_info.d0fifo))
25#define usbhsf_get_d1fifo(p) (&((p)->fifo_info.d1fifo))
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090026
Kuninori Morimotod77e3f42011-06-06 14:18:50 +090027#define usbhsf_fifo_is_busy(f) ((f)->pipe) /* see usbhs_pipe_select_fifo */
28
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090029/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -070030 * packet initialize
31 */
32void usbhs_pkt_init(struct usbhs_pkt *pkt)
33{
34 pkt->dma = DMA_ADDR_INVALID;
35 INIT_LIST_HEAD(&pkt->node);
36}
37
38/*
39 * packet control function
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090040 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +090041static int usbhsf_null_handle(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotodad67392011-06-06 14:18:28 +090042{
43 struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
44 struct device *dev = usbhs_priv_to_dev(priv);
45
46 dev_err(dev, "null handler\n");
47
48 return -EINVAL;
49}
50
51static struct usbhs_pkt_handle usbhsf_null_handler = {
52 .prepare = usbhsf_null_handle,
53 .try_run = usbhsf_null_handle,
54};
55
Kuninori Morimoto659d4952011-06-06 14:18:23 +090056void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
Kuninori Morimotob3318722011-10-10 22:04:41 -070057 void (*done)(struct usbhs_priv *priv,
58 struct usbhs_pkt *pkt),
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080059 void *buf, int len, int zero, int sequence)
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090060{
Kuninori Morimotodad67392011-06-06 14:18:28 +090061 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
62 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto97664a22011-06-06 14:18:38 +090063 unsigned long flags;
64
Kuninori Morimotob3318722011-10-10 22:04:41 -070065 if (!done) {
66 dev_err(dev, "no done function\n");
67 return;
68 }
69
Kuninori Morimotoa2c76b82011-10-18 20:05:50 -070070 /******************** spin lock ********************/
71 usbhs_lock(priv, flags);
72
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070073 if (!pipe->handler) {
Kuninori Morimotodad67392011-06-06 14:18:28 +090074 dev_err(dev, "no handler function\n");
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070075 pipe->handler = &usbhsf_null_handler;
Kuninori Morimotodad67392011-06-06 14:18:28 +090076 }
77
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090078 list_del_init(&pkt->node);
79 list_add_tail(&pkt->node, &pipe->list);
80
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070081 /*
82 * each pkt must hold own handler.
83 * because handler might be changed by its situation.
84 * dma handler -> pio handler.
85 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +090086 pkt->pipe = pipe;
87 pkt->buf = buf;
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -070088 pkt->handler = pipe->handler;
Kuninori Morimoto659d4952011-06-06 14:18:23 +090089 pkt->length = len;
90 pkt->zero = zero;
91 pkt->actual = 0;
Kuninori Morimotob3318722011-10-10 22:04:41 -070092 pkt->done = done;
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080093 pkt->sequence = sequence;
Kuninori Morimoto97664a22011-06-06 14:18:38 +090094
95 usbhs_unlock(priv, flags);
96 /******************** spin unlock ******************/
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090097}
98
Kuninori Morimoto97664a22011-06-06 14:18:38 +090099static void __usbhsf_pkt_del(struct usbhs_pkt *pkt)
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900100{
101 list_del_init(&pkt->node);
102}
103
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900104static struct usbhs_pkt *__usbhsf_pkt_get(struct usbhs_pipe *pipe)
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900105{
106 if (list_empty(&pipe->list))
107 return NULL;
108
109 return list_entry(pipe->list.next, struct usbhs_pkt, node);
110}
111
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900112struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt)
113{
114 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
115 unsigned long flags;
116
117 /******************** spin lock ********************/
118 usbhs_lock(priv, flags);
119
120 if (!pkt)
121 pkt = __usbhsf_pkt_get(pipe);
122
123 if (pkt)
124 __usbhsf_pkt_del(pkt);
125
126 usbhs_unlock(priv, flags);
127 /******************** spin unlock ******************/
128
129 return pkt;
130}
131
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700132enum {
133 USBHSF_PKT_PREPARE,
134 USBHSF_PKT_TRY_RUN,
135 USBHSF_PKT_DMA_DONE,
136};
137
138static int usbhsf_pkt_handler(struct usbhs_pipe *pipe, int type)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900139{
140 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900141 struct usbhs_pkt *pkt;
142 struct device *dev = usbhs_priv_to_dev(priv);
143 int (*func)(struct usbhs_pkt *pkt, int *is_done);
144 unsigned long flags;
145 int ret = 0;
146 int is_done = 0;
147
148 /******************** spin lock ********************/
149 usbhs_lock(priv, flags);
150
151 pkt = __usbhsf_pkt_get(pipe);
152 if (!pkt)
153 goto __usbhs_pkt_handler_end;
154
155 switch (type) {
156 case USBHSF_PKT_PREPARE:
157 func = pkt->handler->prepare;
158 break;
159 case USBHSF_PKT_TRY_RUN:
160 func = pkt->handler->try_run;
161 break;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900162 case USBHSF_PKT_DMA_DONE:
163 func = pkt->handler->dma_done;
164 break;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900165 default:
166 dev_err(dev, "unknown pkt hander\n");
167 goto __usbhs_pkt_handler_end;
168 }
169
170 ret = func(pkt, &is_done);
171
172 if (is_done)
173 __usbhsf_pkt_del(pkt);
174
175__usbhs_pkt_handler_end:
176 usbhs_unlock(priv, flags);
177 /******************** spin unlock ******************/
178
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900179 if (is_done) {
Kuninori Morimotob3318722011-10-10 22:04:41 -0700180 pkt->done(priv, pkt);
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900181 usbhs_pkt_start(pipe);
182 }
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900183
184 return ret;
185}
186
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700187void usbhs_pkt_start(struct usbhs_pipe *pipe)
188{
189 usbhsf_pkt_handler(pipe, USBHSF_PKT_PREPARE);
190}
191
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900192/*
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900193 * irq enable/disable function
194 */
195#define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, bempsts, e)
196#define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, brdysts, e)
197#define usbhsf_irq_callback_ctrl(pipe, status, enable) \
198 ({ \
199 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
200 struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
201 u16 status = (1 << usbhs_pipe_number(pipe)); \
202 if (!mod) \
203 return; \
204 if (enable) \
205 mod->irq_##status |= status; \
206 else \
207 mod->irq_##status &= ~status; \
208 usbhs_irq_callback_update(priv, mod); \
209 })
210
211static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
212{
213 /*
214 * And DCP pipe can NOT use "ready interrupt" for "send"
215 * it should use "empty" interrupt.
216 * see
217 * "Operation" - "Interrupt Function" - "BRDY Interrupt"
218 *
219 * on the other hand, normal pipe can use "ready interrupt" for "send"
220 * even though it is single/double buffer
221 */
222 if (usbhs_pipe_is_dcp(pipe))
223 usbhsf_irq_empty_ctrl(pipe, enable);
224 else
225 usbhsf_irq_ready_ctrl(pipe, enable);
226}
227
228static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
229{
230 usbhsf_irq_ready_ctrl(pipe, enable);
231}
232
233/*
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900234 * FIFO ctrl
235 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900236static void usbhsf_send_terminator(struct usbhs_pipe *pipe,
237 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900238{
239 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
240
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900241 usbhs_bset(priv, fifo->ctr, BVAL, BVAL);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900242}
243
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900244static int usbhsf_fifo_barrier(struct usbhs_priv *priv,
245 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900246{
247 int timeout = 1024;
248
249 do {
250 /* The FIFO port is accessible */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900251 if (usbhs_read(priv, fifo->ctr) & FRDY)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900252 return 0;
253
254 udelay(10);
255 } while (timeout--);
256
257 return -EBUSY;
258}
259
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900260static void usbhsf_fifo_clear(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
265 if (!usbhs_pipe_is_dcp(pipe))
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900266 usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900267
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900268 usbhs_write(priv, fifo->ctr, BCLR);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900269}
270
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900271static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv,
272 struct usbhs_fifo *fifo)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900273{
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900274 return usbhs_read(priv, fifo->ctr) & DTLN_MASK;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900275}
276
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900277static void usbhsf_fifo_unselect(struct usbhs_pipe *pipe,
278 struct usbhs_fifo *fifo)
279{
280 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
281
282 usbhs_pipe_select_fifo(pipe, NULL);
283 usbhs_write(priv, fifo->sel, 0);
284}
285
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900286static int usbhsf_fifo_select(struct usbhs_pipe *pipe,
287 struct usbhs_fifo *fifo,
288 int write)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900289{
290 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
291 struct device *dev = usbhs_priv_to_dev(priv);
292 int timeout = 1024;
293 u16 mask = ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
294 u16 base = usbhs_pipe_number(pipe); /* CURPIPE */
295
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900296 if (usbhs_pipe_is_busy(pipe) ||
297 usbhsf_fifo_is_busy(fifo))
298 return -EBUSY;
299
Kuninori Morimoto92352072011-10-10 22:02:57 -0700300 if (usbhs_pipe_is_dcp(pipe)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900301 base |= (1 == write) << 5; /* ISEL */
302
Kuninori Morimoto92352072011-10-10 22:02:57 -0700303 if (usbhs_mod_is_host(priv))
304 usbhs_dcp_dir_for_host(pipe, write);
305 }
306
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900307 /* "base" will be used below */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900308 usbhs_write(priv, fifo->sel, base | MBW_32);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900309
310 /* check ISEL and CURPIPE value */
311 while (timeout--) {
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900312 if (base == (mask & usbhs_read(priv, fifo->sel))) {
313 usbhs_pipe_select_fifo(pipe, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900314 return 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900315 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900316 udelay(10);
317 }
318
319 dev_err(dev, "fifo select error\n");
320
321 return -EIO;
322}
323
324/*
Kuninori Morimoto9e74d602011-10-10 22:07:08 -0700325 * DCP status stage
326 */
327static int usbhs_dcp_dir_switch_to_write(struct usbhs_pkt *pkt, int *is_done)
328{
329 struct usbhs_pipe *pipe = pkt->pipe;
330 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
331 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
332 struct device *dev = usbhs_priv_to_dev(priv);
333 int ret;
334
335 usbhs_pipe_disable(pipe);
336
337 ret = usbhsf_fifo_select(pipe, fifo, 1);
338 if (ret < 0) {
339 dev_err(dev, "%s() faile\n", __func__);
340 return ret;
341 }
342
343 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
344
345 usbhsf_fifo_clear(pipe, fifo);
346 usbhsf_send_terminator(pipe, fifo);
347
348 usbhsf_fifo_unselect(pipe, fifo);
349
350 usbhsf_tx_irq_ctrl(pipe, 1);
351 usbhs_pipe_enable(pipe);
352
353 return ret;
354}
355
356static int usbhs_dcp_dir_switch_to_read(struct usbhs_pkt *pkt, int *is_done)
357{
358 struct usbhs_pipe *pipe = pkt->pipe;
359 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
360 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
361 struct device *dev = usbhs_priv_to_dev(priv);
362 int ret;
363
364 usbhs_pipe_disable(pipe);
365
366 ret = usbhsf_fifo_select(pipe, fifo, 0);
367 if (ret < 0) {
368 dev_err(dev, "%s() fail\n", __func__);
369 return ret;
370 }
371
372 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
373 usbhsf_fifo_clear(pipe, fifo);
374
375 usbhsf_fifo_unselect(pipe, fifo);
376
377 usbhsf_rx_irq_ctrl(pipe, 1);
378 usbhs_pipe_enable(pipe);
379
380 return ret;
381
382}
383
384static int usbhs_dcp_dir_switch_done(struct usbhs_pkt *pkt, int *is_done)
385{
386 struct usbhs_pipe *pipe = pkt->pipe;
387
388 if (pkt->handler == &usbhs_dcp_status_stage_in_handler)
389 usbhsf_tx_irq_ctrl(pipe, 0);
390 else
391 usbhsf_rx_irq_ctrl(pipe, 0);
392
393 pkt->actual = pkt->length;
394 *is_done = 1;
395
396 return 0;
397}
398
399struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler = {
400 .prepare = usbhs_dcp_dir_switch_to_write,
401 .try_run = usbhs_dcp_dir_switch_done,
402};
403
404struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler = {
405 .prepare = usbhs_dcp_dir_switch_to_read,
406 .try_run = usbhs_dcp_dir_switch_done,
407};
408
409/*
410 * DCP data stage (push)
411 */
412static int usbhsf_dcp_data_stage_try_push(struct usbhs_pkt *pkt, int *is_done)
413{
414 struct usbhs_pipe *pipe = pkt->pipe;
415
416 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
417
418 /*
419 * change handler to PIO push
420 */
421 pkt->handler = &usbhs_fifo_pio_push_handler;
422
423 return pkt->handler->prepare(pkt, is_done);
424}
425
426struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler = {
427 .prepare = usbhsf_dcp_data_stage_try_push,
428};
429
430/*
431 * DCP data stage (pop)
432 */
433static int usbhsf_dcp_data_stage_prepare_pop(struct usbhs_pkt *pkt,
434 int *is_done)
435{
436 struct usbhs_pipe *pipe = pkt->pipe;
437 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
438 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv);
439
440 if (usbhs_pipe_is_busy(pipe))
441 return 0;
442
443 /*
444 * prepare pop for DCP should
445 * - change DCP direction,
446 * - clear fifo
447 * - DATA1
448 */
449 usbhs_pipe_disable(pipe);
450
451 usbhs_pipe_sequence_data1(pipe); /* DATA1 */
452
453 usbhsf_fifo_select(pipe, fifo, 0);
454 usbhsf_fifo_clear(pipe, fifo);
455 usbhsf_fifo_unselect(pipe, fifo);
456
457 /*
458 * change handler to PIO pop
459 */
460 pkt->handler = &usbhs_fifo_pio_pop_handler;
461
462 return pkt->handler->prepare(pkt, is_done);
463}
464
465struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler = {
466 .prepare = usbhsf_dcp_data_stage_prepare_pop,
467};
468
469/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700470 * PIO push handler
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900471 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900472static int usbhsf_pio_try_push(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900473{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900474 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900475 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900476 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900477 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
478 void __iomem *addr = priv->base + fifo->port;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900479 u8 *buf;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900480 int maxp = usbhs_pipe_get_maxpacket(pipe);
481 int total_len;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900482 int i, ret, len;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900483 int is_short;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900484
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800485 usbhs_pipe_data_sequence(pipe, pkt->sequence);
486 pkt->sequence = -1; /* -1 sequence will be ignored */
487
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900488 ret = usbhsf_fifo_select(pipe, fifo, 1);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900489 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900490 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900491
Kuninori Morimotodad67392011-06-06 14:18:28 +0900492 ret = usbhs_pipe_is_accessible(pipe);
Kuninori Morimoto4ef85e02011-07-03 17:42:47 -0700493 if (ret < 0) {
494 /* inaccessible pipe is not an error */
495 ret = 0;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900496 goto usbhs_fifo_write_busy;
Kuninori Morimoto4ef85e02011-07-03 17:42:47 -0700497 }
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900498
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900499 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900500 if (ret < 0)
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900501 goto usbhs_fifo_write_busy;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900502
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900503 buf = pkt->buf + pkt->actual;
504 len = pkt->length - pkt->actual;
505 len = min(len, maxp);
506 total_len = len;
507 is_short = total_len < maxp;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900508
509 /*
510 * FIXME
511 *
512 * 32-bit access only
513 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900514 if (len >= 4 && !((unsigned long)buf & 0x03)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900515 iowrite32_rep(addr, buf, len / 4);
516 len %= 4;
517 buf += total_len - len;
518 }
519
520 /* the rest operation */
521 for (i = 0; i < len; i++)
522 iowrite8(buf[i], addr + (0x03 - (i & 0x03)));
523
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900524 /*
525 * variable update
526 */
527 pkt->actual += total_len;
528
529 if (pkt->actual < pkt->length)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900530 *is_done = 0; /* there are remainder data */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900531 else if (is_short)
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900532 *is_done = 1; /* short packet */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900533 else
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900534 *is_done = !pkt->zero; /* send zero packet ? */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900535
536 /*
537 * pipe/irq handling
538 */
539 if (is_short)
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900540 usbhsf_send_terminator(pipe, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900541
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900542 usbhsf_tx_irq_ctrl(pipe, !*is_done);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900543 usbhs_pipe_enable(pipe);
544
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900545 dev_dbg(dev, " send %d (%d/ %d/ %d/ %d)\n",
546 usbhs_pipe_number(pipe),
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900547 pkt->length, pkt->actual, *is_done, pkt->zero);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900548
549 /*
550 * Transmission end
551 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900552 if (*is_done) {
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900553 if (usbhs_pipe_is_dcp(pipe))
554 usbhs_dcp_control_transfer_done(pipe);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900555 }
556
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900557 usbhsf_fifo_unselect(pipe, fifo);
558
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900559 return 0;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900560
561usbhs_fifo_write_busy:
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900562 usbhsf_fifo_unselect(pipe, fifo);
563
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900564 /*
565 * pipe is busy.
566 * retry in interrupt
567 */
568 usbhsf_tx_irq_ctrl(pipe, 1);
569
570 return ret;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900571}
572
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900573struct usbhs_pkt_handle usbhs_fifo_pio_push_handler = {
574 .prepare = usbhsf_pio_try_push,
575 .try_run = usbhsf_pio_try_push,
Kuninori Morimotodad67392011-06-06 14:18:28 +0900576};
577
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700578/*
579 * PIO pop handler
580 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900581static int usbhsf_prepare_pop(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900582{
Kuninori Morimotodad67392011-06-06 14:18:28 +0900583 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900584
585 if (usbhs_pipe_is_busy(pipe))
586 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900587
588 /*
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900589 * pipe enable to prepare packet receive
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900590 */
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800591 usbhs_pipe_data_sequence(pipe, pkt->sequence);
592 pkt->sequence = -1; /* -1 sequence will be ignored */
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900593
594 usbhs_pipe_enable(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900595 usbhsf_rx_irq_ctrl(pipe, 1);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900596
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900597 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900598}
599
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900600static int usbhsf_pio_try_pop(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900601{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900602 struct usbhs_pipe *pipe = pkt->pipe;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900603 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900604 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900605 struct usbhs_fifo *fifo = usbhsf_get_cfifo(priv); /* CFIFO */
606 void __iomem *addr = priv->base + fifo->port;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900607 u8 *buf;
608 u32 data = 0;
609 int maxp = usbhs_pipe_get_maxpacket(pipe);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900610 int rcv_len, len;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900611 int i, ret;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900612 int total_len = 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900613
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900614 ret = usbhsf_fifo_select(pipe, fifo, 0);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900615 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900616 return 0;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900617
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900618 ret = usbhsf_fifo_barrier(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900619 if (ret < 0)
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900620 goto usbhs_fifo_read_busy;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900621
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900622 rcv_len = usbhsf_fifo_rcv_len(priv, fifo);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900623
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900624 buf = pkt->buf + pkt->actual;
625 len = pkt->length - pkt->actual;
626 len = min(len, rcv_len);
627 total_len = len;
628
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900629 /*
Kuninori Morimoto6ff5d092011-10-10 22:05:51 -0700630 * update actual length first here to decide disable pipe.
631 * if this pipe keeps BUF status and all data were popped,
632 * then, next interrupt/token will be issued again
633 */
634 pkt->actual += total_len;
635
636 if ((pkt->actual == pkt->length) || /* receive all data */
637 (total_len < maxp)) { /* short packet */
638 *is_done = 1;
639 usbhsf_rx_irq_ctrl(pipe, 0);
640 usbhs_pipe_disable(pipe); /* disable pipe first */
641 }
642
643 /*
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900644 * Buffer clear if Zero-Length packet
645 *
646 * see
647 * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
648 */
649 if (0 == rcv_len) {
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800650 pkt->zero = 1;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900651 usbhsf_fifo_clear(pipe, fifo);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900652 goto usbhs_fifo_read_end;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900653 }
654
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900655 /*
656 * FIXME
657 *
658 * 32-bit access only
659 */
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900660 if (len >= 4 && !((unsigned long)buf & 0x03)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900661 ioread32_rep(addr, buf, len / 4);
662 len %= 4;
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900663 buf += total_len - len;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900664 }
665
666 /* the rest operation */
667 for (i = 0; i < len; i++) {
668 if (!(i & 0x03))
669 data = ioread32(addr);
670
671 buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
672 }
673
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900674usbhs_fifo_read_end:
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900675 dev_dbg(dev, " recv %d (%d/ %d/ %d/ %d)\n",
676 usbhs_pipe_number(pipe),
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900677 pkt->length, pkt->actual, *is_done, pkt->zero);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900678
Kuninori Morimotod77e3f42011-06-06 14:18:50 +0900679usbhs_fifo_read_busy:
680 usbhsf_fifo_unselect(pipe, fifo);
681
682 return ret;
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900683}
Kuninori Morimotodad67392011-06-06 14:18:28 +0900684
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900685struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler = {
Kuninori Morimotodad67392011-06-06 14:18:28 +0900686 .prepare = usbhsf_prepare_pop,
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +0900687 .try_run = usbhsf_pio_try_pop,
Kuninori Morimotodad67392011-06-06 14:18:28 +0900688};
689
690/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700691 * DCP ctrol statge handler
Kuninori Morimotodad67392011-06-06 14:18:28 +0900692 */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900693static int usbhsf_ctrl_stage_end(struct usbhs_pkt *pkt, int *is_done)
Kuninori Morimotodad67392011-06-06 14:18:28 +0900694{
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900695 usbhs_dcp_control_transfer_done(pkt->pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900696
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900697 *is_done = 1;
Kuninori Morimotodad67392011-06-06 14:18:28 +0900698
699 return 0;
700}
701
702struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler = {
703 .prepare = usbhsf_ctrl_stage_end,
704 .try_run = usbhsf_ctrl_stage_end,
705};
706
707/*
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900708 * DMA fifo functions
709 */
710static struct dma_chan *usbhsf_dma_chan_get(struct usbhs_fifo *fifo,
711 struct usbhs_pkt *pkt)
712{
713 if (&usbhs_fifo_dma_push_handler == pkt->handler)
714 return fifo->tx_chan;
715
716 if (&usbhs_fifo_dma_pop_handler == pkt->handler)
717 return fifo->rx_chan;
718
719 return NULL;
720}
721
722static struct usbhs_fifo *usbhsf_get_dma_fifo(struct usbhs_priv *priv,
723 struct usbhs_pkt *pkt)
724{
725 struct usbhs_fifo *fifo;
726
727 /* DMA :: D0FIFO */
728 fifo = usbhsf_get_d0fifo(priv);
729 if (usbhsf_dma_chan_get(fifo, pkt) &&
730 !usbhsf_fifo_is_busy(fifo))
731 return fifo;
732
733 /* DMA :: D1FIFO */
734 fifo = usbhsf_get_d1fifo(priv);
735 if (usbhsf_dma_chan_get(fifo, pkt) &&
736 !usbhsf_fifo_is_busy(fifo))
737 return fifo;
738
739 return NULL;
740}
741
742#define usbhsf_dma_start(p, f) __usbhsf_dma_ctrl(p, f, DREQE)
743#define usbhsf_dma_stop(p, f) __usbhsf_dma_ctrl(p, f, 0)
744static void __usbhsf_dma_ctrl(struct usbhs_pipe *pipe,
745 struct usbhs_fifo *fifo,
746 u16 dreqe)
747{
748 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
749
750 usbhs_bset(priv, fifo->sel, DREQE, dreqe);
751}
752
753#define usbhsf_dma_map(p) __usbhsf_dma_map_ctrl(p, 1)
754#define usbhsf_dma_unmap(p) __usbhsf_dma_map_ctrl(p, 0)
755static int __usbhsf_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
756{
757 struct usbhs_pipe *pipe = pkt->pipe;
758 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
759 struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
760
761 return info->dma_map_ctrl(pkt, map);
762}
763
764static void usbhsf_dma_complete(void *arg);
765static void usbhsf_dma_prepare_tasklet(unsigned long data)
766{
767 struct usbhs_pkt *pkt = (struct usbhs_pkt *)data;
768 struct usbhs_pipe *pipe = pkt->pipe;
769 struct usbhs_fifo *fifo = usbhs_pipe_to_fifo(pipe);
770 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
771 struct scatterlist sg;
772 struct dma_async_tx_descriptor *desc;
773 struct dma_chan *chan = usbhsf_dma_chan_get(fifo, pkt);
774 struct device *dev = usbhs_priv_to_dev(priv);
Vinod Koul55ba4e52011-10-14 21:57:58 +0530775 enum dma_transfer_direction dir;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900776 dma_cookie_t cookie;
777
Vinod Koul55ba4e52011-10-14 21:57:58 +0530778 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_DEV_TO_MEM : DMA_MEM_TO_DEV;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900779
780 sg_init_table(&sg, 1);
781 sg_set_page(&sg, virt_to_page(pkt->dma),
782 pkt->length, offset_in_page(pkt->dma));
783 sg_dma_address(&sg) = pkt->dma + pkt->actual;
784 sg_dma_len(&sg) = pkt->trans;
785
Alexandre Bounine16052822012-03-08 16:11:18 -0500786 desc = dmaengine_prep_slave_sg(chan, &sg, 1, dir,
787 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900788 if (!desc)
789 return;
790
791 desc->callback = usbhsf_dma_complete;
792 desc->callback_param = pipe;
793
794 cookie = desc->tx_submit(desc);
795 if (cookie < 0) {
796 dev_err(dev, "Failed to submit dma descriptor\n");
797 return;
798 }
799
800 dev_dbg(dev, " %s %d (%d/ %d)\n",
801 fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero);
802
803 usbhsf_dma_start(pipe, fifo);
804 dma_async_issue_pending(chan);
805}
806
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700807/*
808 * DMA push handler
809 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900810static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done)
811{
812 struct usbhs_pipe *pipe = pkt->pipe;
813 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
814 struct usbhs_fifo *fifo;
815 int len = pkt->length - pkt->actual;
816 int ret;
817
818 if (usbhs_pipe_is_busy(pipe))
819 return 0;
820
821 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
822 if ((len < usbhs_get_dparam(priv, pio_dma_border)) ||
823 usbhs_pipe_is_dcp(pipe))
824 goto usbhsf_pio_prepare_push;
825
826 if (len % 4) /* 32bit alignment */
827 goto usbhsf_pio_prepare_push;
828
Kuninori Morimotoc9ae0c92011-10-26 01:21:07 -0700829 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
Kuninori Morimoto9a12d092011-07-03 17:42:19 -0700830 goto usbhsf_pio_prepare_push;
831
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900832 /* get enable DMA fifo */
833 fifo = usbhsf_get_dma_fifo(priv, pkt);
834 if (!fifo)
835 goto usbhsf_pio_prepare_push;
836
837 if (usbhsf_dma_map(pkt) < 0)
838 goto usbhsf_pio_prepare_push;
839
840 ret = usbhsf_fifo_select(pipe, fifo, 0);
841 if (ret < 0)
842 goto usbhsf_pio_prepare_push_unmap;
843
844 pkt->trans = len;
845
846 tasklet_init(&fifo->tasklet,
847 usbhsf_dma_prepare_tasklet,
848 (unsigned long)pkt);
849
850 tasklet_schedule(&fifo->tasklet);
851
852 return 0;
853
854usbhsf_pio_prepare_push_unmap:
855 usbhsf_dma_unmap(pkt);
856usbhsf_pio_prepare_push:
857 /*
858 * change handler to PIO
859 */
860 pkt->handler = &usbhs_fifo_pio_push_handler;
861
862 return pkt->handler->prepare(pkt, is_done);
863}
864
865static int usbhsf_dma_push_done(struct usbhs_pkt *pkt, int *is_done)
866{
867 struct usbhs_pipe *pipe = pkt->pipe;
868
869 pkt->actual = pkt->trans;
870
871 *is_done = !pkt->zero; /* send zero packet ? */
872
873 usbhsf_dma_stop(pipe, pipe->fifo);
874 usbhsf_dma_unmap(pkt);
875 usbhsf_fifo_unselect(pipe, pipe->fifo);
876
877 return 0;
878}
879
880struct usbhs_pkt_handle usbhs_fifo_dma_push_handler = {
881 .prepare = usbhsf_dma_prepare_push,
882 .dma_done = usbhsf_dma_push_done,
883};
884
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700885/*
886 * DMA pop handler
887 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900888static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
889{
890 struct usbhs_pipe *pipe = pkt->pipe;
891 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
892 struct usbhs_fifo *fifo;
893 int len, ret;
894
895 if (usbhs_pipe_is_busy(pipe))
896 return 0;
897
898 if (usbhs_pipe_is_dcp(pipe))
899 goto usbhsf_pio_prepare_pop;
900
901 /* get enable DMA fifo */
902 fifo = usbhsf_get_dma_fifo(priv, pkt);
903 if (!fifo)
904 goto usbhsf_pio_prepare_pop;
905
Kuninori Morimotoc9ae0c92011-10-26 01:21:07 -0700906 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
Kuninori Morimoto9a12d092011-07-03 17:42:19 -0700907 goto usbhsf_pio_prepare_pop;
908
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900909 ret = usbhsf_fifo_select(pipe, fifo, 0);
910 if (ret < 0)
911 goto usbhsf_pio_prepare_pop;
912
913 /* use PIO if packet is less than pio_dma_border */
914 len = usbhsf_fifo_rcv_len(priv, fifo);
915 len = min(pkt->length - pkt->actual, len);
916 if (len % 4) /* 32bit alignment */
917 goto usbhsf_pio_prepare_pop_unselect;
918
919 if (len < usbhs_get_dparam(priv, pio_dma_border))
920 goto usbhsf_pio_prepare_pop_unselect;
921
922 ret = usbhsf_fifo_barrier(priv, fifo);
923 if (ret < 0)
924 goto usbhsf_pio_prepare_pop_unselect;
925
926 if (usbhsf_dma_map(pkt) < 0)
927 goto usbhsf_pio_prepare_pop_unselect;
928
929 /* DMA */
930
931 /*
932 * usbhs_fifo_dma_pop_handler :: prepare
933 * enabled irq to come here.
934 * but it is no longer needed for DMA. disable it.
935 */
936 usbhsf_rx_irq_ctrl(pipe, 0);
937
938 pkt->trans = len;
939
940 tasklet_init(&fifo->tasklet,
941 usbhsf_dma_prepare_tasklet,
942 (unsigned long)pkt);
943
944 tasklet_schedule(&fifo->tasklet);
945
946 return 0;
947
948usbhsf_pio_prepare_pop_unselect:
949 usbhsf_fifo_unselect(pipe, fifo);
950usbhsf_pio_prepare_pop:
951
952 /*
953 * change handler to PIO
954 */
955 pkt->handler = &usbhs_fifo_pio_pop_handler;
956
957 return pkt->handler->try_run(pkt, is_done);
958}
959
960static int usbhsf_dma_pop_done(struct usbhs_pkt *pkt, int *is_done)
961{
962 struct usbhs_pipe *pipe = pkt->pipe;
963 int maxp = usbhs_pipe_get_maxpacket(pipe);
964
965 usbhsf_dma_stop(pipe, pipe->fifo);
966 usbhsf_dma_unmap(pkt);
967 usbhsf_fifo_unselect(pipe, pipe->fifo);
968
969 pkt->actual += pkt->trans;
970
971 if ((pkt->actual == pkt->length) || /* receive all data */
972 (pkt->trans < maxp)) { /* short packet */
973 *is_done = 1;
974 } else {
975 /* re-enable */
976 usbhsf_prepare_pop(pkt, is_done);
977 }
978
979 return 0;
980}
981
982struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler = {
983 .prepare = usbhsf_prepare_pop,
984 .try_run = usbhsf_dma_try_pop,
985 .dma_done = usbhsf_dma_pop_done
986};
987
988/*
989 * DMA setting
990 */
991static bool usbhsf_dma_filter(struct dma_chan *chan, void *param)
992{
993 struct sh_dmae_slave *slave = param;
994
995 /*
996 * FIXME
997 *
998 * usbhs doesn't recognize id = 0 as valid DMA
999 */
1000 if (0 == slave->slave_id)
1001 return false;
1002
1003 chan->private = slave;
1004
1005 return true;
1006}
1007
1008static void usbhsf_dma_quit(struct usbhs_priv *priv, struct usbhs_fifo *fifo)
1009{
1010 if (fifo->tx_chan)
1011 dma_release_channel(fifo->tx_chan);
1012 if (fifo->rx_chan)
1013 dma_release_channel(fifo->rx_chan);
1014
1015 fifo->tx_chan = NULL;
1016 fifo->rx_chan = NULL;
1017}
1018
1019static void usbhsf_dma_init(struct usbhs_priv *priv,
1020 struct usbhs_fifo *fifo)
1021{
1022 struct device *dev = usbhs_priv_to_dev(priv);
1023 dma_cap_mask_t mask;
1024
1025 dma_cap_zero(mask);
1026 dma_cap_set(DMA_SLAVE, mask);
1027 fifo->tx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1028 &fifo->tx_slave);
1029
1030 dma_cap_zero(mask);
1031 dma_cap_set(DMA_SLAVE, mask);
1032 fifo->rx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1033 &fifo->rx_slave);
1034
1035 if (fifo->tx_chan || fifo->rx_chan)
Kuninori Morimoto4ce68802011-06-21 09:33:43 +09001036 dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001037 fifo->name,
1038 fifo->tx_chan ? "[TX]" : " ",
1039 fifo->rx_chan ? "[RX]" : " ");
1040}
1041
1042/*
Kuninori Morimotodad67392011-06-06 14:18:28 +09001043 * irq functions
1044 */
1045static int usbhsf_irq_empty(struct usbhs_priv *priv,
1046 struct usbhs_irq_state *irq_state)
1047{
1048 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001049 struct device *dev = usbhs_priv_to_dev(priv);
1050 int i, ret;
1051
1052 if (!irq_state->bempsts) {
1053 dev_err(dev, "debug %s !!\n", __func__);
1054 return -EIO;
1055 }
1056
1057 dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
1058
1059 /*
1060 * search interrupted "pipe"
1061 * not "uep".
1062 */
1063 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1064 if (!(irq_state->bempsts & (1 << i)))
1065 continue;
1066
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001067 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001068 if (ret < 0)
1069 dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
1070 }
1071
1072 return 0;
1073}
1074
1075static int usbhsf_irq_ready(struct usbhs_priv *priv,
1076 struct usbhs_irq_state *irq_state)
1077{
1078 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001079 struct device *dev = usbhs_priv_to_dev(priv);
1080 int i, ret;
1081
1082 if (!irq_state->brdysts) {
1083 dev_err(dev, "debug %s !!\n", __func__);
1084 return -EIO;
1085 }
1086
1087 dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
1088
1089 /*
1090 * search interrupted "pipe"
1091 * not "uep".
1092 */
1093 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1094 if (!(irq_state->brdysts & (1 << i)))
1095 continue;
1096
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001097 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001098 if (ret < 0)
1099 dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
1100 }
1101
1102 return 0;
1103}
1104
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001105static void usbhsf_dma_complete(void *arg)
1106{
1107 struct usbhs_pipe *pipe = arg;
1108 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1109 struct device *dev = usbhs_priv_to_dev(priv);
1110 int ret;
1111
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001112 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_DMA_DONE);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001113 if (ret < 0)
1114 dev_err(dev, "dma_complete run_error %d : %d\n",
1115 usbhs_pipe_number(pipe), ret);
1116}
1117
Kuninori Morimotodad67392011-06-06 14:18:28 +09001118/*
1119 * fifo init
1120 */
1121void usbhs_fifo_init(struct usbhs_priv *priv)
1122{
1123 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001124 struct usbhs_fifo *cfifo = usbhsf_get_cfifo(priv);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001125 struct usbhs_fifo *d0fifo = usbhsf_get_d0fifo(priv);
1126 struct usbhs_fifo *d1fifo = usbhsf_get_d1fifo(priv);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001127
1128 mod->irq_empty = usbhsf_irq_empty;
1129 mod->irq_ready = usbhsf_irq_ready;
1130 mod->irq_bempsts = 0;
1131 mod->irq_brdysts = 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001132
1133 cfifo->pipe = NULL;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001134 cfifo->tx_chan = NULL;
1135 cfifo->rx_chan = NULL;
1136
1137 d0fifo->pipe = NULL;
1138 d0fifo->tx_chan = NULL;
1139 d0fifo->rx_chan = NULL;
1140
1141 d1fifo->pipe = NULL;
1142 d1fifo->tx_chan = NULL;
1143 d1fifo->rx_chan = NULL;
1144
1145 usbhsf_dma_init(priv, usbhsf_get_d0fifo(priv));
1146 usbhsf_dma_init(priv, usbhsf_get_d1fifo(priv));
Kuninori Morimotodad67392011-06-06 14:18:28 +09001147}
1148
1149void usbhs_fifo_quit(struct usbhs_priv *priv)
1150{
1151 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1152
1153 mod->irq_empty = NULL;
1154 mod->irq_ready = NULL;
1155 mod->irq_bempsts = 0;
1156 mod->irq_brdysts = 0;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001157
1158 usbhsf_dma_quit(priv, usbhsf_get_d0fifo(priv));
1159 usbhsf_dma_quit(priv, usbhsf_get_d1fifo(priv));
Kuninori Morimotodad67392011-06-06 14:18:28 +09001160}
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001161
1162int usbhs_fifo_probe(struct usbhs_priv *priv)
1163{
1164 struct usbhs_fifo *fifo;
1165
1166 /* CFIFO */
1167 fifo = usbhsf_get_cfifo(priv);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001168 fifo->name = "CFIFO";
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001169 fifo->port = CFIFO;
1170 fifo->sel = CFIFOSEL;
1171 fifo->ctr = CFIFOCTR;
1172
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001173 /* D0FIFO */
1174 fifo = usbhsf_get_d0fifo(priv);
1175 fifo->name = "D0FIFO";
1176 fifo->port = D0FIFO;
1177 fifo->sel = D0FIFOSEL;
1178 fifo->ctr = D0FIFOCTR;
1179 fifo->tx_slave.slave_id = usbhs_get_dparam(priv, d0_tx_id);
1180 fifo->rx_slave.slave_id = usbhs_get_dparam(priv, d0_rx_id);
1181
1182 /* D1FIFO */
1183 fifo = usbhsf_get_d1fifo(priv);
1184 fifo->name = "D1FIFO";
1185 fifo->port = D1FIFO;
1186 fifo->sel = D1FIFOSEL;
1187 fifo->ctr = D1FIFOCTR;
1188 fifo->tx_slave.slave_id = usbhs_get_dparam(priv, d1_tx_id);
1189 fifo->rx_slave.slave_id = usbhs_get_dparam(priv, d1_rx_id);
1190
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001191 return 0;
1192}
1193
1194void usbhs_fifo_remove(struct usbhs_priv *priv)
1195{
1196}