diff options
45 files changed, 4538 insertions, 189 deletions
diff --git a/Documentation/ABI/testing/sysfs-tty b/Documentation/ABI/testing/sysfs-tty new file mode 100644 index 000000000000..b138b663bf54 --- /dev/null +++ b/Documentation/ABI/testing/sysfs-tty | |||
@@ -0,0 +1,19 @@ | |||
1 | What: /sys/class/tty/console/active | ||
2 | Date: Nov 2010 | ||
3 | Contact: Kay Sievers <kay.sievers@vrfy.org> | ||
4 | Description: | ||
5 | Shows the list of currently configured | ||
6 | console devices, like 'tty1 ttyS0'. | ||
7 | The last entry in the file is the active | ||
8 | device connected to /dev/console. | ||
9 | The file supports poll() to detect virtual | ||
10 | console switches. | ||
11 | |||
12 | What: /sys/class/tty/tty0/active | ||
13 | Date: Nov 2010 | ||
14 | Contact: Kay Sievers <kay.sievers@vrfy.org> | ||
15 | Description: | ||
16 | Shows the currently active virtual console | ||
17 | device, like 'tty1'. | ||
18 | The file supports poll() to detect virtual | ||
19 | console switches. | ||
diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt index e73df2722ff3..9471225212c4 100644 --- a/Documentation/filesystems/proc.txt +++ b/Documentation/filesystems/proc.txt | |||
@@ -1181,6 +1181,30 @@ Table 1-12: Files in /proc/fs/ext4/<devname> | |||
1181 | mb_groups details of multiblock allocator buddy cache of free blocks | 1181 | mb_groups details of multiblock allocator buddy cache of free blocks |
1182 | .............................................................................. | 1182 | .............................................................................. |
1183 | 1183 | ||
1184 | 2.0 /proc/consoles | ||
1185 | ------------------ | ||
1186 | Shows registered system console lines. | ||
1187 | |||
1188 | To see which character device lines are currently used for the system console | ||
1189 | /dev/console, you may simply look into the file /proc/consoles: | ||
1190 | |||
1191 | > cat /proc/consoles | ||
1192 | tty0 -WU (ECp) 4:7 | ||
1193 | ttyS0 -W- (Ep) 4:64 | ||
1194 | |||
1195 | The columns are: | ||
1196 | |||
1197 | device name of the device | ||
1198 | operations R = can do read operations | ||
1199 | W = can do write operations | ||
1200 | U = can do unblank | ||
1201 | flags E = it is enabled | ||
1202 | C = it is prefered console | ||
1203 | B = it is primary boot console | ||
1204 | p = it is used for printk buffer | ||
1205 | b = it is not a TTY but a Braille device | ||
1206 | a = it is safe to use when cpu is offline | ||
1207 | major:minor major and minor number of the device separated by a colon | ||
1184 | 1208 | ||
1185 | ------------------------------------------------------------------------------ | 1209 | ------------------------------------------------------------------------------ |
1186 | Summary | 1210 | Summary |
diff --git a/Documentation/serial/00-INDEX b/Documentation/serial/00-INDEX index 07dcdb0d2a36..e09468ad3cb1 100644 --- a/Documentation/serial/00-INDEX +++ b/Documentation/serial/00-INDEX | |||
@@ -14,6 +14,8 @@ riscom8.txt | |||
14 | - notes on using the RISCom/8 multi-port serial driver. | 14 | - notes on using the RISCom/8 multi-port serial driver. |
15 | rocket.txt | 15 | rocket.txt |
16 | - info on the Comtrol RocketPort multiport serial driver. | 16 | - info on the Comtrol RocketPort multiport serial driver. |
17 | serial-rs485.txt | ||
18 | - info about RS485 structures and support in the kernel. | ||
17 | specialix.txt | 19 | specialix.txt |
18 | - info on hardware/driver for specialix IO8+ multiport serial card. | 20 | - info on hardware/driver for specialix IO8+ multiport serial card. |
19 | stallion.txt | 21 | stallion.txt |
diff --git a/Documentation/serial/serial-rs485.txt b/Documentation/serial/serial-rs485.txt new file mode 100644 index 000000000000..a4932387bbfb --- /dev/null +++ b/Documentation/serial/serial-rs485.txt | |||
@@ -0,0 +1,120 @@ | |||
1 | RS485 SERIAL COMMUNICATIONS | ||
2 | |||
3 | 1. INTRODUCTION | ||
4 | |||
5 | EIA-485, also known as TIA/EIA-485 or RS-485, is a standard defining the | ||
6 | electrical characteristics of drivers and receivers for use in balanced | ||
7 | digital multipoint systems. | ||
8 | This standard is widely used for communications in industrial automation | ||
9 | because it can be used effectively over long distances and in electrically | ||
10 | noisy environments. | ||
11 | |||
12 | 2. HARDWARE-RELATED CONSIDERATIONS | ||
13 | |||
14 | Some CPUs/UARTs (e.g., Atmel AT91 or 16C950 UART) contain a built-in | ||
15 | half-duplex mode capable of automatically controlling line direction by | ||
16 | toggling RTS or DTR signals. That can be used to control external | ||
17 | half-duplex hardware like an RS485 transceiver or any RS232-connected | ||
18 | half-duplex devices like some modems. | ||
19 | |||
20 | For these microcontrollers, the Linux driver should be made capable of | ||
21 | working in both modes, and proper ioctls (see later) should be made | ||
22 | available at user-level to allow switching from one mode to the other, and | ||
23 | vice versa. | ||
24 | |||
25 | 3. DATA STRUCTURES ALREADY AVAILABLE IN THE KERNEL | ||
26 | |||
27 | The Linux kernel provides the serial_rs485 structure (see [1]) to handle | ||
28 | RS485 communications. This data structure is used to set and configure RS485 | ||
29 | parameters in the platform data and in ioctls. | ||
30 | |||
31 | Any driver for devices capable of working both as RS232 and RS485 should | ||
32 | provide at least the following ioctls: | ||
33 | |||
34 | - TIOCSRS485 (typically associated with number 0x542F). This ioctl is used | ||
35 | to enable/disable RS485 mode from user-space | ||
36 | |||
37 | - TIOCGRS485 (typically associated with number 0x542E). This ioctl is used | ||
38 | to get RS485 mode from kernel-space (i.e., driver) to user-space. | ||
39 | |||
40 | In other words, the serial driver should contain a code similar to the next | ||
41 | one: | ||
42 | |||
43 | static struct uart_ops atmel_pops = { | ||
44 | /* ... */ | ||
45 | .ioctl = handle_ioctl, | ||
46 | }; | ||
47 | |||
48 | static int handle_ioctl(struct uart_port *port, | ||
49 | unsigned int cmd, | ||
50 | unsigned long arg) | ||
51 | { | ||
52 | struct serial_rs485 rs485conf; | ||
53 | |||
54 | switch (cmd) { | ||
55 | case TIOCSRS485: | ||
56 | if (copy_from_user(&rs485conf, | ||
57 | (struct serial_rs485 *) arg, | ||
58 | sizeof(rs485conf))) | ||
59 | return -EFAULT; | ||
60 | |||
61 | /* ... */ | ||
62 | break; | ||
63 | |||
64 | case TIOCGRS485: | ||
65 | if (copy_to_user((struct serial_rs485 *) arg, | ||
66 | ..., | ||
67 | sizeof(rs485conf))) | ||
68 | return -EFAULT; | ||
69 | /* ... */ | ||
70 | break; | ||
71 | |||
72 | /* ... */ | ||
73 | } | ||
74 | } | ||
75 | |||
76 | |||
77 | 4. USAGE FROM USER-LEVEL | ||
78 | |||
79 | From user-level, RS485 configuration can be get/set using the previous | ||
80 | ioctls. For instance, to set RS485 you can use the following code: | ||
81 | |||
82 | #include <linux/serial.h> | ||
83 | |||
84 | /* Driver-specific ioctls: */ | ||
85 | #define TIOCGRS485 0x542E | ||
86 | #define TIOCSRS485 0x542F | ||
87 | |||
88 | /* Open your specific device (e.g., /dev/mydevice): */ | ||
89 | int fd = open ("/dev/mydevice", O_RDWR); | ||
90 | if (fd < 0) { | ||
91 | /* Error handling. See errno. */ | ||
92 | } | ||
93 | |||
94 | struct serial_rs485 rs485conf; | ||
95 | |||
96 | /* Set RS485 mode: */ | ||
97 | rs485conf.flags |= SER_RS485_ENABLED; | ||
98 | |||
99 | /* Set rts delay before send, if needed: */ | ||
100 | rs485conf.flags |= SER_RS485_RTS_BEFORE_SEND; | ||
101 | rs485conf.delay_rts_before_send = ...; | ||
102 | |||
103 | /* Set rts delay after send, if needed: */ | ||
104 | rs485conf.flags |= SER_RS485_RTS_AFTER_SEND; | ||
105 | rs485conf.delay_rts_after_send = ...; | ||
106 | |||
107 | if (ioctl (fd, TIOCSRS485, &rs485conf) < 0) { | ||
108 | /* Error handling. See errno. */ | ||
109 | } | ||
110 | |||
111 | /* Use read() and write() syscalls here... */ | ||
112 | |||
113 | /* Close the device when finished: */ | ||
114 | if (close (fd) < 0) { | ||
115 | /* Error handling. See errno. */ | ||
116 | } | ||
117 | |||
118 | 5. REFERENCES | ||
119 | |||
120 | [1] include/linux/serial.h | ||
diff --git a/arch/alpha/include/asm/ioctls.h b/arch/alpha/include/asm/ioctls.h index 59617c3c2be6..034b6cf5d9f3 100644 --- a/arch/alpha/include/asm/ioctls.h +++ b/arch/alpha/include/asm/ioctls.h | |||
@@ -92,6 +92,7 @@ | |||
92 | #define TIOCGSID 0x5429 /* Return the session ID of FD */ | 92 | #define TIOCGSID 0x5429 /* Return the session ID of FD */ |
93 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 93 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
94 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 94 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
95 | #define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
95 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ | 96 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ |
96 | 97 | ||
97 | #define TIOCSERCONFIG 0x5453 | 98 | #define TIOCSERCONFIG 0x5453 |
diff --git a/arch/mips/include/asm/ioctls.h b/arch/mips/include/asm/ioctls.h index d87cb0465693..d967b8997626 100644 --- a/arch/mips/include/asm/ioctls.h +++ b/arch/mips/include/asm/ioctls.h | |||
@@ -83,6 +83,7 @@ | |||
83 | #define TCSETSF2 _IOW('T', 0x2D, struct termios2) | 83 | #define TCSETSF2 _IOW('T', 0x2D, struct termios2) |
84 | #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 84 | #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
85 | #define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ | 85 | #define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ |
86 | #define TIOCGDEV _IOR('T', 0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
86 | #define TIOCSIG _IOW('T', 0x36, int) /* Generate signal on Pty slave */ | 87 | #define TIOCSIG _IOW('T', 0x36, int) /* Generate signal on Pty slave */ |
87 | 88 | ||
88 | /* I hope the range from 0x5480 on is free ... */ | 89 | /* I hope the range from 0x5480 on is free ... */ |
diff --git a/arch/parisc/include/asm/ioctls.h b/arch/parisc/include/asm/ioctls.h index 4e0614456bea..6ba80d03623a 100644 --- a/arch/parisc/include/asm/ioctls.h +++ b/arch/parisc/include/asm/ioctls.h | |||
@@ -52,6 +52,7 @@ | |||
52 | #define TCSETSF2 _IOW('T',0x2D, struct termios2) | 52 | #define TCSETSF2 _IOW('T',0x2D, struct termios2) |
53 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 53 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
54 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 54 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
55 | #define TIOCGDEV _IOR('T',0x32, int) /* Get primary device node of /dev/console */ | ||
55 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ | 56 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ |
56 | 57 | ||
57 | #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ | 58 | #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ |
diff --git a/arch/parisc/kernel/pdc_cons.c b/arch/parisc/kernel/pdc_cons.c index 66d1f17fdb94..11bdd68e5762 100644 --- a/arch/parisc/kernel/pdc_cons.c +++ b/arch/parisc/kernel/pdc_cons.c | |||
@@ -92,8 +92,6 @@ static int pdc_console_setup(struct console *co, char *options) | |||
92 | 92 | ||
93 | static struct timer_list pdc_console_timer; | 93 | static struct timer_list pdc_console_timer; |
94 | 94 | ||
95 | extern struct console * console_drivers; | ||
96 | |||
97 | static int pdc_console_tty_open(struct tty_struct *tty, struct file *filp) | 95 | static int pdc_console_tty_open(struct tty_struct *tty, struct file *filp) |
98 | { | 96 | { |
99 | 97 | ||
@@ -169,11 +167,13 @@ static int __init pdc_console_tty_driver_init(void) | |||
169 | * It is unregistered if the pdc console was not selected as the | 167 | * It is unregistered if the pdc console was not selected as the |
170 | * primary console. */ | 168 | * primary console. */ |
171 | 169 | ||
172 | struct console *tmp = console_drivers; | 170 | struct console *tmp; |
173 | 171 | ||
174 | for (tmp = console_drivers; tmp; tmp = tmp->next) | 172 | acquire_console_sem(); |
173 | for_each_console(tmp) | ||
175 | if (tmp == &pdc_cons) | 174 | if (tmp == &pdc_cons) |
176 | break; | 175 | break; |
176 | release_console_sem(); | ||
177 | 177 | ||
178 | if (!tmp) { | 178 | if (!tmp) { |
179 | printk(KERN_INFO "PDC console driver not registered anymore, not creating %s\n", pdc_cons.name); | 179 | printk(KERN_INFO "PDC console driver not registered anymore, not creating %s\n", pdc_cons.name); |
diff --git a/arch/powerpc/include/asm/ioctls.h b/arch/powerpc/include/asm/ioctls.h index 851920052e08..c7dc17cf84f1 100644 --- a/arch/powerpc/include/asm/ioctls.h +++ b/arch/powerpc/include/asm/ioctls.h | |||
@@ -94,6 +94,7 @@ | |||
94 | #define TIOCSRS485 0x542f | 94 | #define TIOCSRS485 0x542f |
95 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 95 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
96 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 96 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
97 | #define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
97 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ | 98 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ |
98 | 99 | ||
99 | #define TIOCSERCONFIG 0x5453 | 100 | #define TIOCSERCONFIG 0x5453 |
diff --git a/arch/sh/include/asm/ioctls.h b/arch/sh/include/asm/ioctls.h index eb6c4c687972..84e85a792638 100644 --- a/arch/sh/include/asm/ioctls.h +++ b/arch/sh/include/asm/ioctls.h | |||
@@ -85,6 +85,7 @@ | |||
85 | #define TCSETSF2 _IOW('T', 45, struct termios2) | 85 | #define TCSETSF2 _IOW('T', 45, struct termios2) |
86 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 86 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
87 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 87 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
88 | #define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
88 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ | 89 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ |
89 | 90 | ||
90 | #define TIOCSERCONFIG _IO('T', 83) /* 0x5453 */ | 91 | #define TIOCSERCONFIG _IO('T', 83) /* 0x5453 */ |
diff --git a/arch/sparc/include/asm/ioctls.h b/arch/sparc/include/asm/ioctls.h index 53f4ee009bdd..ed3807b96bb5 100644 --- a/arch/sparc/include/asm/ioctls.h +++ b/arch/sparc/include/asm/ioctls.h | |||
@@ -19,6 +19,7 @@ | |||
19 | #define TCSETS2 _IOW('T', 13, struct termios2) | 19 | #define TCSETS2 _IOW('T', 13, struct termios2) |
20 | #define TCSETSW2 _IOW('T', 14, struct termios2) | 20 | #define TCSETSW2 _IOW('T', 14, struct termios2) |
21 | #define TCSETSF2 _IOW('T', 15, struct termios2) | 21 | #define TCSETSF2 _IOW('T', 15, struct termios2) |
22 | #define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
22 | 23 | ||
23 | /* Note that all the ioctls that are not available in Linux have a | 24 | /* Note that all the ioctls that are not available in Linux have a |
24 | * double underscore on the front to: a) avoid some programs to | 25 | * double underscore on the front to: a) avoid some programs to |
diff --git a/arch/xtensa/include/asm/ioctls.h b/arch/xtensa/include/asm/ioctls.h index ab1800012ed9..ccf1800f0b0c 100644 --- a/arch/xtensa/include/asm/ioctls.h +++ b/arch/xtensa/include/asm/ioctls.h | |||
@@ -98,6 +98,7 @@ | |||
98 | #define TCSETSF2 _IOW('T', 45, struct termios2) | 98 | #define TCSETSF2 _IOW('T', 45, struct termios2) |
99 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 99 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
100 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 100 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
101 | #define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
101 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ | 102 | #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ |
102 | 103 | ||
103 | #define TIOCSERCONFIG _IO('T', 83) | 104 | #define TIOCSERCONFIG _IO('T', 83) |
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 43d3395325c5..d4a7776f4b77 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
@@ -682,6 +682,15 @@ config HVC_UDBG | |||
682 | select HVC_DRIVER | 682 | select HVC_DRIVER |
683 | default n | 683 | default n |
684 | 684 | ||
685 | config HVC_DCC | ||
686 | bool "ARM JTAG DCC console" | ||
687 | depends on ARM | ||
688 | select HVC_DRIVER | ||
689 | help | ||
690 | This console uses the JTAG DCC on ARM to create a console under the HVC | ||
691 | driver. This console is used through a JTAG only on ARM. If you don't have | ||
692 | a JTAG then you probably don't want this option. | ||
693 | |||
685 | config VIRTIO_CONSOLE | 694 | config VIRTIO_CONSOLE |
686 | tristate "Virtio console" | 695 | tristate "Virtio console" |
687 | depends on VIRTIO | 696 | depends on VIRTIO |
diff --git a/drivers/char/Makefile b/drivers/char/Makefile index ba53ec956c95..fa0b824b7a65 100644 --- a/drivers/char/Makefile +++ b/drivers/char/Makefile | |||
@@ -34,6 +34,7 @@ obj-$(CONFIG_HVC_CONSOLE) += hvc_vio.o hvsi.o | |||
34 | obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o | 34 | obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o |
35 | obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o | 35 | obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o |
36 | obj-$(CONFIG_HVC_TILE) += hvc_tile.o | 36 | obj-$(CONFIG_HVC_TILE) += hvc_tile.o |
37 | obj-$(CONFIG_HVC_DCC) += hvc_dcc.o | ||
37 | obj-$(CONFIG_HVC_BEAT) += hvc_beat.o | 38 | obj-$(CONFIG_HVC_BEAT) += hvc_beat.o |
38 | obj-$(CONFIG_HVC_DRIVER) += hvc_console.o | 39 | obj-$(CONFIG_HVC_DRIVER) += hvc_console.o |
39 | obj-$(CONFIG_HVC_IRQ) += hvc_irq.o | 40 | obj-$(CONFIG_HVC_IRQ) += hvc_irq.o |
diff --git a/drivers/char/hvc_dcc.c b/drivers/char/hvc_dcc.c new file mode 100644 index 000000000000..6470f63deb4b --- /dev/null +++ b/drivers/char/hvc_dcc.c | |||
@@ -0,0 +1,133 @@ | |||
1 | /* Copyright (c) 2010, Code Aurora Forum. All rights reserved. | ||
2 | * | ||
3 | * This program is free software; you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License version 2 and | ||
5 | * only version 2 as published by the Free Software Foundation. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | * | ||
12 | * You should have received a copy of the GNU General Public License | ||
13 | * along with this program; if not, write to the Free Software | ||
14 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
15 | * 02110-1301, USA. | ||
16 | */ | ||
17 | |||
18 | #include <linux/console.h> | ||
19 | #include <linux/delay.h> | ||
20 | #include <linux/err.h> | ||
21 | #include <linux/init.h> | ||
22 | #include <linux/moduleparam.h> | ||
23 | #include <linux/types.h> | ||
24 | |||
25 | #include <asm/processor.h> | ||
26 | |||
27 | #include "hvc_console.h" | ||
28 | |||
29 | /* DCC Status Bits */ | ||
30 | #define DCC_STATUS_RX (1 << 30) | ||
31 | #define DCC_STATUS_TX (1 << 29) | ||
32 | |||
33 | static inline u32 __dcc_getstatus(void) | ||
34 | { | ||
35 | u32 __ret; | ||
36 | |||
37 | asm("mrc p14, 0, %0, c0, c1, 0 @ read comms ctrl reg" | ||
38 | : "=r" (__ret) : : "cc"); | ||
39 | |||
40 | return __ret; | ||
41 | } | ||
42 | |||
43 | |||
44 | #if defined(CONFIG_CPU_V7) | ||
45 | static inline char __dcc_getchar(void) | ||
46 | { | ||
47 | char __c; | ||
48 | |||
49 | asm("get_wait: mrc p14, 0, pc, c0, c1, 0 \n\ | ||
50 | bne get_wait \n\ | ||
51 | mrc p14, 0, %0, c0, c5, 0 @ read comms data reg" | ||
52 | : "=r" (__c) : : "cc"); | ||
53 | |||
54 | return __c; | ||
55 | } | ||
56 | #else | ||
57 | static inline char __dcc_getchar(void) | ||
58 | { | ||
59 | char __c; | ||
60 | |||
61 | asm("mrc p14, 0, %0, c0, c5, 0 @ read comms data reg" | ||
62 | : "=r" (__c)); | ||
63 | |||
64 | return __c; | ||
65 | } | ||
66 | #endif | ||
67 | |||
68 | #if defined(CONFIG_CPU_V7) | ||
69 | static inline void __dcc_putchar(char c) | ||
70 | { | ||
71 | asm("put_wait: mrc p14, 0, pc, c0, c1, 0 \n\ | ||
72 | bcs put_wait \n\ | ||
73 | mcr p14, 0, %0, c0, c5, 0 " | ||
74 | : : "r" (c) : "cc"); | ||
75 | } | ||
76 | #else | ||
77 | static inline void __dcc_putchar(char c) | ||
78 | { | ||
79 | asm("mcr p14, 0, %0, c0, c5, 0 @ write a char" | ||
80 | : /* no output register */ | ||
81 | : "r" (c)); | ||
82 | } | ||
83 | #endif | ||
84 | |||
85 | static int hvc_dcc_put_chars(uint32_t vt, const char *buf, int count) | ||
86 | { | ||
87 | int i; | ||
88 | |||
89 | for (i = 0; i < count; i++) { | ||
90 | while (__dcc_getstatus() & DCC_STATUS_TX) | ||
91 | cpu_relax(); | ||
92 | |||
93 | __dcc_putchar((char)(buf[i] & 0xFF)); | ||
94 | } | ||
95 | |||
96 | return count; | ||
97 | } | ||
98 | |||
99 | static int hvc_dcc_get_chars(uint32_t vt, char *buf, int count) | ||
100 | { | ||
101 | int i; | ||
102 | |||
103 | for (i = 0; i < count; ++i) { | ||
104 | int c = -1; | ||
105 | |||
106 | if (__dcc_getstatus() & DCC_STATUS_RX) | ||
107 | c = __dcc_getchar(); | ||
108 | if (c < 0) | ||
109 | break; | ||
110 | buf[i] = c; | ||
111 | } | ||
112 | |||
113 | return i; | ||
114 | } | ||
115 | |||
116 | static const struct hv_ops hvc_dcc_get_put_ops = { | ||
117 | .get_chars = hvc_dcc_get_chars, | ||
118 | .put_chars = hvc_dcc_put_chars, | ||
119 | }; | ||
120 | |||
121 | static int __init hvc_dcc_console_init(void) | ||
122 | { | ||
123 | hvc_instantiate(0, 0, &hvc_dcc_get_put_ops); | ||
124 | return 0; | ||
125 | } | ||
126 | console_initcall(hvc_dcc_console_init); | ||
127 | |||
128 | static int __init hvc_dcc_init(void) | ||
129 | { | ||
130 | hvc_alloc(0, 0, &hvc_dcc_get_put_ops, 128); | ||
131 | return 0; | ||
132 | } | ||
133 | device_initcall(hvc_dcc_init); | ||
diff --git a/drivers/char/ip2/ip2main.c b/drivers/char/ip2/ip2main.c index fcd02baa7d65..c3a025356b8b 100644 --- a/drivers/char/ip2/ip2main.c +++ b/drivers/char/ip2/ip2main.c | |||
@@ -3224,7 +3224,7 @@ ip2trace (unsigned short pn, unsigned char cat, unsigned char label, unsigned lo | |||
3224 | 3224 | ||
3225 | MODULE_LICENSE("GPL"); | 3225 | MODULE_LICENSE("GPL"); |
3226 | 3226 | ||
3227 | static struct pci_device_id ip2main_pci_tbl[] __devinitdata = { | 3227 | static struct pci_device_id ip2main_pci_tbl[] __devinitdata __used = { |
3228 | { PCI_DEVICE(PCI_VENDOR_ID_COMPUTONE, PCI_DEVICE_ID_COMPUTONE_IP2EX) }, | 3228 | { PCI_DEVICE(PCI_VENDOR_ID_COMPUTONE, PCI_DEVICE_ID_COMPUTONE_IP2EX) }, |
3229 | { } | 3229 | { } |
3230 | }; | 3230 | }; |
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c index 86308830ac42..3e4e73a0d7c1 100644 --- a/drivers/char/rocket.c +++ b/drivers/char/rocket.c | |||
@@ -1764,7 +1764,7 @@ static void rp_flush_buffer(struct tty_struct *tty) | |||
1764 | 1764 | ||
1765 | #ifdef CONFIG_PCI | 1765 | #ifdef CONFIG_PCI |
1766 | 1766 | ||
1767 | static struct pci_device_id __devinitdata rocket_pci_ids[] = { | 1767 | static struct pci_device_id __devinitdata __used rocket_pci_ids[] = { |
1768 | { PCI_DEVICE(PCI_VENDOR_ID_RP, PCI_ANY_ID) }, | 1768 | { PCI_DEVICE(PCI_VENDOR_ID_RP, PCI_ANY_ID) }, |
1769 | { } | 1769 | { } |
1770 | }; | 1770 | }; |
diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index a7616d226a49..c2bca3f25ef3 100644 --- a/drivers/char/specialix.c +++ b/drivers/char/specialix.c | |||
@@ -2355,7 +2355,7 @@ static void __exit specialix_exit_module(void) | |||
2355 | func_exit(); | 2355 | func_exit(); |
2356 | } | 2356 | } |
2357 | 2357 | ||
2358 | static struct pci_device_id specialx_pci_tbl[] __devinitdata = { | 2358 | static struct pci_device_id specialx_pci_tbl[] __devinitdata __used = { |
2359 | { PCI_DEVICE(PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_IO8) }, | 2359 | { PCI_DEVICE(PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_IO8) }, |
2360 | { } | 2360 | { } |
2361 | }; | 2361 | }; |
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index ee74c934de89..b25e6e490530 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -454,21 +454,40 @@ static void tsi_serial_out(struct uart_port *p, int offset, int value) | |||
454 | writeb(value, p->membase + offset); | 454 | writeb(value, p->membase + offset); |
455 | } | 455 | } |
456 | 456 | ||
457 | /* Save the LCR value so it can be re-written when a Busy Detect IRQ occurs. */ | ||
458 | static inline void dwapb_save_out_value(struct uart_port *p, int offset, | ||
459 | int value) | ||
460 | { | ||
461 | struct uart_8250_port *up = | ||
462 | container_of(p, struct uart_8250_port, port); | ||
463 | |||
464 | if (offset == UART_LCR) | ||
465 | up->lcr = value; | ||
466 | } | ||
467 | |||
468 | /* Read the IER to ensure any interrupt is cleared before returning from ISR. */ | ||
469 | static inline void dwapb_check_clear_ier(struct uart_port *p, int offset) | ||
470 | { | ||
471 | if (offset == UART_TX || offset == UART_IER) | ||
472 | p->serial_in(p, UART_IER); | ||
473 | } | ||
474 | |||
457 | static void dwapb_serial_out(struct uart_port *p, int offset, int value) | 475 | static void dwapb_serial_out(struct uart_port *p, int offset, int value) |
458 | { | 476 | { |
459 | int save_offset = offset; | 477 | int save_offset = offset; |
460 | offset = map_8250_out_reg(p, offset) << p->regshift; | 478 | offset = map_8250_out_reg(p, offset) << p->regshift; |
461 | /* Save the LCR value so it can be re-written when a | 479 | dwapb_save_out_value(p, save_offset, value); |
462 | * Busy Detect interrupt occurs. */ | ||
463 | if (save_offset == UART_LCR) { | ||
464 | struct uart_8250_port *up = (struct uart_8250_port *)p; | ||
465 | up->lcr = value; | ||
466 | } | ||
467 | writeb(value, p->membase + offset); | 480 | writeb(value, p->membase + offset); |
468 | /* Read the IER to ensure any interrupt is cleared before | 481 | dwapb_check_clear_ier(p, save_offset); |
469 | * returning from ISR. */ | 482 | } |
470 | if (save_offset == UART_TX || save_offset == UART_IER) | 483 | |
471 | value = p->serial_in(p, UART_IER); | 484 | static void dwapb32_serial_out(struct uart_port *p, int offset, int value) |
485 | { | ||
486 | int save_offset = offset; | ||
487 | offset = map_8250_out_reg(p, offset) << p->regshift; | ||
488 | dwapb_save_out_value(p, save_offset, value); | ||
489 | writel(value, p->membase + offset); | ||
490 | dwapb_check_clear_ier(p, save_offset); | ||
472 | } | 491 | } |
473 | 492 | ||
474 | static unsigned int io_serial_in(struct uart_port *p, int offset) | 493 | static unsigned int io_serial_in(struct uart_port *p, int offset) |
@@ -485,7 +504,8 @@ static void io_serial_out(struct uart_port *p, int offset, int value) | |||
485 | 504 | ||
486 | static void set_io_from_upio(struct uart_port *p) | 505 | static void set_io_from_upio(struct uart_port *p) |
487 | { | 506 | { |
488 | struct uart_8250_port *up = (struct uart_8250_port *)p; | 507 | struct uart_8250_port *up = |
508 | container_of(p, struct uart_8250_port, port); | ||
489 | switch (p->iotype) { | 509 | switch (p->iotype) { |
490 | case UPIO_HUB6: | 510 | case UPIO_HUB6: |
491 | p->serial_in = hub6_serial_in; | 511 | p->serial_in = hub6_serial_in; |
@@ -518,6 +538,11 @@ static void set_io_from_upio(struct uart_port *p) | |||
518 | p->serial_out = dwapb_serial_out; | 538 | p->serial_out = dwapb_serial_out; |
519 | break; | 539 | break; |
520 | 540 | ||
541 | case UPIO_DWAPB32: | ||
542 | p->serial_in = mem32_serial_in; | ||
543 | p->serial_out = dwapb32_serial_out; | ||
544 | break; | ||
545 | |||
521 | default: | 546 | default: |
522 | p->serial_in = io_serial_in; | 547 | p->serial_in = io_serial_in; |
523 | p->serial_out = io_serial_out; | 548 | p->serial_out = io_serial_out; |
@@ -536,6 +561,7 @@ serial_out_sync(struct uart_8250_port *up, int offset, int value) | |||
536 | case UPIO_MEM32: | 561 | case UPIO_MEM32: |
537 | case UPIO_AU: | 562 | case UPIO_AU: |
538 | case UPIO_DWAPB: | 563 | case UPIO_DWAPB: |
564 | case UPIO_DWAPB32: | ||
539 | p->serial_out(p, offset, value); | 565 | p->serial_out(p, offset, value); |
540 | p->serial_in(p, UART_LCR); /* safe, no side-effects */ | 566 | p->serial_in(p, UART_LCR); /* safe, no side-effects */ |
541 | break; | 567 | break; |
@@ -1319,7 +1345,8 @@ static inline void __stop_tx(struct uart_8250_port *p) | |||
1319 | 1345 | ||
1320 | static void serial8250_stop_tx(struct uart_port *port) | 1346 | static void serial8250_stop_tx(struct uart_port *port) |
1321 | { | 1347 | { |
1322 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1348 | struct uart_8250_port *up = |
1349 | container_of(port, struct uart_8250_port, port); | ||
1323 | 1350 | ||
1324 | __stop_tx(up); | 1351 | __stop_tx(up); |
1325 | 1352 | ||
@@ -1336,7 +1363,8 @@ static void transmit_chars(struct uart_8250_port *up); | |||
1336 | 1363 | ||
1337 | static void serial8250_start_tx(struct uart_port *port) | 1364 | static void serial8250_start_tx(struct uart_port *port) |
1338 | { | 1365 | { |
1339 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1366 | struct uart_8250_port *up = |
1367 | container_of(port, struct uart_8250_port, port); | ||
1340 | 1368 | ||
1341 | if (!(up->ier & UART_IER_THRI)) { | 1369 | if (!(up->ier & UART_IER_THRI)) { |
1342 | up->ier |= UART_IER_THRI; | 1370 | up->ier |= UART_IER_THRI; |
@@ -1364,7 +1392,8 @@ static void serial8250_start_tx(struct uart_port *port) | |||
1364 | 1392 | ||
1365 | static void serial8250_stop_rx(struct uart_port *port) | 1393 | static void serial8250_stop_rx(struct uart_port *port) |
1366 | { | 1394 | { |
1367 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1395 | struct uart_8250_port *up = |
1396 | container_of(port, struct uart_8250_port, port); | ||
1368 | 1397 | ||
1369 | up->ier &= ~UART_IER_RLSI; | 1398 | up->ier &= ~UART_IER_RLSI; |
1370 | up->port.read_status_mask &= ~UART_LSR_DR; | 1399 | up->port.read_status_mask &= ~UART_LSR_DR; |
@@ -1373,7 +1402,8 @@ static void serial8250_stop_rx(struct uart_port *port) | |||
1373 | 1402 | ||
1374 | static void serial8250_enable_ms(struct uart_port *port) | 1403 | static void serial8250_enable_ms(struct uart_port *port) |
1375 | { | 1404 | { |
1376 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1405 | struct uart_8250_port *up = |
1406 | container_of(port, struct uart_8250_port, port); | ||
1377 | 1407 | ||
1378 | /* no MSR capabilities */ | 1408 | /* no MSR capabilities */ |
1379 | if (up->bugs & UART_BUG_NOMSR) | 1409 | if (up->bugs & UART_BUG_NOMSR) |
@@ -1581,7 +1611,8 @@ static irqreturn_t serial8250_interrupt(int irq, void *dev_id) | |||
1581 | handled = 1; | 1611 | handled = 1; |
1582 | 1612 | ||
1583 | end = NULL; | 1613 | end = NULL; |
1584 | } else if (up->port.iotype == UPIO_DWAPB && | 1614 | } else if ((up->port.iotype == UPIO_DWAPB || |
1615 | up->port.iotype == UPIO_DWAPB32) && | ||
1585 | (iir & UART_IIR_BUSY) == UART_IIR_BUSY) { | 1616 | (iir & UART_IIR_BUSY) == UART_IIR_BUSY) { |
1586 | /* The DesignWare APB UART has an Busy Detect (0x07) | 1617 | /* The DesignWare APB UART has an Busy Detect (0x07) |
1587 | * interrupt meaning an LCR write attempt occured while the | 1618 | * interrupt meaning an LCR write attempt occured while the |
@@ -1781,7 +1812,8 @@ static void serial8250_backup_timeout(unsigned long data) | |||
1781 | 1812 | ||
1782 | static unsigned int serial8250_tx_empty(struct uart_port *port) | 1813 | static unsigned int serial8250_tx_empty(struct uart_port *port) |
1783 | { | 1814 | { |
1784 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1815 | struct uart_8250_port *up = |
1816 | container_of(port, struct uart_8250_port, port); | ||
1785 | unsigned long flags; | 1817 | unsigned long flags; |
1786 | unsigned int lsr; | 1818 | unsigned int lsr; |
1787 | 1819 | ||
@@ -1795,7 +1827,8 @@ static unsigned int serial8250_tx_empty(struct uart_port *port) | |||
1795 | 1827 | ||
1796 | static unsigned int serial8250_get_mctrl(struct uart_port *port) | 1828 | static unsigned int serial8250_get_mctrl(struct uart_port *port) |
1797 | { | 1829 | { |
1798 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1830 | struct uart_8250_port *up = |
1831 | container_of(port, struct uart_8250_port, port); | ||
1799 | unsigned int status; | 1832 | unsigned int status; |
1800 | unsigned int ret; | 1833 | unsigned int ret; |
1801 | 1834 | ||
@@ -1815,7 +1848,8 @@ static unsigned int serial8250_get_mctrl(struct uart_port *port) | |||
1815 | 1848 | ||
1816 | static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl) | 1849 | static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl) |
1817 | { | 1850 | { |
1818 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1851 | struct uart_8250_port *up = |
1852 | container_of(port, struct uart_8250_port, port); | ||
1819 | unsigned char mcr = 0; | 1853 | unsigned char mcr = 0; |
1820 | 1854 | ||
1821 | if (mctrl & TIOCM_RTS) | 1855 | if (mctrl & TIOCM_RTS) |
@@ -1836,7 +1870,8 @@ static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl) | |||
1836 | 1870 | ||
1837 | static void serial8250_break_ctl(struct uart_port *port, int break_state) | 1871 | static void serial8250_break_ctl(struct uart_port *port, int break_state) |
1838 | { | 1872 | { |
1839 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1873 | struct uart_8250_port *up = |
1874 | container_of(port, struct uart_8250_port, port); | ||
1840 | unsigned long flags; | 1875 | unsigned long flags; |
1841 | 1876 | ||
1842 | spin_lock_irqsave(&up->port.lock, flags); | 1877 | spin_lock_irqsave(&up->port.lock, flags); |
@@ -1890,7 +1925,8 @@ static void wait_for_xmitr(struct uart_8250_port *up, int bits) | |||
1890 | 1925 | ||
1891 | static int serial8250_get_poll_char(struct uart_port *port) | 1926 | static int serial8250_get_poll_char(struct uart_port *port) |
1892 | { | 1927 | { |
1893 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1928 | struct uart_8250_port *up = |
1929 | container_of(port, struct uart_8250_port, port); | ||
1894 | unsigned char lsr = serial_inp(up, UART_LSR); | 1930 | unsigned char lsr = serial_inp(up, UART_LSR); |
1895 | 1931 | ||
1896 | if (!(lsr & UART_LSR_DR)) | 1932 | if (!(lsr & UART_LSR_DR)) |
@@ -1904,7 +1940,8 @@ static void serial8250_put_poll_char(struct uart_port *port, | |||
1904 | unsigned char c) | 1940 | unsigned char c) |
1905 | { | 1941 | { |
1906 | unsigned int ier; | 1942 | unsigned int ier; |
1907 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1943 | struct uart_8250_port *up = |
1944 | container_of(port, struct uart_8250_port, port); | ||
1908 | 1945 | ||
1909 | /* | 1946 | /* |
1910 | * First save the IER then disable the interrupts | 1947 | * First save the IER then disable the interrupts |
@@ -1938,11 +1975,14 @@ static void serial8250_put_poll_char(struct uart_port *port, | |||
1938 | 1975 | ||
1939 | static int serial8250_startup(struct uart_port *port) | 1976 | static int serial8250_startup(struct uart_port *port) |
1940 | { | 1977 | { |
1941 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 1978 | struct uart_8250_port *up = |
1979 | container_of(port, struct uart_8250_port, port); | ||
1942 | unsigned long flags; | 1980 | unsigned long flags; |
1943 | unsigned char lsr, iir; | 1981 | unsigned char lsr, iir; |
1944 | int retval; | 1982 | int retval; |
1945 | 1983 | ||
1984 | up->port.fifosize = uart_config[up->port.type].fifo_size; | ||
1985 | up->tx_loadsz = uart_config[up->port.type].tx_loadsz; | ||
1946 | up->capabilities = uart_config[up->port.type].flags; | 1986 | up->capabilities = uart_config[up->port.type].flags; |
1947 | up->mcr = 0; | 1987 | up->mcr = 0; |
1948 | 1988 | ||
@@ -2166,7 +2206,8 @@ dont_test_tx_en: | |||
2166 | 2206 | ||
2167 | static void serial8250_shutdown(struct uart_port *port) | 2207 | static void serial8250_shutdown(struct uart_port *port) |
2168 | { | 2208 | { |
2169 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 2209 | struct uart_8250_port *up = |
2210 | container_of(port, struct uart_8250_port, port); | ||
2170 | unsigned long flags; | 2211 | unsigned long flags; |
2171 | 2212 | ||
2172 | /* | 2213 | /* |
@@ -2235,7 +2276,8 @@ void | |||
2235 | serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios, | 2276 | serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios, |
2236 | struct ktermios *old) | 2277 | struct ktermios *old) |
2237 | { | 2278 | { |
2238 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 2279 | struct uart_8250_port *up = |
2280 | container_of(port, struct uart_8250_port, port); | ||
2239 | unsigned char cval, fcr = 0; | 2281 | unsigned char cval, fcr = 0; |
2240 | unsigned long flags; | 2282 | unsigned long flags; |
2241 | unsigned int baud, quot; | 2283 | unsigned int baud, quot; |
@@ -2435,7 +2477,8 @@ serial8250_set_ldisc(struct uart_port *port, int new) | |||
2435 | void serial8250_do_pm(struct uart_port *port, unsigned int state, | 2477 | void serial8250_do_pm(struct uart_port *port, unsigned int state, |
2436 | unsigned int oldstate) | 2478 | unsigned int oldstate) |
2437 | { | 2479 | { |
2438 | struct uart_8250_port *p = (struct uart_8250_port *)port; | 2480 | struct uart_8250_port *p = |
2481 | container_of(port, struct uart_8250_port, port); | ||
2439 | 2482 | ||
2440 | serial8250_set_sleep(p, state != 0); | 2483 | serial8250_set_sleep(p, state != 0); |
2441 | } | 2484 | } |
@@ -2476,6 +2519,7 @@ static int serial8250_request_std_resource(struct uart_8250_port *up) | |||
2476 | case UPIO_MEM32: | 2519 | case UPIO_MEM32: |
2477 | case UPIO_MEM: | 2520 | case UPIO_MEM: |
2478 | case UPIO_DWAPB: | 2521 | case UPIO_DWAPB: |
2522 | case UPIO_DWAPB32: | ||
2479 | if (!up->port.mapbase) | 2523 | if (!up->port.mapbase) |
2480 | break; | 2524 | break; |
2481 | 2525 | ||
@@ -2513,6 +2557,7 @@ static void serial8250_release_std_resource(struct uart_8250_port *up) | |||
2513 | case UPIO_MEM32: | 2557 | case UPIO_MEM32: |
2514 | case UPIO_MEM: | 2558 | case UPIO_MEM: |
2515 | case UPIO_DWAPB: | 2559 | case UPIO_DWAPB: |
2560 | case UPIO_DWAPB32: | ||
2516 | if (!up->port.mapbase) | 2561 | if (!up->port.mapbase) |
2517 | break; | 2562 | break; |
2518 | 2563 | ||
@@ -2566,7 +2611,8 @@ static void serial8250_release_rsa_resource(struct uart_8250_port *up) | |||
2566 | 2611 | ||
2567 | static void serial8250_release_port(struct uart_port *port) | 2612 | static void serial8250_release_port(struct uart_port *port) |
2568 | { | 2613 | { |
2569 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 2614 | struct uart_8250_port *up = |
2615 | container_of(port, struct uart_8250_port, port); | ||
2570 | 2616 | ||
2571 | serial8250_release_std_resource(up); | 2617 | serial8250_release_std_resource(up); |
2572 | if (up->port.type == PORT_RSA) | 2618 | if (up->port.type == PORT_RSA) |
@@ -2575,7 +2621,8 @@ static void serial8250_release_port(struct uart_port *port) | |||
2575 | 2621 | ||
2576 | static int serial8250_request_port(struct uart_port *port) | 2622 | static int serial8250_request_port(struct uart_port *port) |
2577 | { | 2623 | { |
2578 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 2624 | struct uart_8250_port *up = |
2625 | container_of(port, struct uart_8250_port, port); | ||
2579 | int ret = 0; | 2626 | int ret = 0; |
2580 | 2627 | ||
2581 | ret = serial8250_request_std_resource(up); | 2628 | ret = serial8250_request_std_resource(up); |
@@ -2590,7 +2637,8 @@ static int serial8250_request_port(struct uart_port *port) | |||
2590 | 2637 | ||
2591 | static void serial8250_config_port(struct uart_port *port, int flags) | 2638 | static void serial8250_config_port(struct uart_port *port, int flags) |
2592 | { | 2639 | { |
2593 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 2640 | struct uart_8250_port *up = |
2641 | container_of(port, struct uart_8250_port, port); | ||
2594 | int probeflags = PROBE_ANY; | 2642 | int probeflags = PROBE_ANY; |
2595 | int ret; | 2643 | int ret; |
2596 | 2644 | ||
@@ -2771,7 +2819,8 @@ serial8250_register_ports(struct uart_driver *drv, struct device *dev) | |||
2771 | 2819 | ||
2772 | static void serial8250_console_putchar(struct uart_port *port, int ch) | 2820 | static void serial8250_console_putchar(struct uart_port *port, int ch) |
2773 | { | 2821 | { |
2774 | struct uart_8250_port *up = (struct uart_8250_port *)port; | 2822 | struct uart_8250_port *up = |
2823 | container_of(port, struct uart_8250_port, port); | ||
2775 | 2824 | ||
2776 | wait_for_xmitr(up, UART_LSR_THRE); | 2825 | wait_for_xmitr(up, UART_LSR_THRE); |
2777 | serial_out(up, UART_TX, ch); | 2826 | serial_out(up, UART_TX, ch); |
diff --git a/drivers/serial/8250_pci.c b/drivers/serial/8250_pci.c index 842e3b2a02b1..8b8930f700b5 100644 --- a/drivers/serial/8250_pci.c +++ b/drivers/serial/8250_pci.c | |||
@@ -957,6 +957,22 @@ pci_default_setup(struct serial_private *priv, | |||
957 | return setup_port(priv, port, bar, offset, board->reg_shift); | 957 | return setup_port(priv, port, bar, offset, board->reg_shift); |
958 | } | 958 | } |
959 | 959 | ||
960 | static int | ||
961 | ce4100_serial_setup(struct serial_private *priv, | ||
962 | const struct pciserial_board *board, | ||
963 | struct uart_port *port, int idx) | ||
964 | { | ||
965 | int ret; | ||
966 | |||
967 | ret = setup_port(priv, port, 0, 0, board->reg_shift); | ||
968 | port->iotype = UPIO_MEM32; | ||
969 | port->type = PORT_XSCALE; | ||
970 | port->flags = (port->flags | UPF_FIXED_PORT | UPF_FIXED_TYPE); | ||
971 | port->regshift = 2; | ||
972 | |||
973 | return ret; | ||
974 | } | ||
975 | |||
960 | static int skip_tx_en_setup(struct serial_private *priv, | 976 | static int skip_tx_en_setup(struct serial_private *priv, |
961 | const struct pciserial_board *board, | 977 | const struct pciserial_board *board, |
962 | struct uart_port *port, int idx) | 978 | struct uart_port *port, int idx) |
@@ -981,6 +997,7 @@ static int skip_tx_en_setup(struct serial_private *priv, | |||
981 | #define PCI_SUBDEVICE_ID_POCTAL232 0x0308 | 997 | #define PCI_SUBDEVICE_ID_POCTAL232 0x0308 |
982 | #define PCI_SUBDEVICE_ID_POCTAL422 0x0408 | 998 | #define PCI_SUBDEVICE_ID_POCTAL422 0x0408 |
983 | #define PCI_VENDOR_ID_ADVANTECH 0x13fe | 999 | #define PCI_VENDOR_ID_ADVANTECH 0x13fe |
1000 | #define PCI_DEVICE_ID_INTEL_CE4100_UART 0x2e66 | ||
984 | #define PCI_DEVICE_ID_ADVANTECH_PCI3620 0x3620 | 1001 | #define PCI_DEVICE_ID_ADVANTECH_PCI3620 0x3620 |
985 | #define PCI_DEVICE_ID_TITAN_200I 0x8028 | 1002 | #define PCI_DEVICE_ID_TITAN_200I 0x8028 |
986 | #define PCI_DEVICE_ID_TITAN_400I 0x8048 | 1003 | #define PCI_DEVICE_ID_TITAN_400I 0x8048 |
@@ -1072,6 +1089,13 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = { | |||
1072 | .subdevice = PCI_ANY_ID, | 1089 | .subdevice = PCI_ANY_ID, |
1073 | .setup = skip_tx_en_setup, | 1090 | .setup = skip_tx_en_setup, |
1074 | }, | 1091 | }, |
1092 | { | ||
1093 | .vendor = PCI_VENDOR_ID_INTEL, | ||
1094 | .device = PCI_DEVICE_ID_INTEL_CE4100_UART, | ||
1095 | .subvendor = PCI_ANY_ID, | ||
1096 | .subdevice = PCI_ANY_ID, | ||
1097 | .setup = ce4100_serial_setup, | ||
1098 | }, | ||
1075 | /* | 1099 | /* |
1076 | * ITE | 1100 | * ITE |
1077 | */ | 1101 | */ |
@@ -1592,6 +1616,7 @@ enum pci_board_num_t { | |||
1592 | pbn_ADDIDATA_PCIe_2_3906250, | 1616 | pbn_ADDIDATA_PCIe_2_3906250, |
1593 | pbn_ADDIDATA_PCIe_4_3906250, | 1617 | pbn_ADDIDATA_PCIe_4_3906250, |
1594 | pbn_ADDIDATA_PCIe_8_3906250, | 1618 | pbn_ADDIDATA_PCIe_8_3906250, |
1619 | pbn_ce4100_1_115200, | ||
1595 | }; | 1620 | }; |
1596 | 1621 | ||
1597 | /* | 1622 | /* |
@@ -2281,6 +2306,12 @@ static struct pciserial_board pci_boards[] __devinitdata = { | |||
2281 | .uart_offset = 0x200, | 2306 | .uart_offset = 0x200, |
2282 | .first_offset = 0x1000, | 2307 | .first_offset = 0x1000, |
2283 | }, | 2308 | }, |
2309 | [pbn_ce4100_1_115200] = { | ||
2310 | .flags = FL_BASE0, | ||
2311 | .num_ports = 1, | ||
2312 | .base_baud = 921600, | ||
2313 | .reg_shift = 2, | ||
2314 | }, | ||
2284 | }; | 2315 | }; |
2285 | 2316 | ||
2286 | static const struct pci_device_id softmodem_blacklist[] = { | 2317 | static const struct pci_device_id softmodem_blacklist[] = { |
@@ -3765,6 +3796,11 @@ static struct pci_device_id serial_pci_tbl[] = { | |||
3765 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865, | 3796 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865, |
3766 | 0xA000, 0x3004, | 3797 | 0xA000, 0x3004, |
3767 | 0, 0, pbn_b0_bt_4_115200 }, | 3798 | 0, 0, pbn_b0_bt_4_115200 }, |
3799 | /* Intel CE4100 */ | ||
3800 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_CE4100_UART, | ||
3801 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, | ||
3802 | pbn_ce4100_1_115200 }, | ||
3803 | |||
3768 | 3804 | ||
3769 | /* | 3805 | /* |
3770 | * These entries match devices with class COMMUNICATION_SERIAL, | 3806 | * These entries match devices with class COMMUNICATION_SERIAL, |
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index aff9dcd051c6..ec3c214598d0 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig | |||
@@ -1381,6 +1381,16 @@ config SERIAL_MSM_CONSOLE | |||
1381 | depends on SERIAL_MSM=y | 1381 | depends on SERIAL_MSM=y |
1382 | select SERIAL_CORE_CONSOLE | 1382 | select SERIAL_CORE_CONSOLE |
1383 | 1383 | ||
1384 | config SERIAL_VT8500 | ||
1385 | bool "VIA VT8500 on-chip serial port support" | ||
1386 | depends on ARM && ARCH_VT8500 | ||
1387 | select SERIAL_CORE | ||
1388 | |||
1389 | config SERIAL_VT8500_CONSOLE | ||
1390 | bool "VIA VT8500 serial console support" | ||
1391 | depends on SERIAL_VT8500=y | ||
1392 | select SERIAL_CORE_CONSOLE | ||
1393 | |||
1384 | config SERIAL_NETX | 1394 | config SERIAL_NETX |
1385 | tristate "NetX serial port support" | 1395 | tristate "NetX serial port support" |
1386 | depends on ARM && ARCH_NETX | 1396 | depends on ARM && ARCH_NETX |
@@ -1632,4 +1642,19 @@ config SERIAL_ALTERA_UART_CONSOLE | |||
1632 | help | 1642 | help |
1633 | Enable a Altera UART port to be the system console. | 1643 | Enable a Altera UART port to be the system console. |
1634 | 1644 | ||
1645 | config SERIAL_IFX6X60 | ||
1646 | tristate "SPI protocol driver for Infineon 6x60 modem (EXPERIMENTAL)" | ||
1647 | depends on GPIOLIB && SPI && EXPERIMENTAL | ||
1648 | help | ||
1649 | Support for the IFX6x60 modem devices on Intel MID platforms. | ||
1650 | |||
1651 | config SERIAL_PCH_UART | ||
1652 | tristate "Intel EG20T PCH UART" | ||
1653 | depends on PCI && DMADEVICES | ||
1654 | select SERIAL_CORE | ||
1655 | select PCH_DMA | ||
1656 | help | ||
1657 | This driver is for PCH(Platform controller Hub) UART of Intel EG20T | ||
1658 | which is an IOH(Input/Output Hub) for x86 embedded processor. | ||
1659 | Enabling PCH_DMA, this PCH UART works as DMA mode. | ||
1635 | endmenu | 1660 | endmenu |
diff --git a/drivers/serial/Makefile b/drivers/serial/Makefile index c5705765454f..8ea92e9c73b0 100644 --- a/drivers/serial/Makefile +++ b/drivers/serial/Makefile | |||
@@ -80,12 +80,15 @@ obj-$(CONFIG_SERIAL_NETX) += netx-serial.o | |||
80 | obj-$(CONFIG_SERIAL_OF_PLATFORM) += of_serial.o | 80 | obj-$(CONFIG_SERIAL_OF_PLATFORM) += of_serial.o |
81 | obj-$(CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL) += nwpserial.o | 81 | obj-$(CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL) += nwpserial.o |
82 | obj-$(CONFIG_SERIAL_KS8695) += serial_ks8695.o | 82 | obj-$(CONFIG_SERIAL_KS8695) += serial_ks8695.o |
83 | obj-$(CONFIG_SERIAL_OMAP) += omap-serial.o | ||
83 | obj-$(CONFIG_KGDB_SERIAL_CONSOLE) += kgdboc.o | 84 | obj-$(CONFIG_KGDB_SERIAL_CONSOLE) += kgdboc.o |
84 | obj-$(CONFIG_SERIAL_QE) += ucc_uart.o | 85 | obj-$(CONFIG_SERIAL_QE) += ucc_uart.o |
85 | obj-$(CONFIG_SERIAL_TIMBERDALE) += timbuart.o | 86 | obj-$(CONFIG_SERIAL_TIMBERDALE) += timbuart.o |
86 | obj-$(CONFIG_SERIAL_GRLIB_GAISLER_APBUART) += apbuart.o | 87 | obj-$(CONFIG_SERIAL_GRLIB_GAISLER_APBUART) += apbuart.o |
87 | obj-$(CONFIG_SERIAL_ALTERA_JTAGUART) += altera_jtaguart.o | 88 | obj-$(CONFIG_SERIAL_ALTERA_JTAGUART) += altera_jtaguart.o |
88 | obj-$(CONFIG_SERIAL_ALTERA_UART) += altera_uart.o | 89 | obj-$(CONFIG_SERIAL_ALTERA_UART) += altera_uart.o |
90 | obj-$(CONFIG_SERIAL_VT8500) += vt8500_serial.o | ||
89 | obj-$(CONFIG_SERIAL_MRST_MAX3110) += mrst_max3110.o | 91 | obj-$(CONFIG_SERIAL_MRST_MAX3110) += mrst_max3110.o |
90 | obj-$(CONFIG_SERIAL_MFD_HSU) += mfd.o | 92 | obj-$(CONFIG_SERIAL_MFD_HSU) += mfd.o |
91 | obj-$(CONFIG_SERIAL_OMAP) += omap-serial.o | 93 | obj-$(CONFIG_SERIAL_IFX6X60) += ifx6x60.o |
94 | obj-$(CONFIG_SERIAL_PCH_UART) += pch_uart.o | ||
diff --git a/drivers/serial/apbuart.c b/drivers/serial/apbuart.c index 767ce9e396c5..095a5d562618 100644 --- a/drivers/serial/apbuart.c +++ b/drivers/serial/apbuart.c | |||
@@ -521,11 +521,12 @@ static struct console grlib_apbuart_console = { | |||
521 | }; | 521 | }; |
522 | 522 | ||
523 | 523 | ||
524 | static void grlib_apbuart_configure(void); | 524 | static int grlib_apbuart_configure(void); |
525 | 525 | ||
526 | static int __init apbuart_console_init(void) | 526 | static int __init apbuart_console_init(void) |
527 | { | 527 | { |
528 | grlib_apbuart_configure(); | 528 | if (grlib_apbuart_configure()) |
529 | return -ENODEV; | ||
529 | register_console(&grlib_apbuart_console); | 530 | register_console(&grlib_apbuart_console); |
530 | return 0; | 531 | return 0; |
531 | } | 532 | } |
@@ -596,57 +597,49 @@ static struct of_platform_driver grlib_apbuart_of_driver = { | |||
596 | }; | 597 | }; |
597 | 598 | ||
598 | 599 | ||
599 | static void grlib_apbuart_configure(void) | 600 | static int grlib_apbuart_configure(void) |
600 | { | 601 | { |
601 | static int enum_done; | ||
602 | struct device_node *np, *rp; | 602 | struct device_node *np, *rp; |
603 | struct uart_port *port = NULL; | ||
604 | const u32 *prop; | 603 | const u32 *prop; |
605 | int freq_khz; | 604 | int freq_khz, line = 0; |
606 | int v = 0, d = 0; | ||
607 | unsigned int addr; | ||
608 | int irq, line; | ||
609 | struct amba_prom_registers *regs; | ||
610 | |||
611 | if (enum_done) | ||
612 | return; | ||
613 | 605 | ||
614 | /* Get bus frequency */ | 606 | /* Get bus frequency */ |
615 | rp = of_find_node_by_path("/"); | 607 | rp = of_find_node_by_path("/"); |
608 | if (!rp) | ||
609 | return -ENODEV; | ||
616 | rp = of_get_next_child(rp, NULL); | 610 | rp = of_get_next_child(rp, NULL); |
611 | if (!rp) | ||
612 | return -ENODEV; | ||
617 | prop = of_get_property(rp, "clock-frequency", NULL); | 613 | prop = of_get_property(rp, "clock-frequency", NULL); |
614 | if (!prop) | ||
615 | return -ENODEV; | ||
618 | freq_khz = *prop; | 616 | freq_khz = *prop; |
619 | 617 | ||
620 | line = 0; | ||
621 | for_each_matching_node(np, apbuart_match) { | 618 | for_each_matching_node(np, apbuart_match) { |
619 | const int *irqs, *ampopts; | ||
620 | const struct amba_prom_registers *regs; | ||
621 | struct uart_port *port; | ||
622 | unsigned long addr; | ||
622 | 623 | ||
623 | int *vendor = (int *) of_get_property(np, "vendor", NULL); | 624 | ampopts = of_get_property(np, "ampopts", NULL); |
624 | int *device = (int *) of_get_property(np, "device", NULL); | ||
625 | int *irqs = (int *) of_get_property(np, "interrupts", NULL); | ||
626 | int *ampopts = (int *) of_get_property(np, "ampopts", NULL); | ||
627 | regs = (struct amba_prom_registers *) | ||
628 | of_get_property(np, "reg", NULL); | ||
629 | |||
630 | if (ampopts && (*ampopts == 0)) | 625 | if (ampopts && (*ampopts == 0)) |
631 | continue; /* Ignore if used by another OS instance */ | 626 | continue; /* Ignore if used by another OS instance */ |
632 | if (vendor) | 627 | |
633 | v = *vendor; | 628 | irqs = of_get_property(np, "interrupts", NULL); |
634 | if (device) | 629 | regs = of_get_property(np, "reg", NULL); |
635 | d = *device; | ||
636 | 630 | ||
637 | if (!irqs || !regs) | 631 | if (!irqs || !regs) |
638 | return; | 632 | continue; |
639 | 633 | ||
640 | grlib_apbuart_nodes[line] = np; | 634 | grlib_apbuart_nodes[line] = np; |
641 | 635 | ||
642 | addr = regs->phys_addr; | 636 | addr = regs->phys_addr; |
643 | irq = *irqs; | ||
644 | 637 | ||
645 | port = &grlib_apbuart_ports[line]; | 638 | port = &grlib_apbuart_ports[line]; |
646 | 639 | ||
647 | port->mapbase = addr; | 640 | port->mapbase = addr; |
648 | port->membase = ioremap(addr, sizeof(struct grlib_apbuart_regs_map)); | 641 | port->membase = ioremap(addr, sizeof(struct grlib_apbuart_regs_map)); |
649 | port->irq = irq; | 642 | port->irq = *irqs; |
650 | port->iotype = UPIO_MEM; | 643 | port->iotype = UPIO_MEM; |
651 | port->ops = &grlib_apbuart_ops; | 644 | port->ops = &grlib_apbuart_ops; |
652 | port->flags = UPF_BOOT_AUTOCONF; | 645 | port->flags = UPF_BOOT_AUTOCONF; |
@@ -658,12 +651,10 @@ static void grlib_apbuart_configure(void) | |||
658 | /* We support maximum UART_NR uarts ... */ | 651 | /* We support maximum UART_NR uarts ... */ |
659 | if (line == UART_NR) | 652 | if (line == UART_NR) |
660 | break; | 653 | break; |
661 | |||
662 | } | 654 | } |
663 | 655 | ||
664 | enum_done = 1; | ||
665 | |||
666 | grlib_apbuart_driver.nr = grlib_apbuart_port_nr = line; | 656 | grlib_apbuart_driver.nr = grlib_apbuart_port_nr = line; |
657 | return line ? 0 : -ENODEV; | ||
667 | } | 658 | } |
668 | 659 | ||
669 | static int __init grlib_apbuart_init(void) | 660 | static int __init grlib_apbuart_init(void) |
@@ -671,7 +662,9 @@ static int __init grlib_apbuart_init(void) | |||
671 | int ret; | 662 | int ret; |
672 | 663 | ||
673 | /* Find all APBUARTS in device the tree and initialize their ports */ | 664 | /* Find all APBUARTS in device the tree and initialize their ports */ |
674 | grlib_apbuart_configure(); | 665 | ret = grlib_apbuart_configure(); |
666 | if (ret) | ||
667 | return ret; | ||
675 | 668 | ||
676 | printk(KERN_INFO "Serial: GRLIB APBUART driver\n"); | 669 | printk(KERN_INFO "Serial: GRLIB APBUART driver\n"); |
677 | 670 | ||
diff --git a/drivers/serial/cpm_uart/cpm_uart.h b/drivers/serial/cpm_uart/cpm_uart.h index 7274b527a3c1..b754dcf0fda5 100644 --- a/drivers/serial/cpm_uart/cpm_uart.h +++ b/drivers/serial/cpm_uart/cpm_uart.h | |||
@@ -76,18 +76,12 @@ struct uart_cpm_port { | |||
76 | unsigned char *tx_buf; | 76 | unsigned char *tx_buf; |
77 | unsigned char *rx_buf; | 77 | unsigned char *rx_buf; |
78 | u32 flags; | 78 | u32 flags; |
79 | void (*set_lineif)(struct uart_cpm_port *); | ||
80 | struct clk *clk; | 79 | struct clk *clk; |
81 | u8 brg; | 80 | u8 brg; |
82 | uint dp_addr; | 81 | uint dp_addr; |
83 | void *mem_addr; | 82 | void *mem_addr; |
84 | dma_addr_t dma_addr; | 83 | dma_addr_t dma_addr; |
85 | u32 mem_size; | 84 | u32 mem_size; |
86 | /* helpers */ | ||
87 | int baud; | ||
88 | int bits; | ||
89 | /* Keep track of 'odd' SMC2 wirings */ | ||
90 | int is_portb; | ||
91 | /* wait on close if needed */ | 85 | /* wait on close if needed */ |
92 | int wait_closing; | 86 | int wait_closing; |
93 | /* value to combine with opcode to form cpm command */ | 87 | /* value to combine with opcode to form cpm command */ |
diff --git a/drivers/serial/cpm_uart/cpm_uart_core.c b/drivers/serial/cpm_uart/cpm_uart_core.c index f2b8adcc6c92..8692ff98fc07 100644 --- a/drivers/serial/cpm_uart/cpm_uart_core.c +++ b/drivers/serial/cpm_uart/cpm_uart_core.c | |||
@@ -72,6 +72,8 @@ static void cpm_uart_initbd(struct uart_cpm_port *pinfo); | |||
72 | 72 | ||
73 | /**************************************************************/ | 73 | /**************************************************************/ |
74 | 74 | ||
75 | #define HW_BUF_SPD_THRESHOLD 9600 | ||
76 | |||
75 | /* | 77 | /* |
76 | * Check, if transmit buffers are processed | 78 | * Check, if transmit buffers are processed |
77 | */ | 79 | */ |
@@ -503,6 +505,11 @@ static void cpm_uart_set_termios(struct uart_port *port, | |||
503 | pr_debug("CPM uart[%d]:set_termios\n", port->line); | 505 | pr_debug("CPM uart[%d]:set_termios\n", port->line); |
504 | 506 | ||
505 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); | 507 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); |
508 | if (baud <= HW_BUF_SPD_THRESHOLD || | ||
509 | (pinfo->port.state && pinfo->port.state->port.tty->low_latency)) | ||
510 | pinfo->rx_fifosize = 1; | ||
511 | else | ||
512 | pinfo->rx_fifosize = RX_BUF_SIZE; | ||
506 | 513 | ||
507 | /* Character length programmed into the mode register is the | 514 | /* Character length programmed into the mode register is the |
508 | * sum of: 1 start bit, number of data bits, 0 or 1 parity bit, | 515 | * sum of: 1 start bit, number of data bits, 0 or 1 parity bit, |
@@ -594,6 +601,17 @@ static void cpm_uart_set_termios(struct uart_port *port, | |||
594 | */ | 601 | */ |
595 | bits++; | 602 | bits++; |
596 | if (IS_SMC(pinfo)) { | 603 | if (IS_SMC(pinfo)) { |
604 | /* | ||
605 | * MRBLR can be changed while an SMC/SCC is operating only | ||
606 | * if it is done in a single bus cycle with one 16-bit move | ||
607 | * (not two 8-bit bus cycles back-to-back). This occurs when | ||
608 | * the cp shifts control to the next RxBD, so the change does | ||
609 | * not take effect immediately. To guarantee the exact RxBD | ||
610 | * on which the change occurs, change MRBLR only while the | ||
611 | * SMC/SCC receiver is disabled. | ||
612 | */ | ||
613 | out_be16(&pinfo->smcup->smc_mrblr, pinfo->rx_fifosize); | ||
614 | |||
597 | /* Set the mode register. We want to keep a copy of the | 615 | /* Set the mode register. We want to keep a copy of the |
598 | * enables, because we want to put them back if they were | 616 | * enables, because we want to put them back if they were |
599 | * present. | 617 | * present. |
@@ -604,6 +622,7 @@ static void cpm_uart_set_termios(struct uart_port *port, | |||
604 | out_be16(&smcp->smc_smcmr, smcr_mk_clen(bits) | cval | | 622 | out_be16(&smcp->smc_smcmr, smcr_mk_clen(bits) | cval | |
605 | SMCMR_SM_UART | prev_mode); | 623 | SMCMR_SM_UART | prev_mode); |
606 | } else { | 624 | } else { |
625 | out_be16(&pinfo->sccup->scc_genscc.scc_mrblr, pinfo->rx_fifosize); | ||
607 | out_be16(&sccp->scc_psmr, (sbits << 12) | scval); | 626 | out_be16(&sccp->scc_psmr, (sbits << 12) | scval); |
608 | } | 627 | } |
609 | 628 | ||
diff --git a/drivers/serial/ifx6x60.c b/drivers/serial/ifx6x60.c new file mode 100644 index 000000000000..ab93763862d5 --- /dev/null +++ b/drivers/serial/ifx6x60.c | |||
@@ -0,0 +1,1406 @@ | |||
1 | /**************************************************************************** | ||
2 | * | ||
3 | * Driver for the IFX 6x60 spi modem. | ||
4 | * | ||
5 | * Copyright (C) 2008 Option International | ||
6 | * Copyright (C) 2008 Filip Aben <f.aben@option.com> | ||
7 | * Denis Joseph Barrow <d.barow@option.com> | ||
8 | * Jan Dumon <j.dumon@option.com> | ||
9 | * | ||
10 | * Copyright (C) 2009, 2010 Intel Corp | ||
11 | * Russ Gorby <richardx.r.gorby@intel.com> | ||
12 | * | ||
13 | * This program is free software; you can redistribute it and/or modify | ||
14 | * it under the terms of the GNU General Public License version 2 as | ||
15 | * published by the Free Software Foundation. | ||
16 | * | ||
17 | * This program is distributed in the hope that it will be useful, | ||
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
20 | * GNU General Public License for more details. | ||
21 | * | ||
22 | * You should have received a copy of the GNU General Public License | ||
23 | * along with this program; if not, write to the Free Software | ||
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, | ||
25 | * USA | ||
26 | * | ||
27 | * Driver modified by Intel from Option gtm501l_spi.c | ||
28 | * | ||
29 | * Notes | ||
30 | * o The driver currently assumes a single device only. If you need to | ||
31 | * change this then look for saved_ifx_dev and add a device lookup | ||
32 | * o The driver is intended to be big-endian safe but has never been | ||
33 | * tested that way (no suitable hardware). There are a couple of FIXME | ||
34 | * notes by areas that may need addressing | ||
35 | * o Some of the GPIO naming/setup assumptions may need revisiting if | ||
36 | * you need to use this driver for another platform. | ||
37 | * | ||
38 | *****************************************************************************/ | ||
39 | #include <linux/module.h> | ||
40 | #include <linux/termios.h> | ||
41 | #include <linux/tty.h> | ||
42 | #include <linux/device.h> | ||
43 | #include <linux/spi/spi.h> | ||
44 | #include <linux/tty.h> | ||
45 | #include <linux/kfifo.h> | ||
46 | #include <linux/tty_flip.h> | ||
47 | #include <linux/timer.h> | ||
48 | #include <linux/serial.h> | ||
49 | #include <linux/interrupt.h> | ||
50 | #include <linux/irq.h> | ||
51 | #include <linux/rfkill.h> | ||
52 | #include <linux/fs.h> | ||
53 | #include <linux/ip.h> | ||
54 | #include <linux/dmapool.h> | ||
55 | #include <linux/gpio.h> | ||
56 | #include <linux/sched.h> | ||
57 | #include <linux/time.h> | ||
58 | #include <linux/wait.h> | ||
59 | #include <linux/tty.h> | ||
60 | #include <linux/pm.h> | ||
61 | #include <linux/pm_runtime.h> | ||
62 | #include <linux/spi/ifx_modem.h> | ||
63 | #include <linux/delay.h> | ||
64 | |||
65 | #include "ifx6x60.h" | ||
66 | |||
67 | #define IFX_SPI_MORE_MASK 0x10 | ||
68 | #define IFX_SPI_MORE_BIT 12 /* bit position in u16 */ | ||
69 | #define IFX_SPI_CTS_BIT 13 /* bit position in u16 */ | ||
70 | #define IFX_SPI_TTY_ID 0 | ||
71 | #define IFX_SPI_TIMEOUT_SEC 2 | ||
72 | #define IFX_SPI_HEADER_0 (-1) | ||
73 | #define IFX_SPI_HEADER_F (-2) | ||
74 | |||
75 | /* forward reference */ | ||
76 | static void ifx_spi_handle_srdy(struct ifx_spi_device *ifx_dev); | ||
77 | |||
78 | /* local variables */ | ||
79 | static int spi_b16 = 1; /* 8 or 16 bit word length */ | ||
80 | static struct tty_driver *tty_drv; | ||
81 | static struct ifx_spi_device *saved_ifx_dev; | ||
82 | static struct lock_class_key ifx_spi_key; | ||
83 | |||
84 | /* GPIO/GPE settings */ | ||
85 | |||
86 | /** | ||
87 | * mrdy_set_high - set MRDY GPIO | ||
88 | * @ifx: device we are controlling | ||
89 | * | ||
90 | */ | ||
91 | static inline void mrdy_set_high(struct ifx_spi_device *ifx) | ||
92 | { | ||
93 | gpio_set_value(ifx->gpio.mrdy, 1); | ||
94 | } | ||
95 | |||
96 | /** | ||
97 | * mrdy_set_low - clear MRDY GPIO | ||
98 | * @ifx: device we are controlling | ||
99 | * | ||
100 | */ | ||
101 | static inline void mrdy_set_low(struct ifx_spi_device *ifx) | ||
102 | { | ||
103 | gpio_set_value(ifx->gpio.mrdy, 0); | ||
104 | } | ||
105 | |||
106 | /** | ||
107 | * ifx_spi_power_state_set | ||
108 | * @ifx_dev: our SPI device | ||
109 | * @val: bits to set | ||
110 | * | ||
111 | * Set bit in power status and signal power system if status becomes non-0 | ||
112 | */ | ||
113 | static void | ||
114 | ifx_spi_power_state_set(struct ifx_spi_device *ifx_dev, unsigned char val) | ||
115 | { | ||
116 | unsigned long flags; | ||
117 | |||
118 | spin_lock_irqsave(&ifx_dev->power_lock, flags); | ||
119 | |||
120 | /* | ||
121 | * if power status is already non-0, just update, else | ||
122 | * tell power system | ||
123 | */ | ||
124 | if (!ifx_dev->power_status) | ||
125 | pm_runtime_get(&ifx_dev->spi_dev->dev); | ||
126 | ifx_dev->power_status |= val; | ||
127 | |||
128 | spin_unlock_irqrestore(&ifx_dev->power_lock, flags); | ||
129 | } | ||
130 | |||
131 | /** | ||
132 | * ifx_spi_power_state_clear - clear power bit | ||
133 | * @ifx_dev: our SPI device | ||
134 | * @val: bits to clear | ||
135 | * | ||
136 | * clear bit in power status and signal power system if status becomes 0 | ||
137 | */ | ||
138 | static void | ||
139 | ifx_spi_power_state_clear(struct ifx_spi_device *ifx_dev, unsigned char val) | ||
140 | { | ||
141 | unsigned long flags; | ||
142 | |||
143 | spin_lock_irqsave(&ifx_dev->power_lock, flags); | ||
144 | |||
145 | if (ifx_dev->power_status) { | ||
146 | ifx_dev->power_status &= ~val; | ||
147 | if (!ifx_dev->power_status) | ||
148 | pm_runtime_put(&ifx_dev->spi_dev->dev); | ||
149 | } | ||
150 | |||
151 | spin_unlock_irqrestore(&ifx_dev->power_lock, flags); | ||
152 | } | ||
153 | |||
154 | /** | ||
155 | * swap_buf | ||
156 | * @buf: our buffer | ||
157 | * @len : number of bytes (not words) in the buffer | ||
158 | * @end: end of buffer | ||
159 | * | ||
160 | * Swap the contents of a buffer into big endian format | ||
161 | */ | ||
162 | static inline void swap_buf(u16 *buf, int len, void *end) | ||
163 | { | ||
164 | int n; | ||
165 | |||
166 | len = ((len + 1) >> 1); | ||
167 | if ((void *)&buf[len] > end) { | ||
168 | pr_err("swap_buf: swap exceeds boundary (%p > %p)!", | ||
169 | &buf[len], end); | ||
170 | return; | ||
171 | } | ||
172 | for (n = 0; n < len; n++) { | ||
173 | *buf = cpu_to_be16(*buf); | ||
174 | buf++; | ||
175 | } | ||
176 | } | ||
177 | |||
178 | /** | ||
179 | * mrdy_assert - assert MRDY line | ||
180 | * @ifx_dev: our SPI device | ||
181 | * | ||
182 | * Assert mrdy and set timer to wait for SRDY interrupt, if SRDY is low | ||
183 | * now. | ||
184 | * | ||
185 | * FIXME: Can SRDY even go high as we are running this code ? | ||
186 | */ | ||
187 | static void mrdy_assert(struct ifx_spi_device *ifx_dev) | ||
188 | { | ||
189 | int val = gpio_get_value(ifx_dev->gpio.srdy); | ||
190 | if (!val) { | ||
191 | if (!test_and_set_bit(IFX_SPI_STATE_TIMER_PENDING, | ||
192 | &ifx_dev->flags)) { | ||
193 | ifx_dev->spi_timer.expires = | ||
194 | jiffies + IFX_SPI_TIMEOUT_SEC*HZ; | ||
195 | add_timer(&ifx_dev->spi_timer); | ||
196 | |||
197 | } | ||
198 | } | ||
199 | ifx_spi_power_state_set(ifx_dev, IFX_SPI_POWER_DATA_PENDING); | ||
200 | mrdy_set_high(ifx_dev); | ||
201 | } | ||
202 | |||
203 | /** | ||
204 | * ifx_spi_hangup - hang up an IFX device | ||
205 | * @ifx_dev: our SPI device | ||
206 | * | ||
207 | * Hang up the tty attached to the IFX device if one is currently | ||
208 | * open. If not take no action | ||
209 | */ | ||
210 | static void ifx_spi_ttyhangup(struct ifx_spi_device *ifx_dev) | ||
211 | { | ||
212 | struct tty_port *pport = &ifx_dev->tty_port; | ||
213 | struct tty_struct *tty = tty_port_tty_get(pport); | ||
214 | if (tty) { | ||
215 | tty_hangup(tty); | ||
216 | tty_kref_put(tty); | ||
217 | } | ||
218 | } | ||
219 | |||
220 | /** | ||
221 | * ifx_spi_timeout - SPI timeout | ||
222 | * @arg: our SPI device | ||
223 | * | ||
224 | * The SPI has timed out: hang up the tty. Users will then see a hangup | ||
225 | * and error events. | ||
226 | */ | ||
227 | static void ifx_spi_timeout(unsigned long arg) | ||
228 | { | ||
229 | struct ifx_spi_device *ifx_dev = (struct ifx_spi_device *)arg; | ||
230 | |||
231 | dev_warn(&ifx_dev->spi_dev->dev, "*** SPI Timeout ***"); | ||
232 | ifx_spi_ttyhangup(ifx_dev); | ||
233 | mrdy_set_low(ifx_dev); | ||
234 | clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags); | ||
235 | } | ||
236 | |||
237 | /* char/tty operations */ | ||
238 | |||
239 | /** | ||
240 | * ifx_spi_tiocmget - get modem lines | ||
241 | * @tty: our tty device | ||
242 | * @filp: file handle issuing the request | ||
243 | * | ||
244 | * Map the signal state into Linux modem flags and report the value | ||
245 | * in Linux terms | ||
246 | */ | ||
247 | static int ifx_spi_tiocmget(struct tty_struct *tty, struct file *filp) | ||
248 | { | ||
249 | unsigned int value; | ||
250 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
251 | |||
252 | value = | ||
253 | (test_bit(IFX_SPI_RTS, &ifx_dev->signal_state) ? TIOCM_RTS : 0) | | ||
254 | (test_bit(IFX_SPI_DTR, &ifx_dev->signal_state) ? TIOCM_DTR : 0) | | ||
255 | (test_bit(IFX_SPI_CTS, &ifx_dev->signal_state) ? TIOCM_CTS : 0) | | ||
256 | (test_bit(IFX_SPI_DSR, &ifx_dev->signal_state) ? TIOCM_DSR : 0) | | ||
257 | (test_bit(IFX_SPI_DCD, &ifx_dev->signal_state) ? TIOCM_CAR : 0) | | ||
258 | (test_bit(IFX_SPI_RI, &ifx_dev->signal_state) ? TIOCM_RNG : 0); | ||
259 | return value; | ||
260 | } | ||
261 | |||
262 | /** | ||
263 | * ifx_spi_tiocmset - set modem bits | ||
264 | * @tty: the tty structure | ||
265 | * @filp: file handle issuing the request | ||
266 | * @set: bits to set | ||
267 | * @clear: bits to clear | ||
268 | * | ||
269 | * The IFX6x60 only supports DTR and RTS. Set them accordingly | ||
270 | * and flag that an update to the modem is needed. | ||
271 | * | ||
272 | * FIXME: do we need to kick the tranfers when we do this ? | ||
273 | */ | ||
274 | static int ifx_spi_tiocmset(struct tty_struct *tty, struct file *filp, | ||
275 | unsigned int set, unsigned int clear) | ||
276 | { | ||
277 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
278 | |||
279 | if (set & TIOCM_RTS) | ||
280 | set_bit(IFX_SPI_RTS, &ifx_dev->signal_state); | ||
281 | if (set & TIOCM_DTR) | ||
282 | set_bit(IFX_SPI_DTR, &ifx_dev->signal_state); | ||
283 | if (clear & TIOCM_RTS) | ||
284 | clear_bit(IFX_SPI_RTS, &ifx_dev->signal_state); | ||
285 | if (clear & TIOCM_DTR) | ||
286 | clear_bit(IFX_SPI_DTR, &ifx_dev->signal_state); | ||
287 | |||
288 | set_bit(IFX_SPI_UPDATE, &ifx_dev->signal_state); | ||
289 | return 0; | ||
290 | } | ||
291 | |||
292 | /** | ||
293 | * ifx_spi_open - called on tty open | ||
294 | * @tty: our tty device | ||
295 | * @filp: file handle being associated with the tty | ||
296 | * | ||
297 | * Open the tty interface. We let the tty_port layer do all the work | ||
298 | * for us. | ||
299 | * | ||
300 | * FIXME: Remove single device assumption and saved_ifx_dev | ||
301 | */ | ||
302 | static int ifx_spi_open(struct tty_struct *tty, struct file *filp) | ||
303 | { | ||
304 | return tty_port_open(&saved_ifx_dev->tty_port, tty, filp); | ||
305 | } | ||
306 | |||
307 | /** | ||
308 | * ifx_spi_close - called when our tty closes | ||
309 | * @tty: the tty being closed | ||
310 | * @filp: the file handle being closed | ||
311 | * | ||
312 | * Perform the close of the tty. We use the tty_port layer to do all | ||
313 | * our hard work. | ||
314 | */ | ||
315 | static void ifx_spi_close(struct tty_struct *tty, struct file *filp) | ||
316 | { | ||
317 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
318 | tty_port_close(&ifx_dev->tty_port, tty, filp); | ||
319 | /* FIXME: should we do an ifx_spi_reset here ? */ | ||
320 | } | ||
321 | |||
322 | /** | ||
323 | * ifx_decode_spi_header - decode received header | ||
324 | * @buffer: the received data | ||
325 | * @length: decoded length | ||
326 | * @more: decoded more flag | ||
327 | * @received_cts: status of cts we received | ||
328 | * | ||
329 | * Note how received_cts is handled -- if header is all F it is left | ||
330 | * the same as it was, if header is all 0 it is set to 0 otherwise it is | ||
331 | * taken from the incoming header. | ||
332 | * | ||
333 | * FIXME: endianness | ||
334 | */ | ||
335 | static int ifx_spi_decode_spi_header(unsigned char *buffer, int *length, | ||
336 | unsigned char *more, unsigned char *received_cts) | ||
337 | { | ||
338 | u16 h1; | ||
339 | u16 h2; | ||
340 | u16 *in_buffer = (u16 *)buffer; | ||
341 | |||
342 | h1 = *in_buffer; | ||
343 | h2 = *(in_buffer+1); | ||
344 | |||
345 | if (h1 == 0 && h2 == 0) { | ||
346 | *received_cts = 0; | ||
347 | return IFX_SPI_HEADER_0; | ||
348 | } else if (h1 == 0xffff && h2 == 0xffff) { | ||
349 | /* spi_slave_cts remains as it was */ | ||
350 | return IFX_SPI_HEADER_F; | ||
351 | } | ||
352 | |||
353 | *length = h1 & 0xfff; /* upper bits of byte are flags */ | ||
354 | *more = (buffer[1] >> IFX_SPI_MORE_BIT) & 1; | ||
355 | *received_cts = (buffer[3] >> IFX_SPI_CTS_BIT) & 1; | ||
356 | return 0; | ||
357 | } | ||
358 | |||
359 | /** | ||
360 | * ifx_setup_spi_header - set header fields | ||
361 | * @txbuffer: pointer to start of SPI buffer | ||
362 | * @tx_count: bytes | ||
363 | * @more: indicate if more to follow | ||
364 | * | ||
365 | * Format up an SPI header for a transfer | ||
366 | * | ||
367 | * FIXME: endianness? | ||
368 | */ | ||
369 | static void ifx_spi_setup_spi_header(unsigned char *txbuffer, int tx_count, | ||
370 | unsigned char more) | ||
371 | { | ||
372 | *(u16 *)(txbuffer) = tx_count; | ||
373 | *(u16 *)(txbuffer+2) = IFX_SPI_PAYLOAD_SIZE; | ||
374 | txbuffer[1] |= (more << IFX_SPI_MORE_BIT) & IFX_SPI_MORE_MASK; | ||
375 | } | ||
376 | |||
377 | /** | ||
378 | * ifx_spi_wakeup_serial - SPI space made | ||
379 | * @port_data: our SPI device | ||
380 | * | ||
381 | * We have emptied the FIFO enough that we want to get more data | ||
382 | * queued into it. Poke the line discipline via tty_wakeup so that | ||
383 | * it will feed us more bits | ||
384 | */ | ||
385 | static void ifx_spi_wakeup_serial(struct ifx_spi_device *ifx_dev) | ||
386 | { | ||
387 | struct tty_struct *tty; | ||
388 | |||
389 | tty = tty_port_tty_get(&ifx_dev->tty_port); | ||
390 | if (!tty) | ||
391 | return; | ||
392 | tty_wakeup(tty); | ||
393 | tty_kref_put(tty); | ||
394 | } | ||
395 | |||
396 | /** | ||
397 | * ifx_spi_prepare_tx_buffer - prepare transmit frame | ||
398 | * @ifx_dev: our SPI device | ||
399 | * | ||
400 | * The transmit buffr needs a header and various other bits of | ||
401 | * information followed by as much data as we can pull from the FIFO | ||
402 | * and transfer. This function formats up a suitable buffer in the | ||
403 | * ifx_dev->tx_buffer | ||
404 | * | ||
405 | * FIXME: performance - should we wake the tty when the queue is half | ||
406 | * empty ? | ||
407 | */ | ||
408 | static int ifx_spi_prepare_tx_buffer(struct ifx_spi_device *ifx_dev) | ||
409 | { | ||
410 | int temp_count; | ||
411 | int queue_length; | ||
412 | int tx_count; | ||
413 | unsigned char *tx_buffer; | ||
414 | |||
415 | tx_buffer = ifx_dev->tx_buffer; | ||
416 | memset(tx_buffer, 0, IFX_SPI_TRANSFER_SIZE); | ||
417 | |||
418 | /* make room for required SPI header */ | ||
419 | tx_buffer += IFX_SPI_HEADER_OVERHEAD; | ||
420 | tx_count = IFX_SPI_HEADER_OVERHEAD; | ||
421 | |||
422 | /* clear to signal no more data if this turns out to be the | ||
423 | * last buffer sent in a sequence */ | ||
424 | ifx_dev->spi_more = 0; | ||
425 | |||
426 | /* if modem cts is set, just send empty buffer */ | ||
427 | if (!ifx_dev->spi_slave_cts) { | ||
428 | /* see if there's tx data */ | ||
429 | queue_length = kfifo_len(&ifx_dev->tx_fifo); | ||
430 | if (queue_length != 0) { | ||
431 | /* data to mux -- see if there's room for it */ | ||
432 | temp_count = min(queue_length, IFX_SPI_PAYLOAD_SIZE); | ||
433 | temp_count = kfifo_out_locked(&ifx_dev->tx_fifo, | ||
434 | tx_buffer, temp_count, | ||
435 | &ifx_dev->fifo_lock); | ||
436 | |||
437 | /* update buffer pointer and data count in message */ | ||
438 | tx_buffer += temp_count; | ||
439 | tx_count += temp_count; | ||
440 | if (temp_count == queue_length) | ||
441 | /* poke port to get more data */ | ||
442 | ifx_spi_wakeup_serial(ifx_dev); | ||
443 | else /* more data in port, use next SPI message */ | ||
444 | ifx_dev->spi_more = 1; | ||
445 | } | ||
446 | } | ||
447 | /* have data and info for header -- set up SPI header in buffer */ | ||
448 | /* spi header needs payload size, not entire buffer size */ | ||
449 | ifx_spi_setup_spi_header(ifx_dev->tx_buffer, | ||
450 | tx_count-IFX_SPI_HEADER_OVERHEAD, | ||
451 | ifx_dev->spi_more); | ||
452 | /* swap actual data in the buffer */ | ||
453 | swap_buf((u16 *)(ifx_dev->tx_buffer), tx_count, | ||
454 | &ifx_dev->tx_buffer[IFX_SPI_TRANSFER_SIZE]); | ||
455 | return tx_count; | ||
456 | } | ||
457 | |||
458 | /** | ||
459 | * ifx_spi_write - line discipline write | ||
460 | * @tty: our tty device | ||
461 | * @buf: pointer to buffer to write (kernel space) | ||
462 | * @count: size of buffer | ||
463 | * | ||
464 | * Write the characters we have been given into the FIFO. If the device | ||
465 | * is not active then activate it, when the SRDY line is asserted back | ||
466 | * this will commence I/O | ||
467 | */ | ||
468 | static int ifx_spi_write(struct tty_struct *tty, const unsigned char *buf, | ||
469 | int count) | ||
470 | { | ||
471 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
472 | unsigned char *tmp_buf = (unsigned char *)buf; | ||
473 | int tx_count = kfifo_in_locked(&ifx_dev->tx_fifo, tmp_buf, count, | ||
474 | &ifx_dev->fifo_lock); | ||
475 | mrdy_assert(ifx_dev); | ||
476 | return tx_count; | ||
477 | } | ||
478 | |||
479 | /** | ||
480 | * ifx_spi_chars_in_buffer - line discipline helper | ||
481 | * @tty: our tty device | ||
482 | * | ||
483 | * Report how much data we can accept before we drop bytes. As we use | ||
484 | * a simple FIFO this is nice and easy. | ||
485 | */ | ||
486 | static int ifx_spi_write_room(struct tty_struct *tty) | ||
487 | { | ||
488 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
489 | return IFX_SPI_FIFO_SIZE - kfifo_len(&ifx_dev->tx_fifo); | ||
490 | } | ||
491 | |||
492 | /** | ||
493 | * ifx_spi_chars_in_buffer - line discipline helper | ||
494 | * @tty: our tty device | ||
495 | * | ||
496 | * Report how many characters we have buffered. In our case this is the | ||
497 | * number of bytes sitting in our transmit FIFO. | ||
498 | */ | ||
499 | static int ifx_spi_chars_in_buffer(struct tty_struct *tty) | ||
500 | { | ||
501 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
502 | return kfifo_len(&ifx_dev->tx_fifo); | ||
503 | } | ||
504 | |||
505 | /** | ||
506 | * ifx_port_hangup | ||
507 | * @port: our tty port | ||
508 | * | ||
509 | * tty port hang up. Called when tty_hangup processing is invoked either | ||
510 | * by loss of carrier, or by software (eg vhangup). Serialized against | ||
511 | * activate/shutdown by the tty layer. | ||
512 | */ | ||
513 | static void ifx_spi_hangup(struct tty_struct *tty) | ||
514 | { | ||
515 | struct ifx_spi_device *ifx_dev = tty->driver_data; | ||
516 | tty_port_hangup(&ifx_dev->tty_port); | ||
517 | } | ||
518 | |||
519 | /** | ||
520 | * ifx_port_activate | ||
521 | * @port: our tty port | ||
522 | * | ||
523 | * tty port activate method - called for first open. Serialized | ||
524 | * with hangup and shutdown by the tty layer. | ||
525 | */ | ||
526 | static int ifx_port_activate(struct tty_port *port, struct tty_struct *tty) | ||
527 | { | ||
528 | struct ifx_spi_device *ifx_dev = | ||
529 | container_of(port, struct ifx_spi_device, tty_port); | ||
530 | |||
531 | /* clear any old data; can't do this in 'close' */ | ||
532 | kfifo_reset(&ifx_dev->tx_fifo); | ||
533 | |||
534 | /* put port data into this tty */ | ||
535 | tty->driver_data = ifx_dev; | ||
536 | |||
537 | /* allows flip string push from int context */ | ||
538 | tty->low_latency = 1; | ||
539 | |||
540 | return 0; | ||
541 | } | ||
542 | |||
543 | /** | ||
544 | * ifx_port_shutdown | ||
545 | * @port: our tty port | ||
546 | * | ||
547 | * tty port shutdown method - called for last port close. Serialized | ||
548 | * with hangup and activate by the tty layer. | ||
549 | */ | ||
550 | static void ifx_port_shutdown(struct tty_port *port) | ||
551 | { | ||
552 | struct ifx_spi_device *ifx_dev = | ||
553 | container_of(port, struct ifx_spi_device, tty_port); | ||
554 | |||
555 | mrdy_set_low(ifx_dev); | ||
556 | clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags); | ||
557 | tasklet_kill(&ifx_dev->io_work_tasklet); | ||
558 | } | ||
559 | |||
560 | static const struct tty_port_operations ifx_tty_port_ops = { | ||
561 | .activate = ifx_port_activate, | ||
562 | .shutdown = ifx_port_shutdown, | ||
563 | }; | ||
564 | |||
565 | static const struct tty_operations ifx_spi_serial_ops = { | ||
566 | .open = ifx_spi_open, | ||
567 | .close = ifx_spi_close, | ||
568 | .write = ifx_spi_write, | ||
569 | .hangup = ifx_spi_hangup, | ||
570 | .write_room = ifx_spi_write_room, | ||
571 | .chars_in_buffer = ifx_spi_chars_in_buffer, | ||
572 | .tiocmget = ifx_spi_tiocmget, | ||
573 | .tiocmset = ifx_spi_tiocmset, | ||
574 | }; | ||
575 | |||
576 | /** | ||
577 | * ifx_spi_insert_fip_string - queue received data | ||
578 | * @ifx_ser: our SPI device | ||
579 | * @chars: buffer we have received | ||
580 | * @size: number of chars reeived | ||
581 | * | ||
582 | * Queue bytes to the tty assuming the tty side is currently open. If | ||
583 | * not the discard the data. | ||
584 | */ | ||
585 | static void ifx_spi_insert_flip_string(struct ifx_spi_device *ifx_dev, | ||
586 | unsigned char *chars, size_t size) | ||
587 | { | ||
588 | struct tty_struct *tty = tty_port_tty_get(&ifx_dev->tty_port); | ||
589 | if (!tty) | ||
590 | return; | ||
591 | tty_insert_flip_string(tty, chars, size); | ||
592 | tty_flip_buffer_push(tty); | ||
593 | tty_kref_put(tty); | ||
594 | } | ||
595 | |||
596 | /** | ||
597 | * ifx_spi_complete - SPI transfer completed | ||
598 | * @ctx: our SPI device | ||
599 | * | ||
600 | * An SPI transfer has completed. Process any received data and kick off | ||
601 | * any further transmits we can commence. | ||
602 | */ | ||
603 | static void ifx_spi_complete(void *ctx) | ||
604 | { | ||
605 | struct ifx_spi_device *ifx_dev = ctx; | ||
606 | struct tty_struct *tty; | ||
607 | struct tty_ldisc *ldisc = NULL; | ||
608 | int length; | ||
609 | int actual_length; | ||
610 | unsigned char more; | ||
611 | unsigned char cts; | ||
612 | int local_write_pending = 0; | ||
613 | int queue_length; | ||
614 | int srdy; | ||
615 | int decode_result; | ||
616 | |||
617 | mrdy_set_low(ifx_dev); | ||
618 | |||
619 | if (!ifx_dev->spi_msg.status) { | ||
620 | /* check header validity, get comm flags */ | ||
621 | swap_buf((u16 *)ifx_dev->rx_buffer, IFX_SPI_HEADER_OVERHEAD, | ||
622 | &ifx_dev->rx_buffer[IFX_SPI_HEADER_OVERHEAD]); | ||
623 | decode_result = ifx_spi_decode_spi_header(ifx_dev->rx_buffer, | ||
624 | &length, &more, &cts); | ||
625 | if (decode_result == IFX_SPI_HEADER_0) { | ||
626 | dev_dbg(&ifx_dev->spi_dev->dev, | ||
627 | "ignore input: invalid header 0"); | ||
628 | ifx_dev->spi_slave_cts = 0; | ||
629 | goto complete_exit; | ||
630 | } else if (decode_result == IFX_SPI_HEADER_F) { | ||
631 | dev_dbg(&ifx_dev->spi_dev->dev, | ||
632 | "ignore input: invalid header F"); | ||
633 | goto complete_exit; | ||
634 | } | ||
635 | |||
636 | ifx_dev->spi_slave_cts = cts; | ||
637 | |||
638 | actual_length = min((unsigned int)length, | ||
639 | ifx_dev->spi_msg.actual_length); | ||
640 | swap_buf((u16 *)(ifx_dev->rx_buffer + IFX_SPI_HEADER_OVERHEAD), | ||
641 | actual_length, | ||
642 | &ifx_dev->rx_buffer[IFX_SPI_TRANSFER_SIZE]); | ||
643 | ifx_spi_insert_flip_string( | ||
644 | ifx_dev, | ||
645 | ifx_dev->rx_buffer + IFX_SPI_HEADER_OVERHEAD, | ||
646 | (size_t)actual_length); | ||
647 | } else { | ||
648 | dev_dbg(&ifx_dev->spi_dev->dev, "SPI transfer error %d", | ||
649 | ifx_dev->spi_msg.status); | ||
650 | } | ||
651 | |||
652 | complete_exit: | ||
653 | if (ifx_dev->write_pending) { | ||
654 | ifx_dev->write_pending = 0; | ||
655 | local_write_pending = 1; | ||
656 | } | ||
657 | |||
658 | clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &(ifx_dev->flags)); | ||
659 | |||
660 | queue_length = kfifo_len(&ifx_dev->tx_fifo); | ||
661 | srdy = gpio_get_value(ifx_dev->gpio.srdy); | ||
662 | if (!srdy) | ||
663 | ifx_spi_power_state_clear(ifx_dev, IFX_SPI_POWER_SRDY); | ||
664 | |||
665 | /* schedule output if there is more to do */ | ||
666 | if (test_and_clear_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags)) | ||
667 | tasklet_schedule(&ifx_dev->io_work_tasklet); | ||
668 | else { | ||
669 | if (more || ifx_dev->spi_more || queue_length > 0 || | ||
670 | local_write_pending) { | ||
671 | if (ifx_dev->spi_slave_cts) { | ||
672 | if (more) | ||
673 | mrdy_assert(ifx_dev); | ||
674 | } else | ||
675 | mrdy_assert(ifx_dev); | ||
676 | } else { | ||
677 | /* | ||
678 | * poke line discipline driver if any for more data | ||
679 | * may or may not get more data to write | ||
680 | * for now, say not busy | ||
681 | */ | ||
682 | ifx_spi_power_state_clear(ifx_dev, | ||
683 | IFX_SPI_POWER_DATA_PENDING); | ||
684 | tty = tty_port_tty_get(&ifx_dev->tty_port); | ||
685 | if (tty) { | ||
686 | ldisc = tty_ldisc_ref(tty); | ||
687 | if (ldisc) { | ||
688 | ldisc->ops->write_wakeup(tty); | ||
689 | tty_ldisc_deref(ldisc); | ||
690 | } | ||
691 | tty_kref_put(tty); | ||
692 | } | ||
693 | } | ||
694 | } | ||
695 | } | ||
696 | |||
697 | /** | ||
698 | * ifx_spio_io - I/O tasklet | ||
699 | * @data: our SPI device | ||
700 | * | ||
701 | * Queue data for transmission if possible and then kick off the | ||
702 | * transfer. | ||
703 | */ | ||
704 | static void ifx_spi_io(unsigned long data) | ||
705 | { | ||
706 | int retval; | ||
707 | struct ifx_spi_device *ifx_dev = (struct ifx_spi_device *) data; | ||
708 | |||
709 | if (!test_and_set_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags)) { | ||
710 | if (ifx_dev->gpio.unack_srdy_int_nb > 0) | ||
711 | ifx_dev->gpio.unack_srdy_int_nb--; | ||
712 | |||
713 | ifx_spi_prepare_tx_buffer(ifx_dev); | ||
714 | |||
715 | spi_message_init(&ifx_dev->spi_msg); | ||
716 | INIT_LIST_HEAD(&ifx_dev->spi_msg.queue); | ||
717 | |||
718 | ifx_dev->spi_msg.context = ifx_dev; | ||
719 | ifx_dev->spi_msg.complete = ifx_spi_complete; | ||
720 | |||
721 | /* set up our spi transfer */ | ||
722 | /* note len is BYTES, not transfers */ | ||
723 | ifx_dev->spi_xfer.len = IFX_SPI_TRANSFER_SIZE; | ||
724 | ifx_dev->spi_xfer.cs_change = 0; | ||
725 | ifx_dev->spi_xfer.speed_hz = 12500000; | ||
726 | /* ifx_dev->spi_xfer.speed_hz = 390625; */ | ||
727 | ifx_dev->spi_xfer.bits_per_word = spi_b16 ? 16 : 8; | ||
728 | |||
729 | ifx_dev->spi_xfer.tx_buf = ifx_dev->tx_buffer; | ||
730 | ifx_dev->spi_xfer.rx_buf = ifx_dev->rx_buffer; | ||
731 | |||
732 | /* | ||
733 | * setup dma pointers | ||
734 | */ | ||
735 | if (ifx_dev->is_6160) { | ||
736 | ifx_dev->spi_msg.is_dma_mapped = 1; | ||
737 | ifx_dev->tx_dma = ifx_dev->tx_bus; | ||
738 | ifx_dev->rx_dma = ifx_dev->rx_bus; | ||
739 | ifx_dev->spi_xfer.tx_dma = ifx_dev->tx_dma; | ||
740 | ifx_dev->spi_xfer.rx_dma = ifx_dev->rx_dma; | ||
741 | } else { | ||
742 | ifx_dev->spi_msg.is_dma_mapped = 0; | ||
743 | ifx_dev->tx_dma = (dma_addr_t)0; | ||
744 | ifx_dev->rx_dma = (dma_addr_t)0; | ||
745 | ifx_dev->spi_xfer.tx_dma = (dma_addr_t)0; | ||
746 | ifx_dev->spi_xfer.rx_dma = (dma_addr_t)0; | ||
747 | } | ||
748 | |||
749 | spi_message_add_tail(&ifx_dev->spi_xfer, &ifx_dev->spi_msg); | ||
750 | |||
751 | /* Assert MRDY. This may have already been done by the write | ||
752 | * routine. | ||
753 | */ | ||
754 | mrdy_assert(ifx_dev); | ||
755 | |||
756 | retval = spi_async(ifx_dev->spi_dev, &ifx_dev->spi_msg); | ||
757 | if (retval) { | ||
758 | clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, | ||
759 | &ifx_dev->flags); | ||
760 | tasklet_schedule(&ifx_dev->io_work_tasklet); | ||
761 | return; | ||
762 | } | ||
763 | } else | ||
764 | ifx_dev->write_pending = 1; | ||
765 | } | ||
766 | |||
767 | /** | ||
768 | * ifx_spi_free_port - free up the tty side | ||
769 | * @ifx_dev: IFX device going away | ||
770 | * | ||
771 | * Unregister and free up a port when the device goes away | ||
772 | */ | ||
773 | static void ifx_spi_free_port(struct ifx_spi_device *ifx_dev) | ||
774 | { | ||
775 | if (ifx_dev->tty_dev) | ||
776 | tty_unregister_device(tty_drv, ifx_dev->minor); | ||
777 | kfifo_free(&ifx_dev->tx_fifo); | ||
778 | } | ||
779 | |||
780 | /** | ||
781 | * ifx_spi_create_port - create a new port | ||
782 | * @ifx_dev: our spi device | ||
783 | * | ||
784 | * Allocate and initialise the tty port that goes with this interface | ||
785 | * and add it to the tty layer so that it can be opened. | ||
786 | */ | ||
787 | static int ifx_spi_create_port(struct ifx_spi_device *ifx_dev) | ||
788 | { | ||
789 | int ret = 0; | ||
790 | struct tty_port *pport = &ifx_dev->tty_port; | ||
791 | |||
792 | spin_lock_init(&ifx_dev->fifo_lock); | ||
793 | lockdep_set_class_and_subclass(&ifx_dev->fifo_lock, | ||
794 | &ifx_spi_key, 0); | ||
795 | |||
796 | if (kfifo_alloc(&ifx_dev->tx_fifo, IFX_SPI_FIFO_SIZE, GFP_KERNEL)) { | ||
797 | ret = -ENOMEM; | ||
798 | goto error_ret; | ||
799 | } | ||
800 | |||
801 | pport->ops = &ifx_tty_port_ops; | ||
802 | tty_port_init(pport); | ||
803 | ifx_dev->minor = IFX_SPI_TTY_ID; | ||
804 | ifx_dev->tty_dev = tty_register_device(tty_drv, ifx_dev->minor, | ||
805 | &ifx_dev->spi_dev->dev); | ||
806 | if (IS_ERR(ifx_dev->tty_dev)) { | ||
807 | dev_dbg(&ifx_dev->spi_dev->dev, | ||
808 | "%s: registering tty device failed", __func__); | ||
809 | ret = PTR_ERR(ifx_dev->tty_dev); | ||
810 | goto error_ret; | ||
811 | } | ||
812 | return 0; | ||
813 | |||
814 | error_ret: | ||
815 | ifx_spi_free_port(ifx_dev); | ||
816 | return ret; | ||
817 | } | ||
818 | |||
819 | /** | ||
820 | * ifx_spi_handle_srdy - handle SRDY | ||
821 | * @ifx_dev: device asserting SRDY | ||
822 | * | ||
823 | * Check our device state and see what we need to kick off when SRDY | ||
824 | * is asserted. This usually means killing the timer and firing off the | ||
825 | * I/O processing. | ||
826 | */ | ||
827 | static void ifx_spi_handle_srdy(struct ifx_spi_device *ifx_dev) | ||
828 | { | ||
829 | if (test_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags)) { | ||
830 | del_timer_sync(&ifx_dev->spi_timer); | ||
831 | clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags); | ||
832 | } | ||
833 | |||
834 | ifx_spi_power_state_set(ifx_dev, IFX_SPI_POWER_SRDY); | ||
835 | |||
836 | if (!test_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags)) | ||
837 | tasklet_schedule(&ifx_dev->io_work_tasklet); | ||
838 | else | ||
839 | set_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags); | ||
840 | } | ||
841 | |||
842 | /** | ||
843 | * ifx_spi_srdy_interrupt - SRDY asserted | ||
844 | * @irq: our IRQ number | ||
845 | * @dev: our ifx device | ||
846 | * | ||
847 | * The modem asserted SRDY. Handle the srdy event | ||
848 | */ | ||
849 | static irqreturn_t ifx_spi_srdy_interrupt(int irq, void *dev) | ||
850 | { | ||
851 | struct ifx_spi_device *ifx_dev = dev; | ||
852 | ifx_dev->gpio.unack_srdy_int_nb++; | ||
853 | ifx_spi_handle_srdy(ifx_dev); | ||
854 | return IRQ_HANDLED; | ||
855 | } | ||
856 | |||
857 | /** | ||
858 | * ifx_spi_reset_interrupt - Modem has changed reset state | ||
859 | * @irq: interrupt number | ||
860 | * @dev: our device pointer | ||
861 | * | ||
862 | * The modem has either entered or left reset state. Check the GPIO | ||
863 | * line to see which. | ||
864 | * | ||
865 | * FIXME: review locking on MR_INPROGRESS versus | ||
866 | * parallel unsolicited reset/solicited reset | ||
867 | */ | ||
868 | static irqreturn_t ifx_spi_reset_interrupt(int irq, void *dev) | ||
869 | { | ||
870 | struct ifx_spi_device *ifx_dev = dev; | ||
871 | int val = gpio_get_value(ifx_dev->gpio.reset_out); | ||
872 | int solreset = test_bit(MR_START, &ifx_dev->mdm_reset_state); | ||
873 | |||
874 | if (val == 0) { | ||
875 | /* entered reset */ | ||
876 | set_bit(MR_INPROGRESS, &ifx_dev->mdm_reset_state); | ||
877 | if (!solreset) { | ||
878 | /* unsolicited reset */ | ||
879 | ifx_spi_ttyhangup(ifx_dev); | ||
880 | } | ||
881 | } else { | ||
882 | /* exited reset */ | ||
883 | clear_bit(MR_INPROGRESS, &ifx_dev->mdm_reset_state); | ||
884 | if (solreset) { | ||
885 | set_bit(MR_COMPLETE, &ifx_dev->mdm_reset_state); | ||
886 | wake_up(&ifx_dev->mdm_reset_wait); | ||
887 | } | ||
888 | } | ||
889 | return IRQ_HANDLED; | ||
890 | } | ||
891 | |||
892 | /** | ||
893 | * ifx_spi_free_device - free device | ||
894 | * @ifx_dev: device to free | ||
895 | * | ||
896 | * Free the IFX device | ||
897 | */ | ||
898 | static void ifx_spi_free_device(struct ifx_spi_device *ifx_dev) | ||
899 | { | ||
900 | ifx_spi_free_port(ifx_dev); | ||
901 | dma_free_coherent(&ifx_dev->spi_dev->dev, | ||
902 | IFX_SPI_TRANSFER_SIZE, | ||
903 | ifx_dev->tx_buffer, | ||
904 | ifx_dev->tx_bus); | ||
905 | dma_free_coherent(&ifx_dev->spi_dev->dev, | ||
906 | IFX_SPI_TRANSFER_SIZE, | ||
907 | ifx_dev->rx_buffer, | ||
908 | ifx_dev->rx_bus); | ||
909 | } | ||
910 | |||
911 | /** | ||
912 | * ifx_spi_reset - reset modem | ||
913 | * @ifx_dev: modem to reset | ||
914 | * | ||
915 | * Perform a reset on the modem | ||
916 | */ | ||
917 | static int ifx_spi_reset(struct ifx_spi_device *ifx_dev) | ||
918 | { | ||
919 | int ret; | ||
920 | /* | ||
921 | * set up modem power, reset | ||
922 | * | ||
923 | * delays are required on some platforms for the modem | ||
924 | * to reset properly | ||
925 | */ | ||
926 | set_bit(MR_START, &ifx_dev->mdm_reset_state); | ||
927 | gpio_set_value(ifx_dev->gpio.po, 0); | ||
928 | gpio_set_value(ifx_dev->gpio.reset, 0); | ||
929 | msleep(25); | ||
930 | gpio_set_value(ifx_dev->gpio.reset, 1); | ||
931 | msleep(1); | ||
932 | gpio_set_value(ifx_dev->gpio.po, 1); | ||
933 | msleep(1); | ||
934 | gpio_set_value(ifx_dev->gpio.po, 0); | ||
935 | ret = wait_event_timeout(ifx_dev->mdm_reset_wait, | ||
936 | test_bit(MR_COMPLETE, | ||
937 | &ifx_dev->mdm_reset_state), | ||
938 | IFX_RESET_TIMEOUT); | ||
939 | if (!ret) | ||
940 | dev_warn(&ifx_dev->spi_dev->dev, "Modem reset timeout: (state:%lx)", | ||
941 | ifx_dev->mdm_reset_state); | ||
942 | |||
943 | ifx_dev->mdm_reset_state = 0; | ||
944 | return ret; | ||
945 | } | ||
946 | |||
947 | /** | ||
948 | * ifx_spi_spi_probe - probe callback | ||
949 | * @spi: our possible matching SPI device | ||
950 | * | ||
951 | * Probe for a 6x60 modem on SPI bus. Perform any needed device and | ||
952 | * GPIO setup. | ||
953 | * | ||
954 | * FIXME: | ||
955 | * - Support for multiple devices | ||
956 | * - Split out MID specific GPIO handling eventually | ||
957 | */ | ||
958 | |||
959 | static int ifx_spi_spi_probe(struct spi_device *spi) | ||
960 | { | ||
961 | int ret; | ||
962 | int srdy; | ||
963 | struct ifx_modem_platform_data *pl_data = NULL; | ||
964 | struct ifx_spi_device *ifx_dev; | ||
965 | |||
966 | if (saved_ifx_dev) { | ||
967 | dev_dbg(&spi->dev, "ignoring subsequent detection"); | ||
968 | return -ENODEV; | ||
969 | } | ||
970 | |||
971 | /* initialize structure to hold our device variables */ | ||
972 | ifx_dev = kzalloc(sizeof(struct ifx_spi_device), GFP_KERNEL); | ||
973 | if (!ifx_dev) { | ||
974 | dev_err(&spi->dev, "spi device allocation failed"); | ||
975 | return -ENOMEM; | ||
976 | } | ||
977 | saved_ifx_dev = ifx_dev; | ||
978 | ifx_dev->spi_dev = spi; | ||
979 | clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags); | ||
980 | spin_lock_init(&ifx_dev->write_lock); | ||
981 | spin_lock_init(&ifx_dev->power_lock); | ||
982 | ifx_dev->power_status = 0; | ||
983 | init_timer(&ifx_dev->spi_timer); | ||
984 | ifx_dev->spi_timer.function = ifx_spi_timeout; | ||
985 | ifx_dev->spi_timer.data = (unsigned long)ifx_dev; | ||
986 | ifx_dev->is_6160 = pl_data->is_6160; | ||
987 | |||
988 | /* ensure SPI protocol flags are initialized to enable transfer */ | ||
989 | ifx_dev->spi_more = 0; | ||
990 | ifx_dev->spi_slave_cts = 0; | ||
991 | |||
992 | /*initialize transfer and dma buffers */ | ||
993 | ifx_dev->tx_buffer = dma_alloc_coherent(&ifx_dev->spi_dev->dev, | ||
994 | IFX_SPI_TRANSFER_SIZE, | ||
995 | &ifx_dev->tx_bus, | ||
996 | GFP_KERNEL); | ||
997 | if (!ifx_dev->tx_buffer) { | ||
998 | dev_err(&spi->dev, "DMA-TX buffer allocation failed"); | ||
999 | ret = -ENOMEM; | ||
1000 | goto error_ret; | ||
1001 | } | ||
1002 | ifx_dev->rx_buffer = dma_alloc_coherent(&ifx_dev->spi_dev->dev, | ||
1003 | IFX_SPI_TRANSFER_SIZE, | ||
1004 | &ifx_dev->rx_bus, | ||
1005 | GFP_KERNEL); | ||
1006 | if (!ifx_dev->rx_buffer) { | ||
1007 | dev_err(&spi->dev, "DMA-RX buffer allocation failed"); | ||
1008 | ret = -ENOMEM; | ||
1009 | goto error_ret; | ||
1010 | } | ||
1011 | |||
1012 | /* initialize waitq for modem reset */ | ||
1013 | init_waitqueue_head(&ifx_dev->mdm_reset_wait); | ||
1014 | |||
1015 | spi_set_drvdata(spi, ifx_dev); | ||
1016 | tasklet_init(&ifx_dev->io_work_tasklet, ifx_spi_io, | ||
1017 | (unsigned long)ifx_dev); | ||
1018 | |||
1019 | set_bit(IFX_SPI_STATE_PRESENT, &ifx_dev->flags); | ||
1020 | |||
1021 | /* create our tty port */ | ||
1022 | ret = ifx_spi_create_port(ifx_dev); | ||
1023 | if (ret != 0) { | ||
1024 | dev_err(&spi->dev, "create default tty port failed"); | ||
1025 | goto error_ret; | ||
1026 | } | ||
1027 | |||
1028 | pl_data = (struct ifx_modem_platform_data *)spi->dev.platform_data; | ||
1029 | if (pl_data) { | ||
1030 | ifx_dev->gpio.reset = pl_data->rst_pmu; | ||
1031 | ifx_dev->gpio.po = pl_data->pwr_on; | ||
1032 | ifx_dev->gpio.mrdy = pl_data->mrdy; | ||
1033 | ifx_dev->gpio.srdy = pl_data->srdy; | ||
1034 | ifx_dev->gpio.reset_out = pl_data->rst_out; | ||
1035 | } else { | ||
1036 | dev_err(&spi->dev, "missing platform data!"); | ||
1037 | ret = -ENODEV; | ||
1038 | goto error_ret; | ||
1039 | } | ||
1040 | |||
1041 | dev_info(&spi->dev, "gpios %d, %d, %d, %d, %d", | ||
1042 | ifx_dev->gpio.reset, ifx_dev->gpio.po, ifx_dev->gpio.mrdy, | ||
1043 | ifx_dev->gpio.srdy, ifx_dev->gpio.reset_out); | ||
1044 | |||
1045 | /* Configure gpios */ | ||
1046 | ret = gpio_request(ifx_dev->gpio.reset, "ifxModem"); | ||
1047 | if (ret < 0) { | ||
1048 | dev_err(&spi->dev, "Unable to allocate GPIO%d (RESET)", | ||
1049 | ifx_dev->gpio.reset); | ||
1050 | goto error_ret; | ||
1051 | } | ||
1052 | ret += gpio_direction_output(ifx_dev->gpio.reset, 0); | ||
1053 | ret += gpio_export(ifx_dev->gpio.reset, 1); | ||
1054 | if (ret) { | ||
1055 | dev_err(&spi->dev, "Unable to configure GPIO%d (RESET)", | ||
1056 | ifx_dev->gpio.reset); | ||
1057 | ret = -EBUSY; | ||
1058 | goto error_ret2; | ||
1059 | } | ||
1060 | |||
1061 | ret = gpio_request(ifx_dev->gpio.po, "ifxModem"); | ||
1062 | ret += gpio_direction_output(ifx_dev->gpio.po, 0); | ||
1063 | ret += gpio_export(ifx_dev->gpio.po, 1); | ||
1064 | if (ret) { | ||
1065 | dev_err(&spi->dev, "Unable to configure GPIO%d (ON)", | ||
1066 | ifx_dev->gpio.po); | ||
1067 | ret = -EBUSY; | ||
1068 | goto error_ret3; | ||
1069 | } | ||
1070 | |||
1071 | ret = gpio_request(ifx_dev->gpio.mrdy, "ifxModem"); | ||
1072 | if (ret < 0) { | ||
1073 | dev_err(&spi->dev, "Unable to allocate GPIO%d (MRDY)", | ||
1074 | ifx_dev->gpio.mrdy); | ||
1075 | goto error_ret3; | ||
1076 | } | ||
1077 | ret += gpio_export(ifx_dev->gpio.mrdy, 1); | ||
1078 | ret += gpio_direction_output(ifx_dev->gpio.mrdy, 0); | ||
1079 | if (ret) { | ||
1080 | dev_err(&spi->dev, "Unable to configure GPIO%d (MRDY)", | ||
1081 | ifx_dev->gpio.mrdy); | ||
1082 | ret = -EBUSY; | ||
1083 | goto error_ret4; | ||
1084 | } | ||
1085 | |||
1086 | ret = gpio_request(ifx_dev->gpio.srdy, "ifxModem"); | ||
1087 | if (ret < 0) { | ||
1088 | dev_err(&spi->dev, "Unable to allocate GPIO%d (SRDY)", | ||
1089 | ifx_dev->gpio.srdy); | ||
1090 | ret = -EBUSY; | ||
1091 | goto error_ret4; | ||
1092 | } | ||
1093 | ret += gpio_export(ifx_dev->gpio.srdy, 1); | ||
1094 | ret += gpio_direction_input(ifx_dev->gpio.srdy); | ||
1095 | if (ret) { | ||
1096 | dev_err(&spi->dev, "Unable to configure GPIO%d (SRDY)", | ||
1097 | ifx_dev->gpio.srdy); | ||
1098 | ret = -EBUSY; | ||
1099 | goto error_ret5; | ||
1100 | } | ||
1101 | |||
1102 | ret = gpio_request(ifx_dev->gpio.reset_out, "ifxModem"); | ||
1103 | if (ret < 0) { | ||
1104 | dev_err(&spi->dev, "Unable to allocate GPIO%d (RESET_OUT)", | ||
1105 | ifx_dev->gpio.reset_out); | ||
1106 | goto error_ret5; | ||
1107 | } | ||
1108 | ret += gpio_export(ifx_dev->gpio.reset_out, 1); | ||
1109 | ret += gpio_direction_input(ifx_dev->gpio.reset_out); | ||
1110 | if (ret) { | ||
1111 | dev_err(&spi->dev, "Unable to configure GPIO%d (RESET_OUT)", | ||
1112 | ifx_dev->gpio.reset_out); | ||
1113 | ret = -EBUSY; | ||
1114 | goto error_ret6; | ||
1115 | } | ||
1116 | |||
1117 | ret = request_irq(gpio_to_irq(ifx_dev->gpio.reset_out), | ||
1118 | ifx_spi_reset_interrupt, | ||
1119 | IRQF_TRIGGER_RISING|IRQF_TRIGGER_FALLING, DRVNAME, | ||
1120 | (void *)ifx_dev); | ||
1121 | if (ret) { | ||
1122 | dev_err(&spi->dev, "Unable to get irq %x\n", | ||
1123 | gpio_to_irq(ifx_dev->gpio.reset_out)); | ||
1124 | goto error_ret6; | ||
1125 | } | ||
1126 | |||
1127 | ret = ifx_spi_reset(ifx_dev); | ||
1128 | |||
1129 | ret = request_irq(gpio_to_irq(ifx_dev->gpio.srdy), | ||
1130 | ifx_spi_srdy_interrupt, | ||
1131 | IRQF_TRIGGER_RISING, DRVNAME, | ||
1132 | (void *)ifx_dev); | ||
1133 | if (ret) { | ||
1134 | dev_err(&spi->dev, "Unable to get irq %x", | ||
1135 | gpio_to_irq(ifx_dev->gpio.srdy)); | ||
1136 | goto error_ret7; | ||
1137 | } | ||
1138 | |||
1139 | /* set pm runtime power state and register with power system */ | ||
1140 | pm_runtime_set_active(&spi->dev); | ||
1141 | pm_runtime_enable(&spi->dev); | ||
1142 | |||
1143 | /* handle case that modem is already signaling SRDY */ | ||
1144 | /* no outgoing tty open at this point, this just satisfies the | ||
1145 | * modem's read and should reset communication properly | ||
1146 | */ | ||
1147 | srdy = gpio_get_value(ifx_dev->gpio.srdy); | ||
1148 | |||
1149 | if (srdy) { | ||
1150 | mrdy_assert(ifx_dev); | ||
1151 | ifx_spi_handle_srdy(ifx_dev); | ||
1152 | } else | ||
1153 | mrdy_set_low(ifx_dev); | ||
1154 | return 0; | ||
1155 | |||
1156 | error_ret7: | ||
1157 | free_irq(gpio_to_irq(ifx_dev->gpio.reset_out), (void *)ifx_dev); | ||
1158 | error_ret6: | ||
1159 | gpio_free(ifx_dev->gpio.srdy); | ||
1160 | error_ret5: | ||
1161 | gpio_free(ifx_dev->gpio.mrdy); | ||
1162 | error_ret4: | ||
1163 | gpio_free(ifx_dev->gpio.reset); | ||
1164 | error_ret3: | ||
1165 | gpio_free(ifx_dev->gpio.po); | ||
1166 | error_ret2: | ||
1167 | gpio_free(ifx_dev->gpio.reset_out); | ||
1168 | error_ret: | ||
1169 | ifx_spi_free_device(ifx_dev); | ||
1170 | saved_ifx_dev = NULL; | ||
1171 | return ret; | ||
1172 | } | ||
1173 | |||
1174 | /** | ||
1175 | * ifx_spi_spi_remove - SPI device was removed | ||
1176 | * @spi: SPI device | ||
1177 | * | ||
1178 | * FIXME: We should be shutting the device down here not in | ||
1179 | * the module unload path. | ||
1180 | */ | ||
1181 | |||
1182 | static int ifx_spi_spi_remove(struct spi_device *spi) | ||
1183 | { | ||
1184 | struct ifx_spi_device *ifx_dev = spi_get_drvdata(spi); | ||
1185 | /* stop activity */ | ||
1186 | tasklet_kill(&ifx_dev->io_work_tasklet); | ||
1187 | /* free irq */ | ||
1188 | free_irq(gpio_to_irq(ifx_dev->gpio.reset_out), (void *)ifx_dev); | ||
1189 | free_irq(gpio_to_irq(ifx_dev->gpio.srdy), (void *)ifx_dev); | ||
1190 | |||
1191 | gpio_free(ifx_dev->gpio.srdy); | ||
1192 | gpio_free(ifx_dev->gpio.mrdy); | ||
1193 | gpio_free(ifx_dev->gpio.reset); | ||
1194 | gpio_free(ifx_dev->gpio.po); | ||
1195 | gpio_free(ifx_dev->gpio.reset_out); | ||
1196 | |||
1197 | /* free allocations */ | ||
1198 | ifx_spi_free_device(ifx_dev); | ||
1199 | |||
1200 | saved_ifx_dev = NULL; | ||
1201 | return 0; | ||
1202 | } | ||
1203 | |||
1204 | /** | ||
1205 | * ifx_spi_spi_shutdown - called on SPI shutdown | ||
1206 | * @spi: SPI device | ||
1207 | * | ||
1208 | * No action needs to be taken here | ||
1209 | */ | ||
1210 | |||
1211 | static void ifx_spi_spi_shutdown(struct spi_device *spi) | ||
1212 | { | ||
1213 | } | ||
1214 | |||
1215 | /* | ||
1216 | * various suspends and resumes have nothing to do | ||
1217 | * no hardware to save state for | ||
1218 | */ | ||
1219 | |||
1220 | /** | ||
1221 | * ifx_spi_spi_suspend - suspend SPI on system suspend | ||
1222 | * @dev: device being suspended | ||
1223 | * | ||
1224 | * Suspend the SPI side. No action needed on Intel MID platforms, may | ||
1225 | * need extending for other systems. | ||
1226 | */ | ||
1227 | static int ifx_spi_spi_suspend(struct spi_device *spi, pm_message_t msg) | ||
1228 | { | ||
1229 | return 0; | ||
1230 | } | ||
1231 | |||
1232 | /** | ||
1233 | * ifx_spi_spi_resume - resume SPI side on system resume | ||
1234 | * @dev: device being suspended | ||
1235 | * | ||
1236 | * Suspend the SPI side. No action needed on Intel MID platforms, may | ||
1237 | * need extending for other systems. | ||
1238 | */ | ||
1239 | static int ifx_spi_spi_resume(struct spi_device *spi) | ||
1240 | { | ||
1241 | return 0; | ||
1242 | } | ||
1243 | |||
1244 | /** | ||
1245 | * ifx_spi_pm_suspend - suspend modem on system suspend | ||
1246 | * @dev: device being suspended | ||
1247 | * | ||
1248 | * Suspend the modem. No action needed on Intel MID platforms, may | ||
1249 | * need extending for other systems. | ||
1250 | */ | ||
1251 | static int ifx_spi_pm_suspend(struct device *dev) | ||
1252 | { | ||
1253 | return 0; | ||
1254 | } | ||
1255 | |||
1256 | /** | ||
1257 | * ifx_spi_pm_resume - resume modem on system resume | ||
1258 | * @dev: device being suspended | ||
1259 | * | ||
1260 | * Allow the modem to resume. No action needed. | ||
1261 | * | ||
1262 | * FIXME: do we need to reset anything here ? | ||
1263 | */ | ||
1264 | static int ifx_spi_pm_resume(struct device *dev) | ||
1265 | { | ||
1266 | return 0; | ||
1267 | } | ||
1268 | |||
1269 | /** | ||
1270 | * ifx_spi_pm_runtime_resume - suspend modem | ||
1271 | * @dev: device being suspended | ||
1272 | * | ||
1273 | * Allow the modem to resume. No action needed. | ||
1274 | */ | ||
1275 | static int ifx_spi_pm_runtime_resume(struct device *dev) | ||
1276 | { | ||
1277 | return 0; | ||
1278 | } | ||
1279 | |||
1280 | /** | ||
1281 | * ifx_spi_pm_runtime_suspend - suspend modem | ||
1282 | * @dev: device being suspended | ||
1283 | * | ||
1284 | * Allow the modem to suspend and thus suspend to continue up the | ||
1285 | * device tree. | ||
1286 | */ | ||
1287 | static int ifx_spi_pm_runtime_suspend(struct device *dev) | ||
1288 | { | ||
1289 | return 0; | ||
1290 | } | ||
1291 | |||
1292 | /** | ||
1293 | * ifx_spi_pm_runtime_idle - check if modem idle | ||
1294 | * @dev: our device | ||
1295 | * | ||
1296 | * Check conditions and queue runtime suspend if idle. | ||
1297 | */ | ||
1298 | static int ifx_spi_pm_runtime_idle(struct device *dev) | ||
1299 | { | ||
1300 | struct spi_device *spi = to_spi_device(dev); | ||
1301 | struct ifx_spi_device *ifx_dev = spi_get_drvdata(spi); | ||
1302 | |||
1303 | if (!ifx_dev->power_status) | ||
1304 | pm_runtime_suspend(dev); | ||
1305 | |||
1306 | return 0; | ||
1307 | } | ||
1308 | |||
1309 | static const struct dev_pm_ops ifx_spi_pm = { | ||
1310 | .resume = ifx_spi_pm_resume, | ||
1311 | .suspend = ifx_spi_pm_suspend, | ||
1312 | .runtime_resume = ifx_spi_pm_runtime_resume, | ||
1313 | .runtime_suspend = ifx_spi_pm_runtime_suspend, | ||
1314 | .runtime_idle = ifx_spi_pm_runtime_idle | ||
1315 | }; | ||
1316 | |||
1317 | static const struct spi_device_id ifx_id_table[] = { | ||
1318 | {"ifx6160", 0}, | ||
1319 | {"ifx6260", 0}, | ||
1320 | { } | ||
1321 | }; | ||
1322 | MODULE_DEVICE_TABLE(spi, ifx_id_table); | ||
1323 | |||
1324 | /* spi operations */ | ||
1325 | static const struct spi_driver ifx_spi_driver_6160 = { | ||
1326 | .driver = { | ||
1327 | .name = "ifx6160", | ||
1328 | .bus = &spi_bus_type, | ||
1329 | .pm = &ifx_spi_pm, | ||
1330 | .owner = THIS_MODULE}, | ||
1331 | .probe = ifx_spi_spi_probe, | ||
1332 | .shutdown = ifx_spi_spi_shutdown, | ||
1333 | .remove = __devexit_p(ifx_spi_spi_remove), | ||
1334 | .suspend = ifx_spi_spi_suspend, | ||
1335 | .resume = ifx_spi_spi_resume, | ||
1336 | .id_table = ifx_id_table | ||
1337 | }; | ||
1338 | |||
1339 | /** | ||
1340 | * ifx_spi_exit - module exit | ||
1341 | * | ||
1342 | * Unload the module. | ||
1343 | */ | ||
1344 | |||
1345 | static void __exit ifx_spi_exit(void) | ||
1346 | { | ||
1347 | /* unregister */ | ||
1348 | tty_unregister_driver(tty_drv); | ||
1349 | spi_unregister_driver((void *)&ifx_spi_driver_6160); | ||
1350 | } | ||
1351 | |||
1352 | /** | ||
1353 | * ifx_spi_init - module entry point | ||
1354 | * | ||
1355 | * Initialise the SPI and tty interfaces for the IFX SPI driver | ||
1356 | * We need to initialize upper-edge spi driver after the tty | ||
1357 | * driver because otherwise the spi probe will race | ||
1358 | */ | ||
1359 | |||
1360 | static int __init ifx_spi_init(void) | ||
1361 | { | ||
1362 | int result; | ||
1363 | |||
1364 | tty_drv = alloc_tty_driver(1); | ||
1365 | if (!tty_drv) { | ||
1366 | pr_err("%s: alloc_tty_driver failed", DRVNAME); | ||
1367 | return -ENOMEM; | ||
1368 | } | ||
1369 | |||
1370 | tty_drv->magic = TTY_DRIVER_MAGIC; | ||
1371 | tty_drv->owner = THIS_MODULE; | ||
1372 | tty_drv->driver_name = DRVNAME; | ||
1373 | tty_drv->name = TTYNAME; | ||
1374 | tty_drv->minor_start = IFX_SPI_TTY_ID; | ||
1375 | tty_drv->num = 1; | ||
1376 | tty_drv->type = TTY_DRIVER_TYPE_SERIAL; | ||
1377 | tty_drv->subtype = SERIAL_TYPE_NORMAL; | ||
1378 | tty_drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV; | ||
1379 | tty_drv->init_termios = tty_std_termios; | ||
1380 | |||
1381 | tty_set_operations(tty_drv, &ifx_spi_serial_ops); | ||
1382 | |||
1383 | result = tty_register_driver(tty_drv); | ||
1384 | if (result) { | ||
1385 | pr_err("%s: tty_register_driver failed(%d)", | ||
1386 | DRVNAME, result); | ||
1387 | put_tty_driver(tty_drv); | ||
1388 | return result; | ||
1389 | } | ||
1390 | |||
1391 | result = spi_register_driver((void *)&ifx_spi_driver_6160); | ||
1392 | if (result) { | ||
1393 | pr_err("%s: spi_register_driver failed(%d)", | ||
1394 | DRVNAME, result); | ||
1395 | tty_unregister_driver(tty_drv); | ||
1396 | } | ||
1397 | return result; | ||
1398 | } | ||
1399 | |||
1400 | module_init(ifx_spi_init); | ||
1401 | module_exit(ifx_spi_exit); | ||
1402 | |||
1403 | MODULE_AUTHOR("Intel"); | ||
1404 | MODULE_DESCRIPTION("IFX6x60 spi driver"); | ||
1405 | MODULE_LICENSE("GPL"); | ||
1406 | MODULE_INFO(Version, "0.1-IFX6x60"); | ||
diff --git a/drivers/serial/ifx6x60.h b/drivers/serial/ifx6x60.h new file mode 100644 index 000000000000..deb7b8d977dc --- /dev/null +++ b/drivers/serial/ifx6x60.h | |||
@@ -0,0 +1,129 @@ | |||
1 | /**************************************************************************** | ||
2 | * | ||
3 | * Driver for the IFX spi modem. | ||
4 | * | ||
5 | * Copyright (C) 2009, 2010 Intel Corp | ||
6 | * Jim Stanley <jim.stanley@intel.com> | ||
7 | * | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, | ||
21 | * USA | ||
22 | * | ||
23 | * | ||
24 | * | ||
25 | *****************************************************************************/ | ||
26 | #ifndef _IFX6X60_H | ||
27 | #define _IFX6X60_H | ||
28 | |||
29 | #define DRVNAME "ifx6x60" | ||
30 | #define TTYNAME "ttyIFX" | ||
31 | |||
32 | /* #define IFX_THROTTLE_CODE */ | ||
33 | |||
34 | #define IFX_SPI_MAX_MINORS 1 | ||
35 | #define IFX_SPI_TRANSFER_SIZE 2048 | ||
36 | #define IFX_SPI_FIFO_SIZE 4096 | ||
37 | |||
38 | #define IFX_SPI_HEADER_OVERHEAD 4 | ||
39 | #define IFX_RESET_TIMEOUT msecs_to_jiffies(50) | ||
40 | |||
41 | /* device flags bitfield definitions */ | ||
42 | #define IFX_SPI_STATE_PRESENT 0 | ||
43 | #define IFX_SPI_STATE_IO_IN_PROGRESS 1 | ||
44 | #define IFX_SPI_STATE_IO_READY 2 | ||
45 | #define IFX_SPI_STATE_TIMER_PENDING 3 | ||
46 | |||
47 | /* flow control bitfields */ | ||
48 | #define IFX_SPI_DCD 0 | ||
49 | #define IFX_SPI_CTS 1 | ||
50 | #define IFX_SPI_DSR 2 | ||
51 | #define IFX_SPI_RI 3 | ||
52 | #define IFX_SPI_DTR 4 | ||
53 | #define IFX_SPI_RTS 5 | ||
54 | #define IFX_SPI_TX_FC 6 | ||
55 | #define IFX_SPI_RX_FC 7 | ||
56 | #define IFX_SPI_UPDATE 8 | ||
57 | |||
58 | #define IFX_SPI_PAYLOAD_SIZE (IFX_SPI_TRANSFER_SIZE - \ | ||
59 | IFX_SPI_HEADER_OVERHEAD) | ||
60 | |||
61 | #define IFX_SPI_IRQ_TYPE DETECT_EDGE_RISING | ||
62 | #define IFX_SPI_GPIO_TARGET 0 | ||
63 | #define IFX_SPI_GPIO0 0x105 | ||
64 | |||
65 | #define IFX_SPI_STATUS_TIMEOUT (2000*HZ) | ||
66 | |||
67 | /* values for bits in power status byte */ | ||
68 | #define IFX_SPI_POWER_DATA_PENDING 1 | ||
69 | #define IFX_SPI_POWER_SRDY 2 | ||
70 | |||
71 | struct ifx_spi_device { | ||
72 | /* Our SPI device */ | ||
73 | struct spi_device *spi_dev; | ||
74 | |||
75 | /* Port specific data */ | ||
76 | struct kfifo tx_fifo; | ||
77 | spinlock_t fifo_lock; | ||
78 | unsigned long signal_state; | ||
79 | |||
80 | /* TTY Layer logic */ | ||
81 | struct tty_port tty_port; | ||
82 | struct device *tty_dev; | ||
83 | int minor; | ||
84 | |||
85 | /* Low level I/O work */ | ||
86 | struct tasklet_struct io_work_tasklet; | ||
87 | unsigned long flags; | ||
88 | dma_addr_t rx_dma; | ||
89 | dma_addr_t tx_dma; | ||
90 | |||
91 | int is_6160; /* Modem type */ | ||
92 | |||
93 | spinlock_t write_lock; | ||
94 | int write_pending; | ||
95 | spinlock_t power_lock; | ||
96 | unsigned char power_status; | ||
97 | |||
98 | unsigned char *rx_buffer; | ||
99 | unsigned char *tx_buffer; | ||
100 | dma_addr_t rx_bus; | ||
101 | dma_addr_t tx_bus; | ||
102 | unsigned char spi_more; | ||
103 | unsigned char spi_slave_cts; | ||
104 | |||
105 | struct timer_list spi_timer; | ||
106 | |||
107 | struct spi_message spi_msg; | ||
108 | struct spi_transfer spi_xfer; | ||
109 | |||
110 | struct { | ||
111 | /* gpio lines */ | ||
112 | unsigned short srdy; /* slave-ready gpio */ | ||
113 | unsigned short mrdy; /* master-ready gpio */ | ||
114 | unsigned short reset; /* modem-reset gpio */ | ||
115 | unsigned short po; /* modem-on gpio */ | ||
116 | unsigned short reset_out; /* modem-in-reset gpio */ | ||
117 | /* state/stats */ | ||
118 | int unack_srdy_int_nb; | ||
119 | } gpio; | ||
120 | |||
121 | /* modem reset */ | ||
122 | unsigned long mdm_reset_state; | ||
123 | #define MR_START 0 | ||
124 | #define MR_INPROGRESS 1 | ||
125 | #define MR_COMPLETE 2 | ||
126 | wait_queue_head_t mdm_reset_wait; | ||
127 | }; | ||
128 | |||
129 | #endif /* _IFX6X60_H */ | ||
diff --git a/drivers/serial/mpc52xx_uart.c b/drivers/serial/mpc52xx_uart.c index c4399e23565a..126ec7f568ec 100644 --- a/drivers/serial/mpc52xx_uart.c +++ b/drivers/serial/mpc52xx_uart.c | |||
@@ -838,7 +838,11 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, | |||
838 | static const char * | 838 | static const char * |
839 | mpc52xx_uart_type(struct uart_port *port) | 839 | mpc52xx_uart_type(struct uart_port *port) |
840 | { | 840 | { |
841 | return port->type == PORT_MPC52xx ? "MPC52xx PSC" : NULL; | 841 | /* |
842 | * We keep using PORT_MPC52xx for historic reasons although it applies | ||
843 | * for MPC512x, too, but print "MPC5xxx" to not irritate users | ||
844 | */ | ||
845 | return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL; | ||
842 | } | 846 | } |
843 | 847 | ||
844 | static void | 848 | static void |
diff --git a/drivers/serial/omap-serial.c b/drivers/serial/omap-serial.c index 1201eff1831e..7f2f01058789 100644 --- a/drivers/serial/omap-serial.c +++ b/drivers/serial/omap-serial.c | |||
@@ -866,12 +866,6 @@ serial_omap_type(struct uart_port *port) | |||
866 | return up->name; | 866 | return up->name; |
867 | } | 867 | } |
868 | 868 | ||
869 | #ifdef CONFIG_SERIAL_OMAP_CONSOLE | ||
870 | |||
871 | static struct uart_omap_port *serial_omap_console_ports[4]; | ||
872 | |||
873 | static struct uart_driver serial_omap_reg; | ||
874 | |||
875 | #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE) | 869 | #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE) |
876 | 870 | ||
877 | static inline void wait_for_xmitr(struct uart_omap_port *up) | 871 | static inline void wait_for_xmitr(struct uart_omap_port *up) |
@@ -905,6 +899,34 @@ static inline void wait_for_xmitr(struct uart_omap_port *up) | |||
905 | } | 899 | } |
906 | } | 900 | } |
907 | 901 | ||
902 | #ifdef CONFIG_CONSOLE_POLL | ||
903 | |||
904 | static void serial_omap_poll_put_char(struct uart_port *port, unsigned char ch) | ||
905 | { | ||
906 | struct uart_omap_port *up = (struct uart_omap_port *)port; | ||
907 | wait_for_xmitr(up); | ||
908 | serial_out(up, UART_TX, ch); | ||
909 | } | ||
910 | |||
911 | static int serial_omap_poll_get_char(struct uart_port *port) | ||
912 | { | ||
913 | struct uart_omap_port *up = (struct uart_omap_port *)port; | ||
914 | unsigned int status = serial_in(up, UART_LSR); | ||
915 | |||
916 | if (!(status & UART_LSR_DR)) | ||
917 | return NO_POLL_CHAR; | ||
918 | |||
919 | return serial_in(up, UART_RX); | ||
920 | } | ||
921 | |||
922 | #endif /* CONFIG_CONSOLE_POLL */ | ||
923 | |||
924 | #ifdef CONFIG_SERIAL_OMAP_CONSOLE | ||
925 | |||
926 | static struct uart_omap_port *serial_omap_console_ports[4]; | ||
927 | |||
928 | static struct uart_driver serial_omap_reg; | ||
929 | |||
908 | static void serial_omap_console_putchar(struct uart_port *port, int ch) | 930 | static void serial_omap_console_putchar(struct uart_port *port, int ch) |
909 | { | 931 | { |
910 | struct uart_omap_port *up = (struct uart_omap_port *)port; | 932 | struct uart_omap_port *up = (struct uart_omap_port *)port; |
@@ -1022,6 +1044,10 @@ static struct uart_ops serial_omap_pops = { | |||
1022 | .request_port = serial_omap_request_port, | 1044 | .request_port = serial_omap_request_port, |
1023 | .config_port = serial_omap_config_port, | 1045 | .config_port = serial_omap_config_port, |
1024 | .verify_port = serial_omap_verify_port, | 1046 | .verify_port = serial_omap_verify_port, |
1047 | #ifdef CONFIG_CONSOLE_POLL | ||
1048 | .poll_put_char = serial_omap_poll_put_char, | ||
1049 | .poll_get_char = serial_omap_poll_get_char, | ||
1050 | #endif | ||
1025 | }; | 1051 | }; |
1026 | 1052 | ||
1027 | static struct uart_driver serial_omap_reg = { | 1053 | static struct uart_driver serial_omap_reg = { |
diff --git a/drivers/serial/pch_uart.c b/drivers/serial/pch_uart.c new file mode 100644 index 000000000000..70a61458ec42 --- /dev/null +++ b/drivers/serial/pch_uart.c | |||
@@ -0,0 +1,1451 @@ | |||
1 | /* | ||
2 | *Copyright (C) 2010 OKI SEMICONDUCTOR CO., LTD. | ||
3 | * | ||
4 | *This program is free software; you can redistribute it and/or modify | ||
5 | *it under the terms of the GNU General Public License as published by | ||
6 | *the Free Software Foundation; version 2 of the License. | ||
7 | * | ||
8 | *This program is distributed in the hope that it will be useful, | ||
9 | *but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | *GNU General Public License for more details. | ||
12 | * | ||
13 | *You should have received a copy of the GNU General Public License | ||
14 | *along with this program; if not, write to the Free Software | ||
15 | *Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. | ||
16 | */ | ||
17 | #include <linux/serial_reg.h> | ||
18 | #include <linux/pci.h> | ||
19 | #include <linux/module.h> | ||
20 | #include <linux/pci.h> | ||
21 | #include <linux/serial_core.h> | ||
22 | #include <linux/interrupt.h> | ||
23 | #include <linux/io.h> | ||
24 | |||
25 | #include <linux/dmaengine.h> | ||
26 | #include <linux/pch_dma.h> | ||
27 | |||
28 | enum { | ||
29 | PCH_UART_HANDLED_RX_INT_SHIFT, | ||
30 | PCH_UART_HANDLED_TX_INT_SHIFT, | ||
31 | PCH_UART_HANDLED_RX_ERR_INT_SHIFT, | ||
32 | PCH_UART_HANDLED_RX_TRG_INT_SHIFT, | ||
33 | PCH_UART_HANDLED_MS_INT_SHIFT, | ||
34 | }; | ||
35 | |||
36 | enum { | ||
37 | PCH_UART_8LINE, | ||
38 | PCH_UART_2LINE, | ||
39 | }; | ||
40 | |||
41 | #define PCH_UART_DRIVER_DEVICE "ttyPCH" | ||
42 | |||
43 | #define PCH_UART_NR_GE_256FIFO 1 | ||
44 | #define PCH_UART_NR_GE_64FIFO 3 | ||
45 | #define PCH_UART_NR_GE (PCH_UART_NR_GE_256FIFO+PCH_UART_NR_GE_64FIFO) | ||
46 | #define PCH_UART_NR PCH_UART_NR_GE | ||
47 | |||
48 | #define PCH_UART_HANDLED_RX_INT (1<<((PCH_UART_HANDLED_RX_INT_SHIFT)<<1)) | ||
49 | #define PCH_UART_HANDLED_TX_INT (1<<((PCH_UART_HANDLED_TX_INT_SHIFT)<<1)) | ||
50 | #define PCH_UART_HANDLED_RX_ERR_INT (1<<((\ | ||
51 | PCH_UART_HANDLED_RX_ERR_INT_SHIFT)<<1)) | ||
52 | #define PCH_UART_HANDLED_RX_TRG_INT (1<<((\ | ||
53 | PCH_UART_HANDLED_RX_TRG_INT_SHIFT)<<1)) | ||
54 | #define PCH_UART_HANDLED_MS_INT (1<<((PCH_UART_HANDLED_MS_INT_SHIFT)<<1)) | ||
55 | |||
56 | #define PCH_UART_RBR 0x00 | ||
57 | #define PCH_UART_THR 0x00 | ||
58 | |||
59 | #define PCH_UART_IER_MASK (PCH_UART_IER_ERBFI|PCH_UART_IER_ETBEI|\ | ||
60 | PCH_UART_IER_ELSI|PCH_UART_IER_EDSSI) | ||
61 | #define PCH_UART_IER_ERBFI 0x00000001 | ||
62 | #define PCH_UART_IER_ETBEI 0x00000002 | ||
63 | #define PCH_UART_IER_ELSI 0x00000004 | ||
64 | #define PCH_UART_IER_EDSSI 0x00000008 | ||
65 | |||
66 | #define PCH_UART_IIR_IP 0x00000001 | ||
67 | #define PCH_UART_IIR_IID 0x00000006 | ||
68 | #define PCH_UART_IIR_MSI 0x00000000 | ||
69 | #define PCH_UART_IIR_TRI 0x00000002 | ||
70 | #define PCH_UART_IIR_RRI 0x00000004 | ||
71 | #define PCH_UART_IIR_REI 0x00000006 | ||
72 | #define PCH_UART_IIR_TOI 0x00000008 | ||
73 | #define PCH_UART_IIR_FIFO256 0x00000020 | ||
74 | #define PCH_UART_IIR_FIFO64 PCH_UART_IIR_FIFO256 | ||
75 | #define PCH_UART_IIR_FE 0x000000C0 | ||
76 | |||
77 | #define PCH_UART_FCR_FIFOE 0x00000001 | ||
78 | #define PCH_UART_FCR_RFR 0x00000002 | ||
79 | #define PCH_UART_FCR_TFR 0x00000004 | ||
80 | #define PCH_UART_FCR_DMS 0x00000008 | ||
81 | #define PCH_UART_FCR_FIFO256 0x00000020 | ||
82 | #define PCH_UART_FCR_RFTL 0x000000C0 | ||
83 | |||
84 | #define PCH_UART_FCR_RFTL1 0x00000000 | ||
85 | #define PCH_UART_FCR_RFTL64 0x00000040 | ||
86 | #define PCH_UART_FCR_RFTL128 0x00000080 | ||
87 | #define PCH_UART_FCR_RFTL224 0x000000C0 | ||
88 | #define PCH_UART_FCR_RFTL16 PCH_UART_FCR_RFTL64 | ||
89 | #define PCH_UART_FCR_RFTL32 PCH_UART_FCR_RFTL128 | ||
90 | #define PCH_UART_FCR_RFTL56 PCH_UART_FCR_RFTL224 | ||
91 | #define PCH_UART_FCR_RFTL4 PCH_UART_FCR_RFTL64 | ||
92 | #define PCH_UART_FCR_RFTL8 PCH_UART_FCR_RFTL128 | ||
93 | #define PCH_UART_FCR_RFTL14 PCH_UART_FCR_RFTL224 | ||
94 | #define PCH_UART_FCR_RFTL_SHIFT 6 | ||
95 | |||
96 | #define PCH_UART_LCR_WLS 0x00000003 | ||
97 | #define PCH_UART_LCR_STB 0x00000004 | ||
98 | #define PCH_UART_LCR_PEN 0x00000008 | ||
99 | #define PCH_UART_LCR_EPS 0x00000010 | ||
100 | #define PCH_UART_LCR_SP 0x00000020 | ||
101 | #define PCH_UART_LCR_SB 0x00000040 | ||
102 | #define PCH_UART_LCR_DLAB 0x00000080 | ||
103 | #define PCH_UART_LCR_NP 0x00000000 | ||
104 | #define PCH_UART_LCR_OP PCH_UART_LCR_PEN | ||
105 | #define PCH_UART_LCR_EP (PCH_UART_LCR_PEN | PCH_UART_LCR_EPS) | ||
106 | #define PCH_UART_LCR_1P (PCH_UART_LCR_PEN | PCH_UART_LCR_SP) | ||
107 | #define PCH_UART_LCR_0P (PCH_UART_LCR_PEN | PCH_UART_LCR_EPS |\ | ||
108 | PCH_UART_LCR_SP) | ||
109 | |||
110 | #define PCH_UART_LCR_5BIT 0x00000000 | ||
111 | #define PCH_UART_LCR_6BIT 0x00000001 | ||
112 | #define PCH_UART_LCR_7BIT 0x00000002 | ||
113 | #define PCH_UART_LCR_8BIT 0x00000003 | ||
114 | |||
115 | #define PCH_UART_MCR_DTR 0x00000001 | ||
116 | #define PCH_UART_MCR_RTS 0x00000002 | ||
117 | #define PCH_UART_MCR_OUT 0x0000000C | ||
118 | #define PCH_UART_MCR_LOOP 0x00000010 | ||
119 | #define PCH_UART_MCR_AFE 0x00000020 | ||
120 | |||
121 | #define PCH_UART_LSR_DR 0x00000001 | ||
122 | #define PCH_UART_LSR_ERR (1<<7) | ||
123 | |||
124 | #define PCH_UART_MSR_DCTS 0x00000001 | ||
125 | #define PCH_UART_MSR_DDSR 0x00000002 | ||
126 | #define PCH_UART_MSR_TERI 0x00000004 | ||
127 | #define PCH_UART_MSR_DDCD 0x00000008 | ||
128 | #define PCH_UART_MSR_CTS 0x00000010 | ||
129 | #define PCH_UART_MSR_DSR 0x00000020 | ||
130 | #define PCH_UART_MSR_RI 0x00000040 | ||
131 | #define PCH_UART_MSR_DCD 0x00000080 | ||
132 | #define PCH_UART_MSR_DELTA (PCH_UART_MSR_DCTS | PCH_UART_MSR_DDSR |\ | ||
133 | PCH_UART_MSR_TERI | PCH_UART_MSR_DDCD) | ||
134 | |||
135 | #define PCH_UART_DLL 0x00 | ||
136 | #define PCH_UART_DLM 0x01 | ||
137 | |||
138 | #define DIV_ROUND(a, b) (((a) + ((b)/2)) / (b)) | ||
139 | |||
140 | #define PCH_UART_IID_RLS (PCH_UART_IIR_REI) | ||
141 | #define PCH_UART_IID_RDR (PCH_UART_IIR_RRI) | ||
142 | #define PCH_UART_IID_RDR_TO (PCH_UART_IIR_RRI | PCH_UART_IIR_TOI) | ||
143 | #define PCH_UART_IID_THRE (PCH_UART_IIR_TRI) | ||
144 | #define PCH_UART_IID_MS (PCH_UART_IIR_MSI) | ||
145 | |||
146 | #define PCH_UART_HAL_PARITY_NONE (PCH_UART_LCR_NP) | ||
147 | #define PCH_UART_HAL_PARITY_ODD (PCH_UART_LCR_OP) | ||
148 | #define PCH_UART_HAL_PARITY_EVEN (PCH_UART_LCR_EP) | ||
149 | #define PCH_UART_HAL_PARITY_FIX1 (PCH_UART_LCR_1P) | ||
150 | #define PCH_UART_HAL_PARITY_FIX0 (PCH_UART_LCR_0P) | ||
151 | #define PCH_UART_HAL_5BIT (PCH_UART_LCR_5BIT) | ||
152 | #define PCH_UART_HAL_6BIT (PCH_UART_LCR_6BIT) | ||
153 | #define PCH_UART_HAL_7BIT (PCH_UART_LCR_7BIT) | ||
154 | #define PCH_UART_HAL_8BIT (PCH_UART_LCR_8BIT) | ||
155 | #define PCH_UART_HAL_STB1 0 | ||
156 | #define PCH_UART_HAL_STB2 (PCH_UART_LCR_STB) | ||
157 | |||
158 | #define PCH_UART_HAL_CLR_TX_FIFO (PCH_UART_FCR_TFR) | ||
159 | #define PCH_UART_HAL_CLR_RX_FIFO (PCH_UART_FCR_RFR) | ||
160 | #define PCH_UART_HAL_CLR_ALL_FIFO (PCH_UART_HAL_CLR_TX_FIFO | \ | ||
161 | PCH_UART_HAL_CLR_RX_FIFO) | ||
162 | |||
163 | #define PCH_UART_HAL_DMA_MODE0 0 | ||
164 | #define PCH_UART_HAL_FIFO_DIS 0 | ||
165 | #define PCH_UART_HAL_FIFO16 (PCH_UART_FCR_FIFOE) | ||
166 | #define PCH_UART_HAL_FIFO256 (PCH_UART_FCR_FIFOE | \ | ||
167 | PCH_UART_FCR_FIFO256) | ||
168 | #define PCH_UART_HAL_FIFO64 (PCH_UART_HAL_FIFO256) | ||
169 | #define PCH_UART_HAL_TRIGGER1 (PCH_UART_FCR_RFTL1) | ||
170 | #define PCH_UART_HAL_TRIGGER64 (PCH_UART_FCR_RFTL64) | ||
171 | #define PCH_UART_HAL_TRIGGER128 (PCH_UART_FCR_RFTL128) | ||
172 | #define PCH_UART_HAL_TRIGGER224 (PCH_UART_FCR_RFTL224) | ||
173 | #define PCH_UART_HAL_TRIGGER16 (PCH_UART_FCR_RFTL16) | ||
174 | #define PCH_UART_HAL_TRIGGER32 (PCH_UART_FCR_RFTL32) | ||
175 | #define PCH_UART_HAL_TRIGGER56 (PCH_UART_FCR_RFTL56) | ||
176 | #define PCH_UART_HAL_TRIGGER4 (PCH_UART_FCR_RFTL4) | ||
177 | #define PCH_UART_HAL_TRIGGER8 (PCH_UART_FCR_RFTL8) | ||
178 | #define PCH_UART_HAL_TRIGGER14 (PCH_UART_FCR_RFTL14) | ||
179 | #define PCH_UART_HAL_TRIGGER_L (PCH_UART_FCR_RFTL64) | ||
180 | #define PCH_UART_HAL_TRIGGER_M (PCH_UART_FCR_RFTL128) | ||
181 | #define PCH_UART_HAL_TRIGGER_H (PCH_UART_FCR_RFTL224) | ||
182 | |||
183 | #define PCH_UART_HAL_RX_INT (PCH_UART_IER_ERBFI) | ||
184 | #define PCH_UART_HAL_TX_INT (PCH_UART_IER_ETBEI) | ||
185 | #define PCH_UART_HAL_RX_ERR_INT (PCH_UART_IER_ELSI) | ||
186 | #define PCH_UART_HAL_MS_INT (PCH_UART_IER_EDSSI) | ||
187 | #define PCH_UART_HAL_ALL_INT (PCH_UART_IER_MASK) | ||
188 | |||
189 | #define PCH_UART_HAL_DTR (PCH_UART_MCR_DTR) | ||
190 | #define PCH_UART_HAL_RTS (PCH_UART_MCR_RTS) | ||
191 | #define PCH_UART_HAL_OUT (PCH_UART_MCR_OUT) | ||
192 | #define PCH_UART_HAL_LOOP (PCH_UART_MCR_LOOP) | ||
193 | #define PCH_UART_HAL_AFE (PCH_UART_MCR_AFE) | ||
194 | |||
195 | struct pch_uart_buffer { | ||
196 | unsigned char *buf; | ||
197 | int size; | ||
198 | }; | ||
199 | |||
200 | struct eg20t_port { | ||
201 | struct uart_port port; | ||
202 | int port_type; | ||
203 | void __iomem *membase; | ||
204 | resource_size_t mapbase; | ||
205 | unsigned int iobase; | ||
206 | struct pci_dev *pdev; | ||
207 | int fifo_size; | ||
208 | int base_baud; | ||
209 | int start_tx; | ||
210 | int start_rx; | ||
211 | int tx_empty; | ||
212 | int int_dis_flag; | ||
213 | int trigger; | ||
214 | int trigger_level; | ||
215 | struct pch_uart_buffer rxbuf; | ||
216 | unsigned int dmsr; | ||
217 | unsigned int fcr; | ||
218 | unsigned int use_dma; | ||
219 | unsigned int use_dma_flag; | ||
220 | struct dma_async_tx_descriptor *desc_tx; | ||
221 | struct dma_async_tx_descriptor *desc_rx; | ||
222 | struct pch_dma_slave param_tx; | ||
223 | struct pch_dma_slave param_rx; | ||
224 | struct dma_chan *chan_tx; | ||
225 | struct dma_chan *chan_rx; | ||
226 | struct scatterlist sg_tx; | ||
227 | struct scatterlist sg_rx; | ||
228 | int tx_dma_use; | ||
229 | void *rx_buf_virt; | ||
230 | dma_addr_t rx_buf_dma; | ||
231 | }; | ||
232 | |||
233 | static unsigned int default_baud = 9600; | ||
234 | static const int trigger_level_256[4] = { 1, 64, 128, 224 }; | ||
235 | static const int trigger_level_64[4] = { 1, 16, 32, 56 }; | ||
236 | static const int trigger_level_16[4] = { 1, 4, 8, 14 }; | ||
237 | static const int trigger_level_1[4] = { 1, 1, 1, 1 }; | ||
238 | |||
239 | static void pch_uart_hal_request(struct pci_dev *pdev, int fifosize, | ||
240 | int base_baud) | ||
241 | { | ||
242 | struct eg20t_port *priv = pci_get_drvdata(pdev); | ||
243 | |||
244 | priv->trigger_level = 1; | ||
245 | priv->fcr = 0; | ||
246 | } | ||
247 | |||
248 | static unsigned int get_msr(struct eg20t_port *priv, void __iomem *base) | ||
249 | { | ||
250 | unsigned int msr = ioread8(base + UART_MSR); | ||
251 | priv->dmsr |= msr & PCH_UART_MSR_DELTA; | ||
252 | |||
253 | return msr; | ||
254 | } | ||
255 | |||
256 | static void pch_uart_hal_enable_interrupt(struct eg20t_port *priv, | ||
257 | unsigned int flag) | ||
258 | { | ||
259 | u8 ier = ioread8(priv->membase + UART_IER); | ||
260 | ier |= flag & PCH_UART_IER_MASK; | ||
261 | iowrite8(ier, priv->membase + UART_IER); | ||
262 | } | ||
263 | |||
264 | static void pch_uart_hal_disable_interrupt(struct eg20t_port *priv, | ||
265 | unsigned int flag) | ||
266 | { | ||
267 | u8 ier = ioread8(priv->membase + UART_IER); | ||
268 | ier &= ~(flag & PCH_UART_IER_MASK); | ||
269 | iowrite8(ier, priv->membase + UART_IER); | ||
270 | } | ||
271 | |||
272 | static int pch_uart_hal_set_line(struct eg20t_port *priv, int baud, | ||
273 | unsigned int parity, unsigned int bits, | ||
274 | unsigned int stb) | ||
275 | { | ||
276 | unsigned int dll, dlm, lcr; | ||
277 | int div; | ||
278 | |||
279 | div = DIV_ROUND(priv->base_baud / 16, baud); | ||
280 | if (div < 0 || USHRT_MAX <= div) { | ||
281 | pr_err("Invalid Baud(div=0x%x)\n", div); | ||
282 | return -EINVAL; | ||
283 | } | ||
284 | |||
285 | dll = (unsigned int)div & 0x00FFU; | ||
286 | dlm = ((unsigned int)div >> 8) & 0x00FFU; | ||
287 | |||
288 | if (parity & ~(PCH_UART_LCR_PEN | PCH_UART_LCR_EPS | PCH_UART_LCR_SP)) { | ||
289 | pr_err("Invalid parity(0x%x)\n", parity); | ||
290 | return -EINVAL; | ||
291 | } | ||
292 | |||
293 | if (bits & ~PCH_UART_LCR_WLS) { | ||
294 | pr_err("Invalid bits(0x%x)\n", bits); | ||
295 | return -EINVAL; | ||
296 | } | ||
297 | |||
298 | if (stb & ~PCH_UART_LCR_STB) { | ||
299 | pr_err("Invalid STB(0x%x)\n", stb); | ||
300 | return -EINVAL; | ||
301 | } | ||
302 | |||
303 | lcr = parity; | ||
304 | lcr |= bits; | ||
305 | lcr |= stb; | ||
306 | |||
307 | pr_debug("%s:baud = %d, div = %04x, lcr = %02x (%lu)\n", | ||
308 | __func__, baud, div, lcr, jiffies); | ||
309 | iowrite8(PCH_UART_LCR_DLAB, priv->membase + UART_LCR); | ||
310 | iowrite8(dll, priv->membase + PCH_UART_DLL); | ||
311 | iowrite8(dlm, priv->membase + PCH_UART_DLM); | ||
312 | iowrite8(lcr, priv->membase + UART_LCR); | ||
313 | |||
314 | return 0; | ||
315 | } | ||
316 | |||
317 | static int pch_uart_hal_fifo_reset(struct eg20t_port *priv, | ||
318 | unsigned int flag) | ||
319 | { | ||
320 | if (flag & ~(PCH_UART_FCR_TFR | PCH_UART_FCR_RFR)) { | ||
321 | pr_err("%s:Invalid flag(0x%x)\n", __func__, flag); | ||
322 | return -EINVAL; | ||
323 | } | ||
324 | |||
325 | iowrite8(PCH_UART_FCR_FIFOE | priv->fcr, priv->membase + UART_FCR); | ||
326 | iowrite8(PCH_UART_FCR_FIFOE | priv->fcr | flag, | ||
327 | priv->membase + UART_FCR); | ||
328 | iowrite8(priv->fcr, priv->membase + UART_FCR); | ||
329 | |||
330 | return 0; | ||
331 | } | ||
332 | |||
333 | static int pch_uart_hal_set_fifo(struct eg20t_port *priv, | ||
334 | unsigned int dmamode, | ||
335 | unsigned int fifo_size, unsigned int trigger) | ||
336 | { | ||
337 | u8 fcr; | ||
338 | |||
339 | if (dmamode & ~PCH_UART_FCR_DMS) { | ||
340 | pr_err("%s:Invalid DMA Mode(0x%x)\n", __func__, dmamode); | ||
341 | return -EINVAL; | ||
342 | } | ||
343 | |||
344 | if (fifo_size & ~(PCH_UART_FCR_FIFOE | PCH_UART_FCR_FIFO256)) { | ||
345 | pr_err("%s:Invalid FIFO SIZE(0x%x)\n", __func__, fifo_size); | ||
346 | return -EINVAL; | ||
347 | } | ||
348 | |||
349 | if (trigger & ~PCH_UART_FCR_RFTL) { | ||
350 | pr_err("%s:Invalid TRIGGER(0x%x)\n", __func__, trigger); | ||
351 | return -EINVAL; | ||
352 | } | ||
353 | |||
354 | switch (priv->fifo_size) { | ||
355 | case 256: | ||
356 | priv->trigger_level = | ||
357 | trigger_level_256[trigger >> PCH_UART_FCR_RFTL_SHIFT]; | ||
358 | break; | ||
359 | case 64: | ||
360 | priv->trigger_level = | ||
361 | trigger_level_64[trigger >> PCH_UART_FCR_RFTL_SHIFT]; | ||
362 | break; | ||
363 | case 16: | ||
364 | priv->trigger_level = | ||
365 | trigger_level_16[trigger >> PCH_UART_FCR_RFTL_SHIFT]; | ||
366 | break; | ||
367 | default: | ||
368 | priv->trigger_level = | ||
369 | trigger_level_1[trigger >> PCH_UART_FCR_RFTL_SHIFT]; | ||
370 | break; | ||
371 | } | ||
372 | fcr = | ||
373 | dmamode | fifo_size | trigger | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR; | ||
374 | iowrite8(PCH_UART_FCR_FIFOE, priv->membase + UART_FCR); | ||
375 | iowrite8(PCH_UART_FCR_FIFOE | PCH_UART_FCR_RFR | PCH_UART_FCR_TFR, | ||
376 | priv->membase + UART_FCR); | ||
377 | iowrite8(fcr, priv->membase + UART_FCR); | ||
378 | priv->fcr = fcr; | ||
379 | |||
380 | return 0; | ||
381 | } | ||
382 | |||
383 | static u8 pch_uart_hal_get_modem(struct eg20t_port *priv) | ||
384 | { | ||
385 | priv->dmsr = 0; | ||
386 | return get_msr(priv, priv->membase); | ||
387 | } | ||
388 | |||
389 | static int pch_uart_hal_write(struct eg20t_port *priv, | ||
390 | const unsigned char *buf, int tx_size) | ||
391 | { | ||
392 | int i; | ||
393 | unsigned int thr; | ||
394 | |||
395 | for (i = 0; i < tx_size;) { | ||
396 | thr = buf[i++]; | ||
397 | iowrite8(thr, priv->membase + PCH_UART_THR); | ||
398 | } | ||
399 | return i; | ||
400 | } | ||
401 | |||
402 | static int pch_uart_hal_read(struct eg20t_port *priv, unsigned char *buf, | ||
403 | int rx_size) | ||
404 | { | ||
405 | int i; | ||
406 | u8 rbr, lsr; | ||
407 | |||
408 | lsr = ioread8(priv->membase + UART_LSR); | ||
409 | for (i = 0, lsr = ioread8(priv->membase + UART_LSR); | ||
410 | i < rx_size && lsr & UART_LSR_DR; | ||
411 | lsr = ioread8(priv->membase + UART_LSR)) { | ||
412 | rbr = ioread8(priv->membase + PCH_UART_RBR); | ||
413 | buf[i++] = rbr; | ||
414 | } | ||
415 | return i; | ||
416 | } | ||
417 | |||
418 | static unsigned int pch_uart_hal_get_iid(struct eg20t_port *priv) | ||
419 | { | ||
420 | unsigned int iir; | ||
421 | int ret; | ||
422 | |||
423 | iir = ioread8(priv->membase + UART_IIR); | ||
424 | ret = (iir & (PCH_UART_IIR_IID | PCH_UART_IIR_TOI | PCH_UART_IIR_IP)); | ||
425 | return ret; | ||
426 | } | ||
427 | |||
428 | static u8 pch_uart_hal_get_line_status(struct eg20t_port *priv) | ||
429 | { | ||
430 | return ioread8(priv->membase + UART_LSR); | ||
431 | } | ||
432 | |||
433 | static void pch_uart_hal_set_break(struct eg20t_port *priv, int on) | ||
434 | { | ||
435 | unsigned int lcr; | ||
436 | |||
437 | lcr = ioread8(priv->membase + UART_LCR); | ||
438 | if (on) | ||
439 | lcr |= PCH_UART_LCR_SB; | ||
440 | else | ||
441 | lcr &= ~PCH_UART_LCR_SB; | ||
442 | |||
443 | iowrite8(lcr, priv->membase + UART_LCR); | ||
444 | } | ||
445 | |||
446 | static int push_rx(struct eg20t_port *priv, const unsigned char *buf, | ||
447 | int size) | ||
448 | { | ||
449 | struct uart_port *port; | ||
450 | struct tty_struct *tty; | ||
451 | |||
452 | port = &priv->port; | ||
453 | tty = tty_port_tty_get(&port->state->port); | ||
454 | if (!tty) { | ||
455 | pr_debug("%s:tty is busy now", __func__); | ||
456 | return -EBUSY; | ||
457 | } | ||
458 | |||
459 | tty_insert_flip_string(tty, buf, size); | ||
460 | tty_flip_buffer_push(tty); | ||
461 | tty_kref_put(tty); | ||
462 | |||
463 | return 0; | ||
464 | } | ||
465 | |||
466 | static int pop_tx_x(struct eg20t_port *priv, unsigned char *buf) | ||
467 | { | ||
468 | int ret; | ||
469 | struct uart_port *port = &priv->port; | ||
470 | |||
471 | if (port->x_char) { | ||
472 | pr_debug("%s:X character send %02x (%lu)\n", __func__, | ||
473 | port->x_char, jiffies); | ||
474 | buf[0] = port->x_char; | ||
475 | port->x_char = 0; | ||
476 | ret = 1; | ||
477 | } else { | ||
478 | ret = 0; | ||
479 | } | ||
480 | |||
481 | return ret; | ||
482 | } | ||
483 | |||
484 | static int dma_push_rx(struct eg20t_port *priv, int size) | ||
485 | { | ||
486 | struct tty_struct *tty; | ||
487 | int room; | ||
488 | struct uart_port *port = &priv->port; | ||
489 | |||
490 | port = &priv->port; | ||
491 | tty = tty_port_tty_get(&port->state->port); | ||
492 | if (!tty) { | ||
493 | pr_debug("%s:tty is busy now", __func__); | ||
494 | return 0; | ||
495 | } | ||
496 | |||
497 | room = tty_buffer_request_room(tty, size); | ||
498 | |||
499 | if (room < size) | ||
500 | dev_warn(port->dev, "Rx overrun: dropping %u bytes\n", | ||
501 | size - room); | ||
502 | if (!room) | ||
503 | return room; | ||
504 | |||
505 | tty_insert_flip_string(tty, sg_virt(&priv->sg_rx), size); | ||
506 | |||
507 | port->icount.rx += room; | ||
508 | tty_kref_put(tty); | ||
509 | |||
510 | return room; | ||
511 | } | ||
512 | |||
513 | static void pch_free_dma(struct uart_port *port) | ||
514 | { | ||
515 | struct eg20t_port *priv; | ||
516 | priv = container_of(port, struct eg20t_port, port); | ||
517 | |||
518 | if (priv->chan_tx) { | ||
519 | dma_release_channel(priv->chan_tx); | ||
520 | priv->chan_tx = NULL; | ||
521 | } | ||
522 | if (priv->chan_rx) { | ||
523 | dma_release_channel(priv->chan_rx); | ||
524 | priv->chan_rx = NULL; | ||
525 | } | ||
526 | if (sg_dma_address(&priv->sg_rx)) | ||
527 | dma_free_coherent(port->dev, port->fifosize, | ||
528 | sg_virt(&priv->sg_rx), | ||
529 | sg_dma_address(&priv->sg_rx)); | ||
530 | |||
531 | return; | ||
532 | } | ||
533 | |||
534 | static bool filter(struct dma_chan *chan, void *slave) | ||
535 | { | ||
536 | struct pch_dma_slave *param = slave; | ||
537 | |||
538 | if ((chan->chan_id == param->chan_id) && (param->dma_dev == | ||
539 | chan->device->dev)) { | ||
540 | chan->private = param; | ||
541 | return true; | ||
542 | } else { | ||
543 | return false; | ||
544 | } | ||
545 | } | ||
546 | |||
547 | static void pch_request_dma(struct uart_port *port) | ||
548 | { | ||
549 | dma_cap_mask_t mask; | ||
550 | struct dma_chan *chan; | ||
551 | struct pci_dev *dma_dev; | ||
552 | struct pch_dma_slave *param; | ||
553 | struct eg20t_port *priv = | ||
554 | container_of(port, struct eg20t_port, port); | ||
555 | dma_cap_zero(mask); | ||
556 | dma_cap_set(DMA_SLAVE, mask); | ||
557 | |||
558 | dma_dev = pci_get_bus_and_slot(2, PCI_DEVFN(0xa, 0)); /* Get DMA's dev | ||
559 | information */ | ||
560 | /* Set Tx DMA */ | ||
561 | param = &priv->param_tx; | ||
562 | param->dma_dev = &dma_dev->dev; | ||
563 | param->chan_id = priv->port.line; | ||
564 | param->tx_reg = port->mapbase + UART_TX; | ||
565 | chan = dma_request_channel(mask, filter, param); | ||
566 | if (!chan) { | ||
567 | pr_err("%s:dma_request_channel FAILS(Tx)\n", __func__); | ||
568 | return; | ||
569 | } | ||
570 | priv->chan_tx = chan; | ||
571 | |||
572 | /* Set Rx DMA */ | ||
573 | param = &priv->param_rx; | ||
574 | param->dma_dev = &dma_dev->dev; | ||
575 | param->chan_id = priv->port.line + 1; /* Rx = Tx + 1 */ | ||
576 | param->rx_reg = port->mapbase + UART_RX; | ||
577 | chan = dma_request_channel(mask, filter, param); | ||
578 | if (!chan) { | ||
579 | pr_err("%s:dma_request_channel FAILS(Rx)\n", __func__); | ||
580 | dma_release_channel(priv->chan_tx); | ||
581 | return; | ||
582 | } | ||
583 | |||
584 | /* Get Consistent memory for DMA */ | ||
585 | priv->rx_buf_virt = dma_alloc_coherent(port->dev, port->fifosize, | ||
586 | &priv->rx_buf_dma, GFP_KERNEL); | ||
587 | priv->chan_rx = chan; | ||
588 | } | ||
589 | |||
590 | static void pch_dma_rx_complete(void *arg) | ||
591 | { | ||
592 | struct eg20t_port *priv = arg; | ||
593 | struct uart_port *port = &priv->port; | ||
594 | struct tty_struct *tty = tty_port_tty_get(&port->state->port); | ||
595 | |||
596 | if (!tty) { | ||
597 | pr_debug("%s:tty is busy now", __func__); | ||
598 | return; | ||
599 | } | ||
600 | |||
601 | if (dma_push_rx(priv, priv->trigger_level)) | ||
602 | tty_flip_buffer_push(tty); | ||
603 | |||
604 | tty_kref_put(tty); | ||
605 | } | ||
606 | |||
607 | static void pch_dma_tx_complete(void *arg) | ||
608 | { | ||
609 | struct eg20t_port *priv = arg; | ||
610 | struct uart_port *port = &priv->port; | ||
611 | struct circ_buf *xmit = &port->state->xmit; | ||
612 | |||
613 | xmit->tail += sg_dma_len(&priv->sg_tx); | ||
614 | xmit->tail &= UART_XMIT_SIZE - 1; | ||
615 | port->icount.tx += sg_dma_len(&priv->sg_tx); | ||
616 | |||
617 | async_tx_ack(priv->desc_tx); | ||
618 | priv->tx_dma_use = 0; | ||
619 | } | ||
620 | |||
621 | static int pop_tx(struct eg20t_port *priv, unsigned char *buf, int size) | ||
622 | { | ||
623 | int count = 0; | ||
624 | struct uart_port *port = &priv->port; | ||
625 | struct circ_buf *xmit = &port->state->xmit; | ||
626 | |||
627 | if (uart_tx_stopped(port) || uart_circ_empty(xmit) || count >= size) | ||
628 | goto pop_tx_end; | ||
629 | |||
630 | do { | ||
631 | int cnt_to_end = | ||
632 | CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE); | ||
633 | int sz = min(size - count, cnt_to_end); | ||
634 | memcpy(&buf[count], &xmit->buf[xmit->tail], sz); | ||
635 | xmit->tail = (xmit->tail + sz) & (UART_XMIT_SIZE - 1); | ||
636 | count += sz; | ||
637 | } while (!uart_circ_empty(xmit) && count < size); | ||
638 | |||
639 | pop_tx_end: | ||
640 | pr_debug("%d characters. Remained %d characters. (%lu)\n", | ||
641 | count, size - count, jiffies); | ||
642 | |||
643 | return count; | ||
644 | } | ||
645 | |||
646 | static int handle_rx_to(struct eg20t_port *priv) | ||
647 | { | ||
648 | struct pch_uart_buffer *buf; | ||
649 | int rx_size; | ||
650 | int ret; | ||
651 | if (!priv->start_rx) { | ||
652 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT); | ||
653 | return 0; | ||
654 | } | ||
655 | buf = &priv->rxbuf; | ||
656 | do { | ||
657 | rx_size = pch_uart_hal_read(priv, buf->buf, buf->size); | ||
658 | ret = push_rx(priv, buf->buf, rx_size); | ||
659 | if (ret) | ||
660 | return 0; | ||
661 | } while (rx_size == buf->size); | ||
662 | |||
663 | return PCH_UART_HANDLED_RX_INT; | ||
664 | } | ||
665 | |||
666 | static int handle_rx(struct eg20t_port *priv) | ||
667 | { | ||
668 | return handle_rx_to(priv); | ||
669 | } | ||
670 | |||
671 | static int dma_handle_rx(struct eg20t_port *priv) | ||
672 | { | ||
673 | struct uart_port *port = &priv->port; | ||
674 | struct dma_async_tx_descriptor *desc; | ||
675 | struct scatterlist *sg; | ||
676 | |||
677 | priv = container_of(port, struct eg20t_port, port); | ||
678 | sg = &priv->sg_rx; | ||
679 | |||
680 | sg_init_table(&priv->sg_rx, 1); /* Initialize SG table */ | ||
681 | |||
682 | sg_dma_len(sg) = priv->fifo_size; | ||
683 | |||
684 | sg_set_page(&priv->sg_rx, virt_to_page(priv->rx_buf_virt), | ||
685 | sg_dma_len(sg), (unsigned long)priv->rx_buf_virt & | ||
686 | ~PAGE_MASK); | ||
687 | |||
688 | sg_dma_address(sg) = priv->rx_buf_dma; | ||
689 | |||
690 | desc = priv->chan_rx->device->device_prep_slave_sg(priv->chan_rx, | ||
691 | sg, 1, DMA_FROM_DEVICE, | ||
692 | DMA_PREP_INTERRUPT); | ||
693 | if (!desc) | ||
694 | return 0; | ||
695 | |||
696 | priv->desc_rx = desc; | ||
697 | desc->callback = pch_dma_rx_complete; | ||
698 | desc->callback_param = priv; | ||
699 | desc->tx_submit(desc); | ||
700 | dma_async_issue_pending(priv->chan_rx); | ||
701 | |||
702 | return PCH_UART_HANDLED_RX_INT; | ||
703 | } | ||
704 | |||
705 | static unsigned int handle_tx(struct eg20t_port *priv) | ||
706 | { | ||
707 | struct uart_port *port = &priv->port; | ||
708 | struct circ_buf *xmit = &port->state->xmit; | ||
709 | int ret; | ||
710 | int fifo_size; | ||
711 | int tx_size; | ||
712 | int size; | ||
713 | int tx_empty; | ||
714 | |||
715 | if (!priv->start_tx) { | ||
716 | pr_info("%s:Tx isn't started. (%lu)\n", __func__, jiffies); | ||
717 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT); | ||
718 | priv->tx_empty = 1; | ||
719 | return 0; | ||
720 | } | ||
721 | |||
722 | fifo_size = max(priv->fifo_size, 1); | ||
723 | tx_empty = 1; | ||
724 | if (pop_tx_x(priv, xmit->buf)) { | ||
725 | pch_uart_hal_write(priv, xmit->buf, 1); | ||
726 | port->icount.tx++; | ||
727 | tx_empty = 0; | ||
728 | fifo_size--; | ||
729 | } | ||
730 | size = min(xmit->head - xmit->tail, fifo_size); | ||
731 | tx_size = pop_tx(priv, xmit->buf, size); | ||
732 | if (tx_size > 0) { | ||
733 | ret = pch_uart_hal_write(priv, xmit->buf, tx_size); | ||
734 | port->icount.tx += ret; | ||
735 | tx_empty = 0; | ||
736 | } | ||
737 | |||
738 | priv->tx_empty = tx_empty; | ||
739 | |||
740 | if (tx_empty) | ||
741 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT); | ||
742 | |||
743 | return PCH_UART_HANDLED_TX_INT; | ||
744 | } | ||
745 | |||
746 | static unsigned int dma_handle_tx(struct eg20t_port *priv) | ||
747 | { | ||
748 | struct uart_port *port = &priv->port; | ||
749 | struct circ_buf *xmit = &port->state->xmit; | ||
750 | struct scatterlist *sg = &priv->sg_tx; | ||
751 | int nent; | ||
752 | int fifo_size; | ||
753 | int tx_empty; | ||
754 | struct dma_async_tx_descriptor *desc; | ||
755 | |||
756 | if (!priv->start_tx) { | ||
757 | pr_info("%s:Tx isn't started. (%lu)\n", __func__, jiffies); | ||
758 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT); | ||
759 | priv->tx_empty = 1; | ||
760 | return 0; | ||
761 | } | ||
762 | |||
763 | fifo_size = max(priv->fifo_size, 1); | ||
764 | tx_empty = 1; | ||
765 | if (pop_tx_x(priv, xmit->buf)) { | ||
766 | pch_uart_hal_write(priv, xmit->buf, 1); | ||
767 | port->icount.tx++; | ||
768 | tx_empty = 0; | ||
769 | fifo_size--; | ||
770 | } | ||
771 | |||
772 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_TX_INT); | ||
773 | |||
774 | priv->tx_dma_use = 1; | ||
775 | |||
776 | sg_init_table(&priv->sg_tx, 1); /* Initialize SG table */ | ||
777 | |||
778 | sg_set_page(&priv->sg_tx, virt_to_page(xmit->buf), | ||
779 | UART_XMIT_SIZE, (int)xmit->buf & ~PAGE_MASK); | ||
780 | |||
781 | nent = dma_map_sg(port->dev, &priv->sg_tx, 1, DMA_TO_DEVICE); | ||
782 | if (!nent) { | ||
783 | pr_err("%s:dma_map_sg Failed\n", __func__); | ||
784 | return 0; | ||
785 | } | ||
786 | |||
787 | sg->offset = xmit->tail & (UART_XMIT_SIZE - 1); | ||
788 | sg_dma_address(sg) = (sg_dma_address(sg) & ~(UART_XMIT_SIZE - 1)) + | ||
789 | sg->offset; | ||
790 | sg_dma_len(sg) = min((int)CIRC_CNT(xmit->head, xmit->tail, | ||
791 | UART_XMIT_SIZE), CIRC_CNT_TO_END(xmit->head, | ||
792 | xmit->tail, UART_XMIT_SIZE)); | ||
793 | |||
794 | desc = priv->chan_tx->device->device_prep_slave_sg(priv->chan_tx, | ||
795 | sg, nent, DMA_TO_DEVICE, DMA_PREP_INTERRUPT | DMA_CTRL_ACK); | ||
796 | if (!desc) { | ||
797 | pr_err("%s:device_prep_slave_sg Failed\n", __func__); | ||
798 | return 0; | ||
799 | } | ||
800 | |||
801 | dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE); | ||
802 | |||
803 | priv->desc_tx = desc; | ||
804 | desc->callback = pch_dma_tx_complete; | ||
805 | desc->callback_param = priv; | ||
806 | |||
807 | desc->tx_submit(desc); | ||
808 | |||
809 | dma_async_issue_pending(priv->chan_tx); | ||
810 | |||
811 | return PCH_UART_HANDLED_TX_INT; | ||
812 | } | ||
813 | |||
814 | static void pch_uart_err_ir(struct eg20t_port *priv, unsigned int lsr) | ||
815 | { | ||
816 | u8 fcr = ioread8(priv->membase + UART_FCR); | ||
817 | |||
818 | /* Reset FIFO */ | ||
819 | fcr |= UART_FCR_CLEAR_RCVR; | ||
820 | iowrite8(fcr, priv->membase + UART_FCR); | ||
821 | |||
822 | if (lsr & PCH_UART_LSR_ERR) | ||
823 | dev_err(&priv->pdev->dev, "Error data in FIFO\n"); | ||
824 | |||
825 | if (lsr & UART_LSR_FE) | ||
826 | dev_err(&priv->pdev->dev, "Framing Error\n"); | ||
827 | |||
828 | if (lsr & UART_LSR_PE) | ||
829 | dev_err(&priv->pdev->dev, "Parity Error\n"); | ||
830 | |||
831 | if (lsr & UART_LSR_OE) | ||
832 | dev_err(&priv->pdev->dev, "Overrun Error\n"); | ||
833 | } | ||
834 | |||
835 | static irqreturn_t pch_uart_interrupt(int irq, void *dev_id) | ||
836 | { | ||
837 | struct eg20t_port *priv = dev_id; | ||
838 | unsigned int handled; | ||
839 | u8 lsr; | ||
840 | int ret = 0; | ||
841 | unsigned int iid; | ||
842 | unsigned long flags; | ||
843 | |||
844 | spin_lock_irqsave(&priv->port.lock, flags); | ||
845 | handled = 0; | ||
846 | while ((iid = pch_uart_hal_get_iid(priv)) > 1) { | ||
847 | switch (iid) { | ||
848 | case PCH_UART_IID_RLS: /* Receiver Line Status */ | ||
849 | lsr = pch_uart_hal_get_line_status(priv); | ||
850 | if (lsr & (PCH_UART_LSR_ERR | UART_LSR_FE | | ||
851 | UART_LSR_PE | UART_LSR_OE)) { | ||
852 | pch_uart_err_ir(priv, lsr); | ||
853 | ret = PCH_UART_HANDLED_RX_ERR_INT; | ||
854 | } | ||
855 | break; | ||
856 | case PCH_UART_IID_RDR: /* Received Data Ready */ | ||
857 | if (priv->use_dma) | ||
858 | ret = dma_handle_rx(priv); | ||
859 | else | ||
860 | ret = handle_rx(priv); | ||
861 | break; | ||
862 | case PCH_UART_IID_RDR_TO: /* Received Data Ready | ||
863 | (FIFO Timeout) */ | ||
864 | ret = handle_rx_to(priv); | ||
865 | break; | ||
866 | case PCH_UART_IID_THRE: /* Transmitter Holding Register | ||
867 | Empty */ | ||
868 | if (priv->use_dma) | ||
869 | ret = dma_handle_tx(priv); | ||
870 | else | ||
871 | ret = handle_tx(priv); | ||
872 | break; | ||
873 | case PCH_UART_IID_MS: /* Modem Status */ | ||
874 | ret = PCH_UART_HANDLED_MS_INT; | ||
875 | break; | ||
876 | default: /* Never junp to this label */ | ||
877 | pr_err("%s:iid=%d (%lu)\n", __func__, iid, jiffies); | ||
878 | ret = -1; | ||
879 | break; | ||
880 | } | ||
881 | handled |= (unsigned int)ret; | ||
882 | } | ||
883 | if (handled == 0 && iid <= 1) { | ||
884 | if (priv->int_dis_flag) | ||
885 | priv->int_dis_flag = 0; | ||
886 | } | ||
887 | |||
888 | spin_unlock_irqrestore(&priv->port.lock, flags); | ||
889 | return IRQ_RETVAL(handled); | ||
890 | } | ||
891 | |||
892 | /* This function tests whether the transmitter fifo and shifter for the port | ||
893 | described by 'port' is empty. */ | ||
894 | static unsigned int pch_uart_tx_empty(struct uart_port *port) | ||
895 | { | ||
896 | struct eg20t_port *priv; | ||
897 | int ret; | ||
898 | priv = container_of(port, struct eg20t_port, port); | ||
899 | if (priv->tx_empty) | ||
900 | ret = TIOCSER_TEMT; | ||
901 | else | ||
902 | ret = 0; | ||
903 | |||
904 | return ret; | ||
905 | } | ||
906 | |||
907 | /* Returns the current state of modem control inputs. */ | ||
908 | static unsigned int pch_uart_get_mctrl(struct uart_port *port) | ||
909 | { | ||
910 | struct eg20t_port *priv; | ||
911 | u8 modem; | ||
912 | unsigned int ret = 0; | ||
913 | |||
914 | priv = container_of(port, struct eg20t_port, port); | ||
915 | modem = pch_uart_hal_get_modem(priv); | ||
916 | |||
917 | if (modem & UART_MSR_DCD) | ||
918 | ret |= TIOCM_CAR; | ||
919 | |||
920 | if (modem & UART_MSR_RI) | ||
921 | ret |= TIOCM_RNG; | ||
922 | |||
923 | if (modem & UART_MSR_DSR) | ||
924 | ret |= TIOCM_DSR; | ||
925 | |||
926 | if (modem & UART_MSR_CTS) | ||
927 | ret |= TIOCM_CTS; | ||
928 | |||
929 | return ret; | ||
930 | } | ||
931 | |||
932 | static void pch_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) | ||
933 | { | ||
934 | u32 mcr = 0; | ||
935 | unsigned int dat; | ||
936 | struct eg20t_port *priv = container_of(port, struct eg20t_port, port); | ||
937 | |||
938 | if (mctrl & TIOCM_DTR) | ||
939 | mcr |= UART_MCR_DTR; | ||
940 | if (mctrl & TIOCM_RTS) | ||
941 | mcr |= UART_MCR_RTS; | ||
942 | if (mctrl & TIOCM_LOOP) | ||
943 | mcr |= UART_MCR_LOOP; | ||
944 | |||
945 | if (mctrl) { | ||
946 | dat = pch_uart_get_mctrl(port); | ||
947 | dat |= mcr; | ||
948 | iowrite8(dat, priv->membase + UART_MCR); | ||
949 | } | ||
950 | } | ||
951 | |||
952 | static void pch_uart_stop_tx(struct uart_port *port) | ||
953 | { | ||
954 | struct eg20t_port *priv; | ||
955 | priv = container_of(port, struct eg20t_port, port); | ||
956 | priv->start_tx = 0; | ||
957 | priv->tx_dma_use = 0; | ||
958 | } | ||
959 | |||
960 | static void pch_uart_start_tx(struct uart_port *port) | ||
961 | { | ||
962 | struct eg20t_port *priv; | ||
963 | |||
964 | priv = container_of(port, struct eg20t_port, port); | ||
965 | |||
966 | if (priv->use_dma) | ||
967 | if (priv->tx_dma_use) | ||
968 | return; | ||
969 | |||
970 | priv->start_tx = 1; | ||
971 | pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_TX_INT); | ||
972 | } | ||
973 | |||
974 | static void pch_uart_stop_rx(struct uart_port *port) | ||
975 | { | ||
976 | struct eg20t_port *priv; | ||
977 | priv = container_of(port, struct eg20t_port, port); | ||
978 | priv->start_rx = 0; | ||
979 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_RX_INT); | ||
980 | priv->int_dis_flag = 1; | ||
981 | } | ||
982 | |||
983 | /* Enable the modem status interrupts. */ | ||
984 | static void pch_uart_enable_ms(struct uart_port *port) | ||
985 | { | ||
986 | struct eg20t_port *priv; | ||
987 | priv = container_of(port, struct eg20t_port, port); | ||
988 | pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_MS_INT); | ||
989 | } | ||
990 | |||
991 | /* Control the transmission of a break signal. */ | ||
992 | static void pch_uart_break_ctl(struct uart_port *port, int ctl) | ||
993 | { | ||
994 | struct eg20t_port *priv; | ||
995 | unsigned long flags; | ||
996 | |||
997 | priv = container_of(port, struct eg20t_port, port); | ||
998 | spin_lock_irqsave(&port->lock, flags); | ||
999 | pch_uart_hal_set_break(priv, ctl); | ||
1000 | spin_unlock_irqrestore(&port->lock, flags); | ||
1001 | } | ||
1002 | |||
1003 | /* Grab any interrupt resources and initialise any low level driver state. */ | ||
1004 | static int pch_uart_startup(struct uart_port *port) | ||
1005 | { | ||
1006 | struct eg20t_port *priv; | ||
1007 | int ret; | ||
1008 | int fifo_size; | ||
1009 | int trigger_level; | ||
1010 | |||
1011 | priv = container_of(port, struct eg20t_port, port); | ||
1012 | priv->tx_empty = 1; | ||
1013 | port->uartclk = priv->base_baud; | ||
1014 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT); | ||
1015 | ret = pch_uart_hal_set_line(priv, default_baud, | ||
1016 | PCH_UART_HAL_PARITY_NONE, PCH_UART_HAL_8BIT, | ||
1017 | PCH_UART_HAL_STB1); | ||
1018 | if (ret) | ||
1019 | return ret; | ||
1020 | |||
1021 | switch (priv->fifo_size) { | ||
1022 | case 256: | ||
1023 | fifo_size = PCH_UART_HAL_FIFO256; | ||
1024 | break; | ||
1025 | case 64: | ||
1026 | fifo_size = PCH_UART_HAL_FIFO64; | ||
1027 | break; | ||
1028 | case 16: | ||
1029 | fifo_size = PCH_UART_HAL_FIFO16; | ||
1030 | case 1: | ||
1031 | default: | ||
1032 | fifo_size = PCH_UART_HAL_FIFO_DIS; | ||
1033 | break; | ||
1034 | } | ||
1035 | |||
1036 | switch (priv->trigger) { | ||
1037 | case PCH_UART_HAL_TRIGGER1: | ||
1038 | trigger_level = 1; | ||
1039 | break; | ||
1040 | case PCH_UART_HAL_TRIGGER_L: | ||
1041 | trigger_level = priv->fifo_size / 4; | ||
1042 | break; | ||
1043 | case PCH_UART_HAL_TRIGGER_M: | ||
1044 | trigger_level = priv->fifo_size / 2; | ||
1045 | break; | ||
1046 | case PCH_UART_HAL_TRIGGER_H: | ||
1047 | default: | ||
1048 | trigger_level = priv->fifo_size - (priv->fifo_size / 8); | ||
1049 | break; | ||
1050 | } | ||
1051 | |||
1052 | priv->trigger_level = trigger_level; | ||
1053 | ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0, | ||
1054 | fifo_size, priv->trigger); | ||
1055 | if (ret < 0) | ||
1056 | return ret; | ||
1057 | |||
1058 | ret = request_irq(priv->port.irq, pch_uart_interrupt, IRQF_SHARED, | ||
1059 | KBUILD_MODNAME, priv); | ||
1060 | if (ret < 0) | ||
1061 | return ret; | ||
1062 | |||
1063 | if (priv->use_dma) | ||
1064 | pch_request_dma(port); | ||
1065 | |||
1066 | priv->start_rx = 1; | ||
1067 | pch_uart_hal_enable_interrupt(priv, PCH_UART_HAL_RX_INT); | ||
1068 | uart_update_timeout(port, CS8, default_baud); | ||
1069 | |||
1070 | return 0; | ||
1071 | } | ||
1072 | |||
1073 | static void pch_uart_shutdown(struct uart_port *port) | ||
1074 | { | ||
1075 | struct eg20t_port *priv; | ||
1076 | int ret; | ||
1077 | |||
1078 | priv = container_of(port, struct eg20t_port, port); | ||
1079 | pch_uart_hal_disable_interrupt(priv, PCH_UART_HAL_ALL_INT); | ||
1080 | pch_uart_hal_fifo_reset(priv, PCH_UART_HAL_CLR_ALL_FIFO); | ||
1081 | ret = pch_uart_hal_set_fifo(priv, PCH_UART_HAL_DMA_MODE0, | ||
1082 | PCH_UART_HAL_FIFO_DIS, PCH_UART_HAL_TRIGGER1); | ||
1083 | if (ret) | ||
1084 | pr_err("pch_uart_hal_set_fifo Failed(ret=%d)\n", ret); | ||
1085 | |||
1086 | if (priv->use_dma_flag) | ||
1087 | pch_free_dma(port); | ||
1088 | |||
1089 | free_irq(priv->port.irq, priv); | ||
1090 | } | ||
1091 | |||
1092 | /* Change the port parameters, including word length, parity, stop | ||
1093 | *bits. Update read_status_mask and ignore_status_mask to indicate | ||
1094 | *the types of events we are interested in receiving. */ | ||
1095 | static void pch_uart_set_termios(struct uart_port *port, | ||
1096 | struct ktermios *termios, struct ktermios *old) | ||
1097 | { | ||
1098 | int baud; | ||
1099 | int rtn; | ||
1100 | unsigned int parity, bits, stb; | ||
1101 | struct eg20t_port *priv; | ||
1102 | unsigned long flags; | ||
1103 | |||
1104 | priv = container_of(port, struct eg20t_port, port); | ||
1105 | switch (termios->c_cflag & CSIZE) { | ||
1106 | case CS5: | ||
1107 | bits = PCH_UART_HAL_5BIT; | ||
1108 | break; | ||
1109 | case CS6: | ||
1110 | bits = PCH_UART_HAL_6BIT; | ||
1111 | break; | ||
1112 | case CS7: | ||
1113 | bits = PCH_UART_HAL_7BIT; | ||
1114 | break; | ||
1115 | default: /* CS8 */ | ||
1116 | bits = PCH_UART_HAL_8BIT; | ||
1117 | break; | ||
1118 | } | ||
1119 | if (termios->c_cflag & CSTOPB) | ||
1120 | stb = PCH_UART_HAL_STB2; | ||
1121 | else | ||
1122 | stb = PCH_UART_HAL_STB1; | ||
1123 | |||
1124 | if (termios->c_cflag & PARENB) { | ||
1125 | if (!(termios->c_cflag & PARODD)) | ||
1126 | parity = PCH_UART_HAL_PARITY_ODD; | ||
1127 | else | ||
1128 | parity = PCH_UART_HAL_PARITY_EVEN; | ||
1129 | |||
1130 | } else { | ||
1131 | parity = PCH_UART_HAL_PARITY_NONE; | ||
1132 | } | ||
1133 | termios->c_cflag &= ~CMSPAR; /* Mark/Space parity is not supported */ | ||
1134 | |||
1135 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); | ||
1136 | |||
1137 | spin_lock_irqsave(&port->lock, flags); | ||
1138 | |||
1139 | uart_update_timeout(port, termios->c_cflag, baud); | ||
1140 | rtn = pch_uart_hal_set_line(priv, baud, parity, bits, stb); | ||
1141 | if (rtn) | ||
1142 | goto out; | ||
1143 | |||
1144 | /* Don't rewrite B0 */ | ||
1145 | if (tty_termios_baud_rate(termios)) | ||
1146 | tty_termios_encode_baud_rate(termios, baud, baud); | ||
1147 | |||
1148 | out: | ||
1149 | spin_unlock_irqrestore(&port->lock, flags); | ||
1150 | } | ||
1151 | |||
1152 | static const char *pch_uart_type(struct uart_port *port) | ||
1153 | { | ||
1154 | return KBUILD_MODNAME; | ||
1155 | } | ||
1156 | |||
1157 | static void pch_uart_release_port(struct uart_port *port) | ||
1158 | { | ||
1159 | struct eg20t_port *priv; | ||
1160 | |||
1161 | priv = container_of(port, struct eg20t_port, port); | ||
1162 | pci_iounmap(priv->pdev, priv->membase); | ||
1163 | pci_release_regions(priv->pdev); | ||
1164 | } | ||
1165 | |||
1166 | static int pch_uart_request_port(struct uart_port *port) | ||
1167 | { | ||
1168 | struct eg20t_port *priv; | ||
1169 | int ret; | ||
1170 | void __iomem *membase; | ||
1171 | |||
1172 | priv = container_of(port, struct eg20t_port, port); | ||
1173 | ret = pci_request_regions(priv->pdev, KBUILD_MODNAME); | ||
1174 | if (ret < 0) | ||
1175 | return -EBUSY; | ||
1176 | |||
1177 | membase = pci_iomap(priv->pdev, 1, 0); | ||
1178 | if (!membase) { | ||
1179 | pci_release_regions(priv->pdev); | ||
1180 | return -EBUSY; | ||
1181 | } | ||
1182 | priv->membase = port->membase = membase; | ||
1183 | |||
1184 | return 0; | ||
1185 | } | ||
1186 | |||
1187 | static void pch_uart_config_port(struct uart_port *port, int type) | ||
1188 | { | ||
1189 | struct eg20t_port *priv; | ||
1190 | |||
1191 | priv = container_of(port, struct eg20t_port, port); | ||
1192 | if (type & UART_CONFIG_TYPE) { | ||
1193 | port->type = priv->port_type; | ||
1194 | pch_uart_request_port(port); | ||
1195 | } | ||
1196 | } | ||
1197 | |||
1198 | static int pch_uart_verify_port(struct uart_port *port, | ||
1199 | struct serial_struct *serinfo) | ||
1200 | { | ||
1201 | struct eg20t_port *priv; | ||
1202 | |||
1203 | priv = container_of(port, struct eg20t_port, port); | ||
1204 | if (serinfo->flags & UPF_LOW_LATENCY) { | ||
1205 | pr_info("PCH UART : Use PIO Mode (without DMA)\n"); | ||
1206 | priv->use_dma = 0; | ||
1207 | serinfo->flags &= ~UPF_LOW_LATENCY; | ||
1208 | } else { | ||
1209 | #ifndef CONFIG_PCH_DMA | ||
1210 | pr_err("%s : PCH DMA is not Loaded.\n", __func__); | ||
1211 | return -EOPNOTSUPP; | ||
1212 | #endif | ||
1213 | priv->use_dma = 1; | ||
1214 | priv->use_dma_flag = 1; | ||
1215 | pr_info("PCH UART : Use DMA Mode\n"); | ||
1216 | } | ||
1217 | |||
1218 | return 0; | ||
1219 | } | ||
1220 | |||
1221 | static struct uart_ops pch_uart_ops = { | ||
1222 | .tx_empty = pch_uart_tx_empty, | ||
1223 | .set_mctrl = pch_uart_set_mctrl, | ||
1224 | .get_mctrl = pch_uart_get_mctrl, | ||
1225 | .stop_tx = pch_uart_stop_tx, | ||
1226 | .start_tx = pch_uart_start_tx, | ||
1227 | .stop_rx = pch_uart_stop_rx, | ||
1228 | .enable_ms = pch_uart_enable_ms, | ||
1229 | .break_ctl = pch_uart_break_ctl, | ||
1230 | .startup = pch_uart_startup, | ||
1231 | .shutdown = pch_uart_shutdown, | ||
1232 | .set_termios = pch_uart_set_termios, | ||
1233 | /* .pm = pch_uart_pm, Not supported yet */ | ||
1234 | /* .set_wake = pch_uart_set_wake, Not supported yet */ | ||
1235 | .type = pch_uart_type, | ||
1236 | .release_port = pch_uart_release_port, | ||
1237 | .request_port = pch_uart_request_port, | ||
1238 | .config_port = pch_uart_config_port, | ||
1239 | .verify_port = pch_uart_verify_port | ||
1240 | }; | ||
1241 | |||
1242 | static struct uart_driver pch_uart_driver = { | ||
1243 | .owner = THIS_MODULE, | ||
1244 | .driver_name = KBUILD_MODNAME, | ||
1245 | .dev_name = PCH_UART_DRIVER_DEVICE, | ||
1246 | .major = 0, | ||
1247 | .minor = 0, | ||
1248 | .nr = PCH_UART_NR, | ||
1249 | }; | ||
1250 | |||
1251 | static struct eg20t_port *pch_uart_init_port(struct pci_dev *pdev, | ||
1252 | int port_type) | ||
1253 | { | ||
1254 | struct eg20t_port *priv; | ||
1255 | int ret; | ||
1256 | unsigned int iobase; | ||
1257 | unsigned int mapbase; | ||
1258 | unsigned char *rxbuf; | ||
1259 | int fifosize, base_baud; | ||
1260 | static int num; | ||
1261 | |||
1262 | priv = kzalloc(sizeof(struct eg20t_port), GFP_KERNEL); | ||
1263 | if (priv == NULL) | ||
1264 | goto init_port_alloc_err; | ||
1265 | |||
1266 | rxbuf = (unsigned char *)__get_free_page(GFP_KERNEL); | ||
1267 | if (!rxbuf) | ||
1268 | goto init_port_free_txbuf; | ||
1269 | |||
1270 | switch (port_type) { | ||
1271 | case PORT_UNKNOWN: | ||
1272 | fifosize = 256; /* UART0 */ | ||
1273 | base_baud = 1843200; /* 1.8432MHz */ | ||
1274 | break; | ||
1275 | case PORT_8250: | ||
1276 | fifosize = 64; /* UART1~3 */ | ||
1277 | base_baud = 1843200; /* 1.8432MHz */ | ||
1278 | break; | ||
1279 | default: | ||
1280 | dev_err(&pdev->dev, "Invalid Port Type(=%d)\n", port_type); | ||
1281 | goto init_port_hal_free; | ||
1282 | } | ||
1283 | |||
1284 | iobase = pci_resource_start(pdev, 0); | ||
1285 | mapbase = pci_resource_start(pdev, 1); | ||
1286 | priv->mapbase = mapbase; | ||
1287 | priv->iobase = iobase; | ||
1288 | priv->pdev = pdev; | ||
1289 | priv->tx_empty = 1; | ||
1290 | priv->rxbuf.buf = rxbuf; | ||
1291 | priv->rxbuf.size = PAGE_SIZE; | ||
1292 | |||
1293 | priv->fifo_size = fifosize; | ||
1294 | priv->base_baud = base_baud; | ||
1295 | priv->port_type = PORT_MAX_8250 + port_type + 1; | ||
1296 | priv->port.dev = &pdev->dev; | ||
1297 | priv->port.iobase = iobase; | ||
1298 | priv->port.membase = NULL; | ||
1299 | priv->port.mapbase = mapbase; | ||
1300 | priv->port.irq = pdev->irq; | ||
1301 | priv->port.iotype = UPIO_PORT; | ||
1302 | priv->port.ops = &pch_uart_ops; | ||
1303 | priv->port.flags = UPF_BOOT_AUTOCONF; | ||
1304 | priv->port.fifosize = fifosize; | ||
1305 | priv->port.line = num++; | ||
1306 | priv->trigger = PCH_UART_HAL_TRIGGER_M; | ||
1307 | |||
1308 | pci_set_drvdata(pdev, priv); | ||
1309 | pch_uart_hal_request(pdev, fifosize, base_baud); | ||
1310 | ret = uart_add_one_port(&pch_uart_driver, &priv->port); | ||
1311 | if (ret < 0) | ||
1312 | goto init_port_hal_free; | ||
1313 | |||
1314 | return priv; | ||
1315 | |||
1316 | init_port_hal_free: | ||
1317 | free_page((unsigned long)rxbuf); | ||
1318 | init_port_free_txbuf: | ||
1319 | kfree(priv); | ||
1320 | init_port_alloc_err: | ||
1321 | |||
1322 | return NULL; | ||
1323 | } | ||
1324 | |||
1325 | static void pch_uart_exit_port(struct eg20t_port *priv) | ||
1326 | { | ||
1327 | uart_remove_one_port(&pch_uart_driver, &priv->port); | ||
1328 | pci_set_drvdata(priv->pdev, NULL); | ||
1329 | free_page((unsigned long)priv->rxbuf.buf); | ||
1330 | } | ||
1331 | |||
1332 | static void pch_uart_pci_remove(struct pci_dev *pdev) | ||
1333 | { | ||
1334 | struct eg20t_port *priv; | ||
1335 | |||
1336 | priv = (struct eg20t_port *)pci_get_drvdata(pdev); | ||
1337 | pch_uart_exit_port(priv); | ||
1338 | pci_disable_device(pdev); | ||
1339 | kfree(priv); | ||
1340 | return; | ||
1341 | } | ||
1342 | #ifdef CONFIG_PM | ||
1343 | static int pch_uart_pci_suspend(struct pci_dev *pdev, pm_message_t state) | ||
1344 | { | ||
1345 | struct eg20t_port *priv = pci_get_drvdata(pdev); | ||
1346 | |||
1347 | uart_suspend_port(&pch_uart_driver, &priv->port); | ||
1348 | |||
1349 | pci_save_state(pdev); | ||
1350 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | ||
1351 | return 0; | ||
1352 | } | ||
1353 | |||
1354 | static int pch_uart_pci_resume(struct pci_dev *pdev) | ||
1355 | { | ||
1356 | struct eg20t_port *priv = pci_get_drvdata(pdev); | ||
1357 | int ret; | ||
1358 | |||
1359 | pci_set_power_state(pdev, PCI_D0); | ||
1360 | pci_restore_state(pdev); | ||
1361 | |||
1362 | ret = pci_enable_device(pdev); | ||
1363 | if (ret) { | ||
1364 | dev_err(&pdev->dev, | ||
1365 | "%s-pci_enable_device failed(ret=%d) ", __func__, ret); | ||
1366 | return ret; | ||
1367 | } | ||
1368 | |||
1369 | uart_resume_port(&pch_uart_driver, &priv->port); | ||
1370 | |||
1371 | return 0; | ||
1372 | } | ||
1373 | #else | ||
1374 | #define pch_uart_pci_suspend NULL | ||
1375 | #define pch_uart_pci_resume NULL | ||
1376 | #endif | ||
1377 | |||
1378 | static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = { | ||
1379 | {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8811), | ||
1380 | .driver_data = PCH_UART_8LINE}, | ||
1381 | {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8812), | ||
1382 | .driver_data = PCH_UART_2LINE}, | ||
1383 | {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8813), | ||
1384 | .driver_data = PCH_UART_2LINE}, | ||
1385 | {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8814), | ||
1386 | .driver_data = PCH_UART_2LINE}, | ||
1387 | {0,}, | ||
1388 | }; | ||
1389 | |||
1390 | static int __devinit pch_uart_pci_probe(struct pci_dev *pdev, | ||
1391 | const struct pci_device_id *id) | ||
1392 | { | ||
1393 | int ret; | ||
1394 | struct eg20t_port *priv; | ||
1395 | |||
1396 | ret = pci_enable_device(pdev); | ||
1397 | if (ret < 0) | ||
1398 | goto probe_error; | ||
1399 | |||
1400 | priv = pch_uart_init_port(pdev, id->driver_data); | ||
1401 | if (!priv) { | ||
1402 | ret = -EBUSY; | ||
1403 | goto probe_disable_device; | ||
1404 | } | ||
1405 | pci_set_drvdata(pdev, priv); | ||
1406 | |||
1407 | return ret; | ||
1408 | |||
1409 | probe_disable_device: | ||
1410 | pci_disable_device(pdev); | ||
1411 | probe_error: | ||
1412 | return ret; | ||
1413 | } | ||
1414 | |||
1415 | static struct pci_driver pch_uart_pci_driver = { | ||
1416 | .name = "pch_uart", | ||
1417 | .id_table = pch_uart_pci_id, | ||
1418 | .probe = pch_uart_pci_probe, | ||
1419 | .remove = __devexit_p(pch_uart_pci_remove), | ||
1420 | .suspend = pch_uart_pci_suspend, | ||
1421 | .resume = pch_uart_pci_resume, | ||
1422 | }; | ||
1423 | |||
1424 | static int __init pch_uart_module_init(void) | ||
1425 | { | ||
1426 | int ret; | ||
1427 | |||
1428 | /* register as UART driver */ | ||
1429 | ret = uart_register_driver(&pch_uart_driver); | ||
1430 | if (ret < 0) | ||
1431 | return ret; | ||
1432 | |||
1433 | /* register as PCI driver */ | ||
1434 | ret = pci_register_driver(&pch_uart_pci_driver); | ||
1435 | if (ret < 0) | ||
1436 | uart_unregister_driver(&pch_uart_driver); | ||
1437 | |||
1438 | return ret; | ||
1439 | } | ||
1440 | module_init(pch_uart_module_init); | ||
1441 | |||
1442 | static void __exit pch_uart_module_exit(void) | ||
1443 | { | ||
1444 | pci_unregister_driver(&pch_uart_pci_driver); | ||
1445 | uart_unregister_driver(&pch_uart_driver); | ||
1446 | } | ||
1447 | module_exit(pch_uart_module_exit); | ||
1448 | |||
1449 | MODULE_LICENSE("GPL v2"); | ||
1450 | MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver"); | ||
1451 | module_param(default_baud, uint, S_IRUGO); | ||
diff --git a/drivers/serial/serial_core.c b/drivers/serial/serial_core.c index 9ffa5bee44ab..460a72d91bb7 100644 --- a/drivers/serial/serial_core.c +++ b/drivers/serial/serial_core.c | |||
@@ -1985,7 +1985,8 @@ int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport) | |||
1985 | 1985 | ||
1986 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); | 1986 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
1987 | if (device_may_wakeup(tty_dev)) { | 1987 | if (device_may_wakeup(tty_dev)) { |
1988 | enable_irq_wake(uport->irq); | 1988 | if (!enable_irq_wake(uport->irq)) |
1989 | uport->irq_wake = 1; | ||
1989 | put_device(tty_dev); | 1990 | put_device(tty_dev); |
1990 | mutex_unlock(&port->mutex); | 1991 | mutex_unlock(&port->mutex); |
1991 | return 0; | 1992 | return 0; |
@@ -2051,7 +2052,10 @@ int uart_resume_port(struct uart_driver *drv, struct uart_port *uport) | |||
2051 | 2052 | ||
2052 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); | 2053 | tty_dev = device_find_child(uport->dev, &match, serial_match_port); |
2053 | if (!uport->suspended && device_may_wakeup(tty_dev)) { | 2054 | if (!uport->suspended && device_may_wakeup(tty_dev)) { |
2054 | disable_irq_wake(uport->irq); | 2055 | if (uport->irq_wake) { |
2056 | disable_irq_wake(uport->irq); | ||
2057 | uport->irq_wake = 0; | ||
2058 | } | ||
2055 | mutex_unlock(&port->mutex); | 2059 | mutex_unlock(&port->mutex); |
2056 | return 0; | 2060 | return 0; |
2057 | } | 2061 | } |
@@ -2134,6 +2138,7 @@ uart_report_port(struct uart_driver *drv, struct uart_port *port) | |||
2134 | case UPIO_AU: | 2138 | case UPIO_AU: |
2135 | case UPIO_TSI: | 2139 | case UPIO_TSI: |
2136 | case UPIO_DWAPB: | 2140 | case UPIO_DWAPB: |
2141 | case UPIO_DWAPB32: | ||
2137 | snprintf(address, sizeof(address), | 2142 | snprintf(address, sizeof(address), |
2138 | "MMIO 0x%llx", (unsigned long long)port->mapbase); | 2143 | "MMIO 0x%llx", (unsigned long long)port->mapbase); |
2139 | break; | 2144 | break; |
@@ -2554,6 +2559,7 @@ int uart_match_port(struct uart_port *port1, struct uart_port *port2) | |||
2554 | case UPIO_AU: | 2559 | case UPIO_AU: |
2555 | case UPIO_TSI: | 2560 | case UPIO_TSI: |
2556 | case UPIO_DWAPB: | 2561 | case UPIO_DWAPB: |
2562 | case UPIO_DWAPB32: | ||
2557 | return (port1->mapbase == port2->mapbase); | 2563 | return (port1->mapbase == port2->mapbase); |
2558 | } | 2564 | } |
2559 | return 0; | 2565 | return 0; |
diff --git a/drivers/serial/vt8500_serial.c b/drivers/serial/vt8500_serial.c new file mode 100644 index 000000000000..322bf56c0d89 --- /dev/null +++ b/drivers/serial/vt8500_serial.c | |||
@@ -0,0 +1,648 @@ | |||
1 | /* | ||
2 | * drivers/serial/vt8500_serial.c | ||
3 | * | ||
4 | * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> | ||
5 | * | ||
6 | * Based on msm_serial.c, which is: | ||
7 | * Copyright (C) 2007 Google, Inc. | ||
8 | * Author: Robert Love <rlove@google.com> | ||
9 | * | ||
10 | * This software is licensed under the terms of the GNU General Public | ||
11 | * License version 2, as published by the Free Software Foundation, and | ||
12 | * may be copied, distributed, and modified under those terms. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | */ | ||
19 | |||
20 | #if defined(CONFIG_SERIAL_VT8500_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) | ||
21 | # define SUPPORT_SYSRQ | ||
22 | #endif | ||
23 | |||
24 | #include <linux/hrtimer.h> | ||
25 | #include <linux/delay.h> | ||
26 | #include <linux/module.h> | ||
27 | #include <linux/io.h> | ||
28 | #include <linux/ioport.h> | ||
29 | #include <linux/irq.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/console.h> | ||
32 | #include <linux/tty.h> | ||
33 | #include <linux/tty_flip.h> | ||
34 | #include <linux/serial_core.h> | ||
35 | #include <linux/serial.h> | ||
36 | #include <linux/slab.h> | ||
37 | #include <linux/clk.h> | ||
38 | #include <linux/platform_device.h> | ||
39 | |||
40 | /* | ||
41 | * UART Register offsets | ||
42 | */ | ||
43 | |||
44 | #define VT8500_URTDR 0x0000 /* Transmit data */ | ||
45 | #define VT8500_URRDR 0x0004 /* Receive data */ | ||
46 | #define VT8500_URDIV 0x0008 /* Clock/Baud rate divisor */ | ||
47 | #define VT8500_URLCR 0x000C /* Line control */ | ||
48 | #define VT8500_URICR 0x0010 /* IrDA control */ | ||
49 | #define VT8500_URIER 0x0014 /* Interrupt enable */ | ||
50 | #define VT8500_URISR 0x0018 /* Interrupt status */ | ||
51 | #define VT8500_URUSR 0x001c /* UART status */ | ||
52 | #define VT8500_URFCR 0x0020 /* FIFO control */ | ||
53 | #define VT8500_URFIDX 0x0024 /* FIFO index */ | ||
54 | #define VT8500_URBKR 0x0028 /* Break signal count */ | ||
55 | #define VT8500_URTOD 0x002c /* Time out divisor */ | ||
56 | #define VT8500_TXFIFO 0x1000 /* Transmit FIFO (16x8) */ | ||
57 | #define VT8500_RXFIFO 0x1020 /* Receive FIFO (16x10) */ | ||
58 | |||
59 | /* | ||
60 | * Interrupt enable and status bits | ||
61 | */ | ||
62 | |||
63 | #define TXDE (1 << 0) /* Tx Data empty */ | ||
64 | #define RXDF (1 << 1) /* Rx Data full */ | ||
65 | #define TXFAE (1 << 2) /* Tx FIFO almost empty */ | ||
66 | #define TXFE (1 << 3) /* Tx FIFO empty */ | ||
67 | #define RXFAF (1 << 4) /* Rx FIFO almost full */ | ||
68 | #define RXFF (1 << 5) /* Rx FIFO full */ | ||
69 | #define TXUDR (1 << 6) /* Tx underrun */ | ||
70 | #define RXOVER (1 << 7) /* Rx overrun */ | ||
71 | #define PER (1 << 8) /* Parity error */ | ||
72 | #define FER (1 << 9) /* Frame error */ | ||
73 | #define TCTS (1 << 10) /* Toggle of CTS */ | ||
74 | #define RXTOUT (1 << 11) /* Rx timeout */ | ||
75 | #define BKDONE (1 << 12) /* Break signal done */ | ||
76 | #define ERR (1 << 13) /* AHB error response */ | ||
77 | |||
78 | #define RX_FIFO_INTS (RXFAF | RXFF | RXOVER | PER | FER | RXTOUT) | ||
79 | #define TX_FIFO_INTS (TXFAE | TXFE | TXUDR) | ||
80 | |||
81 | struct vt8500_port { | ||
82 | struct uart_port uart; | ||
83 | char name[16]; | ||
84 | struct clk *clk; | ||
85 | unsigned int ier; | ||
86 | }; | ||
87 | |||
88 | static inline void vt8500_write(struct uart_port *port, unsigned int val, | ||
89 | unsigned int off) | ||
90 | { | ||
91 | writel(val, port->membase + off); | ||
92 | } | ||
93 | |||
94 | static inline unsigned int vt8500_read(struct uart_port *port, unsigned int off) | ||
95 | { | ||
96 | return readl(port->membase + off); | ||
97 | } | ||
98 | |||
99 | static void vt8500_stop_tx(struct uart_port *port) | ||
100 | { | ||
101 | struct vt8500_port *vt8500_port = container_of(port, | ||
102 | struct vt8500_port, | ||
103 | uart); | ||
104 | |||
105 | vt8500_port->ier &= ~TX_FIFO_INTS; | ||
106 | vt8500_write(port, vt8500_port->ier, VT8500_URIER); | ||
107 | } | ||
108 | |||
109 | static void vt8500_stop_rx(struct uart_port *port) | ||
110 | { | ||
111 | struct vt8500_port *vt8500_port = container_of(port, | ||
112 | struct vt8500_port, | ||
113 | uart); | ||
114 | |||
115 | vt8500_port->ier &= ~RX_FIFO_INTS; | ||
116 | vt8500_write(port, vt8500_port->ier, VT8500_URIER); | ||
117 | } | ||
118 | |||
119 | static void vt8500_enable_ms(struct uart_port *port) | ||
120 | { | ||
121 | struct vt8500_port *vt8500_port = container_of(port, | ||
122 | struct vt8500_port, | ||
123 | uart); | ||
124 | |||
125 | vt8500_port->ier |= TCTS; | ||
126 | vt8500_write(port, vt8500_port->ier, VT8500_URIER); | ||
127 | } | ||
128 | |||
129 | static void handle_rx(struct uart_port *port) | ||
130 | { | ||
131 | struct tty_struct *tty = tty_port_tty_get(&port->state->port); | ||
132 | if (!tty) { | ||
133 | /* Discard data: no tty available */ | ||
134 | int count = (vt8500_read(port, VT8500_URFIDX) & 0x1f00) >> 8; | ||
135 | u16 ch; | ||
136 | while (count--) | ||
137 | ch = readw(port->membase + VT8500_RXFIFO); | ||
138 | return; | ||
139 | } | ||
140 | |||
141 | /* | ||
142 | * Handle overrun | ||
143 | */ | ||
144 | if ((vt8500_read(port, VT8500_URISR) & RXOVER)) { | ||
145 | port->icount.overrun++; | ||
146 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); | ||
147 | } | ||
148 | |||
149 | /* and now the main RX loop */ | ||
150 | while (vt8500_read(port, VT8500_URFIDX) & 0x1f00) { | ||
151 | unsigned int c; | ||
152 | char flag = TTY_NORMAL; | ||
153 | |||
154 | c = readw(port->membase + VT8500_RXFIFO) & 0x3ff; | ||
155 | |||
156 | /* Mask conditions we're ignorning. */ | ||
157 | c &= ~port->read_status_mask; | ||
158 | |||
159 | if (c & FER) { | ||
160 | port->icount.frame++; | ||
161 | flag = TTY_FRAME; | ||
162 | } else if (c & PER) { | ||
163 | port->icount.parity++; | ||
164 | flag = TTY_PARITY; | ||
165 | } | ||
166 | port->icount.rx++; | ||
167 | |||
168 | if (!uart_handle_sysrq_char(port, c)) | ||
169 | tty_insert_flip_char(tty, c, flag); | ||
170 | } | ||
171 | |||
172 | tty_flip_buffer_push(tty); | ||
173 | tty_kref_put(tty); | ||
174 | } | ||
175 | |||
176 | static void handle_tx(struct uart_port *port) | ||
177 | { | ||
178 | struct circ_buf *xmit = &port->state->xmit; | ||
179 | |||
180 | if (port->x_char) { | ||
181 | writeb(port->x_char, port->membase + VT8500_TXFIFO); | ||
182 | port->icount.tx++; | ||
183 | port->x_char = 0; | ||
184 | } | ||
185 | if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { | ||
186 | vt8500_stop_tx(port); | ||
187 | return; | ||
188 | } | ||
189 | |||
190 | while ((vt8500_read(port, VT8500_URFIDX) & 0x1f) < 16) { | ||
191 | if (uart_circ_empty(xmit)) | ||
192 | break; | ||
193 | |||
194 | writeb(xmit->buf[xmit->tail], port->membase + VT8500_TXFIFO); | ||
195 | |||
196 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); | ||
197 | port->icount.tx++; | ||
198 | } | ||
199 | |||
200 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) | ||
201 | uart_write_wakeup(port); | ||
202 | |||
203 | if (uart_circ_empty(xmit)) | ||
204 | vt8500_stop_tx(port); | ||
205 | } | ||
206 | |||
207 | static void vt8500_start_tx(struct uart_port *port) | ||
208 | { | ||
209 | struct vt8500_port *vt8500_port = container_of(port, | ||
210 | struct vt8500_port, | ||
211 | uart); | ||
212 | |||
213 | vt8500_port->ier &= ~TX_FIFO_INTS; | ||
214 | vt8500_write(port, vt8500_port->ier, VT8500_URIER); | ||
215 | handle_tx(port); | ||
216 | vt8500_port->ier |= TX_FIFO_INTS; | ||
217 | vt8500_write(port, vt8500_port->ier, VT8500_URIER); | ||
218 | } | ||
219 | |||
220 | static void handle_delta_cts(struct uart_port *port) | ||
221 | { | ||
222 | port->icount.cts++; | ||
223 | wake_up_interruptible(&port->state->port.delta_msr_wait); | ||
224 | } | ||
225 | |||
226 | static irqreturn_t vt8500_irq(int irq, void *dev_id) | ||
227 | { | ||
228 | struct uart_port *port = dev_id; | ||
229 | unsigned long isr; | ||
230 | |||
231 | spin_lock(&port->lock); | ||
232 | isr = vt8500_read(port, VT8500_URISR); | ||
233 | |||
234 | /* Acknowledge active status bits */ | ||
235 | vt8500_write(port, isr, VT8500_URISR); | ||
236 | |||
237 | if (isr & RX_FIFO_INTS) | ||
238 | handle_rx(port); | ||
239 | if (isr & TX_FIFO_INTS) | ||
240 | handle_tx(port); | ||
241 | if (isr & TCTS) | ||
242 | handle_delta_cts(port); | ||
243 | |||
244 | spin_unlock(&port->lock); | ||
245 | |||
246 | return IRQ_HANDLED; | ||
247 | } | ||
248 | |||
249 | static unsigned int vt8500_tx_empty(struct uart_port *port) | ||
250 | { | ||
251 | return (vt8500_read(port, VT8500_URFIDX) & 0x1f) < 16 ? | ||
252 | TIOCSER_TEMT : 0; | ||
253 | } | ||
254 | |||
255 | static unsigned int vt8500_get_mctrl(struct uart_port *port) | ||
256 | { | ||
257 | unsigned int usr; | ||
258 | |||
259 | usr = vt8500_read(port, VT8500_URUSR); | ||
260 | if (usr & (1 << 4)) | ||
261 | return TIOCM_CTS; | ||
262 | else | ||
263 | return 0; | ||
264 | } | ||
265 | |||
266 | static void vt8500_set_mctrl(struct uart_port *port, unsigned int mctrl) | ||
267 | { | ||
268 | } | ||
269 | |||
270 | static void vt8500_break_ctl(struct uart_port *port, int break_ctl) | ||
271 | { | ||
272 | if (break_ctl) | ||
273 | vt8500_write(port, vt8500_read(port, VT8500_URLCR) | (1 << 9), | ||
274 | VT8500_URLCR); | ||
275 | } | ||
276 | |||
277 | static int vt8500_set_baud_rate(struct uart_port *port, unsigned int baud) | ||
278 | { | ||
279 | unsigned long div; | ||
280 | unsigned int loops = 1000; | ||
281 | |||
282 | div = vt8500_read(port, VT8500_URDIV) & ~(0x3ff); | ||
283 | |||
284 | if (unlikely((baud < 900) || (baud > 921600))) | ||
285 | div |= 7; | ||
286 | else | ||
287 | div |= (921600 / baud) - 1; | ||
288 | |||
289 | while ((vt8500_read(port, VT8500_URUSR) & (1 << 5)) && --loops) | ||
290 | cpu_relax(); | ||
291 | vt8500_write(port, div, VT8500_URDIV); | ||
292 | |||
293 | return baud; | ||
294 | } | ||
295 | |||
296 | static int vt8500_startup(struct uart_port *port) | ||
297 | { | ||
298 | struct vt8500_port *vt8500_port = | ||
299 | container_of(port, struct vt8500_port, uart); | ||
300 | int ret; | ||
301 | |||
302 | snprintf(vt8500_port->name, sizeof(vt8500_port->name), | ||
303 | "vt8500_serial%d", port->line); | ||
304 | |||
305 | ret = request_irq(port->irq, vt8500_irq, IRQF_TRIGGER_HIGH, | ||
306 | vt8500_port->name, port); | ||
307 | if (unlikely(ret)) | ||
308 | return ret; | ||
309 | |||
310 | vt8500_write(port, 0x03, VT8500_URLCR); /* enable TX & RX */ | ||
311 | |||
312 | return 0; | ||
313 | } | ||
314 | |||
315 | static void vt8500_shutdown(struct uart_port *port) | ||
316 | { | ||
317 | struct vt8500_port *vt8500_port = | ||
318 | container_of(port, struct vt8500_port, uart); | ||
319 | |||
320 | vt8500_port->ier = 0; | ||
321 | |||
322 | /* disable interrupts and FIFOs */ | ||
323 | vt8500_write(&vt8500_port->uart, 0, VT8500_URIER); | ||
324 | vt8500_write(&vt8500_port->uart, 0x880, VT8500_URFCR); | ||
325 | free_irq(port->irq, port); | ||
326 | } | ||
327 | |||
328 | static void vt8500_set_termios(struct uart_port *port, | ||
329 | struct ktermios *termios, | ||
330 | struct ktermios *old) | ||
331 | { | ||
332 | struct vt8500_port *vt8500_port = | ||
333 | container_of(port, struct vt8500_port, uart); | ||
334 | unsigned long flags; | ||
335 | unsigned int baud, lcr; | ||
336 | unsigned int loops = 1000; | ||
337 | |||
338 | spin_lock_irqsave(&port->lock, flags); | ||
339 | |||
340 | /* calculate and set baud rate */ | ||
341 | baud = uart_get_baud_rate(port, termios, old, 900, 921600); | ||
342 | baud = vt8500_set_baud_rate(port, baud); | ||
343 | if (tty_termios_baud_rate(termios)) | ||
344 | tty_termios_encode_baud_rate(termios, baud, baud); | ||
345 | |||
346 | /* calculate parity */ | ||
347 | lcr = vt8500_read(&vt8500_port->uart, VT8500_URLCR); | ||
348 | lcr &= ~((1 << 5) | (1 << 4)); | ||
349 | if (termios->c_cflag & PARENB) { | ||
350 | lcr |= (1 << 4); | ||
351 | termios->c_cflag &= ~CMSPAR; | ||
352 | if (termios->c_cflag & PARODD) | ||
353 | lcr |= (1 << 5); | ||
354 | } | ||
355 | |||
356 | /* calculate bits per char */ | ||
357 | lcr &= ~(1 << 2); | ||
358 | switch (termios->c_cflag & CSIZE) { | ||
359 | case CS7: | ||
360 | break; | ||
361 | case CS8: | ||
362 | default: | ||
363 | lcr |= (1 << 2); | ||
364 | termios->c_cflag &= ~CSIZE; | ||
365 | termios->c_cflag |= CS8; | ||
366 | break; | ||
367 | } | ||
368 | |||
369 | /* calculate stop bits */ | ||
370 | lcr &= ~(1 << 3); | ||
371 | if (termios->c_cflag & CSTOPB) | ||
372 | lcr |= (1 << 3); | ||
373 | |||
374 | /* set parity, bits per char, and stop bit */ | ||
375 | vt8500_write(&vt8500_port->uart, lcr, VT8500_URLCR); | ||
376 | |||
377 | /* Configure status bits to ignore based on termio flags. */ | ||
378 | port->read_status_mask = 0; | ||
379 | if (termios->c_iflag & IGNPAR) | ||
380 | port->read_status_mask = FER | PER; | ||
381 | |||
382 | uart_update_timeout(port, termios->c_cflag, baud); | ||
383 | |||
384 | /* Reset FIFOs */ | ||
385 | vt8500_write(&vt8500_port->uart, 0x88c, VT8500_URFCR); | ||
386 | while ((vt8500_read(&vt8500_port->uart, VT8500_URFCR) & 0xc) | ||
387 | && --loops) | ||
388 | cpu_relax(); | ||
389 | |||
390 | /* Every possible FIFO-related interrupt */ | ||
391 | vt8500_port->ier = RX_FIFO_INTS | TX_FIFO_INTS; | ||
392 | |||
393 | /* | ||
394 | * CTS flow control | ||
395 | */ | ||
396 | if (UART_ENABLE_MS(&vt8500_port->uart, termios->c_cflag)) | ||
397 | vt8500_port->ier |= TCTS; | ||
398 | |||
399 | vt8500_write(&vt8500_port->uart, 0x881, VT8500_URFCR); | ||
400 | vt8500_write(&vt8500_port->uart, vt8500_port->ier, VT8500_URIER); | ||
401 | |||
402 | spin_unlock_irqrestore(&port->lock, flags); | ||
403 | } | ||
404 | |||
405 | static const char *vt8500_type(struct uart_port *port) | ||
406 | { | ||
407 | struct vt8500_port *vt8500_port = | ||
408 | container_of(port, struct vt8500_port, uart); | ||
409 | return vt8500_port->name; | ||
410 | } | ||
411 | |||
412 | static void vt8500_release_port(struct uart_port *port) | ||
413 | { | ||
414 | } | ||
415 | |||
416 | static int vt8500_request_port(struct uart_port *port) | ||
417 | { | ||
418 | return 0; | ||
419 | } | ||
420 | |||
421 | static void vt8500_config_port(struct uart_port *port, int flags) | ||
422 | { | ||
423 | port->type = PORT_VT8500; | ||
424 | } | ||
425 | |||
426 | static int vt8500_verify_port(struct uart_port *port, | ||
427 | struct serial_struct *ser) | ||
428 | { | ||
429 | if (unlikely(ser->type != PORT_UNKNOWN && ser->type != PORT_VT8500)) | ||
430 | return -EINVAL; | ||
431 | if (unlikely(port->irq != ser->irq)) | ||
432 | return -EINVAL; | ||
433 | return 0; | ||
434 | } | ||
435 | |||
436 | static struct vt8500_port *vt8500_uart_ports[4]; | ||
437 | static struct uart_driver vt8500_uart_driver; | ||
438 | |||
439 | #ifdef CONFIG_SERIAL_VT8500_CONSOLE | ||
440 | |||
441 | static inline void wait_for_xmitr(struct uart_port *port) | ||
442 | { | ||
443 | unsigned int status, tmout = 10000; | ||
444 | |||
445 | /* Wait up to 10ms for the character(s) to be sent. */ | ||
446 | do { | ||
447 | status = vt8500_read(port, VT8500_URFIDX); | ||
448 | |||
449 | if (--tmout == 0) | ||
450 | break; | ||
451 | udelay(1); | ||
452 | } while (status & 0x10); | ||
453 | } | ||
454 | |||
455 | static void vt8500_console_putchar(struct uart_port *port, int c) | ||
456 | { | ||
457 | wait_for_xmitr(port); | ||
458 | writeb(c, port->membase + VT8500_TXFIFO); | ||
459 | } | ||
460 | |||
461 | static void vt8500_console_write(struct console *co, const char *s, | ||
462 | unsigned int count) | ||
463 | { | ||
464 | struct vt8500_port *vt8500_port = vt8500_uart_ports[co->index]; | ||
465 | unsigned long ier; | ||
466 | |||
467 | BUG_ON(co->index < 0 || co->index >= vt8500_uart_driver.nr); | ||
468 | |||
469 | ier = vt8500_read(&vt8500_port->uart, VT8500_URIER); | ||
470 | vt8500_write(&vt8500_port->uart, VT8500_URIER, 0); | ||
471 | |||
472 | uart_console_write(&vt8500_port->uart, s, count, | ||
473 | vt8500_console_putchar); | ||
474 | |||
475 | /* | ||
476 | * Finally, wait for transmitter to become empty | ||
477 | * and switch back to FIFO | ||
478 | */ | ||
479 | wait_for_xmitr(&vt8500_port->uart); | ||
480 | vt8500_write(&vt8500_port->uart, VT8500_URIER, ier); | ||
481 | } | ||
482 | |||
483 | static int __init vt8500_console_setup(struct console *co, char *options) | ||
484 | { | ||
485 | struct vt8500_port *vt8500_port; | ||
486 | int baud = 9600; | ||
487 | int bits = 8; | ||
488 | int parity = 'n'; | ||
489 | int flow = 'n'; | ||
490 | |||
491 | if (unlikely(co->index >= vt8500_uart_driver.nr || co->index < 0)) | ||
492 | return -ENXIO; | ||
493 | |||
494 | vt8500_port = vt8500_uart_ports[co->index]; | ||
495 | |||
496 | if (!vt8500_port) | ||
497 | return -ENODEV; | ||
498 | |||
499 | if (options) | ||
500 | uart_parse_options(options, &baud, &parity, &bits, &flow); | ||
501 | |||
502 | return uart_set_options(&vt8500_port->uart, | ||
503 | co, baud, parity, bits, flow); | ||
504 | } | ||
505 | |||
506 | static struct console vt8500_console = { | ||
507 | .name = "ttyWMT", | ||
508 | .write = vt8500_console_write, | ||
509 | .device = uart_console_device, | ||
510 | .setup = vt8500_console_setup, | ||
511 | .flags = CON_PRINTBUFFER, | ||
512 | .index = -1, | ||
513 | .data = &vt8500_uart_driver, | ||
514 | }; | ||
515 | |||
516 | #define VT8500_CONSOLE (&vt8500_console) | ||
517 | |||
518 | #else | ||
519 | #define VT8500_CONSOLE NULL | ||
520 | #endif | ||
521 | |||
522 | static struct uart_ops vt8500_uart_pops = { | ||
523 | .tx_empty = vt8500_tx_empty, | ||
524 | .set_mctrl = vt8500_set_mctrl, | ||
525 | .get_mctrl = vt8500_get_mctrl, | ||
526 | .stop_tx = vt8500_stop_tx, | ||
527 | .start_tx = vt8500_start_tx, | ||
528 | .stop_rx = vt8500_stop_rx, | ||
529 | .enable_ms = vt8500_enable_ms, | ||
530 | .break_ctl = vt8500_break_ctl, | ||
531 | .startup = vt8500_startup, | ||
532 | .shutdown = vt8500_shutdown, | ||
533 | .set_termios = vt8500_set_termios, | ||
534 | .type = vt8500_type, | ||
535 | .release_port = vt8500_release_port, | ||
536 | .request_port = vt8500_request_port, | ||
537 | .config_port = vt8500_config_port, | ||
538 | .verify_port = vt8500_verify_port, | ||
539 | }; | ||
540 | |||
541 | static struct uart_driver vt8500_uart_driver = { | ||
542 | .owner = THIS_MODULE, | ||
543 | .driver_name = "vt8500_serial", | ||
544 | .dev_name = "ttyWMT", | ||
545 | .nr = 6, | ||
546 | .cons = VT8500_CONSOLE, | ||
547 | }; | ||
548 | |||
549 | static int __init vt8500_serial_probe(struct platform_device *pdev) | ||
550 | { | ||
551 | struct vt8500_port *vt8500_port; | ||
552 | struct resource *mmres, *irqres; | ||
553 | int ret; | ||
554 | |||
555 | mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
556 | irqres = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | ||
557 | if (!mmres || !irqres) | ||
558 | return -ENODEV; | ||
559 | |||
560 | vt8500_port = kzalloc(sizeof(struct vt8500_port), GFP_KERNEL); | ||
561 | if (!vt8500_port) | ||
562 | return -ENOMEM; | ||
563 | |||
564 | vt8500_port->uart.type = PORT_VT8500; | ||
565 | vt8500_port->uart.iotype = UPIO_MEM; | ||
566 | vt8500_port->uart.mapbase = mmres->start; | ||
567 | vt8500_port->uart.irq = irqres->start; | ||
568 | vt8500_port->uart.fifosize = 16; | ||
569 | vt8500_port->uart.ops = &vt8500_uart_pops; | ||
570 | vt8500_port->uart.line = pdev->id; | ||
571 | vt8500_port->uart.dev = &pdev->dev; | ||
572 | vt8500_port->uart.flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF; | ||
573 | vt8500_port->uart.uartclk = 24000000; | ||
574 | |||
575 | snprintf(vt8500_port->name, sizeof(vt8500_port->name), | ||
576 | "VT8500 UART%d", pdev->id); | ||
577 | |||
578 | vt8500_port->uart.membase = ioremap(mmres->start, | ||
579 | mmres->end - mmres->start + 1); | ||
580 | if (!vt8500_port->uart.membase) { | ||
581 | ret = -ENOMEM; | ||
582 | goto err; | ||
583 | } | ||
584 | |||
585 | vt8500_uart_ports[pdev->id] = vt8500_port; | ||
586 | |||
587 | uart_add_one_port(&vt8500_uart_driver, &vt8500_port->uart); | ||
588 | |||
589 | platform_set_drvdata(pdev, vt8500_port); | ||
590 | |||
591 | return 0; | ||
592 | |||
593 | err: | ||
594 | kfree(vt8500_port); | ||
595 | return ret; | ||
596 | } | ||
597 | |||
598 | static int __devexit vt8500_serial_remove(struct platform_device *pdev) | ||
599 | { | ||
600 | struct vt8500_port *vt8500_port = platform_get_drvdata(pdev); | ||
601 | |||
602 | platform_set_drvdata(pdev, NULL); | ||
603 | uart_remove_one_port(&vt8500_uart_driver, &vt8500_port->uart); | ||
604 | kfree(vt8500_port); | ||
605 | |||
606 | return 0; | ||
607 | } | ||
608 | |||
609 | static struct platform_driver vt8500_platform_driver = { | ||
610 | .probe = vt8500_serial_probe, | ||
611 | .remove = vt8500_serial_remove, | ||
612 | .driver = { | ||
613 | .name = "vt8500_serial", | ||
614 | .owner = THIS_MODULE, | ||
615 | }, | ||
616 | }; | ||
617 | |||
618 | static int __init vt8500_serial_init(void) | ||
619 | { | ||
620 | int ret; | ||
621 | |||
622 | ret = uart_register_driver(&vt8500_uart_driver); | ||
623 | if (unlikely(ret)) | ||
624 | return ret; | ||
625 | |||
626 | ret = platform_driver_register(&vt8500_platform_driver); | ||
627 | |||
628 | if (unlikely(ret)) | ||
629 | uart_unregister_driver(&vt8500_uart_driver); | ||
630 | |||
631 | return ret; | ||
632 | } | ||
633 | |||
634 | static void __exit vt8500_serial_exit(void) | ||
635 | { | ||
636 | #ifdef CONFIG_SERIAL_VT8500_CONSOLE | ||
637 | unregister_console(&vt8500_console); | ||
638 | #endif | ||
639 | platform_driver_unregister(&vt8500_platform_driver); | ||
640 | uart_unregister_driver(&vt8500_uart_driver); | ||
641 | } | ||
642 | |||
643 | module_init(vt8500_serial_init); | ||
644 | module_exit(vt8500_serial_exit); | ||
645 | |||
646 | MODULE_AUTHOR("Alexey Charkov <alchark@gmail.com>"); | ||
647 | MODULE_DESCRIPTION("Driver for vt8500 serial device"); | ||
648 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c index c5f8e5bda2b2..44b8412a04e8 100644 --- a/drivers/tty/n_gsm.c +++ b/drivers/tty/n_gsm.c | |||
@@ -19,7 +19,7 @@ | |||
19 | * | 19 | * |
20 | * TO DO: | 20 | * TO DO: |
21 | * Mostly done: ioctls for setting modes/timing | 21 | * Mostly done: ioctls for setting modes/timing |
22 | * Partly done: hooks so you can pull off frames to non tty devs | 22 | * Partly done: hooks so you can pull off frames to non tty devs |
23 | * Restart DLCI 0 when it closes ? | 23 | * Restart DLCI 0 when it closes ? |
24 | * Test basic encoding | 24 | * Test basic encoding |
25 | * Improve the tx engine | 25 | * Improve the tx engine |
@@ -73,8 +73,10 @@ module_param(debug, int, 0600); | |||
73 | #define T2 (2 * HZ) | 73 | #define T2 (2 * HZ) |
74 | #endif | 74 | #endif |
75 | 75 | ||
76 | /* Semi-arbitary buffer size limits. 0710 is normally run with 32-64 byte | 76 | /* |
77 | limits so this is plenty */ | 77 | * Semi-arbitary buffer size limits. 0710 is normally run with 32-64 byte |
78 | * limits so this is plenty | ||
79 | */ | ||
78 | #define MAX_MRU 512 | 80 | #define MAX_MRU 512 |
79 | #define MAX_MTU 512 | 81 | #define MAX_MTU 512 |
80 | 82 | ||
@@ -184,6 +186,9 @@ struct gsm_mux { | |||
184 | #define GSM_DATA 5 | 186 | #define GSM_DATA 5 |
185 | #define GSM_FCS 6 | 187 | #define GSM_FCS 6 |
186 | #define GSM_OVERRUN 7 | 188 | #define GSM_OVERRUN 7 |
189 | #define GSM_LEN0 8 | ||
190 | #define GSM_LEN1 9 | ||
191 | #define GSM_SSOF 10 | ||
187 | unsigned int len; | 192 | unsigned int len; |
188 | unsigned int address; | 193 | unsigned int address; |
189 | unsigned int count; | 194 | unsigned int count; |
@@ -191,6 +196,7 @@ struct gsm_mux { | |||
191 | int encoding; | 196 | int encoding; |
192 | u8 control; | 197 | u8 control; |
193 | u8 fcs; | 198 | u8 fcs; |
199 | u8 received_fcs; | ||
194 | u8 *txframe; /* TX framing buffer */ | 200 | u8 *txframe; /* TX framing buffer */ |
195 | 201 | ||
196 | /* Methods for the receiver side */ | 202 | /* Methods for the receiver side */ |
@@ -286,7 +292,7 @@ static spinlock_t gsm_mux_lock; | |||
286 | #define MDM_DV 0x40 | 292 | #define MDM_DV 0x40 |
287 | 293 | ||
288 | #define GSM0_SOF 0xF9 | 294 | #define GSM0_SOF 0xF9 |
289 | #define GSM1_SOF 0x7E | 295 | #define GSM1_SOF 0x7E |
290 | #define GSM1_ESCAPE 0x7D | 296 | #define GSM1_ESCAPE 0x7D |
291 | #define GSM1_ESCAPE_BITS 0x20 | 297 | #define GSM1_ESCAPE_BITS 0x20 |
292 | #define XON 0x11 | 298 | #define XON 0x11 |
@@ -429,61 +435,63 @@ static void gsm_print_packet(const char *hdr, int addr, int cr, | |||
429 | if (!(debug & 1)) | 435 | if (!(debug & 1)) |
430 | return; | 436 | return; |
431 | 437 | ||
432 | printk(KERN_INFO "%s %d) %c: ", hdr, addr, "RC"[cr]); | 438 | pr_info("%s %d) %c: ", hdr, addr, "RC"[cr]); |
433 | 439 | ||
434 | switch (control & ~PF) { | 440 | switch (control & ~PF) { |
435 | case SABM: | 441 | case SABM: |
436 | printk(KERN_CONT "SABM"); | 442 | pr_cont("SABM"); |
437 | break; | 443 | break; |
438 | case UA: | 444 | case UA: |
439 | printk(KERN_CONT "UA"); | 445 | pr_cont("UA"); |
440 | break; | 446 | break; |
441 | case DISC: | 447 | case DISC: |
442 | printk(KERN_CONT "DISC"); | 448 | pr_cont("DISC"); |
443 | break; | 449 | break; |
444 | case DM: | 450 | case DM: |
445 | printk(KERN_CONT "DM"); | 451 | pr_cont("DM"); |
446 | break; | 452 | break; |
447 | case UI: | 453 | case UI: |
448 | printk(KERN_CONT "UI"); | 454 | pr_cont("UI"); |
449 | break; | 455 | break; |
450 | case UIH: | 456 | case UIH: |
451 | printk(KERN_CONT "UIH"); | 457 | pr_cont("UIH"); |
452 | break; | 458 | break; |
453 | default: | 459 | default: |
454 | if (!(control & 0x01)) { | 460 | if (!(control & 0x01)) { |
455 | printk(KERN_CONT "I N(S)%d N(R)%d", | 461 | pr_cont("I N(S)%d N(R)%d", |
456 | (control & 0x0E) >> 1, (control & 0xE)>> 5); | 462 | (control & 0x0E) >> 1, (control & 0xE) >> 5); |
457 | } else switch (control & 0x0F) { | 463 | } else switch (control & 0x0F) { |
458 | case RR: | 464 | case RR: |
459 | printk("RR(%d)", (control & 0xE0) >> 5); | 465 | pr_cont("RR(%d)", (control & 0xE0) >> 5); |
460 | break; | 466 | break; |
461 | case RNR: | 467 | case RNR: |
462 | printk("RNR(%d)", (control & 0xE0) >> 5); | 468 | pr_cont("RNR(%d)", (control & 0xE0) >> 5); |
463 | break; | 469 | break; |
464 | case REJ: | 470 | case REJ: |
465 | printk("REJ(%d)", (control & 0xE0) >> 5); | 471 | pr_cont("REJ(%d)", (control & 0xE0) >> 5); |
466 | break; | 472 | break; |
467 | default: | 473 | default: |
468 | printk(KERN_CONT "[%02X]", control); | 474 | pr_cont("[%02X]", control); |
469 | } | 475 | } |
470 | } | 476 | } |
471 | 477 | ||
472 | if (control & PF) | 478 | if (control & PF) |
473 | printk(KERN_CONT "(P)"); | 479 | pr_cont("(P)"); |
474 | else | 480 | else |
475 | printk(KERN_CONT "(F)"); | 481 | pr_cont("(F)"); |
476 | 482 | ||
477 | if (dlen) { | 483 | if (dlen) { |
478 | int ct = 0; | 484 | int ct = 0; |
479 | while (dlen--) { | 485 | while (dlen--) { |
480 | if (ct % 8 == 0) | 486 | if (ct % 8 == 0) { |
481 | printk(KERN_CONT "\n "); | 487 | pr_cont("\n"); |
482 | printk(KERN_CONT "%02X ", *data++); | 488 | pr_debug(" "); |
489 | } | ||
490 | pr_cont("%02X ", *data++); | ||
483 | ct++; | 491 | ct++; |
484 | } | 492 | } |
485 | } | 493 | } |
486 | printk(KERN_CONT "\n"); | 494 | pr_cont("\n"); |
487 | } | 495 | } |
488 | 496 | ||
489 | 497 | ||
@@ -522,11 +530,13 @@ static void hex_packet(const unsigned char *p, int len) | |||
522 | { | 530 | { |
523 | int i; | 531 | int i; |
524 | for (i = 0; i < len; i++) { | 532 | for (i = 0; i < len; i++) { |
525 | if (i && (i % 16) == 0) | 533 | if (i && (i % 16) == 0) { |
526 | printk("\n"); | 534 | pr_cont("\n"); |
527 | printk("%02X ", *p++); | 535 | pr_debug(""); |
536 | } | ||
537 | pr_cont("%02X ", *p++); | ||
528 | } | 538 | } |
529 | printk("\n"); | 539 | pr_cont("\n"); |
530 | } | 540 | } |
531 | 541 | ||
532 | /** | 542 | /** |
@@ -676,7 +686,7 @@ static void gsm_data_kick(struct gsm_mux *gsm) | |||
676 | } | 686 | } |
677 | 687 | ||
678 | if (debug & 4) { | 688 | if (debug & 4) { |
679 | printk("gsm_data_kick: \n"); | 689 | pr_debug("gsm_data_kick:\n"); |
680 | hex_packet(gsm->txframe, len); | 690 | hex_packet(gsm->txframe, len); |
681 | } | 691 | } |
682 | 692 | ||
@@ -1231,7 +1241,7 @@ static void gsm_control_response(struct gsm_mux *gsm, unsigned int command, | |||
1231 | } | 1241 | } |
1232 | 1242 | ||
1233 | /** | 1243 | /** |
1234 | * gsm_control_transmit - send control packet | 1244 | * gsm_control_transmit - send control packet |
1235 | * @gsm: gsm mux | 1245 | * @gsm: gsm mux |
1236 | * @ctrl: frame to send | 1246 | * @ctrl: frame to send |
1237 | * | 1247 | * |
@@ -1361,7 +1371,7 @@ static void gsm_dlci_close(struct gsm_dlci *dlci) | |||
1361 | { | 1371 | { |
1362 | del_timer(&dlci->t1); | 1372 | del_timer(&dlci->t1); |
1363 | if (debug & 8) | 1373 | if (debug & 8) |
1364 | printk("DLCI %d goes closed.\n", dlci->addr); | 1374 | pr_debug("DLCI %d goes closed.\n", dlci->addr); |
1365 | dlci->state = DLCI_CLOSED; | 1375 | dlci->state = DLCI_CLOSED; |
1366 | if (dlci->addr != 0) { | 1376 | if (dlci->addr != 0) { |
1367 | struct tty_struct *tty = tty_port_tty_get(&dlci->port); | 1377 | struct tty_struct *tty = tty_port_tty_get(&dlci->port); |
@@ -1392,7 +1402,7 @@ static void gsm_dlci_open(struct gsm_dlci *dlci) | |||
1392 | /* This will let a tty open continue */ | 1402 | /* This will let a tty open continue */ |
1393 | dlci->state = DLCI_OPEN; | 1403 | dlci->state = DLCI_OPEN; |
1394 | if (debug & 8) | 1404 | if (debug & 8) |
1395 | printk("DLCI %d goes open.\n", dlci->addr); | 1405 | pr_debug("DLCI %d goes open.\n", dlci->addr); |
1396 | wake_up(&dlci->gsm->event); | 1406 | wake_up(&dlci->gsm->event); |
1397 | } | 1407 | } |
1398 | 1408 | ||
@@ -1494,29 +1504,29 @@ static void gsm_dlci_data(struct gsm_dlci *dlci, u8 *data, int len) | |||
1494 | unsigned int modem = 0; | 1504 | unsigned int modem = 0; |
1495 | 1505 | ||
1496 | if (debug & 16) | 1506 | if (debug & 16) |
1497 | printk("%d bytes for tty %p\n", len, tty); | 1507 | pr_debug("%d bytes for tty %p\n", len, tty); |
1498 | if (tty) { | 1508 | if (tty) { |
1499 | switch (dlci->adaption) { | 1509 | switch (dlci->adaption) { |
1500 | /* Unsupported types */ | 1510 | /* Unsupported types */ |
1501 | /* Packetised interruptible data */ | 1511 | /* Packetised interruptible data */ |
1502 | case 4: | 1512 | case 4: |
1503 | break; | 1513 | break; |
1504 | /* Packetised uininterruptible voice/data */ | 1514 | /* Packetised uininterruptible voice/data */ |
1505 | case 3: | 1515 | case 3: |
1506 | break; | 1516 | break; |
1507 | /* Asynchronous serial with line state in each frame */ | 1517 | /* Asynchronous serial with line state in each frame */ |
1508 | case 2: | 1518 | case 2: |
1509 | while (gsm_read_ea(&modem, *data++) == 0) { | 1519 | while (gsm_read_ea(&modem, *data++) == 0) { |
1510 | len--; | 1520 | len--; |
1511 | if (len == 0) | 1521 | if (len == 0) |
1512 | return; | 1522 | return; |
1513 | } | 1523 | } |
1514 | gsm_process_modem(tty, dlci, modem); | 1524 | gsm_process_modem(tty, dlci, modem); |
1515 | /* Line state will go via DLCI 0 controls only */ | 1525 | /* Line state will go via DLCI 0 controls only */ |
1516 | case 1: | 1526 | case 1: |
1517 | default: | 1527 | default: |
1518 | tty_insert_flip_string(tty, data, len); | 1528 | tty_insert_flip_string(tty, data, len); |
1519 | tty_flip_buffer_push(tty); | 1529 | tty_flip_buffer_push(tty); |
1520 | } | 1530 | } |
1521 | tty_kref_put(tty); | 1531 | tty_kref_put(tty); |
1522 | } | 1532 | } |
@@ -1625,7 +1635,6 @@ static void gsm_dlci_free(struct gsm_dlci *dlci) | |||
1625 | kfree(dlci); | 1635 | kfree(dlci); |
1626 | } | 1636 | } |
1627 | 1637 | ||
1628 | |||
1629 | /* | 1638 | /* |
1630 | * LAPBish link layer logic | 1639 | * LAPBish link layer logic |
1631 | */ | 1640 | */ |
@@ -1650,10 +1659,12 @@ static void gsm_queue(struct gsm_mux *gsm) | |||
1650 | 1659 | ||
1651 | if ((gsm->control & ~PF) == UI) | 1660 | if ((gsm->control & ~PF) == UI) |
1652 | gsm->fcs = gsm_fcs_add_block(gsm->fcs, gsm->buf, gsm->len); | 1661 | gsm->fcs = gsm_fcs_add_block(gsm->fcs, gsm->buf, gsm->len); |
1662 | /* generate final CRC with received FCS */ | ||
1663 | gsm->fcs = gsm_fcs_add(gsm->fcs, gsm->received_fcs); | ||
1653 | if (gsm->fcs != GOOD_FCS) { | 1664 | if (gsm->fcs != GOOD_FCS) { |
1654 | gsm->bad_fcs++; | 1665 | gsm->bad_fcs++; |
1655 | if (debug & 4) | 1666 | if (debug & 4) |
1656 | printk("BAD FCS %02x\n", gsm->fcs); | 1667 | pr_debug("BAD FCS %02x\n", gsm->fcs); |
1657 | return; | 1668 | return; |
1658 | } | 1669 | } |
1659 | address = gsm->address >> 1; | 1670 | address = gsm->address >> 1; |
@@ -1748,6 +1759,8 @@ invalid: | |||
1748 | 1759 | ||
1749 | static void gsm0_receive(struct gsm_mux *gsm, unsigned char c) | 1760 | static void gsm0_receive(struct gsm_mux *gsm, unsigned char c) |
1750 | { | 1761 | { |
1762 | unsigned int len; | ||
1763 | |||
1751 | switch (gsm->state) { | 1764 | switch (gsm->state) { |
1752 | case GSM_SEARCH: /* SOF marker */ | 1765 | case GSM_SEARCH: /* SOF marker */ |
1753 | if (c == GSM0_SOF) { | 1766 | if (c == GSM0_SOF) { |
@@ -1756,8 +1769,8 @@ static void gsm0_receive(struct gsm_mux *gsm, unsigned char c) | |||
1756 | gsm->len = 0; | 1769 | gsm->len = 0; |
1757 | gsm->fcs = INIT_FCS; | 1770 | gsm->fcs = INIT_FCS; |
1758 | } | 1771 | } |
1759 | break; /* Address EA */ | 1772 | break; |
1760 | case GSM_ADDRESS: | 1773 | case GSM_ADDRESS: /* Address EA */ |
1761 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); | 1774 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); |
1762 | if (gsm_read_ea(&gsm->address, c)) | 1775 | if (gsm_read_ea(&gsm->address, c)) |
1763 | gsm->state = GSM_CONTROL; | 1776 | gsm->state = GSM_CONTROL; |
@@ -1765,9 +1778,9 @@ static void gsm0_receive(struct gsm_mux *gsm, unsigned char c) | |||
1765 | case GSM_CONTROL: /* Control Byte */ | 1778 | case GSM_CONTROL: /* Control Byte */ |
1766 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); | 1779 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); |
1767 | gsm->control = c; | 1780 | gsm->control = c; |
1768 | gsm->state = GSM_LEN; | 1781 | gsm->state = GSM_LEN0; |
1769 | break; | 1782 | break; |
1770 | case GSM_LEN: /* Length EA */ | 1783 | case GSM_LEN0: /* Length EA */ |
1771 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); | 1784 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); |
1772 | if (gsm_read_ea(&gsm->len, c)) { | 1785 | if (gsm_read_ea(&gsm->len, c)) { |
1773 | if (gsm->len > gsm->mru) { | 1786 | if (gsm->len > gsm->mru) { |
@@ -1776,8 +1789,28 @@ static void gsm0_receive(struct gsm_mux *gsm, unsigned char c) | |||
1776 | break; | 1789 | break; |
1777 | } | 1790 | } |
1778 | gsm->count = 0; | 1791 | gsm->count = 0; |
1779 | gsm->state = GSM_DATA; | 1792 | if (!gsm->len) |
1793 | gsm->state = GSM_FCS; | ||
1794 | else | ||
1795 | gsm->state = GSM_DATA; | ||
1796 | break; | ||
1797 | } | ||
1798 | gsm->state = GSM_LEN1; | ||
1799 | break; | ||
1800 | case GSM_LEN1: | ||
1801 | gsm->fcs = gsm_fcs_add(gsm->fcs, c); | ||
1802 | len = c; | ||
1803 | gsm->len |= len << 7; | ||
1804 | if (gsm->len > gsm->mru) { | ||
1805 | gsm->bad_size++; | ||
1806 | gsm->state = GSM_SEARCH; | ||
1807 | break; | ||
1780 | } | 1808 | } |
1809 | gsm->count = 0; | ||
1810 | if (!gsm->len) | ||
1811 | gsm->state = GSM_FCS; | ||
1812 | else | ||
1813 | gsm->state = GSM_DATA; | ||
1781 | break; | 1814 | break; |
1782 | case GSM_DATA: /* Data */ | 1815 | case GSM_DATA: /* Data */ |
1783 | gsm->buf[gsm->count++] = c; | 1816 | gsm->buf[gsm->count++] = c; |
@@ -1785,16 +1818,25 @@ static void gsm0_receive(struct gsm_mux *gsm, unsigned char c) | |||
1785 | gsm->state = GSM_FCS; | 1818 | gsm->state = GSM_FCS; |
1786 | break; | 1819 | break; |
1787 | case GSM_FCS: /* FCS follows the packet */ | 1820 | case GSM_FCS: /* FCS follows the packet */ |
1788 | gsm->fcs = c; | 1821 | gsm->received_fcs = c; |
1822 | if (c == GSM0_SOF) { | ||
1823 | gsm->state = GSM_SEARCH; | ||
1824 | break; | ||
1825 | } | ||
1789 | gsm_queue(gsm); | 1826 | gsm_queue(gsm); |
1790 | /* And then back for the next frame */ | 1827 | gsm->state = GSM_SSOF; |
1791 | gsm->state = GSM_SEARCH; | 1828 | break; |
1829 | case GSM_SSOF: | ||
1830 | if (c == GSM0_SOF) { | ||
1831 | gsm->state = GSM_SEARCH; | ||
1832 | break; | ||
1833 | } | ||
1792 | break; | 1834 | break; |
1793 | } | 1835 | } |
1794 | } | 1836 | } |
1795 | 1837 | ||
1796 | /** | 1838 | /** |
1797 | * gsm0_receive - perform processing for non-transparency | 1839 | * gsm1_receive - perform processing for non-transparency |
1798 | * @gsm: gsm data for this ldisc instance | 1840 | * @gsm: gsm data for this ldisc instance |
1799 | * @c: character | 1841 | * @c: character |
1800 | * | 1842 | * |
@@ -1856,7 +1898,7 @@ static void gsm1_receive(struct gsm_mux *gsm, unsigned char c) | |||
1856 | gsm->state = GSM_DATA; | 1898 | gsm->state = GSM_DATA; |
1857 | break; | 1899 | break; |
1858 | case GSM_DATA: /* Data */ | 1900 | case GSM_DATA: /* Data */ |
1859 | if (gsm->count > gsm->mru ) { /* Allow one for the FCS */ | 1901 | if (gsm->count > gsm->mru) { /* Allow one for the FCS */ |
1860 | gsm->state = GSM_OVERRUN; | 1902 | gsm->state = GSM_OVERRUN; |
1861 | gsm->bad_size++; | 1903 | gsm->bad_size++; |
1862 | } else | 1904 | } else |
@@ -2034,9 +2076,6 @@ struct gsm_mux *gsm_alloc_mux(void) | |||
2034 | } | 2076 | } |
2035 | EXPORT_SYMBOL_GPL(gsm_alloc_mux); | 2077 | EXPORT_SYMBOL_GPL(gsm_alloc_mux); |
2036 | 2078 | ||
2037 | |||
2038 | |||
2039 | |||
2040 | /** | 2079 | /** |
2041 | * gsmld_output - write to link | 2080 | * gsmld_output - write to link |
2042 | * @gsm: our mux | 2081 | * @gsm: our mux |
@@ -2054,7 +2093,7 @@ static int gsmld_output(struct gsm_mux *gsm, u8 *data, int len) | |||
2054 | return -ENOSPC; | 2093 | return -ENOSPC; |
2055 | } | 2094 | } |
2056 | if (debug & 4) { | 2095 | if (debug & 4) { |
2057 | printk("-->%d bytes out\n", len); | 2096 | pr_debug("-->%d bytes out\n", len); |
2058 | hex_packet(data, len); | 2097 | hex_packet(data, len); |
2059 | } | 2098 | } |
2060 | gsm->tty->ops->write(gsm->tty, data, len); | 2099 | gsm->tty->ops->write(gsm->tty, data, len); |
@@ -2111,7 +2150,7 @@ static void gsmld_receive_buf(struct tty_struct *tty, const unsigned char *cp, | |||
2111 | char flags; | 2150 | char flags; |
2112 | 2151 | ||
2113 | if (debug & 4) { | 2152 | if (debug & 4) { |
2114 | printk("Inbytes %dd\n", count); | 2153 | pr_debug("Inbytes %dd\n", count); |
2115 | hex_packet(cp, count); | 2154 | hex_packet(cp, count); |
2116 | } | 2155 | } |
2117 | 2156 | ||
@@ -2128,7 +2167,7 @@ static void gsmld_receive_buf(struct tty_struct *tty, const unsigned char *cp, | |||
2128 | gsm->error(gsm, *dp, flags); | 2167 | gsm->error(gsm, *dp, flags); |
2129 | break; | 2168 | break; |
2130 | default: | 2169 | default: |
2131 | printk(KERN_ERR "%s: unknown flag %d\n", | 2170 | WARN_ONCE("%s: unknown flag %d\n", |
2132 | tty_name(tty, buf), flags); | 2171 | tty_name(tty, buf), flags); |
2133 | break; | 2172 | break; |
2134 | } | 2173 | } |
@@ -2323,7 +2362,7 @@ static int gsmld_config(struct tty_struct *tty, struct gsm_mux *gsm, | |||
2323 | int need_restart = 0; | 2362 | int need_restart = 0; |
2324 | 2363 | ||
2325 | /* Stuff we don't support yet - UI or I frame transport, windowing */ | 2364 | /* Stuff we don't support yet - UI or I frame transport, windowing */ |
2326 | if ((c->adaption !=1 && c->adaption != 2) || c->k) | 2365 | if ((c->adaption != 1 && c->adaption != 2) || c->k) |
2327 | return -EOPNOTSUPP; | 2366 | return -EOPNOTSUPP; |
2328 | /* Check the MRU/MTU range looks sane */ | 2367 | /* Check the MRU/MTU range looks sane */ |
2329 | if (c->mru > MAX_MRU || c->mtu > MAX_MTU || c->mru < 8 || c->mtu < 8) | 2368 | if (c->mru > MAX_MRU || c->mtu > MAX_MTU || c->mru < 8 || c->mtu < 8) |
@@ -2418,7 +2457,7 @@ static int gsmld_ioctl(struct tty_struct *tty, struct file *file, | |||
2418 | c.i = 1; | 2457 | c.i = 1; |
2419 | else | 2458 | else |
2420 | c.i = 2; | 2459 | c.i = 2; |
2421 | printk("Ftype %d i %d\n", gsm->ftype, c.i); | 2460 | pr_debug("Ftype %d i %d\n", gsm->ftype, c.i); |
2422 | c.mru = gsm->mru; | 2461 | c.mru = gsm->mru; |
2423 | c.mtu = gsm->mtu; | 2462 | c.mtu = gsm->mtu; |
2424 | c.k = 0; | 2463 | c.k = 0; |
@@ -2712,14 +2751,15 @@ static int __init gsm_init(void) | |||
2712 | /* Fill in our line protocol discipline, and register it */ | 2751 | /* Fill in our line protocol discipline, and register it */ |
2713 | int status = tty_register_ldisc(N_GSM0710, &tty_ldisc_packet); | 2752 | int status = tty_register_ldisc(N_GSM0710, &tty_ldisc_packet); |
2714 | if (status != 0) { | 2753 | if (status != 0) { |
2715 | printk(KERN_ERR "n_gsm: can't register line discipline (err = %d)\n", status); | 2754 | pr_err("n_gsm: can't register line discipline (err = %d)\n", |
2755 | status); | ||
2716 | return status; | 2756 | return status; |
2717 | } | 2757 | } |
2718 | 2758 | ||
2719 | gsm_tty_driver = alloc_tty_driver(256); | 2759 | gsm_tty_driver = alloc_tty_driver(256); |
2720 | if (!gsm_tty_driver) { | 2760 | if (!gsm_tty_driver) { |
2721 | tty_unregister_ldisc(N_GSM0710); | 2761 | tty_unregister_ldisc(N_GSM0710); |
2722 | printk(KERN_ERR "gsm_init: tty allocation failed.\n"); | 2762 | pr_err("gsm_init: tty allocation failed.\n"); |
2723 | return -EINVAL; | 2763 | return -EINVAL; |
2724 | } | 2764 | } |
2725 | gsm_tty_driver->owner = THIS_MODULE; | 2765 | gsm_tty_driver->owner = THIS_MODULE; |
@@ -2730,7 +2770,7 @@ static int __init gsm_init(void) | |||
2730 | gsm_tty_driver->type = TTY_DRIVER_TYPE_SERIAL; | 2770 | gsm_tty_driver->type = TTY_DRIVER_TYPE_SERIAL; |
2731 | gsm_tty_driver->subtype = SERIAL_TYPE_NORMAL; | 2771 | gsm_tty_driver->subtype = SERIAL_TYPE_NORMAL; |
2732 | gsm_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV | 2772 | gsm_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV |
2733 | | TTY_DRIVER_HARDWARE_BREAK; | 2773 | | TTY_DRIVER_HARDWARE_BREAK; |
2734 | gsm_tty_driver->init_termios = tty_std_termios; | 2774 | gsm_tty_driver->init_termios = tty_std_termios; |
2735 | /* Fixme */ | 2775 | /* Fixme */ |
2736 | gsm_tty_driver->init_termios.c_lflag &= ~ECHO; | 2776 | gsm_tty_driver->init_termios.c_lflag &= ~ECHO; |
@@ -2741,10 +2781,11 @@ static int __init gsm_init(void) | |||
2741 | if (tty_register_driver(gsm_tty_driver)) { | 2781 | if (tty_register_driver(gsm_tty_driver)) { |
2742 | put_tty_driver(gsm_tty_driver); | 2782 | put_tty_driver(gsm_tty_driver); |
2743 | tty_unregister_ldisc(N_GSM0710); | 2783 | tty_unregister_ldisc(N_GSM0710); |
2744 | printk(KERN_ERR "gsm_init: tty registration failed.\n"); | 2784 | pr_err("gsm_init: tty registration failed.\n"); |
2745 | return -EBUSY; | 2785 | return -EBUSY; |
2746 | } | 2786 | } |
2747 | printk(KERN_INFO "gsm_init: loaded as %d,%d.\n", gsm_tty_driver->major, gsm_tty_driver->minor_start); | 2787 | pr_debug("gsm_init: loaded as %d,%d.\n", |
2788 | gsm_tty_driver->major, gsm_tty_driver->minor_start); | ||
2748 | return 0; | 2789 | return 0; |
2749 | } | 2790 | } |
2750 | 2791 | ||
@@ -2752,10 +2793,10 @@ static void __exit gsm_exit(void) | |||
2752 | { | 2793 | { |
2753 | int status = tty_unregister_ldisc(N_GSM0710); | 2794 | int status = tty_unregister_ldisc(N_GSM0710); |
2754 | if (status != 0) | 2795 | if (status != 0) |
2755 | printk(KERN_ERR "n_gsm: can't unregister line discipline (err = %d)\n", status); | 2796 | pr_err("n_gsm: can't unregister line discipline (err = %d)\n", |
2797 | status); | ||
2756 | tty_unregister_driver(gsm_tty_driver); | 2798 | tty_unregister_driver(gsm_tty_driver); |
2757 | put_tty_driver(gsm_tty_driver); | 2799 | put_tty_driver(gsm_tty_driver); |
2758 | printk(KERN_INFO "gsm_init: unloaded.\n"); | ||
2759 | } | 2800 | } |
2760 | 2801 | ||
2761 | module_init(gsm_init); | 2802 | module_init(gsm_init); |
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index 35480dd57a30..464d09d97873 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c | |||
@@ -2627,6 +2627,11 @@ long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
2627 | return put_user(tty->ldisc->ops->num, (int __user *)p); | 2627 | return put_user(tty->ldisc->ops->num, (int __user *)p); |
2628 | case TIOCSETD: | 2628 | case TIOCSETD: |
2629 | return tiocsetd(tty, p); | 2629 | return tiocsetd(tty, p); |
2630 | case TIOCGDEV: | ||
2631 | { | ||
2632 | unsigned int ret = new_encode_dev(tty_devnum(real_tty)); | ||
2633 | return put_user(ret, (unsigned int __user *)p); | ||
2634 | } | ||
2630 | /* | 2635 | /* |
2631 | * Break handling | 2636 | * Break handling |
2632 | */ | 2637 | */ |
@@ -3241,9 +3246,45 @@ static int __init tty_class_init(void) | |||
3241 | postcore_initcall(tty_class_init); | 3246 | postcore_initcall(tty_class_init); |
3242 | 3247 | ||
3243 | /* 3/2004 jmc: why do these devices exist? */ | 3248 | /* 3/2004 jmc: why do these devices exist? */ |
3244 | |||
3245 | static struct cdev tty_cdev, console_cdev; | 3249 | static struct cdev tty_cdev, console_cdev; |
3246 | 3250 | ||
3251 | static ssize_t show_cons_active(struct device *dev, | ||
3252 | struct device_attribute *attr, char *buf) | ||
3253 | { | ||
3254 | struct console *cs[16]; | ||
3255 | int i = 0; | ||
3256 | struct console *c; | ||
3257 | ssize_t count = 0; | ||
3258 | |||
3259 | acquire_console_sem(); | ||
3260 | for (c = console_drivers; c; c = c->next) { | ||
3261 | if (!c->device) | ||
3262 | continue; | ||
3263 | if (!c->write) | ||
3264 | continue; | ||
3265 | if ((c->flags & CON_ENABLED) == 0) | ||
3266 | continue; | ||
3267 | cs[i++] = c; | ||
3268 | if (i >= ARRAY_SIZE(cs)) | ||
3269 | break; | ||
3270 | } | ||
3271 | while (i--) | ||
3272 | count += sprintf(buf + count, "%s%d%c", | ||
3273 | cs[i]->name, cs[i]->index, i ? ' ':'\n'); | ||
3274 | release_console_sem(); | ||
3275 | |||
3276 | return count; | ||
3277 | } | ||
3278 | static DEVICE_ATTR(active, S_IRUGO, show_cons_active, NULL); | ||
3279 | |||
3280 | static struct device *consdev; | ||
3281 | |||
3282 | void console_sysfs_notify(void) | ||
3283 | { | ||
3284 | if (consdev) | ||
3285 | sysfs_notify(&consdev->kobj, NULL, "active"); | ||
3286 | } | ||
3287 | |||
3247 | /* | 3288 | /* |
3248 | * Ok, now we can initialize the rest of the tty devices and can count | 3289 | * Ok, now we can initialize the rest of the tty devices and can count |
3249 | * on memory allocations, interrupts etc.. | 3290 | * on memory allocations, interrupts etc.. |
@@ -3254,15 +3295,18 @@ int __init tty_init(void) | |||
3254 | if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) || | 3295 | if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) || |
3255 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0) | 3296 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0) |
3256 | panic("Couldn't register /dev/tty driver\n"); | 3297 | panic("Couldn't register /dev/tty driver\n"); |
3257 | device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, | 3298 | device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty"); |
3258 | "tty"); | ||
3259 | 3299 | ||
3260 | cdev_init(&console_cdev, &console_fops); | 3300 | cdev_init(&console_cdev, &console_fops); |
3261 | if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) || | 3301 | if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) || |
3262 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0) | 3302 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0) |
3263 | panic("Couldn't register /dev/console driver\n"); | 3303 | panic("Couldn't register /dev/console driver\n"); |
3264 | device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL, | 3304 | consdev = device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL, |
3265 | "console"); | 3305 | "console"); |
3306 | if (IS_ERR(consdev)) | ||
3307 | consdev = NULL; | ||
3308 | else | ||
3309 | device_create_file(consdev, &dev_attr_active); | ||
3266 | 3310 | ||
3267 | #ifdef CONFIG_VT | 3311 | #ifdef CONFIG_VT |
3268 | vty_init(&console_fops); | 3312 | vty_init(&console_fops); |
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index a8ec48ed14d9..76407eca9ab0 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
@@ -236,6 +236,14 @@ enum { | |||
236 | }; | 236 | }; |
237 | 237 | ||
238 | /* | 238 | /* |
239 | * /sys/class/tty/tty0/ | ||
240 | * | ||
241 | * the attribute 'active' contains the name of the current vc | ||
242 | * console and it supports poll() to detect vc switches | ||
243 | */ | ||
244 | static struct device *tty0dev; | ||
245 | |||
246 | /* | ||
239 | * Notifier list for console events. | 247 | * Notifier list for console events. |
240 | */ | 248 | */ |
241 | static ATOMIC_NOTIFIER_HEAD(vt_notifier_list); | 249 | static ATOMIC_NOTIFIER_HEAD(vt_notifier_list); |
@@ -688,6 +696,8 @@ void redraw_screen(struct vc_data *vc, int is_switch) | |||
688 | save_screen(old_vc); | 696 | save_screen(old_vc); |
689 | set_origin(old_vc); | 697 | set_origin(old_vc); |
690 | } | 698 | } |
699 | if (tty0dev) | ||
700 | sysfs_notify(&tty0dev->kobj, NULL, "active"); | ||
691 | } else { | 701 | } else { |
692 | hide_cursor(vc); | 702 | hide_cursor(vc); |
693 | redraw = 1; | 703 | redraw = 1; |
@@ -2967,13 +2977,24 @@ static const struct tty_operations con_ops = { | |||
2967 | 2977 | ||
2968 | static struct cdev vc0_cdev; | 2978 | static struct cdev vc0_cdev; |
2969 | 2979 | ||
2980 | static ssize_t show_tty_active(struct device *dev, | ||
2981 | struct device_attribute *attr, char *buf) | ||
2982 | { | ||
2983 | return sprintf(buf, "tty%d\n", fg_console + 1); | ||
2984 | } | ||
2985 | static DEVICE_ATTR(active, S_IRUGO, show_tty_active, NULL); | ||
2986 | |||
2970 | int __init vty_init(const struct file_operations *console_fops) | 2987 | int __init vty_init(const struct file_operations *console_fops) |
2971 | { | 2988 | { |
2972 | cdev_init(&vc0_cdev, console_fops); | 2989 | cdev_init(&vc0_cdev, console_fops); |
2973 | if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) || | 2990 | if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) || |
2974 | register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0) | 2991 | register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0) |
2975 | panic("Couldn't register /dev/tty0 driver\n"); | 2992 | panic("Couldn't register /dev/tty0 driver\n"); |
2976 | device_create(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0"); | 2993 | tty0dev = device_create(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0"); |
2994 | if (IS_ERR(tty0dev)) | ||
2995 | tty0dev = NULL; | ||
2996 | else | ||
2997 | device_create_file(tty0dev, &dev_attr_active); | ||
2977 | 2998 | ||
2978 | vcs_init(); | 2999 | vcs_init(); |
2979 | 3000 | ||
diff --git a/drivers/video/xen-fbfront.c b/drivers/video/xen-fbfront.c index 428d273be727..4abb0b9ed653 100644 --- a/drivers/video/xen-fbfront.c +++ b/drivers/video/xen-fbfront.c | |||
@@ -492,7 +492,7 @@ xenfb_make_preferred_console(void) | |||
492 | return; | 492 | return; |
493 | 493 | ||
494 | acquire_console_sem(); | 494 | acquire_console_sem(); |
495 | for (c = console_drivers; c; c = c->next) { | 495 | for_each_console(c) { |
496 | if (!strcmp(c->name, "tty") && c->index == 0) | 496 | if (!strcmp(c->name, "tty") && c->index == 0) |
497 | break; | 497 | break; |
498 | } | 498 | } |
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index 175736c282ab..61abb638b4bf 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c | |||
@@ -836,6 +836,7 @@ COMPATIBLE_IOCTL(TCSETSW) | |||
836 | COMPATIBLE_IOCTL(TCSETSF) | 836 | COMPATIBLE_IOCTL(TCSETSF) |
837 | COMPATIBLE_IOCTL(TIOCLINUX) | 837 | COMPATIBLE_IOCTL(TIOCLINUX) |
838 | COMPATIBLE_IOCTL(TIOCSBRK) | 838 | COMPATIBLE_IOCTL(TIOCSBRK) |
839 | COMPATIBLE_IOCTL(TIOCGDEV) | ||
839 | COMPATIBLE_IOCTL(TIOCCBRK) | 840 | COMPATIBLE_IOCTL(TIOCCBRK) |
840 | COMPATIBLE_IOCTL(TIOCGSID) | 841 | COMPATIBLE_IOCTL(TIOCGSID) |
841 | COMPATIBLE_IOCTL(TIOCGICOUNT) | 842 | COMPATIBLE_IOCTL(TIOCGICOUNT) |
diff --git a/fs/proc/Makefile b/fs/proc/Makefile index 2758e2afc518..288a49e098bf 100644 --- a/fs/proc/Makefile +++ b/fs/proc/Makefile | |||
@@ -15,6 +15,7 @@ proc-y += devices.o | |||
15 | proc-y += interrupts.o | 15 | proc-y += interrupts.o |
16 | proc-y += loadavg.o | 16 | proc-y += loadavg.o |
17 | proc-y += meminfo.o | 17 | proc-y += meminfo.o |
18 | proc-y += proc_console.o | ||
18 | proc-y += stat.o | 19 | proc-y += stat.o |
19 | proc-y += uptime.o | 20 | proc-y += uptime.o |
20 | proc-y += version.o | 21 | proc-y += version.o |
diff --git a/fs/proc/proc_console.c b/fs/proc/proc_console.c new file mode 100644 index 000000000000..8a707609f528 --- /dev/null +++ b/fs/proc/proc_console.c | |||
@@ -0,0 +1,114 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010 Werner Fink, Jiri Slaby | ||
3 | * | ||
4 | * Licensed under GPLv2 | ||
5 | */ | ||
6 | |||
7 | #include <linux/console.h> | ||
8 | #include <linux/kernel.h> | ||
9 | #include <linux/proc_fs.h> | ||
10 | #include <linux/seq_file.h> | ||
11 | #include <linux/tty_driver.h> | ||
12 | |||
13 | /* | ||
14 | * This is handler for /proc/consoles | ||
15 | */ | ||
16 | static int show_console_dev(struct seq_file *m, void *v) | ||
17 | { | ||
18 | static const struct { | ||
19 | short flag; | ||
20 | char name; | ||
21 | } con_flags[] = { | ||
22 | { CON_ENABLED, 'E' }, | ||
23 | { CON_CONSDEV, 'C' }, | ||
24 | { CON_BOOT, 'B' }, | ||
25 | { CON_PRINTBUFFER, 'p' }, | ||
26 | { CON_BRL, 'b' }, | ||
27 | { CON_ANYTIME, 'a' }, | ||
28 | }; | ||
29 | char flags[ARRAY_SIZE(con_flags) + 1]; | ||
30 | struct console *con = v; | ||
31 | unsigned int a; | ||
32 | int len; | ||
33 | dev_t dev = 0; | ||
34 | |||
35 | if (con->device) { | ||
36 | const struct tty_driver *driver; | ||
37 | int index; | ||
38 | driver = con->device(con, &index); | ||
39 | if (driver) { | ||
40 | dev = MKDEV(driver->major, driver->minor_start); | ||
41 | dev += index; | ||
42 | } | ||
43 | } | ||
44 | |||
45 | for (a = 0; a < ARRAY_SIZE(con_flags); a++) | ||
46 | flags[a] = (con->flags & con_flags[a].flag) ? | ||
47 | con_flags[a].name : ' '; | ||
48 | flags[a] = 0; | ||
49 | |||
50 | seq_printf(m, "%s%d%n", con->name, con->index, &len); | ||
51 | len = 21 - len; | ||
52 | if (len < 1) | ||
53 | len = 1; | ||
54 | seq_printf(m, "%*c%c%c%c (%s)", len, ' ', con->read ? 'R' : '-', | ||
55 | con->write ? 'W' : '-', con->unblank ? 'U' : '-', | ||
56 | flags); | ||
57 | if (dev) | ||
58 | seq_printf(m, " %4d:%d", MAJOR(dev), MINOR(dev)); | ||
59 | |||
60 | seq_printf(m, "\n"); | ||
61 | |||
62 | return 0; | ||
63 | } | ||
64 | |||
65 | static void *c_start(struct seq_file *m, loff_t *pos) | ||
66 | { | ||
67 | struct console *con; | ||
68 | loff_t off = 0; | ||
69 | |||
70 | acquire_console_sem(); | ||
71 | for_each_console(con) | ||
72 | if (off++ == *pos) | ||
73 | break; | ||
74 | |||
75 | return con; | ||
76 | } | ||
77 | |||
78 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) | ||
79 | { | ||
80 | struct console *con = v; | ||
81 | ++*pos; | ||
82 | return con->next; | ||
83 | } | ||
84 | |||
85 | static void c_stop(struct seq_file *m, void *v) | ||
86 | { | ||
87 | release_console_sem(); | ||
88 | } | ||
89 | |||
90 | static const struct seq_operations consoles_op = { | ||
91 | .start = c_start, | ||
92 | .next = c_next, | ||
93 | .stop = c_stop, | ||
94 | .show = show_console_dev | ||
95 | }; | ||
96 | |||
97 | static int consoles_open(struct inode *inode, struct file *file) | ||
98 | { | ||
99 | return seq_open(file, &consoles_op); | ||
100 | } | ||
101 | |||
102 | static const struct file_operations proc_consoles_operations = { | ||
103 | .open = consoles_open, | ||
104 | .read = seq_read, | ||
105 | .llseek = seq_lseek, | ||
106 | .release = seq_release, | ||
107 | }; | ||
108 | |||
109 | static int register_proc_consoles(void) | ||
110 | { | ||
111 | proc_create("consoles", 0, NULL, &proc_consoles_operations); | ||
112 | return 0; | ||
113 | } | ||
114 | module_init(register_proc_consoles); | ||
diff --git a/include/asm-generic/ioctls.h b/include/asm-generic/ioctls.h index a3216655d657..3f3f2d189fb8 100644 --- a/include/asm-generic/ioctls.h +++ b/include/asm-generic/ioctls.h | |||
@@ -67,6 +67,7 @@ | |||
67 | #endif | 67 | #endif |
68 | #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 68 | #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
69 | #define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ | 69 | #define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ |
70 | #define TIOCGDEV _IOR('T', 0x32, unsigned int) /* Get primary device node of /dev/console */ | ||
70 | #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ | 71 | #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ |
71 | #define TCSETX 0x5433 | 72 | #define TCSETX 0x5433 |
72 | #define TCSETXF 0x5434 | 73 | #define TCSETXF 0x5434 |
diff --git a/include/linux/console.h b/include/linux/console.h index 95cf6f08a59d..9774fe6a1a97 100644 --- a/include/linux/console.h +++ b/include/linux/console.h | |||
@@ -126,6 +126,12 @@ struct console { | |||
126 | struct console *next; | 126 | struct console *next; |
127 | }; | 127 | }; |
128 | 128 | ||
129 | /* | ||
130 | * for_each_console() allows you to iterate on each console | ||
131 | */ | ||
132 | #define for_each_console(con) \ | ||
133 | for (con = console_drivers; con != NULL; con = con->next) | ||
134 | |||
129 | extern int console_set_on_cmdline; | 135 | extern int console_set_on_cmdline; |
130 | 136 | ||
131 | extern int add_preferred_console(char *name, int idx, char *options); | 137 | extern int add_preferred_console(char *name, int idx, char *options); |
@@ -145,7 +151,7 @@ extern int is_console_locked(void); | |||
145 | extern int braille_register_console(struct console *, int index, | 151 | extern int braille_register_console(struct console *, int index, |
146 | char *console_options, char *braille_options); | 152 | char *console_options, char *braille_options); |
147 | extern int braille_unregister_console(struct console *); | 153 | extern int braille_unregister_console(struct console *); |
148 | 154 | extern void console_sysfs_notify(void); | |
149 | extern int console_suspend_enabled; | 155 | extern int console_suspend_enabled; |
150 | 156 | ||
151 | /* Suspend and resume console messages over PM events */ | 157 | /* Suspend and resume console messages over PM events */ |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 212eb4c67797..a23fa29d4eb0 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
@@ -95,7 +95,7 @@ | |||
95 | /* PPC CPM type number */ | 95 | /* PPC CPM type number */ |
96 | #define PORT_CPM 58 | 96 | #define PORT_CPM 58 |
97 | 97 | ||
98 | /* MPC52xx type numbers */ | 98 | /* MPC52xx (and MPC512x) type numbers */ |
99 | #define PORT_MPC52xx 59 | 99 | #define PORT_MPC52xx 59 |
100 | 100 | ||
101 | /* IBM icom */ | 101 | /* IBM icom */ |
@@ -199,6 +199,9 @@ | |||
199 | /* TI OMAP-UART */ | 199 | /* TI OMAP-UART */ |
200 | #define PORT_OMAP 96 | 200 | #define PORT_OMAP 96 |
201 | 201 | ||
202 | /* VIA VT8500 SoC */ | ||
203 | #define PORT_VT8500 97 | ||
204 | |||
202 | #ifdef __KERNEL__ | 205 | #ifdef __KERNEL__ |
203 | 206 | ||
204 | #include <linux/compiler.h> | 207 | #include <linux/compiler.h> |
@@ -311,6 +314,7 @@ struct uart_port { | |||
311 | #define UPIO_TSI (5) /* Tsi108/109 type IO */ | 314 | #define UPIO_TSI (5) /* Tsi108/109 type IO */ |
312 | #define UPIO_DWAPB (6) /* DesignWare APB UART */ | 315 | #define UPIO_DWAPB (6) /* DesignWare APB UART */ |
313 | #define UPIO_RM9000 (7) /* RM9000 type IO */ | 316 | #define UPIO_RM9000 (7) /* RM9000 type IO */ |
317 | #define UPIO_DWAPB32 (8) /* DesignWare APB UART (32 bit accesses) */ | ||
314 | 318 | ||
315 | unsigned int read_status_mask; /* driver specific */ | 319 | unsigned int read_status_mask; /* driver specific */ |
316 | unsigned int ignore_status_mask; /* driver specific */ | 320 | unsigned int ignore_status_mask; /* driver specific */ |
@@ -361,6 +365,7 @@ struct uart_port { | |||
361 | struct device *dev; /* parent device */ | 365 | struct device *dev; /* parent device */ |
362 | unsigned char hub6; /* this should be in the 8250 driver */ | 366 | unsigned char hub6; /* this should be in the 8250 driver */ |
363 | unsigned char suspended; | 367 | unsigned char suspended; |
368 | unsigned char irq_wake; | ||
364 | unsigned char unused[2]; | 369 | unsigned char unused[2]; |
365 | void *private_data; /* generic platform data pointer */ | 370 | void *private_data; /* generic platform data pointer */ |
366 | }; | 371 | }; |
diff --git a/include/linux/spi/ifx_modem.h b/include/linux/spi/ifx_modem.h new file mode 100644 index 000000000000..a68f3b19d112 --- /dev/null +++ b/include/linux/spi/ifx_modem.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef LINUX_IFX_MODEM_H | ||
2 | #define LINUX_IFX_MODEM_H | ||
3 | |||
4 | struct ifx_modem_platform_data { | ||
5 | unsigned short rst_out; /* modem reset out */ | ||
6 | unsigned short pwr_on; /* power on */ | ||
7 | unsigned short rst_pmu; /* reset modem */ | ||
8 | unsigned short tx_pwr; /* modem power threshold */ | ||
9 | unsigned short srdy; /* SRDY */ | ||
10 | unsigned short mrdy; /* MRDY */ | ||
11 | unsigned short is_6160; /* Modem type */ | ||
12 | }; | ||
13 | |||
14 | #endif | ||
diff --git a/include/linux/tty_driver.h b/include/linux/tty_driver.h index db2d227694da..c3d43eb4150c 100644 --- a/include/linux/tty_driver.h +++ b/include/linux/tty_driver.h | |||
@@ -102,7 +102,7 @@ | |||
102 | * unsigned int cmd, unsigned long arg); | 102 | * unsigned int cmd, unsigned long arg); |
103 | * | 103 | * |
104 | * This routine allows the tty driver to implement | 104 | * This routine allows the tty driver to implement |
105 | * device-specific ioctl's. If the ioctl number passed in cmd | 105 | * device-specific ioctls. If the ioctl number passed in cmd |
106 | * is not recognized by the driver, it should return ENOIOCTLCMD. | 106 | * is not recognized by the driver, it should return ENOIOCTLCMD. |
107 | * | 107 | * |
108 | * Optional | 108 | * Optional |
@@ -167,12 +167,12 @@ | |||
167 | * | 167 | * |
168 | * void (*hangup)(struct tty_struct *tty); | 168 | * void (*hangup)(struct tty_struct *tty); |
169 | * | 169 | * |
170 | * This routine notifies the tty driver that it should hangup the | 170 | * This routine notifies the tty driver that it should hang up the |
171 | * tty device. | 171 | * tty device. |
172 | * | 172 | * |
173 | * Optional: | 173 | * Optional: |
174 | * | 174 | * |
175 | * int (*break_ctl)(struct tty_stuct *tty, int state); | 175 | * int (*break_ctl)(struct tty_struct *tty, int state); |
176 | * | 176 | * |
177 | * This optional routine requests the tty driver to turn on or | 177 | * This optional routine requests the tty driver to turn on or |
178 | * off BREAK status on the RS-232 port. If state is -1, | 178 | * off BREAK status on the RS-232 port. If state is -1, |
@@ -235,6 +235,7 @@ | |||
235 | #include <linux/fs.h> | 235 | #include <linux/fs.h> |
236 | #include <linux/list.h> | 236 | #include <linux/list.h> |
237 | #include <linux/cdev.h> | 237 | #include <linux/cdev.h> |
238 | #include <linux/termios.h> | ||
238 | 239 | ||
239 | struct tty_struct; | 240 | struct tty_struct; |
240 | struct tty_driver; | 241 | struct tty_driver; |
@@ -357,7 +358,7 @@ static inline struct tty_driver *tty_driver_kref_get(struct tty_driver *d) | |||
357 | * overruns, either.) | 358 | * overruns, either.) |
358 | * | 359 | * |
359 | * TTY_DRIVER_DYNAMIC_DEV --- if set, the individual tty devices need | 360 | * TTY_DRIVER_DYNAMIC_DEV --- if set, the individual tty devices need |
360 | * to be registered with a call to tty_register_driver() when the | 361 | * to be registered with a call to tty_register_device() when the |
361 | * device is found in the system and unregistered with a call to | 362 | * device is found in the system and unregistered with a call to |
362 | * tty_unregister_device() so the devices will be show up | 363 | * tty_unregister_device() so the devices will be show up |
363 | * properly in sysfs. If not set, driver->num entries will be | 364 | * properly in sysfs. If not set, driver->num entries will be |
diff --git a/kernel/printk.c b/kernel/printk.c index ab3ffc5b3b64..4642a5c439eb 100644 --- a/kernel/printk.c +++ b/kernel/printk.c | |||
@@ -43,12 +43,6 @@ | |||
43 | #include <asm/uaccess.h> | 43 | #include <asm/uaccess.h> |
44 | 44 | ||
45 | /* | 45 | /* |
46 | * for_each_console() allows you to iterate on each console | ||
47 | */ | ||
48 | #define for_each_console(con) \ | ||
49 | for (con = console_drivers; con != NULL; con = con->next) | ||
50 | |||
51 | /* | ||
52 | * Architectures can override it: | 46 | * Architectures can override it: |
53 | */ | 47 | */ |
54 | void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...) | 48 | void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...) |
@@ -1359,6 +1353,7 @@ void register_console(struct console *newcon) | |||
1359 | spin_unlock_irqrestore(&logbuf_lock, flags); | 1353 | spin_unlock_irqrestore(&logbuf_lock, flags); |
1360 | } | 1354 | } |
1361 | release_console_sem(); | 1355 | release_console_sem(); |
1356 | console_sysfs_notify(); | ||
1362 | 1357 | ||
1363 | /* | 1358 | /* |
1364 | * By unregistering the bootconsoles after we enable the real console | 1359 | * By unregistering the bootconsoles after we enable the real console |
@@ -1417,6 +1412,7 @@ int unregister_console(struct console *console) | |||
1417 | console_drivers->flags |= CON_CONSDEV; | 1412 | console_drivers->flags |= CON_CONSDEV; |
1418 | 1413 | ||
1419 | release_console_sem(); | 1414 | release_console_sem(); |
1415 | console_sysfs_notify(); | ||
1420 | return res; | 1416 | return res; |
1421 | } | 1417 | } |
1422 | EXPORT_SYMBOL(unregister_console); | 1418 | EXPORT_SYMBOL(unregister_console); |