blob: 36333c3d49a78d9292c8a82d8c049be679b006cd [file] [log] [blame]
Minkyu Kangfca30842009-10-01 17:20:28 +09001/*
2 * (C) Copyright 2009 SAMSUNG Electronics
3 * Minkyu Kang <mk7.kang@samsung.com>
4 * Heungjun Kim <riverful.kim@samsung.com>
5 *
6 * based on drivers/serial/s3c64xx.c
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <common.h>
25#include <asm/io.h>
26#include <asm/arch/uart.h>
27#include <asm/arch/clk.h>
28#include <serial.h>
29
Minkyu Kangbaa36882010-03-24 16:59:30 +090030static inline struct s5p_uart *s5p_get_base_uart(int dev_index)
Minkyu Kangfca30842009-10-01 17:20:28 +090031{
Minkyu Kangbaa36882010-03-24 16:59:30 +090032 u32 offset = dev_index * sizeof(struct s5p_uart);
Minkyu Kangc8189842010-08-13 16:07:35 +090033 return (struct s5p_uart *)(samsung_get_base_uart() + offset);
Minkyu Kangfca30842009-10-01 17:20:28 +090034}
35
36/*
Minkyu Kangbaa36882010-03-24 16:59:30 +090037 * The coefficient, used to calculate the baudrate on S5P UARTs is
Minkyu Kangfca30842009-10-01 17:20:28 +090038 * calculated as
39 * C = UBRDIV * 16 + number_of_set_bits_in_UDIVSLOT
40 * however, section 31.6.11 of the datasheet doesn't recomment using 1 for 1,
41 * 3 for 2, ... (2^n - 1) for n, instead, they suggest using these constants:
42 */
43static const int udivslot[] = {
44 0,
45 0x0080,
46 0x0808,
47 0x0888,
48 0x2222,
49 0x4924,
50 0x4a52,
51 0x54aa,
52 0x5555,
53 0xd555,
54 0xd5d5,
55 0xddd5,
56 0xdddd,
57 0xdfdd,
58 0xdfdf,
59 0xffdf,
60};
61
62void serial_setbrg_dev(const int dev_index)
63{
64 DECLARE_GLOBAL_DATA_PTR;
Minkyu Kangbaa36882010-03-24 16:59:30 +090065 struct s5p_uart *const uart = s5p_get_base_uart(dev_index);
Minkyu Kang36f25cf2010-08-24 15:51:55 +090066 u32 uclk = get_uart_clk(dev_index);
Minkyu Kangfca30842009-10-01 17:20:28 +090067 u32 baudrate = gd->baudrate;
68 u32 val;
69
Minkyu Kang36f25cf2010-08-24 15:51:55 +090070 val = uclk / baudrate;
Minkyu Kangfca30842009-10-01 17:20:28 +090071
72 writel(val / 16 - 1, &uart->ubrdiv);
Minkyu Kangbfa14242010-09-28 14:35:02 +090073
74 if (use_divslot)
75 writew(udivslot[val % 16], &uart->rest.slot);
76 else
77 writeb(val % 16, &uart->rest.value);
Minkyu Kangfca30842009-10-01 17:20:28 +090078}
79
80/*
81 * Initialise the serial port with the given baudrate. The settings
82 * are always 8 data bits, no parity, 1 stop bit, no start bits.
83 */
84int serial_init_dev(const int dev_index)
85{
Minkyu Kangbaa36882010-03-24 16:59:30 +090086 struct s5p_uart *const uart = s5p_get_base_uart(dev_index);
Minkyu Kangfca30842009-10-01 17:20:28 +090087
88 /* reset and enable FIFOs, set triggers to the maximum */
89 writel(0, &uart->ufcon);
90 writel(0, &uart->umcon);
91 /* 8N1 */
92 writel(0x3, &uart->ulcon);
93 /* No interrupts, no DMA, pure polling */
94 writel(0x245, &uart->ucon);
95
96 serial_setbrg_dev(dev_index);
97
98 return 0;
99}
100
Minkyu Kang9455aab2009-11-10 20:23:50 +0900101static int serial_err_check(const int dev_index, int op)
Minkyu Kangfca30842009-10-01 17:20:28 +0900102{
Minkyu Kangbaa36882010-03-24 16:59:30 +0900103 struct s5p_uart *const uart = s5p_get_base_uart(dev_index);
Minkyu Kang9455aab2009-11-10 20:23:50 +0900104 unsigned int mask;
Minkyu Kangfca30842009-10-01 17:20:28 +0900105
Minkyu Kang9455aab2009-11-10 20:23:50 +0900106 /*
107 * UERSTAT
108 * Break Detect [3]
109 * Frame Err [2] : receive operation
110 * Parity Err [1] : receive operation
111 * Overrun Err [0] : receive operation
112 */
113 if (op)
114 mask = 0x8;
115 else
116 mask = 0xf;
Minkyu Kangfca30842009-10-01 17:20:28 +0900117
Minkyu Kang9455aab2009-11-10 20:23:50 +0900118 return readl(&uart->uerstat) & mask;
Minkyu Kangfca30842009-10-01 17:20:28 +0900119}
120
121/*
122 * Read a single byte from the serial port. Returns 1 on success, 0
123 * otherwise. When the function is succesfull, the character read is
124 * written into its argument c.
125 */
126int serial_getc_dev(const int dev_index)
127{
Minkyu Kangbaa36882010-03-24 16:59:30 +0900128 struct s5p_uart *const uart = s5p_get_base_uart(dev_index);
Minkyu Kangfca30842009-10-01 17:20:28 +0900129
130 /* wait for character to arrive */
131 while (!(readl(&uart->utrstat) & 0x1)) {
Minkyu Kang9455aab2009-11-10 20:23:50 +0900132 if (serial_err_check(dev_index, 0))
Minkyu Kangfca30842009-10-01 17:20:28 +0900133 return 0;
134 }
135
Minkyu Kang76229812010-07-06 20:08:29 +0900136 return (int)(readb(&uart->urxh) & 0xff);
Minkyu Kangfca30842009-10-01 17:20:28 +0900137}
138
139/*
140 * Output a single byte to the serial port.
141 */
142void serial_putc_dev(const char c, const int dev_index)
143{
Minkyu Kangbaa36882010-03-24 16:59:30 +0900144 struct s5p_uart *const uart = s5p_get_base_uart(dev_index);
Minkyu Kangfca30842009-10-01 17:20:28 +0900145
146 /* wait for room in the tx FIFO */
147 while (!(readl(&uart->utrstat) & 0x2)) {
Minkyu Kang9455aab2009-11-10 20:23:50 +0900148 if (serial_err_check(dev_index, 1))
Minkyu Kangfca30842009-10-01 17:20:28 +0900149 return;
150 }
151
Minkyu Kang76229812010-07-06 20:08:29 +0900152 writeb(c, &uart->utxh);
Minkyu Kangfca30842009-10-01 17:20:28 +0900153
154 /* If \n, also do \r */
155 if (c == '\n')
156 serial_putc('\r');
157}
158
159/*
160 * Test whether a character is in the RX buffer
161 */
162int serial_tstc_dev(const int dev_index)
163{
Minkyu Kangbaa36882010-03-24 16:59:30 +0900164 struct s5p_uart *const uart = s5p_get_base_uart(dev_index);
Minkyu Kangfca30842009-10-01 17:20:28 +0900165
166 return (int)(readl(&uart->utrstat) & 0x1);
167}
168
169void serial_puts_dev(const char *s, const int dev_index)
170{
171 while (*s)
172 serial_putc_dev(*s++, dev_index);
173}
174
175/* Multi serial device functions */
176#define DECLARE_S5P_SERIAL_FUNCTIONS(port) \
177int s5p_serial##port##_init(void) { return serial_init_dev(port); } \
178void s5p_serial##port##_setbrg(void) { serial_setbrg_dev(port); } \
179int s5p_serial##port##_getc(void) { return serial_getc_dev(port); } \
180int s5p_serial##port##_tstc(void) { return serial_tstc_dev(port); } \
181void s5p_serial##port##_putc(const char c) { serial_putc_dev(c, port); } \
182void s5p_serial##port##_puts(const char *s) { serial_puts_dev(s, port); }
183
184#define INIT_S5P_SERIAL_STRUCTURE(port, name, bus) { \
185 name, \
186 bus, \
187 s5p_serial##port##_init, \
Anatolij Gustschin99d25f92010-04-24 19:27:04 +0200188 NULL, \
Minkyu Kangfca30842009-10-01 17:20:28 +0900189 s5p_serial##port##_setbrg, \
190 s5p_serial##port##_getc, \
191 s5p_serial##port##_tstc, \
192 s5p_serial##port##_putc, \
193 s5p_serial##port##_puts, }
194
195DECLARE_S5P_SERIAL_FUNCTIONS(0);
Minkyu Kangbaa36882010-03-24 16:59:30 +0900196struct serial_device s5p_serial0_device =
Minkyu Kangfca30842009-10-01 17:20:28 +0900197 INIT_S5P_SERIAL_STRUCTURE(0, "s5pser0", "S5PUART0");
198DECLARE_S5P_SERIAL_FUNCTIONS(1);
Minkyu Kangbaa36882010-03-24 16:59:30 +0900199struct serial_device s5p_serial1_device =
Minkyu Kangfca30842009-10-01 17:20:28 +0900200 INIT_S5P_SERIAL_STRUCTURE(1, "s5pser1", "S5PUART1");
201DECLARE_S5P_SERIAL_FUNCTIONS(2);
Minkyu Kangbaa36882010-03-24 16:59:30 +0900202struct serial_device s5p_serial2_device =
Minkyu Kangfca30842009-10-01 17:20:28 +0900203 INIT_S5P_SERIAL_STRUCTURE(2, "s5pser2", "S5PUART2");
204DECLARE_S5P_SERIAL_FUNCTIONS(3);
Minkyu Kangbaa36882010-03-24 16:59:30 +0900205struct serial_device s5p_serial3_device =
Minkyu Kangfca30842009-10-01 17:20:28 +0900206 INIT_S5P_SERIAL_STRUCTURE(3, "s5pser3", "S5PUART3");