xref: /linux/arch/arm/mach-omap1/serial.c (revision 706afddaf53522b67c81a0b1b38bdccd4d4ff00c)
1f577ffd7STony Lindgren /*
2f30c2269SUwe Zeisberger  * linux/arch/arm/mach-omap1/serial.c
3f577ffd7STony Lindgren  *
465d873caSMarek Vašut  * OMAP1 serial support.
5f577ffd7STony Lindgren  *
6f577ffd7STony Lindgren  * This program is free software; you can redistribute it and/or modify
7f577ffd7STony Lindgren  * it under the terms of the GNU General Public License version 2 as
8f577ffd7STony Lindgren  * published by the Free Software Foundation.
9f577ffd7STony Lindgren  */
10f577ffd7STony Lindgren 
11f577ffd7STony Lindgren #include <linux/module.h>
12f577ffd7STony Lindgren #include <linux/kernel.h>
13f577ffd7STony Lindgren #include <linux/init.h>
14d533c128SThomas Gleixner #include <linux/irq.h>
15f577ffd7STony Lindgren #include <linux/delay.h>
16f577ffd7STony Lindgren #include <linux/serial.h>
17f577ffd7STony Lindgren #include <linux/tty.h>
18f577ffd7STony Lindgren #include <linux/serial_8250.h>
19f577ffd7STony Lindgren #include <linux/serial_reg.h>
20f8ce2547SRussell King #include <linux/clk.h>
21fced80c7SRussell King #include <linux/io.h>
22f577ffd7STony Lindgren 
23f577ffd7STony Lindgren #include <asm/mach-types.h>
24f577ffd7STony Lindgren 
25ce491cf8STony Lindgren #include <plat/board.h>
26ce491cf8STony Lindgren #include <plat/mux.h>
27a09e64fbSRussell King #include <mach/gpio.h>
28ce491cf8STony Lindgren #include <plat/fpga.h>
29f577ffd7STony Lindgren 
30*706afddaSAaro Koskinen #include "pm.h"
31*706afddaSAaro Koskinen 
32120db2cbSTony Lindgren static struct clk * uart1_ck;
33120db2cbSTony Lindgren static struct clk * uart2_ck;
34120db2cbSTony Lindgren static struct clk * uart3_ck;
35f577ffd7STony Lindgren 
36f577ffd7STony Lindgren static inline unsigned int omap_serial_in(struct plat_serial8250_port *up,
37f577ffd7STony Lindgren 					  int offset)
38f577ffd7STony Lindgren {
39f577ffd7STony Lindgren 	offset <<= up->regshift;
40f577ffd7STony Lindgren 	return (unsigned int)__raw_readb(up->membase + offset);
41f577ffd7STony Lindgren }
42f577ffd7STony Lindgren 
43f577ffd7STony Lindgren static inline void omap_serial_outp(struct plat_serial8250_port *p, int offset,
44f577ffd7STony Lindgren 				    int value)
45f577ffd7STony Lindgren {
46f577ffd7STony Lindgren 	offset <<= p->regshift;
47f577ffd7STony Lindgren 	__raw_writeb(value, p->membase + offset);
48f577ffd7STony Lindgren }
49f577ffd7STony Lindgren 
50f577ffd7STony Lindgren /*
51f577ffd7STony Lindgren  * Internal UARTs need to be initialized for the 8250 autoconfig to work
52f577ffd7STony Lindgren  * properly. Note that the TX watermark initialization may not be needed
53f577ffd7STony Lindgren  * once the 8250.c watermark handling code is merged.
54f577ffd7STony Lindgren  */
55f577ffd7STony Lindgren static void __init omap_serial_reset(struct plat_serial8250_port *p)
56f577ffd7STony Lindgren {
57f577ffd7STony Lindgren 	omap_serial_outp(p, UART_OMAP_MDR1, 0x07);	/* disable UART */
58f577ffd7STony Lindgren 	omap_serial_outp(p, UART_OMAP_SCR, 0x08);	/* TX watermark */
59f577ffd7STony Lindgren 	omap_serial_outp(p, UART_OMAP_MDR1, 0x00);	/* enable UART */
60f577ffd7STony Lindgren 
6165d873caSMarek Vašut 	if (!cpu_is_omap15xx()) {
62f577ffd7STony Lindgren 		omap_serial_outp(p, UART_OMAP_SYSC, 0x01);
63f577ffd7STony Lindgren 		while (!(omap_serial_in(p, UART_OMAP_SYSC) & 0x01));
64f577ffd7STony Lindgren 	}
65f577ffd7STony Lindgren }
66f577ffd7STony Lindgren 
67f577ffd7STony Lindgren static struct plat_serial8250_port serial_platform_data[] = {
68f577ffd7STony Lindgren 	{
694f2c49feSTony Lindgren 		.mapbase	= OMAP1_UART1_BASE,
70f577ffd7STony Lindgren 		.irq		= INT_UART1,
71f577ffd7STony Lindgren 		.flags		= UPF_BOOT_AUTOCONF,
72f577ffd7STony Lindgren 		.iotype		= UPIO_MEM,
73f577ffd7STony Lindgren 		.regshift	= 2,
74f577ffd7STony Lindgren 		.uartclk	= OMAP16XX_BASE_BAUD * 16,
75f577ffd7STony Lindgren 	},
76f577ffd7STony Lindgren 	{
774f2c49feSTony Lindgren 		.mapbase	= OMAP1_UART2_BASE,
78f577ffd7STony Lindgren 		.irq		= INT_UART2,
79f577ffd7STony Lindgren 		.flags		= UPF_BOOT_AUTOCONF,
80f577ffd7STony Lindgren 		.iotype		= UPIO_MEM,
81f577ffd7STony Lindgren 		.regshift	= 2,
82f577ffd7STony Lindgren 		.uartclk	= OMAP16XX_BASE_BAUD * 16,
83f577ffd7STony Lindgren 	},
84f577ffd7STony Lindgren 	{
854f2c49feSTony Lindgren 		.mapbase	= OMAP1_UART3_BASE,
86f577ffd7STony Lindgren 		.irq		= INT_UART3,
87f577ffd7STony Lindgren 		.flags		= UPF_BOOT_AUTOCONF,
88f577ffd7STony Lindgren 		.iotype		= UPIO_MEM,
89f577ffd7STony Lindgren 		.regshift	= 2,
90f577ffd7STony Lindgren 		.uartclk	= OMAP16XX_BASE_BAUD * 16,
91f577ffd7STony Lindgren 	},
92f577ffd7STony Lindgren 	{ },
93f577ffd7STony Lindgren };
94f577ffd7STony Lindgren 
95f577ffd7STony Lindgren static struct platform_device serial_device = {
96f577ffd7STony Lindgren 	.name			= "serial8250",
976df29debSRussell King 	.id			= PLAT8250_DEV_PLATFORM,
98f577ffd7STony Lindgren 	.dev			= {
99f577ffd7STony Lindgren 		.platform_data	= serial_platform_data,
100f577ffd7STony Lindgren 	},
101f577ffd7STony Lindgren };
102f577ffd7STony Lindgren 
103f577ffd7STony Lindgren /*
104f577ffd7STony Lindgren  * Note that on Innovator-1510 UART2 pins conflict with USB2.
105f577ffd7STony Lindgren  * By default UART2 does not work on Innovator-1510 if you have
106f577ffd7STony Lindgren  * USB OHCI enabled. To use UART2, you must disable USB2 first.
107f577ffd7STony Lindgren  */
1083179a019STony Lindgren void __init omap_serial_init(void)
109f577ffd7STony Lindgren {
110f577ffd7STony Lindgren 	int i;
111f577ffd7STony Lindgren 
112d8723ae2SAlistair Buxton 	if (cpu_is_omap7xx()) {
113f577ffd7STony Lindgren 		serial_platform_data[0].regshift = 0;
114f577ffd7STony Lindgren 		serial_platform_data[1].regshift = 0;
115372b1c32SAlistair Buxton 		serial_platform_data[0].irq = INT_7XX_UART_MODEM_1;
116372b1c32SAlistair Buxton 		serial_platform_data[1].irq = INT_7XX_UART_MODEM_IRDA_2;
11756739a69SZebediah C. McClure 	}
11856739a69SZebediah C. McClure 
11965d873caSMarek Vašut 	if (cpu_is_omap15xx()) {
120f577ffd7STony Lindgren 		serial_platform_data[0].uartclk = OMAP1510_BASE_BAUD * 16;
121f577ffd7STony Lindgren 		serial_platform_data[1].uartclk = OMAP1510_BASE_BAUD * 16;
122f577ffd7STony Lindgren 		serial_platform_data[2].uartclk = OMAP1510_BASE_BAUD * 16;
123f577ffd7STony Lindgren 	}
124f577ffd7STony Lindgren 
1259d30b99fSAlexander Shishkin 	for (i = 0; i < ARRAY_SIZE(serial_platform_data) - 1; i++) {
126f577ffd7STony Lindgren 
1278b8fbd39SCory Maccarrone 		/* Don't look at UARTs higher than 2 for omap7xx */
1288b8fbd39SCory Maccarrone 		if (cpu_is_omap7xx() && i > 1) {
1298b8fbd39SCory Maccarrone 			serial_platform_data[i].membase = NULL;
1308b8fbd39SCory Maccarrone 			serial_platform_data[i].mapbase = 0;
1318b8fbd39SCory Maccarrone 			continue;
1328b8fbd39SCory Maccarrone 		}
1338b8fbd39SCory Maccarrone 
13484f90c9cSTony Lindgren 		/* Static mapping, never released */
13584f90c9cSTony Lindgren 		serial_platform_data[i].membase =
13684f90c9cSTony Lindgren 			ioremap(serial_platform_data[i].mapbase, SZ_2K);
13784f90c9cSTony Lindgren 		if (!serial_platform_data[i].membase) {
13884f90c9cSTony Lindgren 			printk(KERN_ERR "Could not ioremap uart%i\n", i);
13984f90c9cSTony Lindgren 			continue;
14084f90c9cSTony Lindgren 		}
141f577ffd7STony Lindgren 		switch (i) {
142f577ffd7STony Lindgren 		case 0:
143f577ffd7STony Lindgren 			uart1_ck = clk_get(NULL, "uart1_ck");
144f577ffd7STony Lindgren 			if (IS_ERR(uart1_ck))
145f577ffd7STony Lindgren 				printk("Could not get uart1_ck\n");
146f577ffd7STony Lindgren 			else {
14730ff720bSTony Lindgren 				clk_enable(uart1_ck);
14865d873caSMarek Vašut 				if (cpu_is_omap15xx())
149f577ffd7STony Lindgren 					clk_set_rate(uart1_ck, 12000000);
150f577ffd7STony Lindgren 			}
151f577ffd7STony Lindgren 			break;
152f577ffd7STony Lindgren 		case 1:
153f577ffd7STony Lindgren 			uart2_ck = clk_get(NULL, "uart2_ck");
154f577ffd7STony Lindgren 			if (IS_ERR(uart2_ck))
155f577ffd7STony Lindgren 				printk("Could not get uart2_ck\n");
156f577ffd7STony Lindgren 			else {
15730ff720bSTony Lindgren 				clk_enable(uart2_ck);
15865d873caSMarek Vašut 				if (cpu_is_omap15xx())
159f577ffd7STony Lindgren 					clk_set_rate(uart2_ck, 12000000);
160f577ffd7STony Lindgren 				else
161f577ffd7STony Lindgren 					clk_set_rate(uart2_ck, 48000000);
162f577ffd7STony Lindgren 			}
163f577ffd7STony Lindgren 			break;
164f577ffd7STony Lindgren 		case 2:
165f577ffd7STony Lindgren 			uart3_ck = clk_get(NULL, "uart3_ck");
166f577ffd7STony Lindgren 			if (IS_ERR(uart3_ck))
167f577ffd7STony Lindgren 				printk("Could not get uart3_ck\n");
168f577ffd7STony Lindgren 			else {
16930ff720bSTony Lindgren 				clk_enable(uart3_ck);
17065d873caSMarek Vašut 				if (cpu_is_omap15xx())
171f577ffd7STony Lindgren 					clk_set_rate(uart3_ck, 12000000);
172f577ffd7STony Lindgren 			}
173f577ffd7STony Lindgren 			break;
174f577ffd7STony Lindgren 		}
175f577ffd7STony Lindgren 		omap_serial_reset(&serial_platform_data[i]);
176f577ffd7STony Lindgren 	}
177f577ffd7STony Lindgren }
178f577ffd7STony Lindgren 
1797c38cf02STony Lindgren #ifdef CONFIG_OMAP_SERIAL_WAKE
1807c38cf02STony Lindgren 
1810cd61b68SLinus Torvalds static irqreturn_t omap_serial_wake_interrupt(int irq, void *dev_id)
1827c38cf02STony Lindgren {
1837c38cf02STony Lindgren 	/* Need to do something with serial port right after wake-up? */
1847c38cf02STony Lindgren 	return IRQ_HANDLED;
1857c38cf02STony Lindgren }
1867c38cf02STony Lindgren 
1877c38cf02STony Lindgren /*
1887c38cf02STony Lindgren  * Reroutes serial RX lines to GPIO lines for the duration of
1897c38cf02STony Lindgren  * sleep to allow waking up the device from serial port even
1907c38cf02STony Lindgren  * in deep sleep.
1917c38cf02STony Lindgren  */
1927c38cf02STony Lindgren void omap_serial_wake_trigger(int enable)
1937c38cf02STony Lindgren {
1947c38cf02STony Lindgren 	if (!cpu_is_omap16xx())
1957c38cf02STony Lindgren 		return;
1967c38cf02STony Lindgren 
1977c38cf02STony Lindgren 	if (uart1_ck != NULL) {
1987c38cf02STony Lindgren 		if (enable)
1997c38cf02STony Lindgren 			omap_cfg_reg(V14_16XX_GPIO37);
2007c38cf02STony Lindgren 		else
2017c38cf02STony Lindgren 			omap_cfg_reg(V14_16XX_UART1_RX);
2027c38cf02STony Lindgren 	}
2037c38cf02STony Lindgren 	if (uart2_ck != NULL) {
2047c38cf02STony Lindgren 		if (enable)
2057c38cf02STony Lindgren 			omap_cfg_reg(R9_16XX_GPIO18);
2067c38cf02STony Lindgren 		else
2077c38cf02STony Lindgren 			omap_cfg_reg(R9_16XX_UART2_RX);
2087c38cf02STony Lindgren 	}
2097c38cf02STony Lindgren 	if (uart3_ck != NULL) {
2107c38cf02STony Lindgren 		if (enable)
2117c38cf02STony Lindgren 			omap_cfg_reg(L14_16XX_GPIO49);
2127c38cf02STony Lindgren 		else
2137c38cf02STony Lindgren 			omap_cfg_reg(L14_16XX_UART3_RX);
2147c38cf02STony Lindgren 	}
2157c38cf02STony Lindgren }
2167c38cf02STony Lindgren 
2177c38cf02STony Lindgren static void __init omap_serial_set_port_wakeup(int gpio_nr)
2187c38cf02STony Lindgren {
2197c38cf02STony Lindgren 	int ret;
2207c38cf02STony Lindgren 
221f2d18feaSJarkko Nikula 	ret = gpio_request(gpio_nr, "UART wake");
2227c38cf02STony Lindgren 	if (ret < 0) {
2237c38cf02STony Lindgren 		printk(KERN_ERR "Could not request UART wake GPIO: %i\n",
2247c38cf02STony Lindgren 		       gpio_nr);
2257c38cf02STony Lindgren 		return;
2267c38cf02STony Lindgren 	}
22740e3925bSDavid Brownell 	gpio_direction_input(gpio_nr);
22815f74b03SDavid Brownell 	ret = request_irq(gpio_to_irq(gpio_nr), &omap_serial_wake_interrupt,
22952e405eaSThomas Gleixner 			  IRQF_TRIGGER_RISING, "serial wakeup", NULL);
2307c38cf02STony Lindgren 	if (ret) {
231f2d18feaSJarkko Nikula 		gpio_free(gpio_nr);
2327c38cf02STony Lindgren 		printk(KERN_ERR "No interrupt for UART wake GPIO: %i\n",
2337c38cf02STony Lindgren 		       gpio_nr);
2347c38cf02STony Lindgren 		return;
2357c38cf02STony Lindgren 	}
23615f74b03SDavid Brownell 	enable_irq_wake(gpio_to_irq(gpio_nr));
2377c38cf02STony Lindgren }
2387c38cf02STony Lindgren 
2397c38cf02STony Lindgren static int __init omap_serial_wakeup_init(void)
2407c38cf02STony Lindgren {
2417c38cf02STony Lindgren 	if (!cpu_is_omap16xx())
2427c38cf02STony Lindgren 		return 0;
2437c38cf02STony Lindgren 
2447c38cf02STony Lindgren 	if (uart1_ck != NULL)
2457c38cf02STony Lindgren 		omap_serial_set_port_wakeup(37);
2467c38cf02STony Lindgren 	if (uart2_ck != NULL)
2477c38cf02STony Lindgren 		omap_serial_set_port_wakeup(18);
2487c38cf02STony Lindgren 	if (uart3_ck != NULL)
2497c38cf02STony Lindgren 		omap_serial_set_port_wakeup(49);
2507c38cf02STony Lindgren 
2517c38cf02STony Lindgren 	return 0;
2527c38cf02STony Lindgren }
2537c38cf02STony Lindgren late_initcall(omap_serial_wakeup_init);
2547c38cf02STony Lindgren 
2557c38cf02STony Lindgren #endif	/* CONFIG_OMAP_SERIAL_WAKE */
2567c38cf02STony Lindgren 
257f577ffd7STony Lindgren static int __init omap_init(void)
258f577ffd7STony Lindgren {
259f577ffd7STony Lindgren 	return platform_device_register(&serial_device);
260f577ffd7STony Lindgren }
261f577ffd7STony Lindgren arch_initcall(omap_init);
262