blob: 78ab2be7024192aca1fe082d48be958db259693a [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * arch/arm/mach-omap2/serial.c
Tony Lindgren1dbae812005-11-10 14:26:51 +00003 *
4 * OMAP2 serial support.
5 *
Jouni Hogander6e811762008-10-06 15:49:15 +03006 * Copyright (C) 2005-2008 Nokia Corporation
Tony Lindgren1dbae812005-11-10 14:26:51 +00007 * Author: Paul Mundt <paul.mundt@nokia.com>
8 *
9 * Based off of arch/arm/mach-omap/omap1/serial.c
10 *
11 * This file is subject to the terms and conditions of the GNU General Public
12 * License. See the file "COPYING" in the main directory of this archive
13 * for more details.
14 */
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/serial_8250.h>
18#include <linux/serial_reg.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000019#include <linux/clk.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000020
21#include <asm/io.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/common.h>
24#include <mach/board.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000025
Jouni Hogander6e811762008-10-06 15:49:15 +030026static struct clk *uart_ick[OMAP_MAX_NR_PORTS];
27static struct clk *uart_fck[OMAP_MAX_NR_PORTS];
Tony Lindgren1dbae812005-11-10 14:26:51 +000028
29static struct plat_serial8250_port serial_platform_data[] = {
30 {
Russell Kinge8a91c92008-09-01 22:07:37 +010031 .membase = IO_ADDRESS(OMAP_UART1_BASE),
32 .mapbase = OMAP_UART1_BASE,
Tony Lindgren1dbae812005-11-10 14:26:51 +000033 .irq = 72,
34 .flags = UPF_BOOT_AUTOCONF,
35 .iotype = UPIO_MEM,
36 .regshift = 2,
Jouni Hogander6e811762008-10-06 15:49:15 +030037 .uartclk = OMAP24XX_BASE_BAUD * 16,
Tony Lindgren1dbae812005-11-10 14:26:51 +000038 }, {
Russell Kinge8a91c92008-09-01 22:07:37 +010039 .membase = IO_ADDRESS(OMAP_UART2_BASE),
40 .mapbase = OMAP_UART2_BASE,
Tony Lindgren1dbae812005-11-10 14:26:51 +000041 .irq = 73,
42 .flags = UPF_BOOT_AUTOCONF,
43 .iotype = UPIO_MEM,
44 .regshift = 2,
Jouni Hogander6e811762008-10-06 15:49:15 +030045 .uartclk = OMAP24XX_BASE_BAUD * 16,
Tony Lindgren1dbae812005-11-10 14:26:51 +000046 }, {
Russell Kinge8a91c92008-09-01 22:07:37 +010047 .membase = IO_ADDRESS(OMAP_UART3_BASE),
48 .mapbase = OMAP_UART3_BASE,
Tony Lindgren1dbae812005-11-10 14:26:51 +000049 .irq = 74,
50 .flags = UPF_BOOT_AUTOCONF,
51 .iotype = UPIO_MEM,
52 .regshift = 2,
Jouni Hogander6e811762008-10-06 15:49:15 +030053 .uartclk = OMAP24XX_BASE_BAUD * 16,
Tony Lindgren1dbae812005-11-10 14:26:51 +000054 }, {
55 .flags = 0
56 }
57};
58
59static inline unsigned int serial_read_reg(struct plat_serial8250_port *up,
60 int offset)
61{
62 offset <<= up->regshift;
63 return (unsigned int)__raw_readb(up->membase + offset);
64}
65
66static inline void serial_write_reg(struct plat_serial8250_port *p, int offset,
67 int value)
68{
69 offset <<= p->regshift;
Russell Kinge8a91c92008-09-01 22:07:37 +010070 __raw_writeb(value, p->membase + offset);
Tony Lindgren1dbae812005-11-10 14:26:51 +000071}
72
73/*
74 * Internal UARTs need to be initialized for the 8250 autoconfig to work
75 * properly. Note that the TX watermark initialization may not be needed
76 * once the 8250.c watermark handling code is merged.
77 */
78static inline void __init omap_serial_reset(struct plat_serial8250_port *p)
79{
80 serial_write_reg(p, UART_OMAP_MDR1, 0x07);
81 serial_write_reg(p, UART_OMAP_SCR, 0x08);
82 serial_write_reg(p, UART_OMAP_MDR1, 0x00);
Juha Yrjola671c7232006-12-06 17:13:49 -080083 serial_write_reg(p, UART_OMAP_SYSC, (0x02 << 3) | (1 << 2) | (1 << 0));
Tony Lindgren1dbae812005-11-10 14:26:51 +000084}
85
Jouni Hogander6e811762008-10-06 15:49:15 +030086void omap_serial_enable_clocks(int enable)
87{
88 int i;
89 for (i = 0; i < OMAP_MAX_NR_PORTS; i++) {
90 if (uart_ick[i] && uart_fck[i]) {
91 if (enable) {
92 clk_enable(uart_ick[i]);
93 clk_enable(uart_fck[i]);
94 } else {
95 clk_disable(uart_ick[i]);
96 clk_disable(uart_fck[i]);
97 }
98 }
99 }
100}
101
102void __init omap_serial_init(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000103{
104 int i;
105 const struct omap_uart_config *info;
Jouni Hogander6e811762008-10-06 15:49:15 +0300106 char name[16];
Tony Lindgren1dbae812005-11-10 14:26:51 +0000107
108 /*
109 * Make sure the serial ports are muxed on at this point.
110 * You have to mux them off in device drivers later on
111 * if not needed.
112 */
113
Jouni Hogander6e811762008-10-06 15:49:15 +0300114 info = omap_get_config(OMAP_TAG_UART, struct omap_uart_config);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000115
116 if (info == NULL)
117 return;
118
119 for (i = 0; i < OMAP_MAX_NR_PORTS; i++) {
120 struct plat_serial8250_port *p = serial_platform_data + i;
121
122 if (!(info->enabled_uarts & (1 << i))) {
Russell Kingc0fc18c2008-09-05 15:10:27 +0100123 p->membase = NULL;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000124 p->mapbase = 0;
125 continue;
126 }
127
Jouni Hogander6e811762008-10-06 15:49:15 +0300128 sprintf(name, "uart%d_ick", i+1);
129 uart_ick[i] = clk_get(NULL, name);
130 if (IS_ERR(uart_ick[i])) {
131 printk(KERN_ERR "Could not get uart%d_ick\n", i+1);
132 uart_ick[i] = NULL;
133 } else
134 clk_enable(uart_ick[i]);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000135
Jouni Hogander6e811762008-10-06 15:49:15 +0300136 sprintf(name, "uart%d_fck", i+1);
137 uart_fck[i] = clk_get(NULL, name);
138 if (IS_ERR(uart_fck[i])) {
139 printk(KERN_ERR "Could not get uart%d_fck\n", i+1);
140 uart_fck[i] = NULL;
141 } else
142 clk_enable(uart_fck[i]);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000143
144 omap_serial_reset(p);
145 }
146}
147
148static struct platform_device serial_device = {
149 .name = "serial8250",
Lennert Buytenhek7d420892006-03-23 12:59:08 +0000150 .id = PLAT8250_DEV_PLATFORM,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000151 .dev = {
152 .platform_data = serial_platform_data,
153 },
154};
155
156static int __init omap_init(void)
157{
158 return platform_device_register(&serial_device);
159}
160arch_initcall(omap_init);