⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simcons.c

📁 microwindows移植到S3C44B0的源码
💻 C
字号:
/* * arch/v850/kernel/simcons.c -- Console I/O for GDB v850e simulator * *  Copyright (C) 2001,2002  NEC Corporation *  Copyright (C) 2001,2002  Miles Bader <miles@gnu.org> * * 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. * * Written by Miles Bader <miles@gnu.org> */#include <linux/kernel.h>#include <linux/console.h>#include <linux/tty.h>#include <linux/tty_flip.h>#include <linux/tty_driver.h>#include <linux/init.h>#include <asm/poll.h>#include <asm/simsyscall.h>/*  Low-level console. */static void simcons_write (struct console *co, const char *buf, unsigned len){	V850_SIM_SYSCALL (write, 1, buf, len);}static int simcons_read (struct console *co, const char *buf, unsigned len){	return V850_SIM_SYSCALL (read, 0, buf, len);}static kdev_t simcons_device (struct console *c){        return MKDEV (TTY_MAJOR, 64 + c->index);}static struct console simcons ={    name:	"simcons",    write:	simcons_write,    read:	simcons_read,    device:	simcons_device,    flags:	CON_PRINTBUFFER,    index:	-1,};/* Higher level TTY interface.  */static struct tty_struct *tty_table[1] = { 0 };static struct termios *tty_termios[1] = { 0 };static struct termios *tty_termios_locked[1] = { 0 };static struct tty_driver tty_driver = { 0 };static int tty_refcount = 0;int simcons_tty_open (struct tty_struct *tty, struct file *filp){	return 0;}int simcons_tty_write (struct tty_struct *tty, int from_user,		       const unsigned char *buf, int count){	return V850_SIM_SYSCALL (write, 1, buf, count);}int simcons_tty_write_room (struct tty_struct *tty){	/* Completely arbitrary.  */	return 0x100000;}int simcons_tty_chars_in_buffer (struct tty_struct *tty){	/* We have no buffer.  */	return 0;}int __init simcons_tty_init (void){	tty_driver.name = "simcons";	tty_driver.major = TTY_MAJOR;	tty_driver.minor_start = 64;	tty_driver.num = 1;	tty_driver.type = TTY_DRIVER_TYPE_SYSCONS;	tty_driver.refcount = &tty_refcount;	tty_driver.table = tty_table;	tty_driver.termios = tty_termios;	tty_driver.termios_locked = tty_termios_locked;	tty_driver.init_termios = tty_std_termios;	tty_driver.open = simcons_tty_open;	tty_driver.write = simcons_tty_write;	tty_driver.write_room = simcons_tty_write_room;	tty_driver.chars_in_buffer = simcons_tty_chars_in_buffer;	tty_register_driver (&tty_driver);}__initcall (simcons_tty_init);/* Poll for input on the console, and if there's any, deliver it to the   tty driver.  */void simcons_poll_tty (struct tty_struct *tty){	int flip = 0, send_break = 0;	struct pollfd pfd;	pfd.fd = 0;	pfd.events = POLLIN;	if (V850_SIM_SYSCALL (poll, &pfd, 1, 0) > 0) {		if (pfd.revents & POLLIN) {			int left = TTY_FLIPBUF_SIZE - tty->flip.count;			if (left > 0) {				unsigned char *buf = tty->flip.char_buf_ptr;				int rd = V850_SIM_SYSCALL (read, 0, buf, left);				if (rd > 0) {					tty->flip.count += rd;					tty->flip.char_buf_ptr += rd;					memset (tty->flip.flag_buf_ptr, 0, rd);					tty->flip.flag_buf_ptr += rd;					flip = 1;				} else					send_break = 1;			}		} else if (pfd.revents & POLLERR)			send_break = 1;	}	if (send_break) {		tty_insert_flip_char (tty, 0, TTY_BREAK);				flip = 1;	}	if (flip)		tty_schedule_flip (tty);}void simcons_poll_ttys (void){	if (tty_table[0])		simcons_poll_tty (tty_table[0]);}void simcons_setup (void){	V850_SIM_SYSCALL (make_raw, 0);	register_console (&simcons);	printk (KERN_INFO "Console: GDB/v850e simulator stdio\n");}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -