1 // SPDX-License-Identifier: GPL-2.0
3 * MEN 16z135 High Speed UART
5 * Copyright (C) 2014 MEN Mikroelektronik GmbH (www.men.de)
8 #define pr_fmt(fmt) KBUILD_MODNAME ":" fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/interrupt.h>
13 #include <linux/serial_core.h>
14 #include <linux/ioport.h>
16 #include <linux/tty_flip.h>
17 #include <linux/bitops.h>
18 #include <linux/mcb.h>
20 #define MEN_Z135_MAX_PORTS 12
21 #define MEN_Z135_BASECLK 29491200
22 #define MEN_Z135_FIFO_SIZE 1024
23 #define MEN_Z135_FIFO_WATERMARK 1020
25 #define MEN_Z135_STAT_REG 0x0
26 #define MEN_Z135_RX_RAM 0x4
27 #define MEN_Z135_TX_RAM 0x400
28 #define MEN_Z135_RX_CTRL 0x800
29 #define MEN_Z135_TX_CTRL 0x804
30 #define MEN_Z135_CONF_REG 0x808
31 #define MEN_Z135_UART_FREQ 0x80c
32 #define MEN_Z135_BAUD_REG 0x810
33 #define MEN_Z135_TIMEOUT 0x814
35 #define IRQ_ID(x) ((x) & 0x1f)
37 #define MEN_Z135_IER_RXCIEN BIT(0) /* RX Space IRQ */
38 #define MEN_Z135_IER_TXCIEN BIT(1) /* TX Space IRQ */
39 #define MEN_Z135_IER_RLSIEN BIT(2) /* Receiver Line Status IRQ */
40 #define MEN_Z135_IER_MSIEN BIT(3) /* Modem Status IRQ */
41 #define MEN_Z135_ALL_IRQS (MEN_Z135_IER_RXCIEN \
42 | MEN_Z135_IER_RLSIEN \
43 | MEN_Z135_IER_MSIEN \
44 | MEN_Z135_IER_TXCIEN)
46 #define MEN_Z135_MCR_DTR BIT(24)
47 #define MEN_Z135_MCR_RTS BIT(25)
48 #define MEN_Z135_MCR_OUT1 BIT(26)
49 #define MEN_Z135_MCR_OUT2 BIT(27)
50 #define MEN_Z135_MCR_LOOP BIT(28)
51 #define MEN_Z135_MCR_RCFC BIT(29)
53 #define MEN_Z135_MSR_DCTS BIT(0)
54 #define MEN_Z135_MSR_DDSR BIT(1)
55 #define MEN_Z135_MSR_DRI BIT(2)
56 #define MEN_Z135_MSR_DDCD BIT(3)
57 #define MEN_Z135_MSR_CTS BIT(4)
58 #define MEN_Z135_MSR_DSR BIT(5)
59 #define MEN_Z135_MSR_RI BIT(6)
60 #define MEN_Z135_MSR_DCD BIT(7)
62 #define MEN_Z135_LCR_SHIFT 8 /* LCR shift mask */
64 #define MEN_Z135_WL5 0 /* CS5 */
65 #define MEN_Z135_WL6 1 /* CS6 */
66 #define MEN_Z135_WL7 2 /* CS7 */
67 #define MEN_Z135_WL8 3 /* CS8 */
69 #define MEN_Z135_STB_SHIFT 2 /* Stopbits */
70 #define MEN_Z135_NSTB1 0
71 #define MEN_Z135_NSTB2 1
73 #define MEN_Z135_PEN_SHIFT 3 /* Parity enable */
74 #define MEN_Z135_PAR_DIS 0
75 #define MEN_Z135_PAR_ENA 1
77 #define MEN_Z135_PTY_SHIFT 4 /* Parity type */
78 #define MEN_Z135_PTY_ODD 0
79 #define MEN_Z135_PTY_EVN 1
81 #define MEN_Z135_LSR_DR BIT(0)
82 #define MEN_Z135_LSR_OE BIT(1)
83 #define MEN_Z135_LSR_PE BIT(2)
84 #define MEN_Z135_LSR_FE BIT(3)
85 #define MEN_Z135_LSR_BI BIT(4)
86 #define MEN_Z135_LSR_THEP BIT(5)
87 #define MEN_Z135_LSR_TEXP BIT(6)
88 #define MEN_Z135_LSR_RXFIFOERR BIT(7)
90 #define MEN_Z135_IRQ_ID_RLS BIT(0)
91 #define MEN_Z135_IRQ_ID_RDA BIT(1)
92 #define MEN_Z135_IRQ_ID_CTI BIT(2)
93 #define MEN_Z135_IRQ_ID_TSA BIT(3)
94 #define MEN_Z135_IRQ_ID_MST BIT(4)
96 #define LCR(x) (((x) >> MEN_Z135_LCR_SHIFT) & 0xff)
98 #define BYTES_TO_ALIGN(x) ((x) & 0x3)
102 static int txlvl = 5;
103 module_param(txlvl, int, S_IRUGO);
104 MODULE_PARM_DESC(txlvl, "TX IRQ trigger level 0-7, default 5 (128 byte)");
106 static int rxlvl = 6;
107 module_param(rxlvl, int, S_IRUGO);
108 MODULE_PARM_DESC(rxlvl, "RX IRQ trigger level 0-7, default 6 (256 byte)");
111 module_param(align, int, S_IRUGO);
112 MODULE_PARM_DESC(align, "Keep hardware FIFO write pointer aligned, default 0");
114 static uint rx_timeout;
115 module_param(rx_timeout, uint, S_IRUGO);
116 MODULE_PARM_DESC(rx_timeout, "RX timeout. "
117 "Timeout in seconds = (timeout_reg * baud_reg * 4) / freq_reg");
119 struct men_z135_port {
120 struct uart_port port;
121 struct mcb_device *mdev;
122 struct resource *mem;
123 unsigned char *rxbuf;
128 #define to_men_z135(port) container_of((port), struct men_z135_port, port)
131 * men_z135_reg_set() - Set value in register
132 * @uart: The UART port
133 * @addr: Register address
136 static inline void men_z135_reg_set(struct men_z135_port *uart,
139 struct uart_port *port = &uart->port;
143 spin_lock_irqsave(&uart->lock, flags);
145 reg = ioread32(port->membase + addr);
147 iowrite32(reg, port->membase + addr);
149 spin_unlock_irqrestore(&uart->lock, flags);
153 * men_z135_reg_clr() - Unset value in register
154 * @uart: The UART port
155 * @addr: Register address
156 * @val: value to clear
158 static void men_z135_reg_clr(struct men_z135_port *uart,
161 struct uart_port *port = &uart->port;
165 spin_lock_irqsave(&uart->lock, flags);
167 reg = ioread32(port->membase + addr);
169 iowrite32(reg, port->membase + addr);
171 spin_unlock_irqrestore(&uart->lock, flags);
175 * men_z135_handle_modem_status() - Handle change of modem status
176 * @uart: The UART port
178 * Handle change of modem status register. This is done by reading the "delta"
179 * versions of DCD (Data Carrier Detect) and CTS (Clear To Send).
181 static void men_z135_handle_modem_status(struct men_z135_port *uart)
185 msr = (uart->stat_reg >> 8) & 0xff;
187 if (msr & MEN_Z135_MSR_DDCD)
188 uart_handle_dcd_change(&uart->port,
189 msr & MEN_Z135_MSR_DCD);
190 if (msr & MEN_Z135_MSR_DCTS)
191 uart_handle_cts_change(&uart->port,
192 msr & MEN_Z135_MSR_CTS);
195 static void men_z135_handle_lsr(struct men_z135_port *uart)
197 struct uart_port *port = &uart->port;
200 lsr = (uart->stat_reg >> 16) & 0xff;
202 if (lsr & MEN_Z135_LSR_OE)
203 port->icount.overrun++;
204 if (lsr & MEN_Z135_LSR_PE)
205 port->icount.parity++;
206 if (lsr & MEN_Z135_LSR_FE)
207 port->icount.frame++;
208 if (lsr & MEN_Z135_LSR_BI) {
210 uart_handle_break(port);
215 * get_rx_fifo_content() - Get the number of bytes in RX FIFO
216 * @uart: The UART port
218 * Read RXC register from hardware and return current FIFO fill size.
220 static u16 get_rx_fifo_content(struct men_z135_port *uart)
222 struct uart_port *port = &uart->port;
228 stat_reg = ioread32(port->membase + MEN_Z135_STAT_REG);
229 rxc_lo = stat_reg >> 24;
230 rxc_hi = (stat_reg & 0xC0) >> 6;
232 rxc = rxc_lo | (rxc_hi << 8);
238 * men_z135_handle_rx() - RX tasklet routine
239 * @uart: Pointer to struct men_z135_port
241 * Copy from RX FIFO and acknowledge number of bytes copied.
243 static void men_z135_handle_rx(struct men_z135_port *uart)
245 struct uart_port *port = &uart->port;
246 struct tty_port *tport = &port->state->port;
251 size = get_rx_fifo_content(uart);
256 /* Avoid accidently accessing TX FIFO instead of RX FIFO. Last
257 * longword in RX FIFO cannot be read.(0x004-0x3FF)
259 if (size > MEN_Z135_FIFO_WATERMARK)
260 size = MEN_Z135_FIFO_WATERMARK;
262 room = tty_buffer_request_room(tport, size);
264 dev_warn(&uart->mdev->dev,
265 "Not enough room in flip buffer, truncating to %d\n",
271 memcpy_fromio(uart->rxbuf, port->membase + MEN_Z135_RX_RAM, room);
272 /* Be sure to first copy all data and then acknowledge it */
274 iowrite32(room, port->membase + MEN_Z135_RX_CTRL);
276 copied = tty_insert_flip_string(tport, uart->rxbuf, room);
278 dev_warn(&uart->mdev->dev,
279 "Only copied %d instead of %d bytes\n",
282 port->icount.rx += copied;
284 tty_flip_buffer_push(tport);
289 * men_z135_handle_tx() - TX tasklet routine
290 * @uart: Pointer to struct men_z135_port
293 static void men_z135_handle_tx(struct men_z135_port *uart)
295 struct uart_port *port = &uart->port;
296 struct circ_buf *xmit = &port->state->xmit;
306 if (uart_circ_empty(xmit))
309 if (uart_tx_stopped(port))
315 /* calculate bytes to copy */
316 qlen = uart_circ_chars_pending(xmit);
320 wptr = ioread32(port->membase + MEN_Z135_TX_CTRL);
321 txc = (wptr >> 16) & 0x3ff;
324 if (txc > MEN_Z135_FIFO_WATERMARK)
325 txc = MEN_Z135_FIFO_WATERMARK;
327 txfree = MEN_Z135_FIFO_WATERMARK - txc;
329 dev_err(&uart->mdev->dev,
330 "Not enough room in TX FIFO have %d, need %d\n",
335 /* if we're not aligned, it's better to copy only 1 or 2 bytes and
338 if (align && qlen >= 3 && BYTES_TO_ALIGN(wptr))
339 n = 4 - BYTES_TO_ALIGN(wptr);
340 else if (qlen > txfree)
348 head = xmit->head & (UART_XMIT_SIZE - 1);
349 tail = xmit->tail & (UART_XMIT_SIZE - 1);
351 s = ((head >= tail) ? head : UART_XMIT_SIZE) - tail;
354 memcpy_toio(port->membase + MEN_Z135_TX_RAM, &xmit->buf[xmit->tail], n);
355 iowrite32(n & 0x3ff, port->membase + MEN_Z135_TX_CTRL);
356 uart_xmit_advance(port, n);
358 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
359 uart_write_wakeup(port);
362 if (!uart_circ_empty(xmit))
363 men_z135_reg_set(uart, MEN_Z135_CONF_REG, MEN_Z135_IER_TXCIEN);
365 men_z135_reg_clr(uart, MEN_Z135_CONF_REG, MEN_Z135_IER_TXCIEN);
373 * men_z135_intr() - Handle legacy IRQs
374 * @irq: The IRQ number
375 * @data: Pointer to UART port
377 * Check IIR register to find the cause of the interrupt and handle it.
378 * It is possible that multiple interrupts reason bits are set and reading
379 * the IIR is a destructive read, so we always need to check for all possible
380 * interrupts and handle them.
382 static irqreturn_t men_z135_intr(int irq, void *data)
384 struct men_z135_port *uart = (struct men_z135_port *)data;
385 struct uart_port *port = &uart->port;
386 bool handled = false;
389 uart->stat_reg = ioread32(port->membase + MEN_Z135_STAT_REG);
390 irq_id = IRQ_ID(uart->stat_reg);
395 spin_lock(&port->lock);
396 /* It's save to write to IIR[7:6] RXC[9:8] */
397 iowrite8(irq_id, port->membase + MEN_Z135_STAT_REG);
399 if (irq_id & MEN_Z135_IRQ_ID_RLS) {
400 men_z135_handle_lsr(uart);
404 if (irq_id & (MEN_Z135_IRQ_ID_RDA | MEN_Z135_IRQ_ID_CTI)) {
405 if (irq_id & MEN_Z135_IRQ_ID_CTI)
406 dev_dbg(&uart->mdev->dev, "Character Timeout Indication\n");
407 men_z135_handle_rx(uart);
411 if (irq_id & MEN_Z135_IRQ_ID_TSA) {
412 men_z135_handle_tx(uart);
416 if (irq_id & MEN_Z135_IRQ_ID_MST) {
417 men_z135_handle_modem_status(uart);
421 spin_unlock(&port->lock);
423 return IRQ_RETVAL(handled);
427 * men_z135_request_irq() - Request IRQ for 16z135 core
428 * @uart: z135 private uart port structure
430 * Request an IRQ for 16z135 to use. First try using MSI, if it fails
431 * fall back to using legacy interrupts.
433 static int men_z135_request_irq(struct men_z135_port *uart)
435 struct device *dev = &uart->mdev->dev;
436 struct uart_port *port = &uart->port;
439 err = request_irq(port->irq, men_z135_intr, IRQF_SHARED,
440 "men_z135_intr", uart);
442 dev_err(dev, "Error %d getting interrupt\n", err);
448 * men_z135_tx_empty() - Handle tx_empty call
449 * @port: The UART port
451 * This function tests whether the TX FIFO and shifter for the port
452 * described by @port is empty.
454 static unsigned int men_z135_tx_empty(struct uart_port *port)
459 wptr = ioread32(port->membase + MEN_Z135_TX_CTRL);
460 txc = (wptr >> 16) & 0x3ff;
469 * men_z135_set_mctrl() - Set modem control lines
470 * @port: The UART port
471 * @mctrl: The modem control lines
473 * This function sets the modem control lines for a port described by @port
474 * to the state described by @mctrl
476 static void men_z135_set_mctrl(struct uart_port *port, unsigned int mctrl)
481 conf_reg = old = ioread32(port->membase + MEN_Z135_CONF_REG);
482 if (mctrl & TIOCM_RTS)
483 conf_reg |= MEN_Z135_MCR_RTS;
485 conf_reg &= ~MEN_Z135_MCR_RTS;
487 if (mctrl & TIOCM_DTR)
488 conf_reg |= MEN_Z135_MCR_DTR;
490 conf_reg &= ~MEN_Z135_MCR_DTR;
492 if (mctrl & TIOCM_OUT1)
493 conf_reg |= MEN_Z135_MCR_OUT1;
495 conf_reg &= ~MEN_Z135_MCR_OUT1;
497 if (mctrl & TIOCM_OUT2)
498 conf_reg |= MEN_Z135_MCR_OUT2;
500 conf_reg &= ~MEN_Z135_MCR_OUT2;
502 if (mctrl & TIOCM_LOOP)
503 conf_reg |= MEN_Z135_MCR_LOOP;
505 conf_reg &= ~MEN_Z135_MCR_LOOP;
508 iowrite32(conf_reg, port->membase + MEN_Z135_CONF_REG);
512 * men_z135_get_mctrl() - Get modem control lines
513 * @port: The UART port
515 * Retruns the current state of modem control inputs.
517 static unsigned int men_z135_get_mctrl(struct uart_port *port)
519 unsigned int mctrl = 0;
522 msr = ioread8(port->membase + MEN_Z135_STAT_REG + 1);
524 if (msr & MEN_Z135_MSR_CTS)
526 if (msr & MEN_Z135_MSR_DSR)
528 if (msr & MEN_Z135_MSR_RI)
530 if (msr & MEN_Z135_MSR_DCD)
537 * men_z135_stop_tx() - Stop transmitting characters
538 * @port: The UART port
540 * Stop transmitting characters. This might be due to CTS line becomming
541 * inactive or the tty layer indicating we want to stop transmission due to
544 static void men_z135_stop_tx(struct uart_port *port)
546 struct men_z135_port *uart = to_men_z135(port);
548 men_z135_reg_clr(uart, MEN_Z135_CONF_REG, MEN_Z135_IER_TXCIEN);
552 * men_z135_disable_ms() - Disable Modem Status
553 * port: The UART port
555 * Enable Modem Status IRQ.
557 static void men_z135_disable_ms(struct uart_port *port)
559 struct men_z135_port *uart = to_men_z135(port);
561 men_z135_reg_clr(uart, MEN_Z135_CONF_REG, MEN_Z135_IER_MSIEN);
565 * men_z135_start_tx() - Start transmitting characters
566 * @port: The UART port
568 * Start transmitting character. This actually doesn't transmit anything, but
569 * fires off the TX tasklet.
571 static void men_z135_start_tx(struct uart_port *port)
573 struct men_z135_port *uart = to_men_z135(port);
576 men_z135_disable_ms(port);
578 men_z135_handle_tx(uart);
582 * men_z135_stop_rx() - Stop receiving characters
583 * @port: The UART port
585 * Stop receiving characters; the port is in the process of being closed.
587 static void men_z135_stop_rx(struct uart_port *port)
589 struct men_z135_port *uart = to_men_z135(port);
591 men_z135_reg_clr(uart, MEN_Z135_CONF_REG, MEN_Z135_IER_RXCIEN);
595 * men_z135_enable_ms() - Enable Modem Status
598 * Enable Modem Status IRQ.
600 static void men_z135_enable_ms(struct uart_port *port)
602 struct men_z135_port *uart = to_men_z135(port);
604 men_z135_reg_set(uart, MEN_Z135_CONF_REG, MEN_Z135_IER_MSIEN);
607 static int men_z135_startup(struct uart_port *port)
609 struct men_z135_port *uart = to_men_z135(port);
613 err = men_z135_request_irq(uart);
617 conf_reg = ioread32(port->membase + MEN_Z135_CONF_REG);
619 /* Activate all but TX space available IRQ */
620 conf_reg |= MEN_Z135_ALL_IRQS & ~MEN_Z135_IER_TXCIEN;
621 conf_reg &= ~(0xff << 16);
622 conf_reg |= (txlvl << 16);
623 conf_reg |= (rxlvl << 20);
625 iowrite32(conf_reg, port->membase + MEN_Z135_CONF_REG);
628 iowrite32(rx_timeout, port->membase + MEN_Z135_TIMEOUT);
633 static void men_z135_shutdown(struct uart_port *port)
635 struct men_z135_port *uart = to_men_z135(port);
638 conf_reg |= MEN_Z135_ALL_IRQS;
640 men_z135_reg_clr(uart, MEN_Z135_CONF_REG, conf_reg);
642 free_irq(uart->port.irq, uart);
645 static void men_z135_set_termios(struct uart_port *port,
646 struct ktermios *termios,
647 const struct ktermios *old)
649 struct men_z135_port *uart = to_men_z135(port);
656 conf_reg = ioread32(port->membase + MEN_Z135_CONF_REG);
660 switch (termios->c_cflag & CSIZE) {
676 if (termios->c_cflag & CSTOPB)
677 lcr |= MEN_Z135_NSTB2 << MEN_Z135_STB_SHIFT;
680 if (termios->c_cflag & PARENB) {
681 lcr |= MEN_Z135_PAR_ENA << MEN_Z135_PEN_SHIFT;
683 if (termios->c_cflag & PARODD)
684 lcr |= MEN_Z135_PTY_ODD << MEN_Z135_PTY_SHIFT;
686 lcr |= MEN_Z135_PTY_EVN << MEN_Z135_PTY_SHIFT;
688 lcr |= MEN_Z135_PAR_DIS << MEN_Z135_PEN_SHIFT;
690 conf_reg |= MEN_Z135_IER_MSIEN;
691 if (termios->c_cflag & CRTSCTS) {
692 conf_reg |= MEN_Z135_MCR_RCFC;
693 uart->automode = true;
694 termios->c_cflag &= ~CLOCAL;
696 conf_reg &= ~MEN_Z135_MCR_RCFC;
697 uart->automode = false;
700 termios->c_cflag &= ~CMSPAR; /* Mark/Space parity is not supported */
702 conf_reg |= lcr << MEN_Z135_LCR_SHIFT;
703 iowrite32(conf_reg, port->membase + MEN_Z135_CONF_REG);
705 uart_freq = ioread32(port->membase + MEN_Z135_UART_FREQ);
707 uart_freq = MEN_Z135_BASECLK;
709 baud = uart_get_baud_rate(port, termios, old, 0, uart_freq / 16);
711 spin_lock_irq(&port->lock);
712 if (tty_termios_baud_rate(termios))
713 tty_termios_encode_baud_rate(termios, baud, baud);
715 bd_reg = uart_freq / (4 * baud);
716 iowrite32(bd_reg, port->membase + MEN_Z135_BAUD_REG);
718 uart_update_timeout(port, termios->c_cflag, baud);
719 spin_unlock_irq(&port->lock);
722 static const char *men_z135_type(struct uart_port *port)
724 return KBUILD_MODNAME;
727 static void men_z135_release_port(struct uart_port *port)
729 struct men_z135_port *uart = to_men_z135(port);
731 iounmap(port->membase);
732 port->membase = NULL;
734 mcb_release_mem(uart->mem);
737 static int men_z135_request_port(struct uart_port *port)
739 struct men_z135_port *uart = to_men_z135(port);
740 struct mcb_device *mdev = uart->mdev;
741 struct resource *mem;
743 mem = mcb_request_mem(uart->mdev, dev_name(&mdev->dev));
747 port->mapbase = mem->start;
750 port->membase = ioremap(mem->start, resource_size(mem));
751 if (port->membase == NULL) {
752 mcb_release_mem(mem);
759 static void men_z135_config_port(struct uart_port *port, int type)
761 port->type = PORT_MEN_Z135;
762 men_z135_request_port(port);
765 static int men_z135_verify_port(struct uart_port *port,
766 struct serial_struct *serinfo)
771 static const struct uart_ops men_z135_ops = {
772 .tx_empty = men_z135_tx_empty,
773 .set_mctrl = men_z135_set_mctrl,
774 .get_mctrl = men_z135_get_mctrl,
775 .stop_tx = men_z135_stop_tx,
776 .start_tx = men_z135_start_tx,
777 .stop_rx = men_z135_stop_rx,
778 .enable_ms = men_z135_enable_ms,
779 .startup = men_z135_startup,
780 .shutdown = men_z135_shutdown,
781 .set_termios = men_z135_set_termios,
782 .type = men_z135_type,
783 .release_port = men_z135_release_port,
784 .request_port = men_z135_request_port,
785 .config_port = men_z135_config_port,
786 .verify_port = men_z135_verify_port,
789 static struct uart_driver men_z135_driver = {
790 .owner = THIS_MODULE,
791 .driver_name = KBUILD_MODNAME,
792 .dev_name = "ttyHSU",
795 .nr = MEN_Z135_MAX_PORTS,
799 * men_z135_probe() - Probe a z135 instance
800 * @mdev: The MCB device
801 * @id: The MCB device ID
803 * men_z135_probe does the basic setup of hardware resources and registers the
804 * new uart port to the tty layer.
806 static int men_z135_probe(struct mcb_device *mdev,
807 const struct mcb_device_id *id)
809 struct men_z135_port *uart;
810 struct resource *mem;
816 uart = devm_kzalloc(dev, sizeof(struct men_z135_port), GFP_KERNEL);
820 uart->rxbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
826 mcb_set_drvdata(mdev, uart);
828 uart->port.uartclk = MEN_Z135_BASECLK * 16;
829 uart->port.fifosize = MEN_Z135_FIFO_SIZE;
830 uart->port.iotype = UPIO_MEM;
831 uart->port.ops = &men_z135_ops;
832 uart->port.irq = mcb_get_irq(mdev);
833 uart->port.flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP;
834 uart->port.line = line++;
835 uart->port.dev = dev;
836 uart->port.type = PORT_MEN_Z135;
837 uart->port.mapbase = mem->start;
838 uart->port.membase = NULL;
841 spin_lock_init(&uart->lock);
843 err = uart_add_one_port(&men_z135_driver, &uart->port);
850 free_page((unsigned long) uart->rxbuf);
851 dev_err(dev, "Failed to add UART: %d\n", err);
857 * men_z135_remove() - Remove a z135 instance from the system
859 * @mdev: The MCB device
861 static void men_z135_remove(struct mcb_device *mdev)
863 struct men_z135_port *uart = mcb_get_drvdata(mdev);
866 uart_remove_one_port(&men_z135_driver, &uart->port);
867 free_page((unsigned long) uart->rxbuf);
870 static const struct mcb_device_id men_z135_ids[] = {
874 MODULE_DEVICE_TABLE(mcb, men_z135_ids);
876 static struct mcb_driver mcb_driver = {
879 .owner = THIS_MODULE,
881 .probe = men_z135_probe,
882 .remove = men_z135_remove,
883 .id_table = men_z135_ids,
887 * men_z135_init() - Driver Registration Routine
889 * men_z135_init is the first routine called when the driver is loaded. All it
890 * does is register with the legacy MEN Chameleon subsystem.
892 static int __init men_z135_init(void)
896 err = uart_register_driver(&men_z135_driver);
898 pr_err("Failed to register UART: %d\n", err);
902 err = mcb_register_driver(&mcb_driver);
904 pr_err("Failed to register MCB driver: %d\n", err);
905 uart_unregister_driver(&men_z135_driver);
911 module_init(men_z135_init);
914 * men_z135_exit() - Driver Exit Routine
916 * men_z135_exit is called just before the driver is removed from memory.
918 static void __exit men_z135_exit(void)
920 mcb_unregister_driver(&mcb_driver);
921 uart_unregister_driver(&men_z135_driver);
923 module_exit(men_z135_exit);
926 MODULE_LICENSE("GPL v2");
927 MODULE_DESCRIPTION("MEN 16z135 High Speed UART");
928 MODULE_ALIAS("mcb:16z135");
929 MODULE_IMPORT_NS(MCB);