From 2486c56afd5ac4392aa95f0e478978331d1c15d6 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Mon, 20 Feb 2006 20:44:33 +0000 Subject: 2006-02-20 Thomas Schwinge Remove unused and unsupported code. Consult the file `DEVELOPMENT' for details. Partly based on suggestions by Gianluca Guida . * chips/atm.c: Remove file. * chips/atmreg.h: Likewise. * chips/audio.c: Likewise. * chips/audio_config.h: Likewise. * chips/audio_defs.h: Likewise. * chips/bt431.c: Likewise. * chips/bt431.h: Likewise. * chips/bt455.c: Likewise. * chips/bt455.h: Likewise. * chips/bt459.c: Likewise. * chips/bt459.h: Likewise. * chips/bt478.c: Likewise. * chips/bt478.h: Likewise. * chips/build_font.c: Likewise. * chips/cfb_hdw.c: Likewise. * chips/cfb_misc.c: Likewise. * chips/dc503.c: Likewise. * chips/dc503.h: Likewise. * chips/dtop.h: Likewise. * chips/dtop_handlers.c: Likewise. * chips/dtop_hdw.c: Likewise. * chips/dz_7085.h: Likewise. * chips/dz_defs.h: Likewise. * chips/dz_hdw.c: Likewise. * chips/eccreg.h: Likewise. * chips/fb_hdw.c: Likewise. * chips/fb_misc.c: Likewise. * chips/fdc_82077.h: Likewise. * chips/fdc_82077_hdw.c: Likewise. * chips/frc.c: Likewise. * chips/ims332.c: Likewise. * chips/ims332.h: Likewise. * chips/isdn_79c30.h: Likewise. * chips/isdn_79c30_hdw.c: Likewise. * chips/kernel_font.c: Likewise. * chips/kernel_font.data: Likewise. * chips/lance.c: Likewise. * chips/lance.h: Likewise. * chips/lance_mapped.c: Likewise. * chips/lk201.c: Likewise. * chips/lk201.h: Likewise. * chips/mc_clock.c: Likewise. * chips/mc_clock.h: Likewise. * chips/mouse.c: Likewise. * chips/nc.c: Likewise. * chips/nc.h: Likewise. * chips/nw.h: Likewise. * chips/nw_mk.c: Likewise. * chips/nw_mk.h: Likewise. * chips/pm_defs.h: Likewise. * chips/pm_hdw.c: Likewise. * chips/pm_misc.c: Likewise. * chips/scc_8530.h: Likewise. * chips/scc_8530_hdw.c: Likewise. * chips/screen.c: Likewise. * chips/screen.h: Likewise. * chips/screen_defs.h: Likewise. * chips/screen_switch.c: Likewise. * chips/screen_switch.h: Likewise. * chips/serial_console.c: Likewise. * chips/serial_defs.h: Likewise. * chips/sfb_hdw.c: Likewise. * chips/sfb_misc.c: Likewise. * chips/spans.c: Likewise. * chips/spans.h: Likewise. * chips/tca100.c: Likewise. * chips/tca100.h: Likewise. * chips/tca100_if.c: Likewise. * chips/tca100_if.h: Likewise. * chips/vs42x_rb.h: Likewise. * chips/xcfb_hdw.c: Likewise. * chips/xcfb_misc.c: Likewise. * chips/xcfb_monitor.h: Likewise. * Makefile.in (chips-files): Only contain `busses.c' and `busses.h'. * kern/syscall_sw.c: Don't include anymore. --- chips/bt459.h | 82 ----------------------------------------------------------- 1 file changed, 82 deletions(-) delete mode 100644 chips/bt459.h (limited to 'chips/bt459.h') diff --git a/chips/bt459.h b/chips/bt459.h deleted file mode 100644 index 66012d2..0000000 --- a/chips/bt459.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Mach Operating System - * Copyright (c) 1991,1990,1989 Carnegie Mellon University - * All Rights Reserved. - * - * Permission to use, copy, modify and distribute this software and its - * documentation is hereby granted, provided that both the copyright - * notice and this permission notice appear in all copies of the - * software, derivative works or modified versions, and any portions - * thereof, and that both notices appear in supporting documentation. - * - * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" - * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR - * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * - * Carnegie Mellon requests users of this software to return to - * - * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU - * School of Computer Science - * Carnegie Mellon University - * Pittsburgh PA 15213-3890 - * - * any improvements or extensions that they make and grant Carnegie Mellon - * the rights to redistribute these changes. - */ -/* - * File: bt459.h - * Author: Alessandro Forin, Carnegie Mellon University - * Date: 9/90 - * - * Defines for the bt459 Cursor/RAMDAC chip - */ - -typedef struct { - volatile unsigned char addr_lo; - volatile unsigned char addr_hi; - volatile unsigned char addr_reg; - volatile unsigned char addr_cmap; -} bt459_regmap_t; - -/* - * Additional registers addressed indirectly - */ - - /* 0000-00ff Color Map entries */ - /* 0100-010f Overlay color regs, unsupp */ -#define BT459_REG_CCOLOR_1 0x0181 /* Cursor color regs */ -#define BT459_REG_CCOLOR_2 0x0182 -#define BT459_REG_CCOLOR_3 0x0183 -#define BT459_REG_ID 0x0200 /* read-only, gives "4a" */ -#define BT459_REG_CMD0 0x0201 -#define BT459_REG_CMD1 0x0202 -#define BT459_REG_CMD2 0x0203 -#define BT459_REG_PRM 0x0204 - /* 0205 reserved */ -#define BT459_REG_PBM 0x0206 - /* 0207 reserved */ -#define BT459_REG_ORM 0x0208 -#define BT459_REG_OBM 0x0209 -#define BT459_REG_ILV 0x020a -#define BT459_REG_TEST 0x020b -#define BT459_REG_RSIG 0x020c -#define BT459_REG_GSIG 0x020d -#define BT459_REG_BSIG 0x020e - /* 020f-02ff reserved */ -#define BT459_REG_CCR 0x0300 -#define BT459_REG_CXLO 0x0301 -#define BT459_REG_CXHI 0x0302 -#define BT459_REG_CYLO 0x0303 -#define BT459_REG_CYHI 0x0304 -#define BT459_REG_WXLO 0x0305 -#define BT459_REG_WXHI 0x0306 -#define BT459_REG_WYLO 0x0307 -#define BT459_REG_WYHI 0x0308 -#define BT459_REG_WWLO 0x0309 -#define BT459_REG_WWHI 0x030a -#define BT459_REG_WHLO 0x030b -#define BT459_REG_WHHI 0x030c - /* 030d-03ff reserved */ -#define BT459_REG_CRAM_BASE 0x0400 -#define BT459_REG_CRAM_END 0x07ff - -- cgit v1.2.3