Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 1 | /** |
| 2 | * ipoctal.c |
| 3 | * |
| 4 | * driver for the GE IP-OCTAL boards |
Samuel Iglesias Gonsalvez | 7685972 | 2012-11-16 16:19:58 +0100 | [diff] [blame] | 5 | * |
| 6 | * Copyright (C) 2009-2012 CERN (www.cern.ch) |
| 7 | * Author: Nicolas Serafini, EIC2 SA |
| 8 | * Author: Samuel Iglesias Gonsalvez <siglesias@igalia.com> |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the Free |
Samuel Iglesias Gonsalvez | 3225436 | 2012-05-11 10:17:15 +0200 | [diff] [blame] | 12 | * Software Foundation; version 2 of the License. |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 15 | #include <linux/device.h> |
| 16 | #include <linux/module.h> |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 18 | #include <linux/sched.h> |
| 19 | #include <linux/tty.h> |
| 20 | #include <linux/serial.h> |
| 21 | #include <linux/tty_flip.h> |
| 22 | #include <linux/slab.h> |
Jens Taprogge | 64802dc | 2012-09-04 17:01:08 +0200 | [diff] [blame] | 23 | #include <linux/io.h> |
Samuel Iglesias Gonsalvez | 7dbce02 | 2012-11-16 19:33:45 +0100 | [diff] [blame] | 24 | #include <linux/ipack.h> |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 25 | #include "ipoctal.h" |
| 26 | #include "scc2698.h" |
| 27 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 28 | #define IP_OCTAL_ID_SPACE_VECTOR 0x41 |
| 29 | #define IP_OCTAL_NB_BLOCKS 4 |
| 30 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 31 | static const struct tty_operations ipoctal_fops; |
| 32 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 33 | struct ipoctal_channel { |
| 34 | struct ipoctal_stats stats; |
| 35 | unsigned int nb_bytes; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 36 | wait_queue_head_t queue; |
| 37 | spinlock_t lock; |
| 38 | unsigned int pointer_read; |
| 39 | unsigned int pointer_write; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 40 | struct tty_port tty_port; |
| 41 | union scc2698_channel __iomem *regs; |
| 42 | union scc2698_block __iomem *block_regs; |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 43 | unsigned int board_id; |
Jens Taprogge | 4e4732a | 2012-09-12 14:55:29 +0200 | [diff] [blame] | 44 | u8 isr_rx_rdy_mask; |
| 45 | u8 isr_tx_rdy_mask; |
Samuel Iglesias Gonsalvez | b0d17fb | 2012-12-10 11:50:07 +0100 | [diff] [blame] | 46 | unsigned int rx_enable; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 47 | }; |
| 48 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 49 | struct ipoctal { |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 50 | struct ipack_device *dev; |
| 51 | unsigned int board_id; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 52 | struct ipoctal_channel channel[NR_CHANNELS]; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 53 | struct tty_driver *tty_drv; |
Jens Taprogge | fe4a3ed | 2012-09-27 12:37:36 +0200 | [diff] [blame] | 54 | u8 __iomem *mem8_space; |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 55 | u8 __iomem *int_space; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 56 | }; |
| 57 | |
Federico Vaga | 78f22bc | 2014-09-02 17:31:39 +0200 | [diff] [blame^] | 58 | static void ipoctal_reset_channel(struct ipoctal_channel *channel) |
| 59 | { |
| 60 | iowrite8(CR_DISABLE_RX | CR_DISABLE_TX, &channel->regs->w.cr); |
| 61 | channel->rx_enable = 0; |
| 62 | iowrite8(CR_CMD_RESET_RX, &channel->regs->w.cr); |
| 63 | iowrite8(CR_CMD_RESET_TX, &channel->regs->w.cr); |
| 64 | iowrite8(CR_CMD_RESET_ERR_STATUS, &channel->regs->w.cr); |
| 65 | iowrite8(CR_CMD_RESET_MR, &channel->regs->w.cr); |
| 66 | } |
| 67 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 68 | static int ipoctal_port_activate(struct tty_port *port, struct tty_struct *tty) |
| 69 | { |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 70 | struct ipoctal_channel *channel; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 71 | |
Jens Taprogge | 9c1d784 | 2012-09-12 14:55:42 +0200 | [diff] [blame] | 72 | channel = dev_get_drvdata(tty->dev); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 73 | |
Samuel Iglesias Gonsalvez | a3882b7 | 2012-12-10 11:50:03 +0100 | [diff] [blame] | 74 | /* |
| 75 | * Enable RX. TX will be enabled when |
| 76 | * there is something to send |
| 77 | */ |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 78 | iowrite8(CR_ENABLE_RX, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | b0d17fb | 2012-12-10 11:50:07 +0100 | [diff] [blame] | 79 | channel->rx_enable = 1; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | static int ipoctal_open(struct tty_struct *tty, struct file *file) |
| 84 | { |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 85 | struct ipoctal_channel *channel; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 86 | |
Jens Taprogge | 9c1d784 | 2012-09-12 14:55:42 +0200 | [diff] [blame] | 87 | channel = dev_get_drvdata(tty->dev); |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 88 | tty->driver_data = channel; |
Samuel Iglesias Gonsálvez | 1337b07 | 2012-07-13 13:33:13 +0200 | [diff] [blame] | 89 | |
Samuel Iglesias Gonsalvez | 7e5730d | 2012-12-10 11:49:59 +0100 | [diff] [blame] | 90 | return tty_port_open(&channel->tty_port, tty, file); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static void ipoctal_reset_stats(struct ipoctal_stats *stats) |
| 94 | { |
| 95 | stats->tx = 0; |
| 96 | stats->rx = 0; |
| 97 | stats->rcv_break = 0; |
| 98 | stats->framing_err = 0; |
| 99 | stats->overrun_err = 0; |
| 100 | stats->parity_err = 0; |
| 101 | } |
| 102 | |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 103 | static void ipoctal_free_channel(struct ipoctal_channel *channel) |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 104 | { |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 105 | ipoctal_reset_stats(&channel->stats); |
| 106 | channel->pointer_read = 0; |
| 107 | channel->pointer_write = 0; |
| 108 | channel->nb_bytes = 0; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static void ipoctal_close(struct tty_struct *tty, struct file *filp) |
| 112 | { |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 113 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 114 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 115 | tty_port_close(&channel->tty_port, tty, filp); |
Samuel Iglesias Gonsalvez | 7e5730d | 2012-12-10 11:49:59 +0100 | [diff] [blame] | 116 | ipoctal_free_channel(channel); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static int ipoctal_get_icount(struct tty_struct *tty, |
| 120 | struct serial_icounter_struct *icount) |
| 121 | { |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 122 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 123 | |
| 124 | icount->cts = 0; |
| 125 | icount->dsr = 0; |
| 126 | icount->rng = 0; |
| 127 | icount->dcd = 0; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 128 | icount->rx = channel->stats.rx; |
| 129 | icount->tx = channel->stats.tx; |
| 130 | icount->frame = channel->stats.framing_err; |
| 131 | icount->parity = channel->stats.parity_err; |
| 132 | icount->brk = channel->stats.rcv_break; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 133 | return 0; |
| 134 | } |
| 135 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 136 | static void ipoctal_irq_rx(struct ipoctal_channel *channel, u8 sr) |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 137 | { |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 138 | struct tty_port *port = &channel->tty_port; |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 139 | unsigned char value; |
Samuel Iglesias Gonsalvez | b5071f2 | 2012-12-10 11:50:01 +0100 | [diff] [blame] | 140 | unsigned char flag; |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 141 | u8 isr; |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 142 | |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 143 | do { |
| 144 | value = ioread8(&channel->regs->r.rhr); |
Samuel Iglesias Gonsalvez | b5071f2 | 2012-12-10 11:50:01 +0100 | [diff] [blame] | 145 | flag = TTY_NORMAL; |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 146 | /* Error: count statistics */ |
| 147 | if (sr & SR_ERROR) { |
| 148 | iowrite8(CR_CMD_RESET_ERR_STATUS, &channel->regs->w.cr); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 149 | |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 150 | if (sr & SR_OVERRUN_ERROR) { |
| 151 | channel->stats.overrun_err++; |
| 152 | /* Overrun doesn't affect the current character*/ |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 153 | tty_insert_flip_char(port, 0, TTY_OVERRUN); |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 154 | } |
| 155 | if (sr & SR_PARITY_ERROR) { |
| 156 | channel->stats.parity_err++; |
| 157 | flag = TTY_PARITY; |
| 158 | } |
| 159 | if (sr & SR_FRAMING_ERROR) { |
| 160 | channel->stats.framing_err++; |
| 161 | flag = TTY_FRAME; |
| 162 | } |
| 163 | if (sr & SR_RECEIVED_BREAK) { |
Samuel Iglesias Gonsalvez | 4514108 | 2012-09-13 12:32:22 +0200 | [diff] [blame] | 164 | iowrite8(CR_CMD_RESET_BREAK_CHANGE, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 165 | channel->stats.rcv_break++; |
| 166 | flag = TTY_BREAK; |
| 167 | } |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 168 | } |
Jiri Slaby | 92a19f9 | 2013-01-03 15:53:03 +0100 | [diff] [blame] | 169 | tty_insert_flip_char(port, value, flag); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 170 | |
Samuel Iglesias Gonsalvez | ab0a71f | 2012-09-12 14:55:43 +0200 | [diff] [blame] | 171 | /* Check if there are more characters in RX FIFO |
| 172 | * If there are more, the isr register for this channel |
| 173 | * has enabled the RxRDY|FFULL bit. |
| 174 | */ |
| 175 | isr = ioread8(&channel->block_regs->r.isr); |
| 176 | sr = ioread8(&channel->regs->r.sr); |
| 177 | } while (isr & channel->isr_rx_rdy_mask); |
| 178 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 179 | tty_flip_buffer_push(port); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | static void ipoctal_irq_tx(struct ipoctal_channel *channel) |
| 183 | { |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 184 | unsigned char value; |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 185 | unsigned int *pointer_write = &channel->pointer_write; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 186 | |
Alberto Garcia | 69a6b9b | 2012-12-10 11:49:58 +0100 | [diff] [blame] | 187 | if (channel->nb_bytes == 0) |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 188 | return; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 189 | |
Federico Vaga | 968d04e | 2014-06-26 09:46:24 +0200 | [diff] [blame] | 190 | spin_lock(&channel->lock); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 191 | value = channel->tty_port.xmit_buf[*pointer_write]; |
| 192 | iowrite8(value, &channel->regs->w.thr); |
| 193 | channel->stats.tx++; |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 194 | (*pointer_write)++; |
| 195 | *pointer_write = *pointer_write % PAGE_SIZE; |
| 196 | channel->nb_bytes--; |
Federico Vaga | 968d04e | 2014-06-26 09:46:24 +0200 | [diff] [blame] | 197 | spin_unlock(&channel->lock); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | static void ipoctal_irq_channel(struct ipoctal_channel *channel) |
| 201 | { |
| 202 | u8 isr, sr; |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 203 | |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 204 | /* The HW is organized in pair of channels. See which register we need |
| 205 | * to read from */ |
| 206 | isr = ioread8(&channel->block_regs->r.isr); |
| 207 | sr = ioread8(&channel->regs->r.sr); |
| 208 | |
Samuel Iglesias Gonsalvez | 9d01b6f | 2012-12-10 11:50:02 +0100 | [diff] [blame] | 209 | if ((sr & SR_TX_EMPTY) && (channel->nb_bytes == 0)) { |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 210 | iowrite8(CR_DISABLE_TX, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | 9d01b6f | 2012-12-10 11:50:02 +0100 | [diff] [blame] | 211 | /* In case of RS-485, change from TX to RX when finishing TX. |
| 212 | * Half-duplex. */ |
| 213 | if (channel->board_id == IPACK1_DEVICE_ID_SBS_OCTAL_485) { |
| 214 | iowrite8(CR_CMD_NEGATE_RTSN, &channel->regs->w.cr); |
| 215 | iowrite8(CR_ENABLE_RX, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | 2910fe2 | 2013-01-18 08:57:21 +0100 | [diff] [blame] | 216 | channel->rx_enable = 1; |
Samuel Iglesias Gonsalvez | 9d01b6f | 2012-12-10 11:50:02 +0100 | [diff] [blame] | 217 | } |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* RX data */ |
| 221 | if ((isr & channel->isr_rx_rdy_mask) && (sr & SR_RX_READY)) |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 222 | ipoctal_irq_rx(channel, sr); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 223 | |
| 224 | /* TX of each character */ |
| 225 | if ((isr & channel->isr_tx_rdy_mask) && (sr & SR_TX_READY)) |
| 226 | ipoctal_irq_tx(channel); |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 227 | } |
| 228 | |
Jens Taprogge | faa75c4 | 2012-09-12 14:55:38 +0200 | [diff] [blame] | 229 | static irqreturn_t ipoctal_irq_handler(void *arg) |
Jens Taprogge | 87cfb95 | 2012-09-12 14:55:30 +0200 | [diff] [blame] | 230 | { |
| 231 | unsigned int i; |
| 232 | struct ipoctal *ipoctal = (struct ipoctal *) arg; |
| 233 | |
Jens Taprogge | ea99114 | 2012-09-13 12:32:20 +0200 | [diff] [blame] | 234 | /* Clear the IPack device interrupt */ |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 235 | readw(ipoctal->int_space + ACK_INT_REQ0); |
| 236 | readw(ipoctal->int_space + ACK_INT_REQ1); |
Jens Taprogge | ea99114 | 2012-09-13 12:32:20 +0200 | [diff] [blame] | 237 | |
Samuel Iglesias Gonsalvez | 21d27ed | 2012-12-10 11:50:04 +0100 | [diff] [blame] | 238 | /* Check all channels */ |
| 239 | for (i = 0; i < NR_CHANNELS; i++) |
| 240 | ipoctal_irq_channel(&ipoctal->channel[i]); |
| 241 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 242 | return IRQ_HANDLED; |
| 243 | } |
| 244 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 245 | static const struct tty_port_operations ipoctal_tty_port_ops = { |
| 246 | .dtr_rts = NULL, |
| 247 | .activate = ipoctal_port_activate, |
| 248 | }; |
| 249 | |
| 250 | static int ipoctal_inst_slot(struct ipoctal *ipoctal, unsigned int bus_nr, |
Jens Taprogge | c6e2dfa | 2012-09-13 12:32:21 +0200 | [diff] [blame] | 251 | unsigned int slot) |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 252 | { |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 253 | int res; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 254 | int i; |
| 255 | struct tty_driver *tty; |
| 256 | char name[20]; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 257 | struct ipoctal_channel *channel; |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 258 | struct ipack_region *region; |
| 259 | void __iomem *addr; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 260 | union scc2698_channel __iomem *chan_regs; |
| 261 | union scc2698_block __iomem *block_regs; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 262 | |
Jens Taprogge | 2ec678d | 2012-09-27 12:37:33 +0200 | [diff] [blame] | 263 | ipoctal->board_id = ipoctal->dev->id_device; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 264 | |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 265 | region = &ipoctal->dev->region[IPACK_IO_SPACE]; |
| 266 | addr = devm_ioremap_nocache(&ipoctal->dev->dev, |
| 267 | region->start, region->size); |
| 268 | if (!addr) { |
Samuel Iglesias Gonsalvez | 42b3820 | 2012-05-25 13:08:13 +0200 | [diff] [blame] | 269 | dev_err(&ipoctal->dev->dev, |
| 270 | "Unable to map slot [%d:%d] IO space!\n", |
| 271 | bus_nr, slot); |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 272 | return -EADDRNOTAVAIL; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 273 | } |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 274 | /* Save the virtual address to access the registers easily */ |
| 275 | chan_regs = |
| 276 | (union scc2698_channel __iomem *) addr; |
| 277 | block_regs = |
| 278 | (union scc2698_block __iomem *) addr; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 279 | |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 280 | region = &ipoctal->dev->region[IPACK_INT_SPACE]; |
| 281 | ipoctal->int_space = |
| 282 | devm_ioremap_nocache(&ipoctal->dev->dev, |
| 283 | region->start, region->size); |
| 284 | if (!ipoctal->int_space) { |
Jens Taprogge | ea99114 | 2012-09-13 12:32:20 +0200 | [diff] [blame] | 285 | dev_err(&ipoctal->dev->dev, |
| 286 | "Unable to map slot [%d:%d] INT space!\n", |
| 287 | bus_nr, slot); |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 288 | return -EADDRNOTAVAIL; |
Jens Taprogge | ea99114 | 2012-09-13 12:32:20 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Jens Taprogge | fe4a3ed | 2012-09-27 12:37:36 +0200 | [diff] [blame] | 291 | region = &ipoctal->dev->region[IPACK_MEM8_SPACE]; |
| 292 | ipoctal->mem8_space = |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 293 | devm_ioremap_nocache(&ipoctal->dev->dev, |
| 294 | region->start, 0x8000); |
Julia Lawall | fc8d713 | 2013-01-21 14:02:53 +0100 | [diff] [blame] | 295 | if (!ipoctal->mem8_space) { |
Samuel Iglesias Gonsalvez | 42b3820 | 2012-05-25 13:08:13 +0200 | [diff] [blame] | 296 | dev_err(&ipoctal->dev->dev, |
Jens Taprogge | fe4a3ed | 2012-09-27 12:37:36 +0200 | [diff] [blame] | 297 | "Unable to map slot [%d:%d] MEM8 space!\n", |
Samuel Iglesias Gonsalvez | 42b3820 | 2012-05-25 13:08:13 +0200 | [diff] [blame] | 298 | bus_nr, slot); |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 299 | return -EADDRNOTAVAIL; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 300 | } |
| 301 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 302 | |
| 303 | /* Disable RX and TX before touching anything */ |
| 304 | for (i = 0; i < NR_CHANNELS ; i++) { |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 305 | struct ipoctal_channel *channel = &ipoctal->channel[i]; |
| 306 | channel->regs = chan_regs + i; |
| 307 | channel->block_regs = block_regs + (i >> 1); |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 308 | channel->board_id = ipoctal->board_id; |
Jens Taprogge | 4e4732a | 2012-09-12 14:55:29 +0200 | [diff] [blame] | 309 | if (i & 1) { |
| 310 | channel->isr_tx_rdy_mask = ISR_TxRDY_B; |
| 311 | channel->isr_rx_rdy_mask = ISR_RxRDY_FFULL_B; |
| 312 | } else { |
| 313 | channel->isr_tx_rdy_mask = ISR_TxRDY_A; |
| 314 | channel->isr_rx_rdy_mask = ISR_RxRDY_FFULL_A; |
| 315 | } |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 316 | |
Federico Vaga | 78f22bc | 2014-09-02 17:31:39 +0200 | [diff] [blame^] | 317 | ipoctal_reset_channel(channel); |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 318 | iowrite8(MR1_CHRL_8_BITS | MR1_ERROR_CHAR | MR1_RxINT_RxRDY, |
| 319 | &channel->regs->w.mr); /* mr1 */ |
| 320 | iowrite8(0, &channel->regs->w.mr); /* mr2 */ |
| 321 | iowrite8(TX_CLK_9600 | RX_CLK_9600, &channel->regs->w.csr); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | for (i = 0; i < IP_OCTAL_NB_BLOCKS; i++) { |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 325 | iowrite8(ACR_BRG_SET2, &block_regs[i].w.acr); |
| 326 | iowrite8(OPCR_MPP_OUTPUT | OPCR_MPOa_RTSN | OPCR_MPOb_RTSN, |
| 327 | &block_regs[i].w.opcr); |
| 328 | iowrite8(IMR_TxRDY_A | IMR_RxRDY_FFULL_A | IMR_DELTA_BREAK_A | |
| 329 | IMR_TxRDY_B | IMR_RxRDY_FFULL_B | IMR_DELTA_BREAK_B, |
| 330 | &block_regs[i].w.imr); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 331 | } |
| 332 | |
Jens Taprogge | c6e2dfa | 2012-09-13 12:32:21 +0200 | [diff] [blame] | 333 | /* Dummy write */ |
Jens Taprogge | fe4a3ed | 2012-09-27 12:37:36 +0200 | [diff] [blame] | 334 | iowrite8(1, ipoctal->mem8_space + 1); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 335 | |
| 336 | /* Register the TTY device */ |
| 337 | |
| 338 | /* Each IP-OCTAL channel is a TTY port */ |
| 339 | tty = alloc_tty_driver(NR_CHANNELS); |
| 340 | |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 341 | if (!tty) |
| 342 | return -ENOMEM; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 343 | |
| 344 | /* Fill struct tty_driver with ipoctal data */ |
| 345 | tty->owner = THIS_MODULE; |
Jens Taprogge | 3f3a592 | 2012-09-12 14:55:41 +0200 | [diff] [blame] | 346 | tty->driver_name = KBUILD_MODNAME; |
| 347 | sprintf(name, KBUILD_MODNAME ".%d.%d.", bus_nr, slot); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 348 | tty->name = name; |
| 349 | tty->major = 0; |
| 350 | |
| 351 | tty->minor_start = 0; |
| 352 | tty->type = TTY_DRIVER_TYPE_SERIAL; |
| 353 | tty->subtype = SERIAL_TYPE_NORMAL; |
| 354 | tty->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV; |
| 355 | tty->init_termios = tty_std_termios; |
| 356 | tty->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL; |
| 357 | tty->init_termios.c_ispeed = 9600; |
| 358 | tty->init_termios.c_ospeed = 9600; |
| 359 | |
| 360 | tty_set_operations(tty, &ipoctal_fops); |
| 361 | res = tty_register_driver(tty); |
| 362 | if (res) { |
Samuel Iglesias Gonsalvez | 42b3820 | 2012-05-25 13:08:13 +0200 | [diff] [blame] | 363 | dev_err(&ipoctal->dev->dev, "Can't register tty driver.\n"); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 364 | put_tty_driver(tty); |
Jens Taprogge | 402228d | 2012-09-27 12:37:34 +0200 | [diff] [blame] | 365 | return res; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | /* Save struct tty_driver for use it when uninstalling the device */ |
| 369 | ipoctal->tty_drv = tty; |
| 370 | |
| 371 | for (i = 0; i < NR_CHANNELS; i++) { |
Jens Taprogge | 2afb41d | 2012-09-12 14:55:40 +0200 | [diff] [blame] | 372 | struct device *tty_dev; |
| 373 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 374 | channel = &ipoctal->channel[i]; |
| 375 | tty_port_init(&channel->tty_port); |
| 376 | tty_port_alloc_xmit_buf(&channel->tty_port); |
| 377 | channel->tty_port.ops = &ipoctal_tty_port_ops; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 378 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 379 | ipoctal_reset_stats(&channel->stats); |
| 380 | channel->nb_bytes = 0; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 381 | spin_lock_init(&channel->lock); |
| 382 | channel->pointer_read = 0; |
| 383 | channel->pointer_write = 0; |
Linus Torvalds | 3498d13 | 2012-10-01 12:26:52 -0700 | [diff] [blame] | 384 | tty_dev = tty_port_register_device(&channel->tty_port, tty, i, NULL); |
Jens Taprogge | 2afb41d | 2012-09-12 14:55:40 +0200 | [diff] [blame] | 385 | if (IS_ERR(tty_dev)) { |
| 386 | dev_err(&ipoctal->dev->dev, "Failed to register tty device.\n"); |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 387 | tty_port_destroy(&channel->tty_port); |
Jens Taprogge | 2afb41d | 2012-09-12 14:55:40 +0200 | [diff] [blame] | 388 | continue; |
| 389 | } |
Jens Taprogge | 9c1d784 | 2012-09-12 14:55:42 +0200 | [diff] [blame] | 390 | dev_set_drvdata(tty_dev, channel); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 391 | } |
| 392 | |
Federico Vaga | 4847cc0 | 2014-07-03 10:53:58 +0200 | [diff] [blame] | 393 | /* |
| 394 | * IP-OCTAL has different addresses to copy its IRQ vector. |
| 395 | * Depending of the carrier these addresses are accesible or not. |
| 396 | * More info in the datasheet. |
| 397 | */ |
| 398 | ipoctal->dev->bus->ops->request_irq(ipoctal->dev, |
| 399 | ipoctal_irq_handler, ipoctal); |
| 400 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 401 | return 0; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 402 | } |
| 403 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 404 | static inline int ipoctal_copy_write_buffer(struct ipoctal_channel *channel, |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 405 | const unsigned char *buf, |
| 406 | int count) |
| 407 | { |
| 408 | unsigned long flags; |
| 409 | int i; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 410 | unsigned int *pointer_read = &channel->pointer_read; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 411 | |
| 412 | /* Copy the bytes from the user buffer to the internal one */ |
| 413 | for (i = 0; i < count; i++) { |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 414 | if (i <= (PAGE_SIZE - channel->nb_bytes)) { |
| 415 | spin_lock_irqsave(&channel->lock, flags); |
| 416 | channel->tty_port.xmit_buf[*pointer_read] = buf[i]; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 417 | *pointer_read = (*pointer_read + 1) % PAGE_SIZE; |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 418 | channel->nb_bytes++; |
| 419 | spin_unlock_irqrestore(&channel->lock, flags); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 420 | } else { |
| 421 | break; |
| 422 | } |
| 423 | } |
| 424 | return i; |
| 425 | } |
| 426 | |
Jens Taprogge | 699a89f | 2012-09-12 14:55:31 +0200 | [diff] [blame] | 427 | static int ipoctal_write_tty(struct tty_struct *tty, |
| 428 | const unsigned char *buf, int count) |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 429 | { |
Jens Taprogge | 699a89f | 2012-09-12 14:55:31 +0200 | [diff] [blame] | 430 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | d046006 | 2012-09-13 12:32:23 +0200 | [diff] [blame] | 431 | unsigned int char_copied; |
Jens Taprogge | 699a89f | 2012-09-12 14:55:31 +0200 | [diff] [blame] | 432 | |
Samuel Iglesias Gonsalvez | d046006 | 2012-09-13 12:32:23 +0200 | [diff] [blame] | 433 | char_copied = ipoctal_copy_write_buffer(channel, buf, count); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 434 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 435 | /* As the IP-OCTAL 485 only supports half duplex, do it manually */ |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 436 | if (channel->board_id == IPACK1_DEVICE_ID_SBS_OCTAL_485) { |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 437 | iowrite8(CR_DISABLE_RX, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | b0d17fb | 2012-12-10 11:50:07 +0100 | [diff] [blame] | 438 | channel->rx_enable = 0; |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 439 | iowrite8(CR_CMD_ASSERT_RTSN, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | /* |
| 443 | * Send a packet and then disable TX to avoid failure after several send |
| 444 | * operations |
| 445 | */ |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 446 | iowrite8(CR_ENABLE_TX, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | d046006 | 2012-09-13 12:32:23 +0200 | [diff] [blame] | 447 | return char_copied; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 448 | } |
| 449 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 450 | static int ipoctal_write_room(struct tty_struct *tty) |
| 451 | { |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 452 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 453 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 454 | return PAGE_SIZE - channel->nb_bytes; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | static int ipoctal_chars_in_buffer(struct tty_struct *tty) |
| 458 | { |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 459 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 460 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 461 | return channel->nb_bytes; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | static void ipoctal_set_termios(struct tty_struct *tty, |
| 465 | struct ktermios *old_termios) |
| 466 | { |
| 467 | unsigned int cflag; |
| 468 | unsigned char mr1 = 0; |
| 469 | unsigned char mr2 = 0; |
| 470 | unsigned char csr = 0; |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 471 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 472 | speed_t baud; |
| 473 | |
Alan Cox | 857196e | 2012-07-26 19:00:51 +0100 | [diff] [blame] | 474 | cflag = tty->termios.c_cflag; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 475 | |
| 476 | /* Disable and reset everything before change the setup */ |
Federico Vaga | 78f22bc | 2014-09-02 17:31:39 +0200 | [diff] [blame^] | 477 | ipoctal_reset_channel(channel); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 478 | |
| 479 | /* Set Bits per chars */ |
| 480 | switch (cflag & CSIZE) { |
| 481 | case CS6: |
| 482 | mr1 |= MR1_CHRL_6_BITS; |
| 483 | break; |
| 484 | case CS7: |
| 485 | mr1 |= MR1_CHRL_7_BITS; |
| 486 | break; |
| 487 | case CS8: |
| 488 | default: |
| 489 | mr1 |= MR1_CHRL_8_BITS; |
| 490 | /* By default, select CS8 */ |
Alan Cox | 857196e | 2012-07-26 19:00:51 +0100 | [diff] [blame] | 491 | tty->termios.c_cflag = (cflag & ~CSIZE) | CS8; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 492 | break; |
| 493 | } |
| 494 | |
| 495 | /* Set Parity */ |
| 496 | if (cflag & PARENB) |
| 497 | if (cflag & PARODD) |
| 498 | mr1 |= MR1_PARITY_ON | MR1_PARITY_ODD; |
| 499 | else |
| 500 | mr1 |= MR1_PARITY_ON | MR1_PARITY_EVEN; |
| 501 | else |
| 502 | mr1 |= MR1_PARITY_OFF; |
| 503 | |
| 504 | /* Mark or space parity is not supported */ |
Alan Cox | 857196e | 2012-07-26 19:00:51 +0100 | [diff] [blame] | 505 | tty->termios.c_cflag &= ~CMSPAR; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 506 | |
| 507 | /* Set stop bits */ |
| 508 | if (cflag & CSTOPB) |
| 509 | mr2 |= MR2_STOP_BITS_LENGTH_2; |
| 510 | else |
| 511 | mr2 |= MR2_STOP_BITS_LENGTH_1; |
| 512 | |
| 513 | /* Set the flow control */ |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 514 | switch (channel->board_id) { |
Jens Taprogge | 7db5e3c | 2012-09-04 17:01:16 +0200 | [diff] [blame] | 515 | case IPACK1_DEVICE_ID_SBS_OCTAL_232: |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 516 | if (cflag & CRTSCTS) { |
| 517 | mr1 |= MR1_RxRTS_CONTROL_ON; |
| 518 | mr2 |= MR2_TxRTS_CONTROL_OFF | MR2_CTS_ENABLE_TX_ON; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 519 | } else { |
| 520 | mr1 |= MR1_RxRTS_CONTROL_OFF; |
| 521 | mr2 |= MR2_TxRTS_CONTROL_OFF | MR2_CTS_ENABLE_TX_OFF; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 522 | } |
| 523 | break; |
Jens Taprogge | 7db5e3c | 2012-09-04 17:01:16 +0200 | [diff] [blame] | 524 | case IPACK1_DEVICE_ID_SBS_OCTAL_422: |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 525 | mr1 |= MR1_RxRTS_CONTROL_OFF; |
| 526 | mr2 |= MR2_TxRTS_CONTROL_OFF | MR2_CTS_ENABLE_TX_OFF; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 527 | break; |
Jens Taprogge | 7db5e3c | 2012-09-04 17:01:16 +0200 | [diff] [blame] | 528 | case IPACK1_DEVICE_ID_SBS_OCTAL_485: |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 529 | mr1 |= MR1_RxRTS_CONTROL_OFF; |
| 530 | mr2 |= MR2_TxRTS_CONTROL_ON | MR2_CTS_ENABLE_TX_OFF; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 531 | break; |
| 532 | default: |
| 533 | return; |
| 534 | break; |
| 535 | } |
| 536 | |
| 537 | baud = tty_get_baud_rate(tty); |
Alan Cox | 857196e | 2012-07-26 19:00:51 +0100 | [diff] [blame] | 538 | tty_termios_encode_baud_rate(&tty->termios, baud, baud); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 539 | |
| 540 | /* Set baud rate */ |
Alan Cox | 857196e | 2012-07-26 19:00:51 +0100 | [diff] [blame] | 541 | switch (baud) { |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 542 | case 75: |
| 543 | csr |= TX_CLK_75 | RX_CLK_75; |
| 544 | break; |
| 545 | case 110: |
| 546 | csr |= TX_CLK_110 | RX_CLK_110; |
| 547 | break; |
| 548 | case 150: |
| 549 | csr |= TX_CLK_150 | RX_CLK_150; |
| 550 | break; |
| 551 | case 300: |
| 552 | csr |= TX_CLK_300 | RX_CLK_300; |
| 553 | break; |
| 554 | case 600: |
| 555 | csr |= TX_CLK_600 | RX_CLK_600; |
| 556 | break; |
| 557 | case 1200: |
| 558 | csr |= TX_CLK_1200 | RX_CLK_1200; |
| 559 | break; |
| 560 | case 1800: |
| 561 | csr |= TX_CLK_1800 | RX_CLK_1800; |
| 562 | break; |
| 563 | case 2000: |
| 564 | csr |= TX_CLK_2000 | RX_CLK_2000; |
| 565 | break; |
| 566 | case 2400: |
| 567 | csr |= TX_CLK_2400 | RX_CLK_2400; |
| 568 | break; |
| 569 | case 4800: |
| 570 | csr |= TX_CLK_4800 | RX_CLK_4800; |
| 571 | break; |
| 572 | case 9600: |
| 573 | csr |= TX_CLK_9600 | RX_CLK_9600; |
| 574 | break; |
| 575 | case 19200: |
| 576 | csr |= TX_CLK_19200 | RX_CLK_19200; |
| 577 | break; |
| 578 | case 38400: |
| 579 | default: |
| 580 | csr |= TX_CLK_38400 | RX_CLK_38400; |
| 581 | /* In case of default, we establish 38400 bps */ |
Alan Cox | 857196e | 2012-07-26 19:00:51 +0100 | [diff] [blame] | 582 | tty_termios_encode_baud_rate(&tty->termios, 38400, 38400); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 583 | break; |
| 584 | } |
| 585 | |
| 586 | mr1 |= MR1_ERROR_CHAR; |
| 587 | mr1 |= MR1_RxINT_RxRDY; |
| 588 | |
| 589 | /* Write the control registers */ |
Jens Taprogge | 459e6d7 | 2012-09-12 14:55:27 +0200 | [diff] [blame] | 590 | iowrite8(mr1, &channel->regs->w.mr); |
| 591 | iowrite8(mr2, &channel->regs->w.mr); |
| 592 | iowrite8(csr, &channel->regs->w.csr); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 593 | |
Samuel Iglesias Gonsalvez | b0d17fb | 2012-12-10 11:50:07 +0100 | [diff] [blame] | 594 | /* Enable again the RX, if it was before */ |
| 595 | if (channel->rx_enable) |
| 596 | iowrite8(CR_ENABLE_RX, &channel->regs->w.cr); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | static void ipoctal_hangup(struct tty_struct *tty) |
| 600 | { |
| 601 | unsigned long flags; |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 602 | struct ipoctal_channel *channel = tty->driver_data; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 603 | |
Jens Taprogge | ef79de0 | 2012-09-12 14:55:28 +0200 | [diff] [blame] | 604 | if (channel == NULL) |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 605 | return; |
| 606 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 607 | spin_lock_irqsave(&channel->lock, flags); |
| 608 | channel->nb_bytes = 0; |
| 609 | channel->pointer_read = 0; |
| 610 | channel->pointer_write = 0; |
| 611 | spin_unlock_irqrestore(&channel->lock, flags); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 612 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 613 | tty_port_hangup(&channel->tty_port); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 614 | |
Federico Vaga | 78f22bc | 2014-09-02 17:31:39 +0200 | [diff] [blame^] | 615 | ipoctal_reset_channel(channel); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 616 | |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 617 | clear_bit(ASYNCB_INITIALIZED, &channel->tty_port.flags); |
| 618 | wake_up_interruptible(&channel->tty_port.open_wait); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 619 | } |
| 620 | |
Samuel Iglesias Gonsalvez | e0f8d32 | 2012-12-10 11:50:08 +0100 | [diff] [blame] | 621 | static void ipoctal_shutdown(struct tty_struct *tty) |
| 622 | { |
| 623 | struct ipoctal_channel *channel = tty->driver_data; |
| 624 | |
| 625 | if (channel == NULL) |
| 626 | return; |
| 627 | |
Federico Vaga | 78f22bc | 2014-09-02 17:31:39 +0200 | [diff] [blame^] | 628 | ipoctal_reset_channel(channel); |
Samuel Iglesias Gonsalvez | e0f8d32 | 2012-12-10 11:50:08 +0100 | [diff] [blame] | 629 | clear_bit(ASYNCB_INITIALIZED, &channel->tty_port.flags); |
| 630 | } |
| 631 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 632 | static const struct tty_operations ipoctal_fops = { |
| 633 | .ioctl = NULL, |
| 634 | .open = ipoctal_open, |
| 635 | .close = ipoctal_close, |
| 636 | .write = ipoctal_write_tty, |
| 637 | .set_termios = ipoctal_set_termios, |
| 638 | .write_room = ipoctal_write_room, |
| 639 | .chars_in_buffer = ipoctal_chars_in_buffer, |
| 640 | .get_icount = ipoctal_get_icount, |
| 641 | .hangup = ipoctal_hangup, |
Samuel Iglesias Gonsalvez | e0f8d32 | 2012-12-10 11:50:08 +0100 | [diff] [blame] | 642 | .shutdown = ipoctal_shutdown, |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 643 | }; |
| 644 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 645 | static int ipoctal_probe(struct ipack_device *dev) |
| 646 | { |
| 647 | int res; |
| 648 | struct ipoctal *ipoctal; |
| 649 | |
| 650 | ipoctal = kzalloc(sizeof(struct ipoctal), GFP_KERNEL); |
| 651 | if (ipoctal == NULL) |
| 652 | return -ENOMEM; |
| 653 | |
| 654 | ipoctal->dev = dev; |
Jens Taprogge | f9e314d | 2012-09-27 12:37:25 +0200 | [diff] [blame] | 655 | res = ipoctal_inst_slot(ipoctal, dev->bus->bus_nr, dev->slot); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 656 | if (res) |
| 657 | goto out_uninst; |
| 658 | |
Jens Taprogge | 1adda49 | 2012-09-12 14:55:39 +0200 | [diff] [blame] | 659 | dev_set_drvdata(&dev->dev, ipoctal); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 660 | return 0; |
| 661 | |
| 662 | out_uninst: |
| 663 | kfree(ipoctal); |
| 664 | return res; |
| 665 | } |
| 666 | |
| 667 | static void __ipoctal_remove(struct ipoctal *ipoctal) |
| 668 | { |
| 669 | int i; |
| 670 | |
Samuel Iglesias Gonsálvez | 690949e | 2012-09-11 13:35:08 +0200 | [diff] [blame] | 671 | ipoctal->dev->bus->ops->free_irq(ipoctal->dev); |
| 672 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 673 | for (i = 0; i < NR_CHANNELS; i++) { |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 674 | struct ipoctal_channel *channel = &ipoctal->channel[i]; |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 675 | tty_unregister_device(ipoctal->tty_drv, i); |
Jens Taprogge | 70a3281 | 2012-09-12 14:55:26 +0200 | [diff] [blame] | 676 | tty_port_free_xmit_buf(&channel->tty_port); |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 677 | tty_port_destroy(&channel->tty_port); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | tty_unregister_driver(ipoctal->tty_drv); |
| 681 | put_tty_driver(ipoctal->tty_drv); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 682 | kfree(ipoctal); |
| 683 | } |
| 684 | |
Jens Taprogge | 1adda49 | 2012-09-12 14:55:39 +0200 | [diff] [blame] | 685 | static void ipoctal_remove(struct ipack_device *idev) |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 686 | { |
Jens Taprogge | 1adda49 | 2012-09-12 14:55:39 +0200 | [diff] [blame] | 687 | __ipoctal_remove(dev_get_drvdata(&idev->dev)); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 688 | } |
| 689 | |
Jens Taprogge | fdfc8cf | 2012-09-04 17:01:18 +0200 | [diff] [blame] | 690 | static DEFINE_IPACK_DEVICE_TABLE(ipoctal_ids) = { |
| 691 | { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS, |
| 692 | IPACK1_DEVICE_ID_SBS_OCTAL_232) }, |
| 693 | { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS, |
| 694 | IPACK1_DEVICE_ID_SBS_OCTAL_422) }, |
| 695 | { IPACK_DEVICE(IPACK_ID_VERSION_1, IPACK1_VENDOR_ID_SBS, |
| 696 | IPACK1_DEVICE_ID_SBS_OCTAL_485) }, |
| 697 | { 0, }, |
| 698 | }; |
| 699 | |
| 700 | MODULE_DEVICE_TABLE(ipack, ipoctal_ids); |
| 701 | |
Jens Taprogge | e801113 | 2012-09-04 17:01:17 +0200 | [diff] [blame] | 702 | static const struct ipack_driver_ops ipoctal_drv_ops = { |
Jens Taprogge | 4aa09d4 | 2012-09-04 17:01:19 +0200 | [diff] [blame] | 703 | .probe = ipoctal_probe, |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 704 | .remove = ipoctal_remove, |
| 705 | }; |
| 706 | |
Jens Taprogge | e801113 | 2012-09-04 17:01:17 +0200 | [diff] [blame] | 707 | static struct ipack_driver driver = { |
| 708 | .ops = &ipoctal_drv_ops, |
Jens Taprogge | fdfc8cf | 2012-09-04 17:01:18 +0200 | [diff] [blame] | 709 | .id_table = ipoctal_ids, |
Jens Taprogge | e801113 | 2012-09-04 17:01:17 +0200 | [diff] [blame] | 710 | }; |
| 711 | |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 712 | static int __init ipoctal_init(void) |
| 713 | { |
Samuel Iglesias Gonsalvez | ec44033 | 2012-05-18 11:10:05 +0200 | [diff] [blame] | 714 | return ipack_driver_register(&driver, THIS_MODULE, KBUILD_MODNAME); |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | static void __exit ipoctal_exit(void) |
| 718 | { |
Samuel Iglesias Gonsalvez | ba4dc61 | 2012-05-09 15:27:21 +0200 | [diff] [blame] | 719 | ipack_driver_unregister(&driver); |
| 720 | } |
| 721 | |
| 722 | MODULE_DESCRIPTION("IP-Octal 232, 422 and 485 device driver"); |
| 723 | MODULE_LICENSE("GPL"); |
| 724 | |
| 725 | module_init(ipoctal_init); |
| 726 | module_exit(ipoctal_exit); |