tty/serial: Add explicit PORT_TEGRA type
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / tty / serial / msm_smd_tty.c
blob4f41dcdcb7719767a790f7bc98f654a3895ead38
1 /*
2 * Copyright (C) 2007 Google, Inc.
3 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
4 * Author: Brian Swetland <swetland@google.com>
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #include <linux/module.h>
18 #include <linux/fs.h>
19 #include <linux/cdev.h>
20 #include <linux/device.h>
21 #include <linux/wait.h>
23 #include <linux/tty.h>
24 #include <linux/tty_driver.h>
25 #include <linux/tty_flip.h>
27 #include <mach/msm_smd.h>
29 #define MAX_SMD_TTYS 32
31 struct smd_tty_info {
32 struct tty_port port;
33 smd_channel_t *ch;
36 struct smd_tty_channel_desc {
37 int id;
38 const char *name;
41 static struct smd_tty_info smd_tty[MAX_SMD_TTYS];
43 static const struct smd_tty_channel_desc smd_default_tty_channels[] = {
44 { .id = 0, .name = "SMD_DS" },
45 { .id = 27, .name = "SMD_GPSNMEA" },
48 static const struct smd_tty_channel_desc *smd_tty_channels =
49 smd_default_tty_channels;
50 static int smd_tty_channels_len = ARRAY_SIZE(smd_default_tty_channels);
52 static void smd_tty_notify(void *priv, unsigned event)
54 unsigned char *ptr;
55 int avail;
56 struct smd_tty_info *info = priv;
57 struct tty_struct *tty;
59 if (event != SMD_EVENT_DATA)
60 return;
62 tty = tty_port_tty_get(&info->port);
63 if (!tty)
64 return;
66 for (;;) {
67 if (test_bit(TTY_THROTTLED, &tty->flags))
68 break;
69 avail = smd_read_avail(info->ch);
70 if (avail == 0)
71 break;
73 avail = tty_prepare_flip_string(tty, &ptr, avail);
75 if (smd_read(info->ch, ptr, avail) != avail) {
76 /* shouldn't be possible since we're in interrupt
77 ** context here and nobody else could 'steal' our
78 ** characters.
80 pr_err("OOPS - smd_tty_buffer mismatch?!");
83 tty_flip_buffer_push(tty);
86 /* XXX only when writable and necessary */
87 tty_wakeup(tty);
88 tty_kref_put(tty);
91 static int smd_tty_port_activate(struct tty_port *tport, struct tty_struct *tty)
93 int i, res = 0;
94 int n = tty->index;
95 const char *name = NULL;
96 struct smd_tty_info *info = smd_tty + n;
98 for (i = 0; i < smd_tty_channels_len; i++) {
99 if (smd_tty_channels[i].id == n) {
100 name = smd_tty_channels[i].name;
101 break;
104 if (!name)
105 return -ENODEV;
107 if (info->ch)
108 smd_kick(info->ch);
109 else
110 res = smd_open(name, &info->ch, info, smd_tty_notify);
112 if (!res)
113 tty->driver_data = info;
115 return res;
118 static void smd_tty_port_shutdown(struct tty_port *tport)
120 struct smd_tty_info *info;
121 struct tty_struct *tty = tty_port_tty_get(tport);
123 info = tty->driver_data;
124 if (info->ch) {
125 smd_close(info->ch);
126 info->ch = 0;
129 tty->driver_data = 0;
130 tty_kref_put(tty);
133 static int smd_tty_open(struct tty_struct *tty, struct file *f)
135 struct smd_tty_info *info = smd_tty + tty->index;
137 return tty_port_open(&info->port, tty, f);
140 static void smd_tty_close(struct tty_struct *tty, struct file *f)
142 struct smd_tty_info *info = tty->driver_data;
144 tty_port_close(&info->port, tty, f);
147 static int smd_tty_write(struct tty_struct *tty,
148 const unsigned char *buf, int len)
150 struct smd_tty_info *info = tty->driver_data;
151 int avail;
153 /* if we're writing to a packet channel we will
154 ** never be able to write more data than there
155 ** is currently space for
157 avail = smd_write_avail(info->ch);
158 if (len > avail)
159 len = avail;
161 return smd_write(info->ch, buf, len);
164 static int smd_tty_write_room(struct tty_struct *tty)
166 struct smd_tty_info *info = tty->driver_data;
167 return smd_write_avail(info->ch);
170 static int smd_tty_chars_in_buffer(struct tty_struct *tty)
172 struct smd_tty_info *info = tty->driver_data;
173 return smd_read_avail(info->ch);
176 static void smd_tty_unthrottle(struct tty_struct *tty)
178 struct smd_tty_info *info = tty->driver_data;
179 smd_kick(info->ch);
182 static const struct tty_port_operations smd_tty_port_ops = {
183 .shutdown = smd_tty_port_shutdown,
184 .activate = smd_tty_port_activate,
187 static const struct tty_operations smd_tty_ops = {
188 .open = smd_tty_open,
189 .close = smd_tty_close,
190 .write = smd_tty_write,
191 .write_room = smd_tty_write_room,
192 .chars_in_buffer = smd_tty_chars_in_buffer,
193 .unthrottle = smd_tty_unthrottle,
196 static struct tty_driver *smd_tty_driver;
198 static int __init smd_tty_init(void)
200 int ret, i;
202 smd_tty_driver = alloc_tty_driver(MAX_SMD_TTYS);
203 if (smd_tty_driver == 0)
204 return -ENOMEM;
206 smd_tty_driver->owner = THIS_MODULE;
207 smd_tty_driver->driver_name = "smd_tty_driver";
208 smd_tty_driver->name = "smd";
209 smd_tty_driver->major = 0;
210 smd_tty_driver->minor_start = 0;
211 smd_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
212 smd_tty_driver->subtype = SERIAL_TYPE_NORMAL;
213 smd_tty_driver->init_termios = tty_std_termios;
214 smd_tty_driver->init_termios.c_iflag = 0;
215 smd_tty_driver->init_termios.c_oflag = 0;
216 smd_tty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
217 smd_tty_driver->init_termios.c_lflag = 0;
218 smd_tty_driver->flags = TTY_DRIVER_RESET_TERMIOS |
219 TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
220 tty_set_operations(smd_tty_driver, &smd_tty_ops);
222 ret = tty_register_driver(smd_tty_driver);
223 if (ret)
224 return ret;
226 for (i = 0; i < smd_tty_channels_len; i++) {
227 tty_port_init(&smd_tty[smd_tty_channels[i].id].port);
228 smd_tty[smd_tty_channels[i].id].port.ops = &smd_tty_port_ops;
229 tty_register_device(smd_tty_driver, smd_tty_channels[i].id, 0);
232 return 0;
235 module_init(smd_tty_init);