summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/console
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/console')
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/console.c2
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/defkeymap.c1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/fb_vga.h35
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/i386kbd.h1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/inch.c1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/keyboard.c1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/mouse_parser.h1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/outch.c1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/ps2_drv.h35
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/ps2_mouse.c3
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/ps2_mouse.h1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/serial_mouse.h35
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/videoAsm.S1
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/vt.c1
14 files changed, 99 insertions, 20 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/console/console.c b/c/src/lib/libbsp/i386/pc386/console/console.c
index f8a5b8b5f9..7a1ad2dbd6 100644
--- a/c/src/lib/libbsp/i386/pc386/console/console.c
+++ b/c/src/lib/libbsp/i386/pc386/console/console.c
@@ -573,5 +573,3 @@ BSP_output_char_function_type BSP_output_char =
(BSP_output_char_function_type) _IBMPC_outch;
BSP_polling_getchar_function_type BSP_poll_char = BSP_wait_polled_input;
-
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/defkeymap.c b/c/src/lib/libbsp/i386/pc386/console/defkeymap.c
index 3ed68fd38c..ce5e918fb5 100644
--- a/c/src/lib/libbsp/i386/pc386/console/defkeymap.c
+++ b/c/src/lib/libbsp/i386/pc386/console/defkeymap.c
@@ -260,4 +260,3 @@ struct kbdiacr accent_table[MAX_DIACR] = {
};
unsigned int accent_table_size = 68;
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/fb_vga.h b/c/src/lib/libbsp/i386/pc386/console/fb_vga.h
index 122c1484fb..6587e7474d 100644
--- a/c/src/lib/libbsp/i386/pc386/console/fb_vga.h
+++ b/c/src/lib/libbsp/i386/pc386/console/fb_vga.h
@@ -16,6 +16,39 @@
* MODIFICATION/HISTORY:
*
* $Log$
+ * Revision 1.1 2000/08/30 08:15:30 joel
+ * 2000-08-26 Rosimildo da Silva <rdasilva@connecttel.com>
+ *
+ * * Major rework of the "/dev/console" driver.
+ * * Added termios support for stdin ( keyboard ).
+ * * Added ioctls() to support modes similar to Linux( XLATE,
+ * RAW, MEDIUMRAW ).
+ * * Added Keyboard mapping and handling of the keyboard's leds.
+ * * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
+ * controller ( 16 colors ).
+ * * Added PS/2 and Serial mouse support for PC386 BSP.
+ * * console/defkeymap.c: New file.
+ * * console/fb_vga.c: New file.
+ * * console/fb_vga.h: New file.
+ * * console/i386kbd.h: New file.
+ * * console/kd.h: New file.
+ * * console/keyboard.c: New file.
+ * * console/keyboard.h: New file.
+ * * console/mouse_parser.c: New file.
+ * * console/mouse_parser.h: New file.
+ * * console/pc_keyb.c: New file.
+ * * console/ps2_drv.h: New file.
+ * * console/ps2_mouse.c: New file.
+ * * console/ps2_mouse.h: New file.
+ * * console/serial_mouse.c: New file.
+ * * console/serial_mouse.h: New file.
+ * * console/vgainit.c: New file.
+ * * console/vt.c: New file.
+ * * console/Makefile.am: Reflect new files.
+ * * console/console.c, console/inch.c, console/outch.c: Console
+ * functionality modifications.
+ * * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
+ *
****************************************************************************/
/* functions */
@@ -77,5 +110,3 @@ rtems_device_driver fbvga_control(
/* end of include file */
#endif /* __fbvga_drv__ */
-
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/i386kbd.h b/c/src/lib/libbsp/i386/pc386/console/i386kbd.h
index 0fe5700fb4..5bd0365ae4 100644
--- a/c/src/lib/libbsp/i386/pc386/console/i386kbd.h
+++ b/c/src/lib/libbsp/i386/pc386/console/i386kbd.h
@@ -186,4 +186,3 @@ extern unsigned char aux_device_present;
#define mark_bh(x)
#endif /* _I386_KEYBOARD_H */
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/inch.c b/c/src/lib/libbsp/i386/pc386/console/inch.c
index d728ab3a2e..7997a6b246 100644
--- a/c/src/lib/libbsp/i386/pc386/console/inch.c
+++ b/c/src/lib/libbsp/i386/pc386/console/inch.c
@@ -311,4 +311,3 @@ void add_to_queue( unsigned short b )
kbd_last = next;
}
}
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/keyboard.c b/c/src/lib/libbsp/i386/pc386/console/keyboard.c
index db9e0b6f1a..bcae056b97 100644
--- a/c/src/lib/libbsp/i386/pc386/console/keyboard.c
+++ b/c/src/lib/libbsp/i386/pc386/console/keyboard.c
@@ -925,4 +925,3 @@ int kbd_init(void)
mark_bh(KEYBOARD_BH);
return 0;
}
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/mouse_parser.h b/c/src/lib/libbsp/i386/pc386/console/mouse_parser.h
index 7956a14599..0adc9be55a 100644
--- a/c/src/lib/libbsp/i386/pc386/console/mouse_parser.h
+++ b/c/src/lib/libbsp/i386/pc386/console/mouse_parser.h
@@ -33,4 +33,3 @@ void unregister_kbd_msg_queue( int port );
#endif /* __mouse_parser_h__ */
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/outch.c b/c/src/lib/libbsp/i386/pc386/console/outch.c
index cbb856a047..e32f361476 100644
--- a/c/src/lib/libbsp/i386/pc386/console/outch.c
+++ b/c/src/lib/libbsp/i386/pc386/console/outch.c
@@ -326,4 +326,3 @@ int whereY( void )
{
return column;
}
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/ps2_drv.h b/c/src/lib/libbsp/i386/pc386/console/ps2_drv.h
index adbf3a6485..0a035c1a67 100644
--- a/c/src/lib/libbsp/i386/pc386/console/ps2_drv.h
+++ b/c/src/lib/libbsp/i386/pc386/console/ps2_drv.h
@@ -15,6 +15,39 @@
* MODIFICATION/HISTORY:
*
* $Log$
+ * Revision 1.1 2000/08/30 08:15:30 joel
+ * 2000-08-26 Rosimildo da Silva <rdasilva@connecttel.com>
+ *
+ * * Major rework of the "/dev/console" driver.
+ * * Added termios support for stdin ( keyboard ).
+ * * Added ioctls() to support modes similar to Linux( XLATE,
+ * RAW, MEDIUMRAW ).
+ * * Added Keyboard mapping and handling of the keyboard's leds.
+ * * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
+ * controller ( 16 colors ).
+ * * Added PS/2 and Serial mouse support for PC386 BSP.
+ * * console/defkeymap.c: New file.
+ * * console/fb_vga.c: New file.
+ * * console/fb_vga.h: New file.
+ * * console/i386kbd.h: New file.
+ * * console/kd.h: New file.
+ * * console/keyboard.c: New file.
+ * * console/keyboard.h: New file.
+ * * console/mouse_parser.c: New file.
+ * * console/mouse_parser.h: New file.
+ * * console/pc_keyb.c: New file.
+ * * console/ps2_drv.h: New file.
+ * * console/ps2_mouse.c: New file.
+ * * console/ps2_mouse.h: New file.
+ * * console/serial_mouse.c: New file.
+ * * console/serial_mouse.h: New file.
+ * * console/vgainit.c: New file.
+ * * console/vt.c: New file.
+ * * console/Makefile.am: Reflect new files.
+ * * console/console.c, console/inch.c, console/outch.c: Console
+ * functionality modifications.
+ * * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
+ *
****************************************************************************/
/* functions */
@@ -76,5 +109,3 @@ rtems_device_driver paux_control(
/* end of include file */
#endif /* __paux_drv__ */
-
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.c b/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.c
index 719d174e4c..8f24e1a706 100644
--- a/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.c
+++ b/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.c
@@ -704,6 +704,3 @@ paux_control(rtems_device_major_number major,
args->ioctl_return = 0;
return RTEMS_SUCCESSFUL;
}
-
-
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.h b/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.h
index fc47ab518d..1236e8cff2 100644
--- a/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.h
+++ b/c/src/lib/libbsp/i386/pc386/console/ps2_mouse.h
@@ -143,4 +143,3 @@ struct aux_queue {
*/
#define AUX_IRQ 12
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/serial_mouse.h b/c/src/lib/libbsp/i386/pc386/console/serial_mouse.h
index afbf16c9d9..ded9b469f5 100644
--- a/c/src/lib/libbsp/i386/pc386/console/serial_mouse.h
+++ b/c/src/lib/libbsp/i386/pc386/console/serial_mouse.h
@@ -15,6 +15,39 @@
* MODIFICATION/HISTORY:
*
* $Log$
+ * Revision 1.1 2000/08/30 08:15:30 joel
+ * 2000-08-26 Rosimildo da Silva <rdasilva@connecttel.com>
+ *
+ * * Major rework of the "/dev/console" driver.
+ * * Added termios support for stdin ( keyboard ).
+ * * Added ioctls() to support modes similar to Linux( XLATE,
+ * RAW, MEDIUMRAW ).
+ * * Added Keyboard mapping and handling of the keyboard's leds.
+ * * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
+ * controller ( 16 colors ).
+ * * Added PS/2 and Serial mouse support for PC386 BSP.
+ * * console/defkeymap.c: New file.
+ * * console/fb_vga.c: New file.
+ * * console/fb_vga.h: New file.
+ * * console/i386kbd.h: New file.
+ * * console/kd.h: New file.
+ * * console/keyboard.c: New file.
+ * * console/keyboard.h: New file.
+ * * console/mouse_parser.c: New file.
+ * * console/mouse_parser.h: New file.
+ * * console/pc_keyb.c: New file.
+ * * console/ps2_drv.h: New file.
+ * * console/ps2_mouse.c: New file.
+ * * console/ps2_mouse.h: New file.
+ * * console/serial_mouse.c: New file.
+ * * console/serial_mouse.h: New file.
+ * * console/vgainit.c: New file.
+ * * console/vt.c: New file.
+ * * console/Makefile.am: Reflect new files.
+ * * console/console.c, console/inch.c, console/outch.c: Console
+ * functionality modifications.
+ * * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
+ *
****************************************************************************/
/* functions */
@@ -82,5 +115,3 @@ rtems_device_driver serial_mouse_write(
/* end of include file */
#endif /* __tty_drv__ */
-
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/videoAsm.S b/c/src/lib/libbsp/i386/pc386/console/videoAsm.S
index a8f5cb3156..6c9b56e4af 100644
--- a/c/src/lib/libbsp/i386/pc386/console/videoAsm.S
+++ b/c/src/lib/libbsp/i386/pc386/console/videoAsm.S
@@ -48,4 +48,3 @@ wr_cursor: pushl %ecx
outb (%dx) /* Update low location cursor */
popl %ecx
ret
-
diff --git a/c/src/lib/libbsp/i386/pc386/console/vt.c b/c/src/lib/libbsp/i386/pc386/console/vt.c
index 75b1c9c8cf..0f38106332 100644
--- a/c/src/lib/libbsp/i386/pc386/console/vt.c
+++ b/c/src/lib/libbsp/i386/pc386/console/vt.c
@@ -347,4 +347,3 @@ int vt_ioctl( unsigned int cmd, unsigned long arg)
return -EINVAL;
}
}
-