blob: 592c0bde3680006786bafde2f8df8f4faf22298c [file] [log] [blame]
Vikas Manocha6a12ceb2016-02-11 15:47:19 -08001/*
2 * (C) Copyright 2016
3 * Vikas Manocha, <vikas.manocha@st.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <dm.h>
10#include <asm/io.h>
11#include <serial.h>
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090012#include <asm/arch/stm32.h>
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080013#include <dm/platform_data/serial_stm32x7.h>
14#include "serial_stm32x7.h"
15
16DECLARE_GLOBAL_DATA_PTR;
17
18static int stm32_serial_setbrg(struct udevice *dev, int baudrate)
19{
20 struct stm32x7_serial_platdata *plat = dev->platdata;
21 struct stm32_usart *const usart = plat->base;
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090022 u32 clock, int_div, frac_div, tmp;
23
24 if (((u32)usart & STM32_BUS_MASK) == APB1_PERIPH_BASE)
25 clock = clock_get(CLOCK_APB1);
26 else if (((u32)usart & STM32_BUS_MASK) == APB2_PERIPH_BASE)
27 clock = clock_get(CLOCK_APB2);
28 else
29 return -EINVAL;
30
31 int_div = (25 * clock) / (4 * baudrate);
32 tmp = ((int_div / 100) << USART_BRR_M_SHIFT) & USART_BRR_M_MASK;
33 frac_div = int_div - (100 * (tmp >> USART_BRR_M_SHIFT));
34 tmp |= (((frac_div * 16) + 50) / 100) & USART_BRR_F_MASK;
35 writel(tmp, &usart->brr);
Vikas Manocha6a12ceb2016-02-11 15:47:19 -080036
37 return 0;
38}
39
40static int stm32_serial_getc(struct udevice *dev)
41{
42 struct stm32x7_serial_platdata *plat = dev->platdata;
43 struct stm32_usart *const usart = plat->base;
44
45 if ((readl(&usart->sr) & USART_SR_FLAG_RXNE) == 0)
46 return -EAGAIN;
47
48 return readl(&usart->rd_dr);
49}
50
51static int stm32_serial_putc(struct udevice *dev, const char c)
52{
53 struct stm32x7_serial_platdata *plat = dev->platdata;
54 struct stm32_usart *const usart = plat->base;
55
56 if ((readl(&usart->sr) & USART_SR_FLAG_TXE) == 0)
57 return -EAGAIN;
58
59 writel(c, &usart->tx_dr);
60
61 return 0;
62}
63
64static int stm32_serial_pending(struct udevice *dev, bool input)
65{
66 struct stm32x7_serial_platdata *plat = dev->platdata;
67 struct stm32_usart *const usart = plat->base;
68
69 if (input)
70 return readl(&usart->sr) & USART_SR_FLAG_RXNE ? 1 : 0;
71 else
72 return readl(&usart->sr) & USART_SR_FLAG_TXE ? 0 : 1;
73}
74
75static int stm32_serial_probe(struct udevice *dev)
76{
77 struct stm32x7_serial_platdata *plat = dev->platdata;
78 struct stm32_usart *const usart = plat->base;
79 setbits_le32(&usart->cr1, USART_CR1_RE | USART_CR1_TE | USART_CR1_UE);
80
81 return 0;
82}
83
84static const struct dm_serial_ops stm32_serial_ops = {
85 .putc = stm32_serial_putc,
86 .pending = stm32_serial_pending,
87 .getc = stm32_serial_getc,
88 .setbrg = stm32_serial_setbrg,
89};
90
91U_BOOT_DRIVER(serial_stm32) = {
92 .name = "serial_stm32x7",
93 .id = UCLASS_SERIAL,
94 .ops = &stm32_serial_ops,
95 .probe = stm32_serial_probe,
96 .flags = DM_FLAG_PRE_RELOC,
97};