1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * linux/arch/arm/mach-omap1/serial.c 4 * 5 * OMAP1 serial support. 6 */ 7 #include <linux/gpio.h> 8 #include <linux/module.h> 9 #include <linux/kernel.h> 10 #include <linux/init.h> 11 #include <linux/irq.h> 12 #include <linux/delay.h> 13 #include <linux/serial.h> 14 #include <linux/tty.h> 15 #include <linux/serial_8250.h> 16 #include <linux/serial_reg.h> 17 #include <linux/clk.h> 18 #include <linux/io.h> 19 20 #include <asm/mach-types.h> 21 22 #include "common.h" 23 #include "serial.h" 24 #include "mux.h" 25 #include "pm.h" 26 #include "soc.h" 27 28 static struct clk * uart1_ck; 29 static struct clk * uart2_ck; 30 static struct clk * uart3_ck; 31 32 static inline unsigned int omap_serial_in(struct plat_serial8250_port *up, 33 int offset) 34 { 35 offset <<= up->regshift; 36 return (unsigned int)__raw_readb(up->membase + offset); 37 } 38 39 static inline void omap_serial_outp(struct plat_serial8250_port *p, int offset, 40 int value) 41 { 42 offset <<= p->regshift; 43 __raw_writeb(value, p->membase + offset); 44 } 45 46 /* 47 * Internal UARTs need to be initialized for the 8250 autoconfig to work 48 * properly. Note that the TX watermark initialization may not be needed 49 * once the 8250.c watermark handling code is merged. 50 */ 51 static void __init omap_serial_reset(struct plat_serial8250_port *p) 52 { 53 omap_serial_outp(p, UART_OMAP_MDR1, 54 UART_OMAP_MDR1_DISABLE); /* disable UART */ 55 omap_serial_outp(p, UART_OMAP_SCR, 0x08); /* TX watermark */ 56 omap_serial_outp(p, UART_OMAP_MDR1, 57 UART_OMAP_MDR1_16X_MODE); /* enable UART */ 58 59 if (!cpu_is_omap15xx()) { 60 omap_serial_outp(p, UART_OMAP_SYSC, 0x01); 61 while (!(omap_serial_in(p, UART_OMAP_SYSC) & 0x01)); 62 } 63 } 64 65 static struct plat_serial8250_port serial_platform_data[] = { 66 { 67 .mapbase = OMAP1_UART1_BASE, 68 .irq = INT_UART1, 69 .flags = UPF_BOOT_AUTOCONF, 70 .iotype = UPIO_MEM, 71 .regshift = 2, 72 .uartclk = OMAP16XX_BASE_BAUD * 16, 73 }, 74 { 75 .mapbase = OMAP1_UART2_BASE, 76 .irq = INT_UART2, 77 .flags = UPF_BOOT_AUTOCONF, 78 .iotype = UPIO_MEM, 79 .regshift = 2, 80 .uartclk = OMAP16XX_BASE_BAUD * 16, 81 }, 82 { 83 .mapbase = OMAP1_UART3_BASE, 84 .irq = INT_UART3, 85 .flags = UPF_BOOT_AUTOCONF, 86 .iotype = UPIO_MEM, 87 .regshift = 2, 88 .uartclk = OMAP16XX_BASE_BAUD * 16, 89 }, 90 { }, 91 }; 92 93 static struct platform_device serial_device = { 94 .name = "serial8250", 95 .id = PLAT8250_DEV_PLATFORM, 96 .dev = { 97 .platform_data = serial_platform_data, 98 }, 99 }; 100 101 /* 102 * Note that on Innovator-1510 UART2 pins conflict with USB2. 103 * By default UART2 does not work on Innovator-1510 if you have 104 * USB OHCI enabled. To use UART2, you must disable USB2 first. 105 */ 106 void __init omap_serial_init(void) 107 { 108 int i; 109 110 if (cpu_is_omap15xx()) { 111 serial_platform_data[0].uartclk = OMAP1510_BASE_BAUD * 16; 112 serial_platform_data[1].uartclk = OMAP1510_BASE_BAUD * 16; 113 serial_platform_data[2].uartclk = OMAP1510_BASE_BAUD * 16; 114 } 115 116 for (i = 0; i < ARRAY_SIZE(serial_platform_data) - 1; i++) { 117 /* Static mapping, never released */ 118 serial_platform_data[i].membase = 119 ioremap(serial_platform_data[i].mapbase, SZ_2K); 120 if (!serial_platform_data[i].membase) { 121 printk(KERN_ERR "Could not ioremap uart%i\n", i); 122 continue; 123 } 124 switch (i) { 125 case 0: 126 uart1_ck = clk_get(NULL, "uart1_ck"); 127 if (IS_ERR(uart1_ck)) 128 printk("Could not get uart1_ck\n"); 129 else { 130 clk_prepare_enable(uart1_ck); 131 if (cpu_is_omap15xx()) 132 clk_set_rate(uart1_ck, 12000000); 133 } 134 break; 135 case 1: 136 uart2_ck = clk_get(NULL, "uart2_ck"); 137 if (IS_ERR(uart2_ck)) 138 printk("Could not get uart2_ck\n"); 139 else { 140 clk_prepare_enable(uart2_ck); 141 if (cpu_is_omap15xx()) 142 clk_set_rate(uart2_ck, 12000000); 143 else 144 clk_set_rate(uart2_ck, 48000000); 145 } 146 break; 147 case 2: 148 uart3_ck = clk_get(NULL, "uart3_ck"); 149 if (IS_ERR(uart3_ck)) 150 printk("Could not get uart3_ck\n"); 151 else { 152 clk_prepare_enable(uart3_ck); 153 if (cpu_is_omap15xx()) 154 clk_set_rate(uart3_ck, 12000000); 155 } 156 break; 157 } 158 omap_serial_reset(&serial_platform_data[i]); 159 } 160 } 161 162 #ifdef CONFIG_OMAP_SERIAL_WAKE 163 164 static irqreturn_t omap_serial_wake_interrupt(int irq, void *dev_id) 165 { 166 /* Need to do something with serial port right after wake-up? */ 167 return IRQ_HANDLED; 168 } 169 170 /* 171 * Reroutes serial RX lines to GPIO lines for the duration of 172 * sleep to allow waking up the device from serial port even 173 * in deep sleep. 174 */ 175 void omap_serial_wake_trigger(int enable) 176 { 177 if (!cpu_is_omap16xx()) 178 return; 179 180 if (uart1_ck != NULL) { 181 if (enable) 182 omap_cfg_reg(V14_16XX_GPIO37); 183 else 184 omap_cfg_reg(V14_16XX_UART1_RX); 185 } 186 if (uart2_ck != NULL) { 187 if (enable) 188 omap_cfg_reg(R9_16XX_GPIO18); 189 else 190 omap_cfg_reg(R9_16XX_UART2_RX); 191 } 192 if (uart3_ck != NULL) { 193 if (enable) 194 omap_cfg_reg(L14_16XX_GPIO49); 195 else 196 omap_cfg_reg(L14_16XX_UART3_RX); 197 } 198 } 199 200 static void __init omap_serial_set_port_wakeup(int gpio_nr) 201 { 202 int ret; 203 204 ret = gpio_request(gpio_nr, "UART wake"); 205 if (ret < 0) { 206 printk(KERN_ERR "Could not request UART wake GPIO: %i\n", 207 gpio_nr); 208 return; 209 } 210 gpio_direction_input(gpio_nr); 211 ret = request_irq(gpio_to_irq(gpio_nr), &omap_serial_wake_interrupt, 212 IRQF_TRIGGER_RISING, "serial wakeup", NULL); 213 if (ret) { 214 gpio_free(gpio_nr); 215 printk(KERN_ERR "No interrupt for UART wake GPIO: %i\n", 216 gpio_nr); 217 return; 218 } 219 enable_irq_wake(gpio_to_irq(gpio_nr)); 220 } 221 222 int __init omap_serial_wakeup_init(void) 223 { 224 if (!cpu_is_omap16xx()) 225 return 0; 226 227 if (uart1_ck != NULL) 228 omap_serial_set_port_wakeup(37); 229 if (uart2_ck != NULL) 230 omap_serial_set_port_wakeup(18); 231 if (uart3_ck != NULL) 232 omap_serial_set_port_wakeup(49); 233 234 return 0; 235 } 236 237 #endif /* CONFIG_OMAP_SERIAL_WAKE */ 238 239 static int __init omap_init(void) 240 { 241 if (!cpu_class_is_omap1()) 242 return -ENODEV; 243 244 return platform_device_register(&serial_device); 245 } 246 arch_initcall(omap_init); 247