blob: c31731a843d12cefa1214fe17dad4a31b97dee94 [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 Morimotoe73a9892011-06-06 14:19:03 +090026#define DMA_ADDR_INVALID (~(dma_addr_t)0)
27
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090028struct usbhs_fifo {
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090029 char *name;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090030 u32 port; /* xFIFO */
31 u32 sel; /* xFIFOSEL */
32 u32 ctr; /* xFIFOCTR */
Kuninori Morimotod77e3f42011-06-06 14:18:50 +090033
34 struct usbhs_pipe *pipe;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090035
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);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +010056 struct work_struct work;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090057 dma_addr_t dma;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090058 void *buf;
59 int length;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090060 int trans;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090061 int actual;
Kuninori Morimoto659d4952011-06-06 14:18:23 +090062 int zero;
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080063 int sequence;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090064};
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090065
Kuninori Morimotodad67392011-06-06 14:18:28 +090066struct usbhs_pkt_handle {
Kuninori Morimoto97664a22011-06-06 14:18:38 +090067 int (*prepare)(struct usbhs_pkt *pkt, int *is_done);
68 int (*try_run)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090069 int (*dma_done)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotodad67392011-06-06 14:18:28 +090070};
71
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090072/*
73 * fifo
74 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090075int usbhs_fifo_probe(struct usbhs_priv *priv);
76void usbhs_fifo_remove(struct usbhs_priv *priv);
Kuninori Morimotodad67392011-06-06 14:18:28 +090077void usbhs_fifo_init(struct usbhs_priv *priv);
78void usbhs_fifo_quit(struct usbhs_priv *priv);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090079
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090080/*
81 * packet info
82 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +090083extern struct usbhs_pkt_handle usbhs_fifo_pio_push_handler;
84extern struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler;
Kuninori Morimotodad67392011-06-06 14:18:28 +090085extern struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler;
86
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090087extern struct usbhs_pkt_handle usbhs_fifo_dma_push_handler;
88extern struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler;
89
Kuninori Morimoto9e74d602011-10-10 22:07:08 -070090extern struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler;
91extern struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler;
92
93extern struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler;
94extern struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090095
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090096void usbhs_pkt_init(struct usbhs_pkt *pkt);
Kuninori Morimoto659d4952011-06-06 14:18:23 +090097void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
Kuninori Morimotob3318722011-10-10 22:04:41 -070098 void (*done)(struct usbhs_priv *priv,
99 struct usbhs_pkt *pkt),
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800100 void *buf, int len, int zero, int sequence);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900101struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt);
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700102void usbhs_pkt_start(struct usbhs_pipe *pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900103
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900104#endif /* RENESAS_USB_FIFO_H */