blob: c793ba6e9009f3f9c82ec719743c79468d542613 [file] [log] [blame]
rev13@wp.plab3f0c72015-03-01 12:44:41 +01001/*
2 * (C) Copyright 2015
Kamil Lulko66562412015-12-01 09:08:19 +01003 * Kamil Lulko, <kamil.lulko@gmail.com>
rev13@wp.plab3f0c72015-03-01 12:44:41 +01004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Kamil Lulko66562412015-12-01 09:08:19 +01009#include <dm.h>
rev13@wp.plab3f0c72015-03-01 12:44:41 +010010#include <asm/io.h>
11#include <serial.h>
12#include <asm/arch/stm32.h>
Kamil Lulko66562412015-12-01 09:08:19 +010013#include <dm/platform_data/serial_stm32.h>
rev13@wp.plab3f0c72015-03-01 12:44:41 +010014
Kamil Lulko66562412015-12-01 09:08:19 +010015struct stm32_usart {
rev13@wp.plab3f0c72015-03-01 12:44:41 +010016 u32 sr;
17 u32 dr;
18 u32 brr;
19 u32 cr1;
20 u32 cr2;
21 u32 cr3;
22 u32 gtpr;
23};
24
Kamil Lulko66562412015-12-01 09:08:19 +010025#define USART_CR1_RE (1 << 2)
26#define USART_CR1_TE (1 << 3)
27#define USART_CR1_UE (1 << 13)
rev13@wp.plab3f0c72015-03-01 12:44:41 +010028
29#define USART_SR_FLAG_RXNE (1 << 5)
Kamil Lulko66562412015-12-01 09:08:19 +010030#define USART_SR_FLAG_TXE (1 << 7)
rev13@wp.plab3f0c72015-03-01 12:44:41 +010031
Kamil Lulko66562412015-12-01 09:08:19 +010032#define USART_BRR_F_MASK 0xF
rev13@wp.plab3f0c72015-03-01 12:44:41 +010033#define USART_BRR_M_SHIFT 4
34#define USART_BRR_M_MASK 0xFFF0
35
36DECLARE_GLOBAL_DATA_PTR;
37
Kamil Lulko66562412015-12-01 09:08:19 +010038static int stm32_serial_setbrg(struct udevice *dev, int baudrate)
rev13@wp.plab3f0c72015-03-01 12:44:41 +010039{
Kamil Lulko66562412015-12-01 09:08:19 +010040 struct stm32_serial_platdata *plat = dev->platdata;
41 struct stm32_usart *const usart = plat->base;
42 u32 clock, int_div, frac_div, tmp;
rev13@wp.plab3f0c72015-03-01 12:44:41 +010043
Kamil Lulko66562412015-12-01 09:08:19 +010044 if (((u32)usart & STM32_BUS_MASK) == STM32_APB1PERIPH_BASE)
rev13@wp.plab3f0c72015-03-01 12:44:41 +010045 clock = clock_get(CLOCK_APB1);
Kamil Lulko66562412015-12-01 09:08:19 +010046 else if (((u32)usart & STM32_BUS_MASK) == STM32_APB2PERIPH_BASE)
rev13@wp.plab3f0c72015-03-01 12:44:41 +010047 clock = clock_get(CLOCK_APB2);
Kamil Lulko66562412015-12-01 09:08:19 +010048 else
49 return -EINVAL;
rev13@wp.plab3f0c72015-03-01 12:44:41 +010050
Kamil Lulko66562412015-12-01 09:08:19 +010051 int_div = (25 * clock) / (4 * baudrate);
rev13@wp.plab3f0c72015-03-01 12:44:41 +010052 tmp = ((int_div / 100) << USART_BRR_M_SHIFT) & USART_BRR_M_MASK;
53 frac_div = int_div - (100 * (tmp >> USART_BRR_M_SHIFT));
54 tmp |= (((frac_div * 16) + 50) / 100) & USART_BRR_F_MASK;
rev13@wp.plab3f0c72015-03-01 12:44:41 +010055 writel(tmp, &usart->brr);
Kamil Lulko66562412015-12-01 09:08:19 +010056
57 return 0;
58}
59
60static int stm32_serial_getc(struct udevice *dev)
61{
62 struct stm32_serial_platdata *plat = dev->platdata;
63 struct stm32_usart *const usart = plat->base;
64
65 if ((readl(&usart->sr) & USART_SR_FLAG_RXNE) == 0)
66 return -EAGAIN;
67
68 return readl(&usart->dr);
69}
70
71static int stm32_serial_putc(struct udevice *dev, const char c)
72{
73 struct stm32_serial_platdata *plat = dev->platdata;
74 struct stm32_usart *const usart = plat->base;
75
76 if ((readl(&usart->sr) & USART_SR_FLAG_TXE) == 0)
77 return -EAGAIN;
78
79 writel(c, &usart->dr);
80
81 return 0;
82}
83
84static int stm32_serial_pending(struct udevice *dev, bool input)
85{
86 struct stm32_serial_platdata *plat = dev->platdata;
87 struct stm32_usart *const usart = plat->base;
88
89 if (input)
90 return readl(&usart->sr) & USART_SR_FLAG_RXNE ? 1 : 0;
91 else
92 return readl(&usart->sr) & USART_SR_FLAG_TXE ? 0 : 1;
93}
94
95static int stm32_serial_probe(struct udevice *dev)
96{
97 struct stm32_serial_platdata *plat = dev->platdata;
98 struct stm32_usart *const usart = plat->base;
rev13@wp.plab3f0c72015-03-01 12:44:41 +010099 setbits_le32(&usart->cr1, USART_CR1_RE | USART_CR1_TE | USART_CR1_UE);
100
101 return 0;
102}
103
Kamil Lulko66562412015-12-01 09:08:19 +0100104static const struct dm_serial_ops stm32_serial_ops = {
105 .putc = stm32_serial_putc,
106 .pending = stm32_serial_pending,
107 .getc = stm32_serial_getc,
108 .setbrg = stm32_serial_setbrg,
rev13@wp.plab3f0c72015-03-01 12:44:41 +0100109};
110
Kamil Lulko66562412015-12-01 09:08:19 +0100111U_BOOT_DRIVER(serial_stm32) = {
112 .name = "serial_stm32",
113 .id = UCLASS_SERIAL,
114 .ops = &stm32_serial_ops,
115 .probe = stm32_serial_probe,
116 .flags = DM_FLAG_PRE_RELOC,
117};