blob: f68609c0f489b6df2c662cbc86e2adf85c193c98 [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>
22#include <asm/dma.h>
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090023#include "pipe.h"
24
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090025#define DMA_ADDR_INVALID (~(dma_addr_t)0)
26
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090027struct usbhs_fifo {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090028 char *name;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090029 u32 port; /* xFIFO */
30 u32 sel; /* xFIFOSEL */
31 u32 ctr; /* xFIFOCTR */
Kuninori Morimotod77e3f42011-06-06 14:18:50 +090032
33 struct usbhs_pipe *pipe;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090034 struct tasklet_struct tasklet;
35
36 struct dma_chan *tx_chan;
37 struct dma_chan *rx_chan;
38
39 struct sh_dmae_slave tx_slave;
40 struct sh_dmae_slave rx_slave;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090041};
42
43struct usbhs_fifo_info {
44 struct usbhs_fifo cfifo;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090045 struct usbhs_fifo d0fifo;
46 struct usbhs_fifo d1fifo;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090047};
48
Kuninori Morimotodad67392011-06-06 14:18:28 +090049struct usbhs_pkt_handle;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090050struct usbhs_pkt {
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090051 struct list_head node;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090052 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +090053 struct usbhs_pkt_handle *handler;
Kuninori Morimotob3318722011-10-10 22:04:41 -070054 void (*done)(struct usbhs_priv *priv,
55 struct usbhs_pkt *pkt);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090056 dma_addr_t dma;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090057 void *buf;
58 int length;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090059 int trans;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090060 int actual;
Kuninori Morimoto659d4952011-06-06 14:18:23 +090061 int zero;
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080062 int sequence;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090063};
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090064
Kuninori Morimotodad67392011-06-06 14:18:28 +090065struct usbhs_pkt_handle {
Kuninori Morimoto97664a22011-06-06 14:18:38 +090066 int (*prepare)(struct usbhs_pkt *pkt, int *is_done);
67 int (*try_run)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090068 int (*dma_done)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotodad67392011-06-06 14:18:28 +090069};
70
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090071/*
72 * fifo
73 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090074int usbhs_fifo_probe(struct usbhs_priv *priv);
75void usbhs_fifo_remove(struct usbhs_priv *priv);
Kuninori Morimotodad67392011-06-06 14:18:28 +090076void usbhs_fifo_init(struct usbhs_priv *priv);
77void usbhs_fifo_quit(struct usbhs_priv *priv);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090078
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090079/*
80 * packet info
81 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +090082extern struct usbhs_pkt_handle usbhs_fifo_pio_push_handler;
83extern struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler;
Kuninori Morimotodad67392011-06-06 14:18:28 +090084extern struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler;
85
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090086extern struct usbhs_pkt_handle usbhs_fifo_dma_push_handler;
87extern struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler;
88
Kuninori Morimoto9e74d602011-10-10 22:07:08 -070089extern struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler;
90extern struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler;
91
92extern struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler;
93extern struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090094
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090095void usbhs_pkt_init(struct usbhs_pkt *pkt);
Kuninori Morimoto659d4952011-06-06 14:18:23 +090096void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
Kuninori Morimotob3318722011-10-10 22:04:41 -070097 void (*done)(struct usbhs_priv *priv,
98 struct usbhs_pkt *pkt),
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080099 void *buf, int len, int zero, int sequence);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900100struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt);
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700101void usbhs_pkt_start(struct usbhs_pipe *pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900102
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900103#endif /* RENESAS_USB_FIFO_H */