Re: [PATCH] tty: serial: Add driver for MEN's 16z135 High Speed UART.

2014-04-17 Thread One Thousand Gnomes
> +static inline void men_z135_reg_set(struct men_z135_port *uart, > + u32 addr, u32 val) > +{ > + struct uart_port *port = &uart->port; > + u32 reg; > + > + reg = ioread32(port->membase + addr); > + reg |= val; > + iowrite32(reg, port->membase + add

Re: [PATCH] tty: serial: Add driver for MEN's 16z135 High Speed UART.

2014-04-17 Thread Alexander Shiyan
Thu, 17 Apr 2014 11:44:54 +0200 от Johannes Thumshirn : > Add driver for MEN's 16z135 High Speed UART. > > The 16z135 is a memory mapped UART Core on an MCB FPGA and has 1024 byte > deep FIFO buffers for the RX and TX path. It also has configurable FIFO > fill level IRQs and data copied to and fr

[PATCH] tty: serial: Add driver for MEN's 16z135 High Speed UART.

2014-04-17 Thread Johannes Thumshirn
Add driver for MEN's 16z135 High Speed UART. The 16z135 is a memory mapped UART Core on an MCB FPGA and has 1024 byte deep FIFO buffers for the RX and TX path. It also has configurable FIFO fill level IRQs and data copied to and from the hardware has to be acknowledged. Signed-off-by: Johannes Th