1 // SPDX-License-Identifier: GPL-2.0
2 #if defined(CONFIG_SERIAL_EFM32_UART_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
6 #include <linux/kernel.h>
7 #include <linux/module.h>
9 #include <linux/platform_device.h>
10 #include <linux/console.h>
11 #include <linux/sysrq.h>
12 #include <linux/serial_core.h>
13 #include <linux/tty_flip.h>
14 #include <linux/slab.h>
15 #include <linux/clk.h>
17 #include <linux/of_device.h>
19 #include <linux/platform_data/efm32-uart.h>
21 #define DRIVER_NAME "efm32-uart"
22 #define DEV_NAME "ttyefm"
24 #define UARTn_CTRL 0x00
25 #define UARTn_CTRL_SYNC 0x0001
26 #define UARTn_CTRL_TXBIL 0x1000
28 #define UARTn_FRAME 0x04
29 #define UARTn_FRAME_DATABITS__MASK 0x000f
30 #define UARTn_FRAME_DATABITS(n) ((n) - 3)
31 #define UARTn_FRAME_PARITY__MASK 0x0300
32 #define UARTn_FRAME_PARITY_NONE 0x0000
33 #define UARTn_FRAME_PARITY_EVEN 0x0200
34 #define UARTn_FRAME_PARITY_ODD 0x0300
35 #define UARTn_FRAME_STOPBITS_HALF 0x0000
36 #define UARTn_FRAME_STOPBITS_ONE 0x1000
37 #define UARTn_FRAME_STOPBITS_TWO 0x3000
39 #define UARTn_CMD 0x0c
40 #define UARTn_CMD_RXEN 0x0001
41 #define UARTn_CMD_RXDIS 0x0002
42 #define UARTn_CMD_TXEN 0x0004
43 #define UARTn_CMD_TXDIS 0x0008
45 #define UARTn_STATUS 0x10
46 #define UARTn_STATUS_TXENS 0x0002
47 #define UARTn_STATUS_TXC 0x0020
48 #define UARTn_STATUS_TXBL 0x0040
49 #define UARTn_STATUS_RXDATAV 0x0080
51 #define UARTn_CLKDIV 0x14
53 #define UARTn_RXDATAX 0x18
54 #define UARTn_RXDATAX_RXDATA__MASK 0x01ff
55 #define UARTn_RXDATAX_PERR 0x4000
56 #define UARTn_RXDATAX_FERR 0x8000
58 * This is a software only flag used for ignore_status_mask and
59 * read_status_mask! It's used for breaks that the hardware doesn't report
62 #define SW_UARTn_RXDATAX_BERR 0x2000
64 #define UARTn_TXDATA 0x34
67 #define UARTn_IF_TXC 0x0001
68 #define UARTn_IF_TXBL 0x0002
69 #define UARTn_IF_RXDATAV 0x0004
70 #define UARTn_IF_RXOF 0x0010
72 #define UARTn_IFS 0x44
73 #define UARTn_IFC 0x48
74 #define UARTn_IEN 0x4c
76 #define UARTn_ROUTE 0x54
77 #define UARTn_ROUTE_LOCATION__MASK 0x0700
78 #define UARTn_ROUTE_LOCATION(n) (((n) << 8) & UARTn_ROUTE_LOCATION__MASK)
79 #define UARTn_ROUTE_RXPEN 0x0001
80 #define UARTn_ROUTE_TXPEN 0x0002
82 struct efm32_uart_port
{
83 struct uart_port port
;
86 struct efm32_uart_pdata pdata
;
88 #define to_efm_port(_port) container_of(_port, struct efm32_uart_port, port)
89 #define efm_debug(efm_port, format, arg...) \
90 dev_dbg(efm_port->port.dev, format, ##arg)
92 static void efm32_uart_write32(struct efm32_uart_port
*efm_port
,
93 u32 value
, unsigned offset
)
95 writel_relaxed(value
, efm_port
->port
.membase
+ offset
);
98 static u32
efm32_uart_read32(struct efm32_uart_port
*efm_port
,
101 return readl_relaxed(efm_port
->port
.membase
+ offset
);
104 static unsigned int efm32_uart_tx_empty(struct uart_port
*port
)
106 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
107 u32 status
= efm32_uart_read32(efm_port
, UARTn_STATUS
);
109 if (status
& UARTn_STATUS_TXC
)
115 static void efm32_uart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
117 /* sorry, neither handshaking lines nor loop functionallity */
120 static unsigned int efm32_uart_get_mctrl(struct uart_port
*port
)
122 /* sorry, no handshaking lines available */
123 return TIOCM_CAR
| TIOCM_CTS
| TIOCM_DSR
;
126 static void efm32_uart_stop_tx(struct uart_port
*port
)
128 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
129 u32 ien
= efm32_uart_read32(efm_port
, UARTn_IEN
);
131 efm32_uart_write32(efm_port
, UARTn_CMD_TXDIS
, UARTn_CMD
);
132 ien
&= ~(UARTn_IF_TXC
| UARTn_IF_TXBL
);
133 efm32_uart_write32(efm_port
, ien
, UARTn_IEN
);
136 static void efm32_uart_tx_chars(struct efm32_uart_port
*efm_port
)
138 struct uart_port
*port
= &efm_port
->port
;
139 struct circ_buf
*xmit
= &port
->state
->xmit
;
141 while (efm32_uart_read32(efm_port
, UARTn_STATUS
) &
145 efm32_uart_write32(efm_port
, port
->x_char
,
150 if (!uart_circ_empty(xmit
) && !uart_tx_stopped(port
)) {
152 efm32_uart_write32(efm_port
, xmit
->buf
[xmit
->tail
],
154 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
159 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
160 uart_write_wakeup(port
);
162 if (!port
->x_char
&& uart_circ_empty(xmit
) &&
163 efm32_uart_read32(efm_port
, UARTn_STATUS
) &
165 efm32_uart_stop_tx(port
);
168 static void efm32_uart_start_tx(struct uart_port
*port
)
170 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
173 efm32_uart_write32(efm_port
,
174 UARTn_IF_TXBL
| UARTn_IF_TXC
, UARTn_IFC
);
175 ien
= efm32_uart_read32(efm_port
, UARTn_IEN
);
176 efm32_uart_write32(efm_port
,
177 ien
| UARTn_IF_TXBL
| UARTn_IF_TXC
, UARTn_IEN
);
178 efm32_uart_write32(efm_port
, UARTn_CMD_TXEN
, UARTn_CMD
);
180 efm32_uart_tx_chars(efm_port
);
183 static void efm32_uart_stop_rx(struct uart_port
*port
)
185 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
187 efm32_uart_write32(efm_port
, UARTn_CMD_RXDIS
, UARTn_CMD
);
190 static void efm32_uart_break_ctl(struct uart_port
*port
, int ctl
)
192 /* not possible without fiddling with gpios */
195 static void efm32_uart_rx_chars(struct efm32_uart_port
*efm_port
)
197 struct uart_port
*port
= &efm_port
->port
;
199 while (efm32_uart_read32(efm_port
, UARTn_STATUS
) &
200 UARTn_STATUS_RXDATAV
) {
201 u32 rxdata
= efm32_uart_read32(efm_port
, UARTn_RXDATAX
);
205 * This is a reserved bit and I only saw it read as 0. But to be
206 * sure not to be confused too much by new devices adhere to the
207 * warning in the reference manual that reserverd bits might
208 * read as 1 in the future.
210 rxdata
&= ~SW_UARTn_RXDATAX_BERR
;
214 if ((rxdata
& UARTn_RXDATAX_FERR
) &&
215 !(rxdata
& UARTn_RXDATAX_RXDATA__MASK
)) {
216 rxdata
|= SW_UARTn_RXDATAX_BERR
;
218 if (uart_handle_break(port
))
220 } else if (rxdata
& UARTn_RXDATAX_PERR
)
221 port
->icount
.parity
++;
222 else if (rxdata
& UARTn_RXDATAX_FERR
)
223 port
->icount
.frame
++;
225 rxdata
&= port
->read_status_mask
;
227 if (rxdata
& SW_UARTn_RXDATAX_BERR
)
229 else if (rxdata
& UARTn_RXDATAX_PERR
)
231 else if (rxdata
& UARTn_RXDATAX_FERR
)
233 else if (uart_handle_sysrq_char(port
,
234 rxdata
& UARTn_RXDATAX_RXDATA__MASK
))
237 if ((rxdata
& port
->ignore_status_mask
) == 0)
238 tty_insert_flip_char(&port
->state
->port
,
239 rxdata
& UARTn_RXDATAX_RXDATA__MASK
, flag
);
243 static irqreturn_t
efm32_uart_rxirq(int irq
, void *data
)
245 struct efm32_uart_port
*efm_port
= data
;
246 u32 irqflag
= efm32_uart_read32(efm_port
, UARTn_IF
);
247 int handled
= IRQ_NONE
;
248 struct uart_port
*port
= &efm_port
->port
;
249 struct tty_port
*tport
= &port
->state
->port
;
251 spin_lock(&port
->lock
);
253 if (irqflag
& UARTn_IF_RXDATAV
) {
254 efm32_uart_write32(efm_port
, UARTn_IF_RXDATAV
, UARTn_IFC
);
255 efm32_uart_rx_chars(efm_port
);
257 handled
= IRQ_HANDLED
;
260 if (irqflag
& UARTn_IF_RXOF
) {
261 efm32_uart_write32(efm_port
, UARTn_IF_RXOF
, UARTn_IFC
);
262 port
->icount
.overrun
++;
263 tty_insert_flip_char(tport
, 0, TTY_OVERRUN
);
265 handled
= IRQ_HANDLED
;
268 spin_unlock(&port
->lock
);
270 tty_flip_buffer_push(tport
);
275 static irqreturn_t
efm32_uart_txirq(int irq
, void *data
)
277 struct efm32_uart_port
*efm_port
= data
;
278 u32 irqflag
= efm32_uart_read32(efm_port
, UARTn_IF
);
280 /* TXBL doesn't need to be cleared */
281 if (irqflag
& UARTn_IF_TXC
)
282 efm32_uart_write32(efm_port
, UARTn_IF_TXC
, UARTn_IFC
);
284 if (irqflag
& (UARTn_IF_TXC
| UARTn_IF_TXBL
)) {
285 efm32_uart_tx_chars(efm_port
);
291 static int efm32_uart_startup(struct uart_port
*port
)
293 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
296 ret
= clk_enable(efm_port
->clk
);
298 efm_debug(efm_port
, "failed to enable clk\n");
301 port
->uartclk
= clk_get_rate(efm_port
->clk
);
303 /* Enable pins at configured location */
304 efm32_uart_write32(efm_port
,
305 UARTn_ROUTE_LOCATION(efm_port
->pdata
.location
) |
306 UARTn_ROUTE_RXPEN
| UARTn_ROUTE_TXPEN
,
309 ret
= request_irq(port
->irq
, efm32_uart_rxirq
, 0,
310 DRIVER_NAME
, efm_port
);
312 efm_debug(efm_port
, "failed to register rxirq\n");
313 goto err_request_irq_rx
;
316 /* disable all irqs */
317 efm32_uart_write32(efm_port
, 0, UARTn_IEN
);
319 ret
= request_irq(efm_port
->txirq
, efm32_uart_txirq
, 0,
320 DRIVER_NAME
, efm_port
);
322 efm_debug(efm_port
, "failed to register txirq\n");
323 free_irq(port
->irq
, efm_port
);
326 clk_disable(efm_port
->clk
);
328 efm32_uart_write32(efm_port
,
329 UARTn_IF_RXDATAV
| UARTn_IF_RXOF
, UARTn_IEN
);
330 efm32_uart_write32(efm_port
, UARTn_CMD_RXEN
, UARTn_CMD
);
337 static void efm32_uart_shutdown(struct uart_port
*port
)
339 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
341 efm32_uart_write32(efm_port
, 0, UARTn_IEN
);
342 free_irq(port
->irq
, efm_port
);
344 clk_disable(efm_port
->clk
);
347 static void efm32_uart_set_termios(struct uart_port
*port
,
348 struct ktermios
*new, struct ktermios
*old
)
350 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
356 /* no modem control lines */
357 new->c_cflag
&= ~(CRTSCTS
| CMSPAR
);
359 baud
= uart_get_baud_rate(port
, new, old
,
360 DIV_ROUND_CLOSEST(port
->uartclk
, 16 * 8192),
361 DIV_ROUND_CLOSEST(port
->uartclk
, 16));
363 switch (new->c_cflag
& CSIZE
) {
365 frame
|= UARTn_FRAME_DATABITS(5);
368 frame
|= UARTn_FRAME_DATABITS(6);
371 frame
|= UARTn_FRAME_DATABITS(7);
374 frame
|= UARTn_FRAME_DATABITS(8);
378 if (new->c_cflag
& CSTOPB
)
379 /* the receiver only verifies the first stop bit */
380 frame
|= UARTn_FRAME_STOPBITS_TWO
;
382 frame
|= UARTn_FRAME_STOPBITS_ONE
;
384 if (new->c_cflag
& PARENB
) {
385 if (new->c_cflag
& PARODD
)
386 frame
|= UARTn_FRAME_PARITY_ODD
;
388 frame
|= UARTn_FRAME_PARITY_EVEN
;
390 frame
|= UARTn_FRAME_PARITY_NONE
;
393 * the 6 lowest bits of CLKDIV are dc, bit 6 has value 0.25.
394 * port->uartclk <= 14e6, so 4 * port->uartclk doesn't overflow.
396 clkdiv
= (DIV_ROUND_CLOSEST(4 * port
->uartclk
, 16 * baud
) - 4) << 6;
398 spin_lock_irqsave(&port
->lock
, flags
);
400 efm32_uart_write32(efm_port
,
401 UARTn_CMD_TXDIS
| UARTn_CMD_RXDIS
, UARTn_CMD
);
403 port
->read_status_mask
= UARTn_RXDATAX_RXDATA__MASK
;
404 if (new->c_iflag
& INPCK
)
405 port
->read_status_mask
|=
406 UARTn_RXDATAX_FERR
| UARTn_RXDATAX_PERR
;
407 if (new->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
408 port
->read_status_mask
|= SW_UARTn_RXDATAX_BERR
;
410 port
->ignore_status_mask
= 0;
411 if (new->c_iflag
& IGNPAR
)
412 port
->ignore_status_mask
|=
413 UARTn_RXDATAX_FERR
| UARTn_RXDATAX_PERR
;
414 if (new->c_iflag
& IGNBRK
)
415 port
->ignore_status_mask
|= SW_UARTn_RXDATAX_BERR
;
417 uart_update_timeout(port
, new->c_cflag
, baud
);
419 efm32_uart_write32(efm_port
, UARTn_CTRL_TXBIL
, UARTn_CTRL
);
420 efm32_uart_write32(efm_port
, frame
, UARTn_FRAME
);
421 efm32_uart_write32(efm_port
, clkdiv
, UARTn_CLKDIV
);
423 efm32_uart_write32(efm_port
, UARTn_CMD_TXEN
| UARTn_CMD_RXEN
,
426 spin_unlock_irqrestore(&port
->lock
, flags
);
429 static const char *efm32_uart_type(struct uart_port
*port
)
431 return port
->type
== PORT_EFMUART
? "efm32-uart" : NULL
;
434 static void efm32_uart_release_port(struct uart_port
*port
)
436 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
438 clk_unprepare(efm_port
->clk
);
439 clk_put(efm_port
->clk
);
440 iounmap(port
->membase
);
443 static int efm32_uart_request_port(struct uart_port
*port
)
445 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
448 port
->membase
= ioremap(port
->mapbase
, 60);
449 if (!efm_port
->port
.membase
) {
451 efm_debug(efm_port
, "failed to remap\n");
455 efm_port
->clk
= clk_get(port
->dev
, NULL
);
456 if (IS_ERR(efm_port
->clk
)) {
457 ret
= PTR_ERR(efm_port
->clk
);
458 efm_debug(efm_port
, "failed to get clock\n");
462 ret
= clk_prepare(efm_port
->clk
);
464 clk_put(efm_port
->clk
);
467 iounmap(port
->membase
);
474 static void efm32_uart_config_port(struct uart_port
*port
, int type
)
476 if (type
& UART_CONFIG_TYPE
&&
477 !efm32_uart_request_port(port
))
478 port
->type
= PORT_EFMUART
;
481 static int efm32_uart_verify_port(struct uart_port
*port
,
482 struct serial_struct
*serinfo
)
486 if (serinfo
->type
!= PORT_UNKNOWN
&& serinfo
->type
!= PORT_EFMUART
)
492 static const struct uart_ops efm32_uart_pops
= {
493 .tx_empty
= efm32_uart_tx_empty
,
494 .set_mctrl
= efm32_uart_set_mctrl
,
495 .get_mctrl
= efm32_uart_get_mctrl
,
496 .stop_tx
= efm32_uart_stop_tx
,
497 .start_tx
= efm32_uart_start_tx
,
498 .stop_rx
= efm32_uart_stop_rx
,
499 .break_ctl
= efm32_uart_break_ctl
,
500 .startup
= efm32_uart_startup
,
501 .shutdown
= efm32_uart_shutdown
,
502 .set_termios
= efm32_uart_set_termios
,
503 .type
= efm32_uart_type
,
504 .release_port
= efm32_uart_release_port
,
505 .request_port
= efm32_uart_request_port
,
506 .config_port
= efm32_uart_config_port
,
507 .verify_port
= efm32_uart_verify_port
,
510 static struct efm32_uart_port
*efm32_uart_ports
[5];
512 #ifdef CONFIG_SERIAL_EFM32_UART_CONSOLE
513 static void efm32_uart_console_putchar(struct uart_port
*port
, int ch
)
515 struct efm32_uart_port
*efm_port
= to_efm_port(port
);
516 unsigned int timeout
= 0x400;
520 status
= efm32_uart_read32(efm_port
, UARTn_STATUS
);
522 if (status
& UARTn_STATUS_TXBL
)
527 efm32_uart_write32(efm_port
, ch
, UARTn_TXDATA
);
530 static void efm32_uart_console_write(struct console
*co
, const char *s
,
533 struct efm32_uart_port
*efm_port
= efm32_uart_ports
[co
->index
];
534 u32 status
= efm32_uart_read32(efm_port
, UARTn_STATUS
);
535 unsigned int timeout
= 0x400;
537 if (!(status
& UARTn_STATUS_TXENS
))
538 efm32_uart_write32(efm_port
, UARTn_CMD_TXEN
, UARTn_CMD
);
540 uart_console_write(&efm_port
->port
, s
, count
,
541 efm32_uart_console_putchar
);
543 /* Wait for the transmitter to become empty */
545 u32 status
= efm32_uart_read32(efm_port
, UARTn_STATUS
);
546 if (status
& UARTn_STATUS_TXC
)
552 if (!(status
& UARTn_STATUS_TXENS
))
553 efm32_uart_write32(efm_port
, UARTn_CMD_TXDIS
, UARTn_CMD
);
556 static void efm32_uart_console_get_options(struct efm32_uart_port
*efm_port
,
557 int *baud
, int *parity
, int *bits
)
559 u32 ctrl
= efm32_uart_read32(efm_port
, UARTn_CTRL
);
560 u32 route
, clkdiv
, frame
;
562 if (ctrl
& UARTn_CTRL_SYNC
)
563 /* not operating in async mode */
566 route
= efm32_uart_read32(efm_port
, UARTn_ROUTE
);
567 if (!(route
& UARTn_ROUTE_TXPEN
))
568 /* tx pin not routed */
571 clkdiv
= efm32_uart_read32(efm_port
, UARTn_CLKDIV
);
573 *baud
= DIV_ROUND_CLOSEST(4 * efm_port
->port
.uartclk
,
574 16 * (4 + (clkdiv
>> 6)));
576 frame
= efm32_uart_read32(efm_port
, UARTn_FRAME
);
577 switch (frame
& UARTn_FRAME_PARITY__MASK
) {
578 case UARTn_FRAME_PARITY_ODD
:
581 case UARTn_FRAME_PARITY_EVEN
:
588 *bits
= (frame
& UARTn_FRAME_DATABITS__MASK
) -
589 UARTn_FRAME_DATABITS(4) + 4;
591 efm_debug(efm_port
, "get_opts: options=%d%c%d\n",
592 *baud
, *parity
, *bits
);
595 static int efm32_uart_console_setup(struct console
*co
, char *options
)
597 struct efm32_uart_port
*efm_port
;
604 if (co
->index
< 0 || co
->index
>= ARRAY_SIZE(efm32_uart_ports
)) {
606 for (i
= 0; i
< ARRAY_SIZE(efm32_uart_ports
); ++i
) {
607 if (efm32_uart_ports
[i
]) {
608 pr_warn("efm32-console: fall back to console index %u (from %hhi)\n",
616 efm_port
= efm32_uart_ports
[co
->index
];
618 pr_warn("efm32-console: No port at %d\n", co
->index
);
622 ret
= clk_prepare(efm_port
->clk
);
624 dev_warn(efm_port
->port
.dev
,
625 "console: clk_prepare failed: %d\n", ret
);
629 efm_port
->port
.uartclk
= clk_get_rate(efm_port
->clk
);
632 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
634 efm32_uart_console_get_options(efm_port
,
635 &baud
, &parity
, &bits
);
637 return uart_set_options(&efm_port
->port
, co
, baud
, parity
, bits
, flow
);
640 static struct uart_driver efm32_uart_reg
;
642 static struct console efm32_uart_console
= {
644 .write
= efm32_uart_console_write
,
645 .device
= uart_console_device
,
646 .setup
= efm32_uart_console_setup
,
647 .flags
= CON_PRINTBUFFER
,
649 .data
= &efm32_uart_reg
,
653 #define efm32_uart_console (*(struct console *)NULL)
654 #endif /* ifdef CONFIG_SERIAL_EFM32_UART_CONSOLE / else */
656 static struct uart_driver efm32_uart_reg
= {
657 .owner
= THIS_MODULE
,
658 .driver_name
= DRIVER_NAME
,
659 .dev_name
= DEV_NAME
,
660 .nr
= ARRAY_SIZE(efm32_uart_ports
),
661 .cons
= &efm32_uart_console
,
664 static int efm32_uart_probe_dt(struct platform_device
*pdev
,
665 struct efm32_uart_port
*efm_port
)
667 struct device_node
*np
= pdev
->dev
.of_node
;
674 ret
= of_property_read_u32(np
, "energymicro,location", &location
);
677 /* fall back to wrongly namespaced property */
678 ret
= of_property_read_u32(np
, "efm32,location", &location
);
681 /* fall back to old and (wrongly) generic property "location" */
682 ret
= of_property_read_u32(np
, "location", &location
);
686 dev_err(&pdev
->dev
, "invalid location\n");
689 efm_debug(efm_port
, "using location %u\n", location
);
690 efm_port
->pdata
.location
= location
;
692 efm_debug(efm_port
, "fall back to location 0\n");
695 ret
= of_alias_get_id(np
, "serial");
697 dev_err(&pdev
->dev
, "failed to get alias id: %d\n", ret
);
700 efm_port
->port
.line
= ret
;
706 static int efm32_uart_probe(struct platform_device
*pdev
)
708 struct efm32_uart_port
*efm_port
;
709 struct resource
*res
;
713 efm_port
= kzalloc(sizeof(*efm_port
), GFP_KERNEL
);
715 dev_dbg(&pdev
->dev
, "failed to allocate private data\n");
719 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
722 dev_dbg(&pdev
->dev
, "failed to determine base address\n");
726 if (resource_size(res
) < 60) {
728 dev_dbg(&pdev
->dev
, "memory resource too small\n");
732 ret
= platform_get_irq(pdev
, 0);
734 dev_dbg(&pdev
->dev
, "failed to get rx irq\n");
738 efm_port
->port
.irq
= ret
;
740 ret
= platform_get_irq(pdev
, 1);
742 ret
= efm_port
->port
.irq
+ 1;
744 efm_port
->txirq
= ret
;
746 efm_port
->port
.dev
= &pdev
->dev
;
747 efm_port
->port
.mapbase
= res
->start
;
748 efm_port
->port
.type
= PORT_EFMUART
;
749 efm_port
->port
.iotype
= UPIO_MEM32
;
750 efm_port
->port
.fifosize
= 2;
751 efm_port
->port
.ops
= &efm32_uart_pops
;
752 efm_port
->port
.flags
= UPF_BOOT_AUTOCONF
;
754 ret
= efm32_uart_probe_dt(pdev
, efm_port
);
756 /* not created by device tree */
757 const struct efm32_uart_pdata
*pdata
= dev_get_platdata(&pdev
->dev
);
759 efm_port
->port
.line
= pdev
->id
;
762 efm_port
->pdata
= *pdata
;
766 line
= efm_port
->port
.line
;
768 if (line
>= 0 && line
< ARRAY_SIZE(efm32_uart_ports
))
769 efm32_uart_ports
[line
] = efm_port
;
771 ret
= uart_add_one_port(&efm32_uart_reg
, &efm_port
->port
);
773 dev_dbg(&pdev
->dev
, "failed to add port: %d\n", ret
);
775 if (line
>= 0 && line
< ARRAY_SIZE(efm32_uart_ports
))
776 efm32_uart_ports
[line
] = NULL
;
783 platform_set_drvdata(pdev
, efm_port
);
784 dev_dbg(&pdev
->dev
, "\\o/\n");
790 static int efm32_uart_remove(struct platform_device
*pdev
)
792 struct efm32_uart_port
*efm_port
= platform_get_drvdata(pdev
);
793 unsigned int line
= efm_port
->port
.line
;
795 uart_remove_one_port(&efm32_uart_reg
, &efm_port
->port
);
797 if (line
>= 0 && line
< ARRAY_SIZE(efm32_uart_ports
))
798 efm32_uart_ports
[line
] = NULL
;
805 static const struct of_device_id efm32_uart_dt_ids
[] = {
807 .compatible
= "energymicro,efm32-uart",
809 /* doesn't follow the "vendor,device" scheme, don't use */
810 .compatible
= "efm32,uart",
815 MODULE_DEVICE_TABLE(of
, efm32_uart_dt_ids
);
817 static struct platform_driver efm32_uart_driver
= {
818 .probe
= efm32_uart_probe
,
819 .remove
= efm32_uart_remove
,
823 .of_match_table
= efm32_uart_dt_ids
,
827 static int __init
efm32_uart_init(void)
831 ret
= uart_register_driver(&efm32_uart_reg
);
835 ret
= platform_driver_register(&efm32_uart_driver
);
837 uart_unregister_driver(&efm32_uart_reg
);
839 pr_info("EFM32 UART/USART driver\n");
843 module_init(efm32_uart_init
);
845 static void __exit
efm32_uart_exit(void)
847 platform_driver_unregister(&efm32_uart_driver
);
848 uart_unregister_driver(&efm32_uart_reg
);
850 module_exit(efm32_uart_exit
);
852 MODULE_AUTHOR("Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>");
853 MODULE_DESCRIPTION("EFM32 UART/USART driver");
854 MODULE_LICENSE("GPL v2");
855 MODULE_ALIAS("platform:" DRIVER_NAME
);