123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503 |
- /*
- * Renesas USB driver
- *
- * Copyright (C) 2011 Renesas Solutions Corp.
- * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
- #include <linux/delay.h>
- #include <linux/io.h>
- #include "./common.h"
- #include "./pipe.h"
- /*
- * packet info function
- */
- static int usbhsf_null_handle(struct usbhs_pkt *pkt)
- {
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pkt->pipe);
- struct device *dev = usbhs_priv_to_dev(priv);
- dev_err(dev, "null handler\n");
- return -EINVAL;
- }
- static struct usbhs_pkt_handle usbhsf_null_handler = {
- .prepare = usbhsf_null_handle,
- .try_run = usbhsf_null_handle,
- };
- void usbhs_pkt_init(struct usbhs_pkt *pkt)
- {
- INIT_LIST_HEAD(&pkt->node);
- }
- void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,
- struct usbhs_pkt_handle *handler,
- void *buf, int len, int zero)
- {
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- struct device *dev = usbhs_priv_to_dev(priv);
- if (!handler) {
- dev_err(dev, "no handler function\n");
- handler = &usbhsf_null_handler;
- }
- list_del_init(&pkt->node);
- list_add_tail(&pkt->node, &pipe->list);
- pkt->pipe = pipe;
- pkt->buf = buf;
- pkt->handler = handler;
- pkt->length = len;
- pkt->zero = zero;
- pkt->actual = 0;
- }
- void usbhs_pkt_pop(struct usbhs_pkt *pkt)
- {
- list_del_init(&pkt->node);
- }
- struct usbhs_pkt *usbhs_pkt_get(struct usbhs_pipe *pipe)
- {
- if (list_empty(&pipe->list))
- return NULL;
- return list_entry(pipe->list.next, struct usbhs_pkt, node);
- }
- /*
- * irq enable/disable function
- */
- #define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, bempsts, e)
- #define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, brdysts, e)
- #define usbhsf_irq_callback_ctrl(pipe, status, enable) \
- ({ \
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
- struct usbhs_mod *mod = usbhs_mod_get_current(priv); \
- u16 status = (1 << usbhs_pipe_number(pipe)); \
- if (!mod) \
- return; \
- if (enable) \
- mod->irq_##status |= status; \
- else \
- mod->irq_##status &= ~status; \
- usbhs_irq_callback_update(priv, mod); \
- })
- static void usbhsf_tx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
- {
- /*
- * And DCP pipe can NOT use "ready interrupt" for "send"
- * it should use "empty" interrupt.
- * see
- * "Operation" - "Interrupt Function" - "BRDY Interrupt"
- *
- * on the other hand, normal pipe can use "ready interrupt" for "send"
- * even though it is single/double buffer
- */
- if (usbhs_pipe_is_dcp(pipe))
- usbhsf_irq_empty_ctrl(pipe, enable);
- else
- usbhsf_irq_ready_ctrl(pipe, enable);
- }
- static void usbhsf_rx_irq_ctrl(struct usbhs_pipe *pipe, int enable)
- {
- usbhsf_irq_ready_ctrl(pipe, enable);
- }
- /*
- * FIFO ctrl
- */
- static void usbhsf_send_terminator(struct usbhs_pipe *pipe)
- {
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- usbhs_bset(priv, CFIFOCTR, BVAL, BVAL);
- }
- static int usbhsf_fifo_barrier(struct usbhs_priv *priv)
- {
- int timeout = 1024;
- do {
- /* The FIFO port is accessible */
- if (usbhs_read(priv, CFIFOCTR) & FRDY)
- return 0;
- udelay(10);
- } while (timeout--);
- return -EBUSY;
- }
- static void usbhsf_fifo_clear(struct usbhs_pipe *pipe)
- {
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- if (!usbhs_pipe_is_dcp(pipe))
- usbhsf_fifo_barrier(priv);
- usbhs_write(priv, CFIFOCTR, BCLR);
- }
- static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv)
- {
- return usbhs_read(priv, CFIFOCTR) & DTLN_MASK;
- }
- static int usbhsf_fifo_select(struct usbhs_pipe *pipe, int write)
- {
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- struct device *dev = usbhs_priv_to_dev(priv);
- int timeout = 1024;
- u16 mask = ((1 << 5) | 0xF); /* mask of ISEL | CURPIPE */
- u16 base = usbhs_pipe_number(pipe); /* CURPIPE */
- if (usbhs_pipe_is_dcp(pipe))
- base |= (1 == write) << 5; /* ISEL */
- /* "base" will be used below */
- usbhs_write(priv, CFIFOSEL, base | MBW_32);
- /* check ISEL and CURPIPE value */
- while (timeout--) {
- if (base == (mask & usbhs_read(priv, CFIFOSEL)))
- return 0;
- udelay(10);
- }
- dev_err(dev, "fifo select error\n");
- return -EIO;
- }
- /*
- * PIO fifo functions
- */
- static int usbhsf_try_push(struct usbhs_pkt *pkt)
- {
- struct usbhs_pipe *pipe = pkt->pipe;
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
- struct device *dev = usbhs_priv_to_dev(priv);
- void __iomem *addr = priv->base + CFIFO;
- u8 *buf;
- int maxp = usbhs_pipe_get_maxpacket(pipe);
- int total_len;
- int i, ret, len;
- int is_short, is_done;
- ret = usbhsf_fifo_select(pipe, 1);
- if (ret < 0)
- goto usbhs_fifo_write_busy;
- ret = usbhs_pipe_is_accessible(pipe);
- if (ret < 0)
- goto usbhs_fifo_write_busy;
- ret = usbhsf_fifo_barrier(priv);
- if (ret < 0)
- goto usbhs_fifo_write_busy;
- buf = pkt->buf + pkt->actual;
- len = pkt->length - pkt->actual;
- len = min(len, maxp);
- total_len = len;
- is_short = total_len < maxp;
- /*
- * FIXME
- *
- * 32-bit access only
- */
- if (len >= 4 && !((unsigned long)buf & 0x03)) {
- iowrite32_rep(addr, buf, len / 4);
- len %= 4;
- buf += total_len - len;
- }
- /* the rest operation */
- for (i = 0; i < len; i++)
- iowrite8(buf[i], addr + (0x03 - (i & 0x03)));
- /*
- * variable update
- */
- pkt->actual += total_len;
- if (pkt->actual < pkt->length)
- is_done = 0; /* there are remainder data */
- else if (is_short)
- is_done = 1; /* short packet */
- else
- is_done = !pkt->zero; /* send zero packet ? */
- /*
- * pipe/irq handling
- */
- if (is_short)
- usbhsf_send_terminator(pipe);
- usbhsf_tx_irq_ctrl(pipe, !is_done);
- usbhs_pipe_enable(pipe);
- dev_dbg(dev, " send %d (%d/ %d/ %d/ %d)\n",
- usbhs_pipe_number(pipe),
- pkt->length, pkt->actual, is_done, pkt->zero);
- /*
- * Transmission end
- */
- if (is_done) {
- if (usbhs_pipe_is_dcp(pipe))
- usbhs_dcp_control_transfer_done(pipe);
- info->done(pkt);
- }
- return 0;
- usbhs_fifo_write_busy:
- /*
- * pipe is busy.
- * retry in interrupt
- */
- usbhsf_tx_irq_ctrl(pipe, 1);
- return ret;
- }
- struct usbhs_pkt_handle usbhs_fifo_push_handler = {
- .prepare = usbhsf_try_push,
- .try_run = usbhsf_try_push,
- };
- static int usbhsf_prepare_pop(struct usbhs_pkt *pkt)
- {
- struct usbhs_pipe *pipe = pkt->pipe;
- int ret;
- /*
- * select pipe and enable it to prepare packet receive
- */
- ret = usbhsf_fifo_select(pipe, 0);
- if (ret < 0)
- return ret;
- usbhs_pipe_enable(pipe);
- usbhsf_rx_irq_ctrl(pipe, 1);
- return ret;
- }
- static int usbhsf_try_pop(struct usbhs_pkt *pkt)
- {
- struct usbhs_pipe *pipe = pkt->pipe;
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- struct device *dev = usbhs_priv_to_dev(priv);
- void __iomem *addr = priv->base + CFIFO;
- u8 *buf;
- u32 data = 0;
- int maxp = usbhs_pipe_get_maxpacket(pipe);
- int rcv_len, len;
- int i, ret;
- int total_len = 0;
- int is_done = 0;
- ret = usbhsf_fifo_select(pipe, 0);
- if (ret < 0)
- return ret;
- ret = usbhsf_fifo_barrier(priv);
- if (ret < 0)
- return ret;
- rcv_len = usbhsf_fifo_rcv_len(priv);
- buf = pkt->buf + pkt->actual;
- len = pkt->length - pkt->actual;
- len = min(len, rcv_len);
- total_len = len;
- /*
- * Buffer clear if Zero-Length packet
- *
- * see
- * "Operation" - "FIFO Buffer Memory" - "FIFO Port Function"
- */
- if (0 == rcv_len) {
- usbhsf_fifo_clear(pipe);
- goto usbhs_fifo_read_end;
- }
- /*
- * FIXME
- *
- * 32-bit access only
- */
- if (len >= 4 && !((unsigned long)buf & 0x03)) {
- ioread32_rep(addr, buf, len / 4);
- len %= 4;
- buf += total_len - len;
- }
- /* the rest operation */
- for (i = 0; i < len; i++) {
- if (!(i & 0x03))
- data = ioread32(addr);
- buf[i] = (data >> ((i & 0x03) * 8)) & 0xff;
- }
- pkt->actual += total_len;
- usbhs_fifo_read_end:
- if ((pkt->actual == pkt->length) || /* receive all data */
- (total_len < maxp)) /* short packet */
- is_done = 1;
- dev_dbg(dev, " recv %d (%d/ %d/ %d/ %d)\n",
- usbhs_pipe_number(pipe),
- pkt->length, pkt->actual, is_done, pkt->zero);
- if (is_done) {
- struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
- usbhsf_rx_irq_ctrl(pipe, 0);
- usbhs_pipe_disable(pipe);
- info->done(pkt);
- }
- return 0;
- }
- struct usbhs_pkt_handle usbhs_fifo_pop_handler = {
- .prepare = usbhsf_prepare_pop,
- .try_run = usbhsf_try_pop,
- };
- /*
- * handler function
- */
- static int usbhsf_ctrl_stage_end(struct usbhs_pkt *pkt)
- {
- struct usbhs_pipe *pipe = pkt->pipe;
- struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
- struct usbhs_pipe_info *info = usbhs_priv_to_pipeinfo(priv);
- usbhs_dcp_control_transfer_done(pipe);
- info->done(pkt);
- return 0;
- }
- struct usbhs_pkt_handle usbhs_ctrl_stage_end_handler = {
- .prepare = usbhsf_ctrl_stage_end,
- .try_run = usbhsf_ctrl_stage_end,
- };
- /*
- * irq functions
- */
- static int usbhsf_irq_empty(struct usbhs_priv *priv,
- struct usbhs_irq_state *irq_state)
- {
- struct usbhs_pipe *pipe;
- struct usbhs_pkt *pkt;
- struct device *dev = usbhs_priv_to_dev(priv);
- int i, ret;
- if (!irq_state->bempsts) {
- dev_err(dev, "debug %s !!\n", __func__);
- return -EIO;
- }
- dev_dbg(dev, "irq empty [0x%04x]\n", irq_state->bempsts);
- /*
- * search interrupted "pipe"
- * not "uep".
- */
- usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
- if (!(irq_state->bempsts & (1 << i)))
- continue;
- pkt = usbhs_pkt_get(pipe);
- ret = usbhs_pkt_run(pkt);
- if (ret < 0)
- dev_err(dev, "irq_empty run_error %d : %d\n", i, ret);
- }
- return 0;
- }
- static int usbhsf_irq_ready(struct usbhs_priv *priv,
- struct usbhs_irq_state *irq_state)
- {
- struct usbhs_pipe *pipe;
- struct usbhs_pkt *pkt;
- struct device *dev = usbhs_priv_to_dev(priv);
- int i, ret;
- if (!irq_state->brdysts) {
- dev_err(dev, "debug %s !!\n", __func__);
- return -EIO;
- }
- dev_dbg(dev, "irq ready [0x%04x]\n", irq_state->brdysts);
- /*
- * search interrupted "pipe"
- * not "uep".
- */
- usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
- if (!(irq_state->brdysts & (1 << i)))
- continue;
- pkt = usbhs_pkt_get(pipe);
- ret = usbhs_pkt_run(pkt);
- if (ret < 0)
- dev_err(dev, "irq_ready run_error %d : %d\n", i, ret);
- }
- return 0;
- }
- /*
- * fifo init
- */
- void usbhs_fifo_init(struct usbhs_priv *priv)
- {
- struct usbhs_mod *mod = usbhs_mod_get_current(priv);
- mod->irq_empty = usbhsf_irq_empty;
- mod->irq_ready = usbhsf_irq_ready;
- mod->irq_bempsts = 0;
- mod->irq_brdysts = 0;
- }
- void usbhs_fifo_quit(struct usbhs_priv *priv)
- {
- struct usbhs_mod *mod = usbhs_mod_get_current(priv);
- mod->irq_empty = NULL;
- mod->irq_ready = NULL;
- mod->irq_bempsts = 0;
- mod->irq_brdysts = 0;
- }
|