blob: 72339bd6fcab862565ee222aa4ead450f1d2945d [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
786 desc = chan->device->device_prep_slave_sg(chan, &sg, 1, dir,
787 DMA_PREP_INTERRUPT |
788 DMA_CTRL_ACK);
789 if (!desc)
790 return;
791
792 desc->callback = usbhsf_dma_complete;
793 desc->callback_param = pipe;
794
795 cookie = desc->tx_submit(desc);
796 if (cookie < 0) {
797 dev_err(dev, "Failed to submit dma descriptor\n");
798 return;
799 }
800
801 dev_dbg(dev, " %s %d (%d/ %d)\n",
802 fifo->name, usbhs_pipe_number(pipe), pkt->length, pkt->zero);
803
804 usbhsf_dma_start(pipe, fifo);
805 dma_async_issue_pending(chan);
806}
807
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700808/*
809 * DMA push handler
810 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900811static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done)
812{
813 struct usbhs_pipe *pipe = pkt->pipe;
814 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
815 struct usbhs_fifo *fifo;
816 int len = pkt->length - pkt->actual;
817 int ret;
818
819 if (usbhs_pipe_is_busy(pipe))
820 return 0;
821
822 /* use PIO if packet is less than pio_dma_border or pipe is DCP */
823 if ((len < usbhs_get_dparam(priv, pio_dma_border)) ||
824 usbhs_pipe_is_dcp(pipe))
825 goto usbhsf_pio_prepare_push;
826
827 if (len % 4) /* 32bit alignment */
828 goto usbhsf_pio_prepare_push;
829
Kuninori Morimotoc9ae0c92011-10-26 01:21:07 -0700830 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
Kuninori Morimoto9a12d092011-07-03 17:42:19 -0700831 goto usbhsf_pio_prepare_push;
832
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900833 /* get enable DMA fifo */
834 fifo = usbhsf_get_dma_fifo(priv, pkt);
835 if (!fifo)
836 goto usbhsf_pio_prepare_push;
837
838 if (usbhsf_dma_map(pkt) < 0)
839 goto usbhsf_pio_prepare_push;
840
841 ret = usbhsf_fifo_select(pipe, fifo, 0);
842 if (ret < 0)
843 goto usbhsf_pio_prepare_push_unmap;
844
845 pkt->trans = len;
846
847 tasklet_init(&fifo->tasklet,
848 usbhsf_dma_prepare_tasklet,
849 (unsigned long)pkt);
850
851 tasklet_schedule(&fifo->tasklet);
852
853 return 0;
854
855usbhsf_pio_prepare_push_unmap:
856 usbhsf_dma_unmap(pkt);
857usbhsf_pio_prepare_push:
858 /*
859 * change handler to PIO
860 */
861 pkt->handler = &usbhs_fifo_pio_push_handler;
862
863 return pkt->handler->prepare(pkt, is_done);
864}
865
866static int usbhsf_dma_push_done(struct usbhs_pkt *pkt, int *is_done)
867{
868 struct usbhs_pipe *pipe = pkt->pipe;
869
870 pkt->actual = pkt->trans;
871
872 *is_done = !pkt->zero; /* send zero packet ? */
873
874 usbhsf_dma_stop(pipe, pipe->fifo);
875 usbhsf_dma_unmap(pkt);
876 usbhsf_fifo_unselect(pipe, pipe->fifo);
877
878 return 0;
879}
880
881struct usbhs_pkt_handle usbhs_fifo_dma_push_handler = {
882 .prepare = usbhsf_dma_prepare_push,
883 .dma_done = usbhsf_dma_push_done,
884};
885
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700886/*
887 * DMA pop handler
888 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900889static int usbhsf_dma_try_pop(struct usbhs_pkt *pkt, int *is_done)
890{
891 struct usbhs_pipe *pipe = pkt->pipe;
892 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
893 struct usbhs_fifo *fifo;
894 int len, ret;
895
896 if (usbhs_pipe_is_busy(pipe))
897 return 0;
898
899 if (usbhs_pipe_is_dcp(pipe))
900 goto usbhsf_pio_prepare_pop;
901
902 /* get enable DMA fifo */
903 fifo = usbhsf_get_dma_fifo(priv, pkt);
904 if (!fifo)
905 goto usbhsf_pio_prepare_pop;
906
Kuninori Morimotoc9ae0c92011-10-26 01:21:07 -0700907 if ((uintptr_t)(pkt->buf + pkt->actual) & 0x7) /* 8byte alignment */
Kuninori Morimoto9a12d092011-07-03 17:42:19 -0700908 goto usbhsf_pio_prepare_pop;
909
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900910 ret = usbhsf_fifo_select(pipe, fifo, 0);
911 if (ret < 0)
912 goto usbhsf_pio_prepare_pop;
913
914 /* use PIO if packet is less than pio_dma_border */
915 len = usbhsf_fifo_rcv_len(priv, fifo);
916 len = min(pkt->length - pkt->actual, len);
917 if (len % 4) /* 32bit alignment */
918 goto usbhsf_pio_prepare_pop_unselect;
919
920 if (len < usbhs_get_dparam(priv, pio_dma_border))
921 goto usbhsf_pio_prepare_pop_unselect;
922
923 ret = usbhsf_fifo_barrier(priv, fifo);
924 if (ret < 0)
925 goto usbhsf_pio_prepare_pop_unselect;
926
927 if (usbhsf_dma_map(pkt) < 0)
928 goto usbhsf_pio_prepare_pop_unselect;
929
930 /* DMA */
931
932 /*
933 * usbhs_fifo_dma_pop_handler :: prepare
934 * enabled irq to come here.
935 * but it is no longer needed for DMA. disable it.
936 */
937 usbhsf_rx_irq_ctrl(pipe, 0);
938
939 pkt->trans = len;
940
941 tasklet_init(&fifo->tasklet,
942 usbhsf_dma_prepare_tasklet,
943 (unsigned long)pkt);
944
945 tasklet_schedule(&fifo->tasklet);
946
947 return 0;
948
949usbhsf_pio_prepare_pop_unselect:
950 usbhsf_fifo_unselect(pipe, fifo);
951usbhsf_pio_prepare_pop:
952
953 /*
954 * change handler to PIO
955 */
956 pkt->handler = &usbhs_fifo_pio_pop_handler;
957
958 return pkt->handler->try_run(pkt, is_done);
959}
960
961static int usbhsf_dma_pop_done(struct usbhs_pkt *pkt, int *is_done)
962{
963 struct usbhs_pipe *pipe = pkt->pipe;
964 int maxp = usbhs_pipe_get_maxpacket(pipe);
965
966 usbhsf_dma_stop(pipe, pipe->fifo);
967 usbhsf_dma_unmap(pkt);
968 usbhsf_fifo_unselect(pipe, pipe->fifo);
969
970 pkt->actual += pkt->trans;
971
972 if ((pkt->actual == pkt->length) || /* receive all data */
973 (pkt->trans < maxp)) { /* short packet */
974 *is_done = 1;
975 } else {
976 /* re-enable */
977 usbhsf_prepare_pop(pkt, is_done);
978 }
979
980 return 0;
981}
982
983struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler = {
984 .prepare = usbhsf_prepare_pop,
985 .try_run = usbhsf_dma_try_pop,
986 .dma_done = usbhsf_dma_pop_done
987};
988
989/*
990 * DMA setting
991 */
992static bool usbhsf_dma_filter(struct dma_chan *chan, void *param)
993{
994 struct sh_dmae_slave *slave = param;
995
996 /*
997 * FIXME
998 *
999 * usbhs doesn't recognize id = 0 as valid DMA
1000 */
1001 if (0 == slave->slave_id)
1002 return false;
1003
1004 chan->private = slave;
1005
1006 return true;
1007}
1008
1009static void usbhsf_dma_quit(struct usbhs_priv *priv, struct usbhs_fifo *fifo)
1010{
1011 if (fifo->tx_chan)
1012 dma_release_channel(fifo->tx_chan);
1013 if (fifo->rx_chan)
1014 dma_release_channel(fifo->rx_chan);
1015
1016 fifo->tx_chan = NULL;
1017 fifo->rx_chan = NULL;
1018}
1019
1020static void usbhsf_dma_init(struct usbhs_priv *priv,
1021 struct usbhs_fifo *fifo)
1022{
1023 struct device *dev = usbhs_priv_to_dev(priv);
1024 dma_cap_mask_t mask;
1025
1026 dma_cap_zero(mask);
1027 dma_cap_set(DMA_SLAVE, mask);
1028 fifo->tx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1029 &fifo->tx_slave);
1030
1031 dma_cap_zero(mask);
1032 dma_cap_set(DMA_SLAVE, mask);
1033 fifo->rx_chan = dma_request_channel(mask, usbhsf_dma_filter,
1034 &fifo->rx_slave);
1035
1036 if (fifo->tx_chan || fifo->rx_chan)
Kuninori Morimoto4ce68802011-06-21 09:33:43 +09001037 dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001038 fifo->name,
1039 fifo->tx_chan ? "[TX]" : " ",
1040 fifo->rx_chan ? "[RX]" : " ");
1041}
1042
1043/*
Kuninori Morimotodad67392011-06-06 14:18:28 +09001044 * irq functions
1045 */
1046static int usbhsf_irq_empty(struct usbhs_priv *priv,
1047 struct usbhs_irq_state *irq_state)
1048{
1049 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001050 struct device *dev = usbhs_priv_to_dev(priv);
1051 int i, ret;
1052
1053 if (!irq_state->bempsts) {
1054 dev_err(dev, "debug %s !!\n", __func__);
1055 return -EIO;
1056 }
1057
1058 dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
1059
1060 /*
1061 * search interrupted "pipe"
1062 * not "uep".
1063 */
1064 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1065 if (!(irq_state->bempsts & (1 << i)))
1066 continue;
1067
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001068 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001069 if (ret < 0)
1070 dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
1071 }
1072
1073 return 0;
1074}
1075
1076static int usbhsf_irq_ready(struct usbhs_priv *priv,
1077 struct usbhs_irq_state *irq_state)
1078{
1079 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +09001080 struct device *dev = usbhs_priv_to_dev(priv);
1081 int i, ret;
1082
1083 if (!irq_state->brdysts) {
1084 dev_err(dev, "debug %s !!\n", __func__);
1085 return -EIO;
1086 }
1087
1088 dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
1089
1090 /*
1091 * search interrupted "pipe"
1092 * not "uep".
1093 */
1094 usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
1095 if (!(irq_state->brdysts & (1 << i)))
1096 continue;
1097
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001098 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_TRY_RUN);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001099 if (ret < 0)
1100 dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
1101 }
1102
1103 return 0;
1104}
1105
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001106static void usbhsf_dma_complete(void *arg)
1107{
1108 struct usbhs_pipe *pipe = arg;
1109 struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
1110 struct device *dev = usbhs_priv_to_dev(priv);
1111 int ret;
1112
Kuninori Morimoto51b8a022011-10-10 21:58:45 -07001113 ret = usbhsf_pkt_handler(pipe, USBHSF_PKT_DMA_DONE);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001114 if (ret < 0)
1115 dev_err(dev, "dma_complete run_error %d : %d\n",
1116 usbhs_pipe_number(pipe), ret);
1117}
1118
Kuninori Morimotodad67392011-06-06 14:18:28 +09001119/*
1120 * fifo init
1121 */
1122void usbhs_fifo_init(struct usbhs_priv *priv)
1123{
1124 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001125 struct usbhs_fifo *cfifo = usbhsf_get_cfifo(priv);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001126 struct usbhs_fifo *d0fifo = usbhsf_get_d0fifo(priv);
1127 struct usbhs_fifo *d1fifo = usbhsf_get_d1fifo(priv);
Kuninori Morimotodad67392011-06-06 14:18:28 +09001128
1129 mod->irq_empty = usbhsf_irq_empty;
1130 mod->irq_ready = usbhsf_irq_ready;
1131 mod->irq_bempsts = 0;
1132 mod->irq_brdysts = 0;
Kuninori Morimotod77e3f42011-06-06 14:18:50 +09001133
1134 cfifo->pipe = NULL;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001135 cfifo->tx_chan = NULL;
1136 cfifo->rx_chan = NULL;
1137
1138 d0fifo->pipe = NULL;
1139 d0fifo->tx_chan = NULL;
1140 d0fifo->rx_chan = NULL;
1141
1142 d1fifo->pipe = NULL;
1143 d1fifo->tx_chan = NULL;
1144 d1fifo->rx_chan = NULL;
1145
1146 usbhsf_dma_init(priv, usbhsf_get_d0fifo(priv));
1147 usbhsf_dma_init(priv, usbhsf_get_d1fifo(priv));
Kuninori Morimotodad67392011-06-06 14:18:28 +09001148}
1149
1150void usbhs_fifo_quit(struct usbhs_priv *priv)
1151{
1152 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1153
1154 mod->irq_empty = NULL;
1155 mod->irq_ready = NULL;
1156 mod->irq_bempsts = 0;
1157 mod->irq_brdysts = 0;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001158
1159 usbhsf_dma_quit(priv, usbhsf_get_d0fifo(priv));
1160 usbhsf_dma_quit(priv, usbhsf_get_d1fifo(priv));
Kuninori Morimotodad67392011-06-06 14:18:28 +09001161}
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001162
1163int usbhs_fifo_probe(struct usbhs_priv *priv)
1164{
1165 struct usbhs_fifo *fifo;
1166
1167 /* CFIFO */
1168 fifo = usbhsf_get_cfifo(priv);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001169 fifo->name = "CFIFO";
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001170 fifo->port = CFIFO;
1171 fifo->sel = CFIFOSEL;
1172 fifo->ctr = CFIFOCTR;
1173
Kuninori Morimotoe73a9892011-06-06 14:19:03 +09001174 /* D0FIFO */
1175 fifo = usbhsf_get_d0fifo(priv);
1176 fifo->name = "D0FIFO";
1177 fifo->port = D0FIFO;
1178 fifo->sel = D0FIFOSEL;
1179 fifo->ctr = D0FIFOCTR;
1180 fifo->tx_slave.slave_id = usbhs_get_dparam(priv, d0_tx_id);
1181 fifo->rx_slave.slave_id = usbhs_get_dparam(priv, d0_rx_id);
1182
1183 /* D1FIFO */
1184 fifo = usbhsf_get_d1fifo(priv);
1185 fifo->name = "D1FIFO";
1186 fifo->port = D1FIFO;
1187 fifo->sel = D1FIFOSEL;
1188 fifo->ctr = D1FIFOCTR;
1189 fifo->tx_slave.slave_id = usbhs_get_dparam(priv, d1_tx_id);
1190 fifo->rx_slave.slave_id = usbhs_get_dparam(priv, d1_rx_id);
1191
Kuninori Morimotod3af90a2011-06-06 14:18:44 +09001192 return 0;
1193}
1194
1195void usbhs_fifo_remove(struct usbhs_priv *priv)
1196{
1197}