blob: a168a1760fce87ca6e8747491a609e9ed2445b6f [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#ifndef RENESAS_USB_FIFO_H
18#define RENESAS_USB_FIFO_H
19
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090020#include <linux/interrupt.h>
21#include <linux/sh_dma.h>
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +010022#include <linux/workqueue.h>
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090023#include <asm/dma.h>
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090024#include "pipe.h"
25
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090026struct usbhs_fifo {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090027 char *name;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090028 u32 port; /* xFIFO */
29 u32 sel; /* xFIFOSEL */
30 u32 ctr; /* xFIFOCTR */
Kuninori Morimotod77e3f42011-06-06 14:18:50 +090031
32 struct usbhs_pipe *pipe;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090033
34 struct dma_chan *tx_chan;
35 struct dma_chan *rx_chan;
36
37 struct sh_dmae_slave tx_slave;
38 struct sh_dmae_slave rx_slave;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090039};
40
41struct usbhs_fifo_info {
42 struct usbhs_fifo cfifo;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090043 struct usbhs_fifo d0fifo;
44 struct usbhs_fifo d1fifo;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090045};
46
Kuninori Morimotodad67392011-06-06 14:18:28 +090047struct usbhs_pkt_handle;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090048struct usbhs_pkt {
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090049 struct list_head node;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090050 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +090051 struct usbhs_pkt_handle *handler;
Kuninori Morimotob3318722011-10-10 22:04:41 -070052 void (*done)(struct usbhs_priv *priv,
53 struct usbhs_pkt *pkt);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +010054 struct work_struct work;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090055 dma_addr_t dma;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090056 void *buf;
57 int length;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090058 int trans;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090059 int actual;
Kuninori Morimoto659d4952011-06-06 14:18:23 +090060 int zero;
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080061 int sequence;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090062};
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090063
Kuninori Morimotodad67392011-06-06 14:18:28 +090064struct usbhs_pkt_handle {
Kuninori Morimoto97664a22011-06-06 14:18:38 +090065 int (*prepare)(struct usbhs_pkt *pkt, int *is_done);
66 int (*try_run)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090067 int (*dma_done)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotodad67392011-06-06 14:18:28 +090068};
69
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090070/*
71 * fifo
72 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090073int usbhs_fifo_probe(struct usbhs_priv *priv);
74void usbhs_fifo_remove(struct usbhs_priv *priv);
Kuninori Morimotodad67392011-06-06 14:18:28 +090075void usbhs_fifo_init(struct usbhs_priv *priv);
76void usbhs_fifo_quit(struct usbhs_priv *priv);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090077
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090078/*
79 * packet info
80 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +090081extern struct usbhs_pkt_handle usbhs_fifo_pio_push_handler;
82extern struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler;
Kuninori Morimotodad67392011-06-06 14:18:28 +090083extern struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler;
84
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090085extern struct usbhs_pkt_handle usbhs_fifo_dma_push_handler;
86extern struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler;
87
Kuninori Morimoto9e74d602011-10-10 22:07:08 -070088extern struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler;
89extern struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler;
90
91extern struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler;
92extern struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090093
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090094void usbhs_pkt_init(struct usbhs_pkt *pkt);
Kuninori Morimoto659d4952011-06-06 14:18:23 +090095void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
Kuninori Morimotob3318722011-10-10 22:04:41 -070096 void (*done)(struct usbhs_priv *priv,
97 struct usbhs_pkt *pkt),
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080098 void *buf, int len, int zero, int sequence);
Kuninori Morimoto97664a22011-06-06 14:18:38 +090099struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt);
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700100void usbhs_pkt_start(struct usbhs_pipe *pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900101
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900102#endif /* RENESAS_USB_FIFO_H */