| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * ARAnyM console driver | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file COPYING in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/console.h>
 | 
					
						
							|  |  |  | #include <linux/tty.h>
 | 
					
						
							|  |  |  | #include <linux/tty_driver.h>
 | 
					
						
							|  |  |  | #include <linux/tty_flip.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/err.h>
 | 
					
						
							|  |  |  | #include <linux/uaccess.h>
 | 
					
						
							| 
									
										
										
										
											2013-08-14 10:45:00 +02:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/natfeat.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int stderr_id; | 
					
						
							| 
									
										
										
										
											2012-08-07 21:47:56 +02:00
										 |  |  | static struct tty_port nfcon_tty_port; | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | static struct tty_driver *nfcon_tty_driver; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void nfputs(const char *str, unsigned int count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char buf[68]; | 
					
						
							| 
									
										
										
										
											2013-08-14 10:45:00 +02:00
										 |  |  | 	unsigned long phys = virt_to_phys(buf); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	buf[64] = 0; | 
					
						
							|  |  |  | 	while (count > 64) { | 
					
						
							|  |  |  | 		memcpy(buf, str, 64); | 
					
						
							| 
									
										
										
										
											2013-08-14 10:45:00 +02:00
										 |  |  | 		nf_call(stderr_id, phys); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 		str += 64; | 
					
						
							|  |  |  | 		count -= 64; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	memcpy(buf, str, count); | 
					
						
							|  |  |  | 	buf[count] = 0; | 
					
						
							| 
									
										
										
										
											2013-08-14 10:45:00 +02:00
										 |  |  | 	nf_call(stderr_id, phys); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void nfcon_write(struct console *con, const char *str, | 
					
						
							|  |  |  | 			unsigned int count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	nfputs(str, count); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct tty_driver *nfcon_device(struct console *con, int *index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	*index = 0; | 
					
						
							|  |  |  | 	return (con->flags & CON_ENABLED) ? nfcon_tty_driver : NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct console nf_console = { | 
					
						
							|  |  |  | 	.name	= "nfcon", | 
					
						
							|  |  |  | 	.write	= nfcon_write, | 
					
						
							|  |  |  | 	.device	= nfcon_device, | 
					
						
							|  |  |  | 	.flags	= CON_PRINTBUFFER, | 
					
						
							|  |  |  | 	.index	= -1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int nfcon_tty_open(struct tty_struct *tty, struct file *filp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void nfcon_tty_close(struct tty_struct *tty, struct file *filp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int nfcon_tty_write(struct tty_struct *tty, const unsigned char *buf, | 
					
						
							|  |  |  | 			   int count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	nfputs(buf, count); | 
					
						
							|  |  |  | 	return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int nfcon_tty_put_char(struct tty_struct *tty, unsigned char ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char temp[2] = { ch, 0 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-14 10:45:00 +02:00
										 |  |  | 	nf_call(stderr_id, virt_to_phys(temp)); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int nfcon_tty_write_room(struct tty_struct *tty) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 64; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct tty_operations nfcon_tty_ops = { | 
					
						
							|  |  |  | 	.open		= nfcon_tty_open, | 
					
						
							|  |  |  | 	.close		= nfcon_tty_close, | 
					
						
							|  |  |  | 	.write		= nfcon_tty_write, | 
					
						
							|  |  |  | 	.put_char	= nfcon_tty_put_char, | 
					
						
							|  |  |  | 	.write_room	= nfcon_tty_write_room, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef MODULE
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init nf_debug_setup(char *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (strcmp(arg, "nfcon")) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stderr_id = nf_get_id("NF_STDERR"); | 
					
						
							|  |  |  | 	if (stderr_id) { | 
					
						
							|  |  |  | 		nf_console.flags |= CON_ENABLED; | 
					
						
							|  |  |  | 		register_console(&nf_console); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | early_param("debug", nf_debug_setup); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !MODULE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init nfcon_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stderr_id = nf_get_id("NF_STDERR"); | 
					
						
							|  |  |  | 	if (!stderr_id) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nfcon_tty_driver = alloc_tty_driver(1); | 
					
						
							|  |  |  | 	if (!nfcon_tty_driver) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-15 09:49:56 +01:00
										 |  |  | 	tty_port_init(&nfcon_tty_port); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 	nfcon_tty_driver->driver_name = "nfcon"; | 
					
						
							|  |  |  | 	nfcon_tty_driver->name = "nfcon"; | 
					
						
							|  |  |  | 	nfcon_tty_driver->type = TTY_DRIVER_TYPE_SYSTEM; | 
					
						
							|  |  |  | 	nfcon_tty_driver->subtype = SYSTEM_TYPE_TTY; | 
					
						
							|  |  |  | 	nfcon_tty_driver->init_termios = tty_std_termios; | 
					
						
							|  |  |  | 	nfcon_tty_driver->flags = TTY_DRIVER_REAL_RAW; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tty_set_operations(nfcon_tty_driver, &nfcon_tty_ops); | 
					
						
							| 
									
										
										
										
											2012-08-07 21:47:56 +02:00
										 |  |  | 	tty_port_link_device(&nfcon_tty_port, nfcon_tty_driver, 0); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 	res = tty_register_driver(nfcon_tty_driver); | 
					
						
							|  |  |  | 	if (res) { | 
					
						
							|  |  |  | 		pr_err("failed to register nfcon tty driver\n"); | 
					
						
							|  |  |  | 		put_tty_driver(nfcon_tty_driver); | 
					
						
							| 
									
										
										
										
											2012-11-15 09:49:56 +01:00
										 |  |  | 		tty_port_destroy(&nfcon_tty_port); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | 		return res; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(nf_console.flags & CON_ENABLED)) | 
					
						
							|  |  |  | 		register_console(&nf_console); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit nfcon_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unregister_console(&nf_console); | 
					
						
							|  |  |  | 	tty_unregister_driver(nfcon_tty_driver); | 
					
						
							|  |  |  | 	put_tty_driver(nfcon_tty_driver); | 
					
						
							| 
									
										
										
										
											2012-11-15 09:49:56 +01:00
										 |  |  | 	tty_port_destroy(&nfcon_tty_port); | 
					
						
							| 
									
										
										
										
											2008-11-18 21:02:19 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(nfcon_init); | 
					
						
							|  |  |  | module_exit(nfcon_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); |