blob: 04d3f8abad9e5fcb59b71219496ee7a2122a7509 [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
Yoshihiro Shimodad3cf6a42014-11-10 20:02:47 +090041#define USBHS_MAX_NUM_DFIFO 4
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090042struct usbhs_fifo_info {
43 struct usbhs_fifo cfifo;
Yoshihiro Shimodac907e422014-11-10 20:02:44 +090044 struct usbhs_fifo dfifo[USBHS_MAX_NUM_DFIFO];
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090045};
Yoshihiro Shimoda3a2634a2014-11-10 20:02:45 +090046#define usbhsf_get_dnfifo(p, n) (&((p)->fifo_info.dfifo[n]))
47#define usbhs_for_each_dfifo(priv, dfifo, i) \
48 for ((i) = 0, dfifo = usbhsf_get_dnfifo(priv, (i)); \
49 ((i) < USBHS_MAX_NUM_DFIFO); \
50 (i)++, dfifo = usbhsf_get_dnfifo(priv, (i)))
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090051
Kuninori Morimotodad67392011-06-06 14:18:28 +090052struct usbhs_pkt_handle;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090053struct usbhs_pkt {
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +090054 struct list_head node;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090055 struct usbhs_pipe *pipe;
Kuninori Morimotodad67392011-06-06 14:18:28 +090056 struct usbhs_pkt_handle *handler;
Kuninori Morimotob3318722011-10-10 22:04:41 -070057 void (*done)(struct usbhs_priv *priv,
58 struct usbhs_pkt *pkt);
Guennadi Liakhovetski6e4b74e2012-02-14 11:37:21 +010059 struct work_struct work;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090060 dma_addr_t dma;
Yoshihiro Shimodaab330cf2015-03-12 15:35:20 +090061 dma_cookie_t cookie;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090062 void *buf;
63 int length;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090064 int trans;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090065 int actual;
Kuninori Morimoto659d4952011-06-06 14:18:23 +090066 int zero;
Kuninori Morimoto3edeee32011-12-08 18:28:54 -080067 int sequence;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090068};
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090069
Kuninori Morimotodad67392011-06-06 14:18:28 +090070struct usbhs_pkt_handle {
Kuninori Morimoto97664a22011-06-06 14:18:38 +090071 int (*prepare)(struct usbhs_pkt *pkt, int *is_done);
72 int (*try_run)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090073 int (*dma_done)(struct usbhs_pkt *pkt, int *is_done);
Kuninori Morimotodad67392011-06-06 14:18:28 +090074};
75
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090076/*
77 * fifo
78 */
Kuninori Morimotod3af90a2011-06-06 14:18:44 +090079int usbhs_fifo_probe(struct usbhs_priv *priv);
80void usbhs_fifo_remove(struct usbhs_priv *priv);
Kuninori Morimotodad67392011-06-06 14:18:28 +090081void usbhs_fifo_init(struct usbhs_priv *priv);
82void usbhs_fifo_quit(struct usbhs_priv *priv);
Yoshihiro Shimodacdeb7942014-11-04 10:05:45 +090083void usbhs_fifo_clear_dcp(struct usbhs_pipe *pipe);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +090084
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090085/*
86 * packet info
87 */
Kuninori Morimoto0cb7e612011-06-06 14:18:58 +090088extern struct usbhs_pkt_handle usbhs_fifo_pio_push_handler;
89extern struct usbhs_pkt_handle usbhs_fifo_pio_pop_handler;
Kuninori Morimotodad67392011-06-06 14:18:28 +090090extern struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler;
91
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090092extern struct usbhs_pkt_handle usbhs_fifo_dma_push_handler;
93extern struct usbhs_pkt_handle usbhs_fifo_dma_pop_handler;
94
Kuninori Morimoto9e74d602011-10-10 22:07:08 -070095extern struct usbhs_pkt_handle usbhs_dcp_status_stage_in_handler;
96extern struct usbhs_pkt_handle usbhs_dcp_status_stage_out_handler;
97
98extern struct usbhs_pkt_handle usbhs_dcp_data_stage_in_handler;
99extern struct usbhs_pkt_handle usbhs_dcp_data_stage_out_handler;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900100
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900101void usbhs_pkt_init(struct usbhs_pkt *pkt);
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900102void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
Kuninori Morimotob3318722011-10-10 22:04:41 -0700103 void (*done)(struct usbhs_priv *priv,
104 struct usbhs_pkt *pkt),
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800105 void *buf, int len, int zero, int sequence);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900106struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt);
Kuninori Morimoto51b8a022011-10-10 21:58:45 -0700107void usbhs_pkt_start(struct usbhs_pipe *pipe);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900108
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900109#endif /* RENESAS_USB_FIFO_H */