2 * ARAnyM console driver
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file COPYING in the main directory of this archive
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/console.h>
12 #include <linux/tty.h>
13 #include <linux/tty_driver.h>
14 #include <linux/tty_flip.h>
15 #include <linux/slab.h>
16 #include <linux/err.h>
17 #include <linux/uaccess.h>
19 #include <asm/natfeat.h>
22 static struct tty_driver
*nfcon_tty_driver
;
24 static void nfputs(const char *str
, unsigned int count
)
31 nf_call(stderr_id
, buf
);
35 memcpy(buf
, str
, count
);
37 nf_call(stderr_id
, buf
);
40 static void nfcon_write(struct console
*con
, const char *str
,
46 static struct tty_driver
*nfcon_device(struct console
*con
, int *index
)
49 return (con
->flags
& CON_ENABLED
) ? nfcon_tty_driver
: NULL
;
52 static struct console nf_console
= {
55 .device
= nfcon_device
,
56 .flags
= CON_PRINTBUFFER
,
61 static int nfcon_tty_open(struct tty_struct
*tty
, struct file
*filp
)
66 static void nfcon_tty_close(struct tty_struct
*tty
, struct file
*filp
)
70 static int nfcon_tty_write(struct tty_struct
*tty
, const unsigned char *buf
,
77 static int nfcon_tty_put_char(struct tty_struct
*tty
, unsigned char ch
)
79 char temp
[2] = { ch
, 0 };
81 nf_call(stderr_id
, temp
);
85 static int nfcon_tty_write_room(struct tty_struct
*tty
)
90 static const struct tty_operations nfcon_tty_ops
= {
91 .open
= nfcon_tty_open
,
92 .close
= nfcon_tty_close
,
93 .write
= nfcon_tty_write
,
94 .put_char
= nfcon_tty_put_char
,
95 .write_room
= nfcon_tty_write_room
,
100 static int __init
nf_debug_setup(char *arg
)
102 if (strcmp(arg
, "nfcon"))
105 stderr_id
= nf_get_id("NF_STDERR");
107 nf_console
.flags
|= CON_ENABLED
;
108 register_console(&nf_console
);
114 early_param("debug", nf_debug_setup
);
118 static int __init
nfcon_init(void)
122 stderr_id
= nf_get_id("NF_STDERR");
126 nfcon_tty_driver
= alloc_tty_driver(1);
127 if (!nfcon_tty_driver
)
130 nfcon_tty_driver
->owner
= THIS_MODULE
;
131 nfcon_tty_driver
->driver_name
= "nfcon";
132 nfcon_tty_driver
->name
= "nfcon";
133 nfcon_tty_driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
134 nfcon_tty_driver
->subtype
= SYSTEM_TYPE_TTY
;
135 nfcon_tty_driver
->init_termios
= tty_std_termios
;
136 nfcon_tty_driver
->flags
= TTY_DRIVER_REAL_RAW
;
138 tty_set_operations(nfcon_tty_driver
, &nfcon_tty_ops
);
139 res
= tty_register_driver(nfcon_tty_driver
);
141 pr_err("failed to register nfcon tty driver\n");
142 put_tty_driver(nfcon_tty_driver
);
146 if (!(nf_console
.flags
& CON_ENABLED
))
147 register_console(&nf_console
);
152 static void __exit
nfcon_exit(void)
154 unregister_console(&nf_console
);
155 tty_unregister_driver(nfcon_tty_driver
);
156 put_tty_driver(nfcon_tty_driver
);
159 module_init(nfcon_init
);
160 module_exit(nfcon_exit
);
162 MODULE_LICENSE("GPL");