[PATCH] Don't export machine_restart, machine_halt, or machine_power_off.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / v850 / kernel / memcons.c
blob491614c435cd5f8de9a2d54a445156f94448a5d6
1 /*
2 * arch/v850/kernel/memcons.c -- Console I/O to a memory buffer
4 * Copyright (C) 2001,02 NEC Corporation
5 * Copyright (C) 2001,02 Miles Bader <miles@gnu.org>
7 * This file is subject to the terms and conditions of the GNU General
8 * Public License. See the file COPYING in the main directory of this
9 * archive for more details.
11 * Written by Miles Bader <miles@gnu.org>
14 #include <linux/kernel.h>
15 #include <linux/console.h>
16 #include <linux/tty.h>
17 #include <linux/tty_driver.h>
18 #include <linux/init.h>
20 /* If this device is enabled, the linker map should define start and
21 end points for its buffer. */
22 extern char memcons_output[], memcons_output_end;
24 /* Current offset into the buffer. */
25 static unsigned long memcons_offs = 0;
27 /* Spinlock protecting memcons_offs. */
28 static DEFINE_SPINLOCK(memcons_lock);
31 static size_t write (const char *buf, size_t len)
33 int flags;
34 char *point;
36 spin_lock_irqsave (memcons_lock, flags);
38 point = memcons_output + memcons_offs;
39 if (point + len >= &memcons_output_end) {
40 len = &memcons_output_end - point;
41 memcons_offs = 0;
42 } else
43 memcons_offs += len;
45 spin_unlock_irqrestore (memcons_lock, flags);
47 memcpy (point, buf, len);
49 return len;
53 /* Low-level console. */
55 static void memcons_write (struct console *co, const char *buf, unsigned len)
57 while (len > 0)
58 len -= write (buf, len);
61 static struct tty_driver *tty_driver;
63 static struct tty_driver *memcons_device (struct console *co, int *index)
65 *index = co->index;
66 return tty_driver;
69 static struct console memcons =
71 .name = "memcons",
72 .write = memcons_write,
73 .device = memcons_device,
74 .flags = CON_PRINTBUFFER,
75 .index = -1,
78 void memcons_setup (void)
80 register_console (&memcons);
81 printk (KERN_INFO "Console: static memory buffer (memcons)\n");
84 /* Higher level TTY interface. */
86 int memcons_tty_open (struct tty_struct *tty, struct file *filp)
88 return 0;
91 int memcons_tty_write (struct tty_struct *tty, const unsigned char *buf, int len)
93 return write (buf, len);
96 int memcons_tty_write_room (struct tty_struct *tty)
98 return &memcons_output_end - (memcons_output + memcons_offs);
101 int memcons_tty_chars_in_buffer (struct tty_struct *tty)
103 /* We have no buffer. */
104 return 0;
107 static struct tty_operations ops = {
108 .open = memcons_tty_open,
109 .write = memcons_tty_write,
110 .write_room = memcons_tty_write_room,
111 .chars_in_buffer = memcons_tty_chars_in_buffer,
114 int __init memcons_tty_init (void)
116 int err;
117 struct tty_driver *driver = alloc_tty_driver(1);
118 if (!driver)
119 return -ENOMEM;
121 driver->name = "memcons";
122 driver->major = TTY_MAJOR;
123 driver->minor_start = 64;
124 driver->type = TTY_DRIVER_TYPE_SYSCONS;
125 driver->init_termios = tty_std_termios;
126 tty_set_operations(driver, &ops);
127 err = tty_register_driver(driver);
128 if (err) {
129 put_tty_driver(driver);
130 return err;
132 tty_driver = driver;
133 return 0;
135 __initcall (memcons_tty_init);