summaryrefslogtreecommitdiffstats
path: root/sys/pc98/cbus
Commit message (Collapse)AuthorAgeFilesLines
* Changed default cursor shape to non-blink mode.nyan2000-08-082-3/+6
| | | | Submitted by: Tomokazu HARADA <tkhara@osk4.3web.ne.jp>
* Fixed PC-9821 NOTE supports with LINE30 mode.nyan2000-08-082-3/+16
| | | | Submitted by: Tomokazu HARADA <tkhara@osk4.3web.ne.jp>
* Merged from sys/i386/isa/clock.c revision 1.155.kato2000-08-042-2/+12
|
* Merged from sys/dev/syscons/scterm-sc.c revisions from 1.8 to 1.12.nyan2000-07-301-16/+37
|
* Backed out a part of previous commit. The function name conflicts.nyan2000-07-121-2/+2
| | | | Pointed out by: haro@tk.kubota.co.jp (Munehiro Matsuda)
* Merge from the following changes.nyan2000-07-113-56/+63
| | | | | | | | | sys/conf/files.i386 1.321 sys/dev/syscons/syscons.c 1.343 sys/i386/isa/spkr.c 1.46 sys/isa/fd.c 1.183 and 1.185 sys/isa/syscons_isa.c 1.14 sys/isa/vga_isa.c 1.18
* Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.phk2000-07-043-5/+5
| | | | Pointed out by: bde
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:phk2000-07-033-5/+5
| | | | | | | | Sanitize SYSCTL_HANDLER_ARGS so that simplistic tools can grog our sources: -sysctl_vm_zone SYSCTL_HANDLER_ARGS +sysctl_vm_zone (SYSCTL_HANDLER_ARGS)
* Merged from sys/i386/isa/isa_dma.c revision 1.6.kato2000-06-281-1/+49
|
* Merged from sys/i386/isa/clock.c revision 1.152.kato2000-06-282-0/+96
|
* Sync with sys/dev/syscons/scterm-sc.c revisions 1.6 and 1.7.nyan2000-06-221-7/+17
|
* Fixed to support RSA98-III non-pnp mode. rman_get_start() had returnednyan2000-06-211-29/+37
| | | | | | iobase + 8 because the I/O address table for RSA98-III starts with +8. Now, bus_alloc_resource() is used instead of isa_alloc_resourcev() if device type is RSA98III.
* Merged from sys/isa/syscons_isa.c revision 1.13.kato2000-06-171-4/+5
|
* Merged from sys/i386/isa/{clock.c,npx.c} revisions 1.151 and 1.82,kato2000-06-062-2/+2
| | | | respectively.
* Update of isa drivers using compatability shims to use COMPAT_ISA_DRIVER().nyan2000-05-311-1/+9
| | | | Submitted by: haro@tk.kubota.co.jp (Munehiro Matsuda)
* Sync with sys/isa/ppc.c revision 1.27.nyan2000-05-311-6/+11
|
* Fixed header file path (machine/lpt.h -> dev/ppbus/lptio.h).nyan2000-05-261-1/+1
|
* Use bus_space stuff except where it needs high performance.nyan2000-05-121-413/+309
|
* Separate the struct bio related stuff out of <sys/buf.h> intophk2000-05-052-0/+2
| | | | | | | | | | | | | | | <sys/bio.h>. <sys/bio.h> is now a prerequisite for <sys/buf.h> but it shall not be made a nested include according to bdes teachings on the subject of nested includes. Diskdrivers and similar stuff below specfs::strategy() should no longer need to include <sys/buf.> unless they need caching of data. Still a few bogus uses of struct buf to track down. Repocopy by: peter
* Fixed to support JIS7 KANJI.nyan2000-04-301-0/+40
| | | | Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
* Supported EGC 640x400, PEGC 640x400 and PEGC 640x480 graphics modes.nyan2000-04-272-74/+275
| | | | | Submitted by: Chiharu Shibata <chi@bd.mbn.or.jp> and Tomokazu HARADA <tkhara@osk4.3web.ne.jp>
* Release allocated resources and return ENXIO on error.nyan2000-04-221-7/+16
|
* Remove ~25 unneeded #include <sys/conf.h>phk2000-04-191-1/+0
| | | | Remove ~60 unneeded #include <sys/malloc.h>
* Complete the bio/buf divorce for all code below devfs::strategyphk2000-04-151-77/+74
| | | | | | | | | | Exceptions: Vinum untouched. This means that it cannot be compiled. Greg Lehey is on the case. CCD not converted yet, casts to struct buf (still safe) atapi-cd casts to struct buf to examine B_PHYS
* Move B_ERROR flag to b_ioflags and call it BIO_ERROR.phk2000-04-021-7/+7
| | | | | | | | | | | | | (Much of this done by script) Move B_ORDERED flag to b_ioflags and call it BIO_ORDERED. Move b_pblkno and b_iodone_chain to struct bio while we transition, they will be obsoleted once bio structs chain/stack. Add bio_queue field for struct bio aware disksort. Address a lot of stylistic issues brought up by bde.
* Merged from sys/isa/sio.c revisions 1.293 and 1.294.kato2000-04-011-14/+123
|
* - Supported display suspended mode.nyan2000-03-291-6/+10
| | | | | | - Switch on/off not only text screen but also graphic screen. Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Merge from the following changes.nyan2000-03-296-31/+3
| | | | | | | | | | | | File Revision sys/conf/files.i386 1.303 and 1.304 sys/dev/kbd/atkbd.c 1.23 sys/dev/syscons/scterm-sc.c 1.2 sys/dev/syscons/scvgarndr.c 1.5 sys/dev/syscons/scvtb.c 1.5 sys/dev/syscons/syscons.c 1.335 sys/isa/syscons_isa.c 1.11 sys/isa/vga_isa.c 1.17
* Merged from sys/isa/fd.c revision 1.180.kato2000-03-281-7/+12
|
* Merged from sys/i386/isa/clock.c and sys/isa/sio.c revisions 1.150 andkato2000-03-233-12/+15
| | | | 1.292, respectively.
* Disable fdctl_wr_foo. This feature is not supported by PC98.kato2000-03-231-1/+4
|
* Fixed style bugs.nyan2000-03-201-553/+568
|
* Rename the existing BUF_STRATEGY() to DEV_STRATEGY()phk2000-03-201-1/+1
| | | | | | | | substitute BUF_WRITE(foo) for VOP_BWRITE(foo->b_vp, foo) substitute BUF_STRATEGY(foo) for VOP_STRATEGY(foo->b_vp, foo) This patch is machine generated except for the ccd.c and buf.h parts.
* Remove B_READ, B_WRITE and B_FREEBUF and replace them with a newphk2000-03-201-6/+6
| | | | | | | | | | | | | | | | | | | | | field in struct buf: b_iocmd. The b_iocmd is enforced to have exactly one bit set. B_WRITE was bogusly defined as zero giving rise to obvious coding mistakes. Also eliminate the redundant struct buf flag B_CALL, it can just as efficiently be done by comparing b_iodone to NULL. Should you get a panic or drop into the debugger, complaining about "b_iocmd", don't continue. It is likely to write on your disk where it should have been reading. This change is a step in the direction towards a stackable BIO capability. A lot of this patch were machine generated (Thanks to style(9) compliance!) Vinum users: Greg has not had time to test this yet, be careful.
* Merged from sys/isa/fd.c.kato2000-03-191-244/+245
|
* Fixed to support old parallel interface.nyan2000-03-161-2/+8
| | | | Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Stop isadma from abusing the B_READ, B_RAW and B_WRITE flags.phk2000-03-131-13/+12
| | | | | Define ISADMA_{READ,WRITE,RAW} macros with the same numeric values as the B_{READ,WRITE,RAW} and use them instead throughout.
* Merged from sys/isa/sio.c revision 1.291.kato2000-03-121-14/+19
|
* Merged from sys/isa/sio.c revisions 1.289 and 1.290.kato2000-03-101-2/+1
|
* Merged from sys/isa/sio.c rev 1.288.kato2000-02-171-13/+17
|
* Synced with sys/dev/syscons/scterm-sc.c rev 1.4.kato2000-02-111-2/+4
|
* Synced with sys/isa/ppc.c rev 1.26.kato2000-01-291-4/+0
|
* Synced with sys/isa/ppc.c rev 1.25.kato2000-01-291-11/+27
| | | | Reminded by: nyan
* Synced with sys/isa/sio.c rev 1.287.kato2000-01-291-1/+8
|
* Return ENXIO on error.kato2000-01-241-2/+2
| | | | Submitted by: n_hibma
* Synced with the sc driver in the sys/dev/syscons directory.kato2000-01-204-36/+1108
| | | | Submitted by: yokota
* Synced with sys/isa/sio.c rev 1.285.kato2000-01-201-0/+7
|
* Port of the PC-98 ppc to the newbus system.kato2000-01-202-324/+545
|
* Synced with following changes:kato2000-01-131-7/+0
| | | | | | | | | | | | | | | | | | | | >yokota 2000/01/11 05:39:06 PST > > Modified files: > sys/dev/usb ukbd.c > sys/dev/kbd atkbd.c kbd.c kbdreg.h > Log: > Rework shifta/ctla/alta key handling. It appears that there was > misunderstanding between the PR originator and me. I hope I got it > right this time. > > Revision Changes Path > 1.22 +4 -1 src/sys/dev/usb/ukbd.c > 1.21 +1 -8 src/sys/dev/kbd/atkbd.c > 1.16 +19 -10 src/sys/dev/kbd/kbd.c > 1.9 +2 -2 src/sys/dev/kbd/kbdreg.h Submitted by: yokota
* Synced with sys/isa/sio.c rev 1.284.kato2000-01-131-3/+3
|
OpenPOWER on IntegriCloud