KATO Takenori
2d43b347ec
Merged from sys/isa/syscons_isa.c revision 1.13.
2000-06-17 04:54:50 +00:00
KATO Takenori
dc41b25cb0
Merged from sys/i386/isa/{clock.c,npx.c} revisions 1.151 and 1.82,
...
respectively.
2000-06-06 08:20:22 +00:00
Yoshihiro Takahashi
932d2288a0
Update of isa drivers using compatability shims to use COMPAT_ISA_DRIVER().
...
Submitted by: haro@tk.kubota.co.jp (Munehiro Matsuda)
2000-05-31 10:51:53 +00:00
Yoshihiro Takahashi
6042137954
Sync with sys/isa/ppc.c revision 1.27.
2000-05-31 10:49:58 +00:00
Yoshihiro Takahashi
c4de295680
Fixed header file path (machine/lpt.h -> dev/ppbus/lptio.h).
2000-05-26 12:25:01 +00:00
Yoshihiro Takahashi
0f90341e15
Use bus_space stuff except where it needs high performance.
2000-05-12 12:38:25 +00:00
Poul-Henning Kamp
9626b608de
Separate the struct bio related stuff out of <sys/buf.h> into
...
<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
2000-05-05 09:59:14 +00:00
Yoshihiro Takahashi
de64b8c968
Fixed to support JIS7 KANJI.
...
Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
2000-04-30 08:40:43 +00:00
Yoshihiro Takahashi
d3331668b3
Supported EGC 640x400, PEGC 640x400 and PEGC 640x480 graphics modes.
...
Submitted by: Chiharu Shibata <chi@bd.mbn.or.jp> and
Tomokazu HARADA <tkhara@osk4.3web.ne.jp>
2000-04-27 13:34:32 +00:00
Yoshihiro Takahashi
4b38c2c0ac
Release allocated resources and return ENXIO on error.
2000-04-22 15:12:52 +00:00
Poul-Henning Kamp
3389ae9350
Remove ~25 unneeded #include <sys/conf.h>
...
Remove ~60 unneeded #include <sys/malloc.h>
2000-04-19 14:58:28 +00:00
Poul-Henning Kamp
8177437d85
Complete the bio/buf divorce for all code below devfs::strategy
...
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
2000-04-15 05:54:02 +00:00
Poul-Henning Kamp
c244d2de43
Move B_ERROR flag to b_ioflags and call it BIO_ERROR.
...
(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.
2000-04-02 15:24:56 +00:00
KATO Takenori
769e7115b7
Merged from sys/isa/sio.c revisions 1.293 and 1.294.
2000-04-01 11:27:31 +00:00
Yoshihiro Takahashi
6566129694
- Supported display suspended mode.
...
- Switch on/off not only text screen but also graphic screen.
Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
2000-03-29 12:29:27 +00:00
Yoshihiro Takahashi
8b838a7ac2
Merge from the following changes.
...
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
2000-03-29 12:26:41 +00:00
KATO Takenori
a729b39d7c
Merged from sys/isa/fd.c revision 1.180.
2000-03-28 15:09:13 +00:00
KATO Takenori
6eeafd696c
Merged from sys/i386/isa/clock.c and sys/isa/sio.c revisions 1.150 and
...
1.292, respectively.
2000-03-23 08:55:45 +00:00
KATO Takenori
aad7652706
Disable fdctl_wr_foo. This feature is not supported by PC98.
2000-03-23 08:50:56 +00:00
Yoshihiro Takahashi
562039fa5b
Fixed style bugs.
2000-03-20 14:50:48 +00:00
Poul-Henning Kamp
b99c307a21
Rename the existing BUF_STRATEGY() to DEV_STRATEGY()
...
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.
2000-03-20 11:29:10 +00:00
Poul-Henning Kamp
21144e3bf1
Remove B_READ, B_WRITE and B_FREEBUF and replace them with a new
...
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.
2000-03-20 10:44:49 +00:00
KATO Takenori
bf8a6679dc
Merged from sys/isa/fd.c.
2000-03-19 15:18:22 +00:00
Yoshihiro Takahashi
a97d495cb9
Fixed to support old parallel interface.
...
Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
2000-03-16 12:06:29 +00:00
Poul-Henning Kamp
d8b47cbb70
Stop isadma from abusing the B_READ, B_RAW and B_WRITE flags.
...
Define ISADMA_{READ,WRITE,RAW} macros with the same numeric
values as the B_{READ,WRITE,RAW} and use them instead throughout.
2000-03-13 10:19:32 +00:00
KATO Takenori
5a9a82e820
Merged from sys/isa/sio.c revision 1.291.
2000-03-12 13:14:51 +00:00
KATO Takenori
e299a9db22
Merged from sys/isa/sio.c revisions 1.289 and 1.290.
2000-03-10 10:34:36 +00:00
KATO Takenori
df16ced79a
Merged from sys/isa/sio.c rev 1.288.
2000-02-17 15:09:12 +00:00
KATO Takenori
2611194fd9
Synced with sys/dev/syscons/scterm-sc.c rev 1.4.
2000-02-11 08:54:16 +00:00
KATO Takenori
85c5708bab
Synced with sys/isa/ppc.c rev 1.26.
2000-01-29 14:30:28 +00:00
KATO Takenori
28788b9a91
Synced with sys/isa/ppc.c rev 1.25.
...
Reminded by: nyan
2000-01-29 13:40:17 +00:00
KATO Takenori
6dbccd6e00
Synced with sys/isa/sio.c rev 1.287.
2000-01-29 04:47:22 +00:00
KATO Takenori
69d4b82b48
Return ENXIO on error.
...
Submitted by: n_hibma
2000-01-24 08:20:54 +00:00
KATO Takenori
2945c302da
Synced with the sc driver in the sys/dev/syscons directory.
...
Submitted by: yokota
2000-01-20 15:16:49 +00:00
KATO Takenori
21e10b2d88
Synced with sys/isa/sio.c rev 1.285.
2000-01-20 08:37:54 +00:00
KATO Takenori
290fb50e67
Port of the PC-98 ppc to the newbus system.
2000-01-20 00:58:49 +00:00
KATO Takenori
a9d02f5a66
Synced with following changes:
...
>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
2000-01-13 11:47:42 +00:00
KATO Takenori
50a2971692
Synced with sys/isa/sio.c rev 1.284.
2000-01-13 11:45:33 +00:00
Yoshihiro Takahashi
5f82b5ac07
Merge from sys/isa/fd.c revision from 1.171 to 1.176 and sys/isa/fdreg.h
...
revision 1.13.
Forgotten by: kato
2000-01-09 10:01:21 +00:00
KATO Takenori
f64ac1e326
Synced with sys/i386/isa/clock.c rev 1.149.
2000-01-05 12:35:03 +00:00
Yoshihiro Takahashi
b3ef0af491
- Fixed warnings.
...
- Removed unnecessary include files.
2000-01-04 04:46:50 +00:00
KATO Takenori
d224d2aea2
Synced with sys/isa/sio.c rev 1.282.
1999-12-27 14:01:06 +00:00
KATO Takenori
b8559e5e3f
Synced with sys/i386/isa/clock.c rev 1.148. This is a cosmetic change
...
because PC-98 doesn't have RTC and RTC related code is included by
`#ifndef PC98' and `#endif'.
1999-12-27 13:56:54 +00:00
Peter Wemm
c24792feab
merge i386/isa/clock.c 1.147: don't talk about register_intr in comments.
1999-12-20 15:24:56 +00:00
KATO Takenori
97b45ce9c3
Removed unnecessary include file.
1999-12-20 13:36:32 +00:00
KATO Takenori
7a32bd78a7
Merge from sys/dev/kbd/kbd.c rev 1.13.
...
Submitted by: yokota
1999-12-13 13:19:38 +00:00
KATO Takenori
fd04609c0d
Merge from sys/isa/sio.c rev 1.279.
1999-12-10 14:03:47 +00:00
KATO Takenori
38aee71933
Sync with sys/dev/fb/vga.c rev 1.5.
...
Submitted by: yokota
1999-12-09 12:32:50 +00:00
KATO Takenori
4332f82d59
Merge from sys/isa/fd.c rev 1.170.
1999-12-07 09:32:59 +00:00
KATO Takenori
9976554fa0
Merge from sys/isa/sio.c rev 1.277 & 1.278.
1999-12-07 09:29:15 +00:00
Yoshihiro Takahashi
02ebab9383
Supported i8251 (internal COM1) FIFO mode.
...
Submitted by: tanimura and nyan
1999-12-06 00:23:38 +00:00
Matthew N. Dodd
fe0d408987
Remove the 'ivars' arguement to device_add_child() and
...
device_add_child_ordered(). 'ivars' may now be set using the
device_set_ivars() function.
This makes it easier for us to change how arbitrary data structures are
associated with a device_t. Eventually we won't be modifying device_t
to add additional pointers for ivars, softc data etc.
Despite my best efforts I've probably forgotten something so let me know
if this breaks anything. I've been running with this change for months
and its been quite involved actually isolating all the changes from
the rest of the local changes in my tree.
Reviewed by: peter, dfr
1999-12-03 08:41:24 +00:00
Yoshihiro Takahashi
132b70df15
Sync with sys/isa/sio.c revision 1.276.
1999-12-01 13:40:03 +00:00
Yoshihiro Takahashi
36de18e214
- Fixed to support RSB-384/2000/3000.
...
- Fixed warnings.
1999-11-29 13:20:47 +00:00
Yoshihiro Takahashi
cfe60dd328
Sync with sys/isa/sio.c revision up to 1.275.
1999-11-18 12:22:09 +00:00
Yoshihiro Takahashi
e5f8b3d483
Sync with sys/isa/fd.c revision 1.168.
1999-11-18 11:34:26 +00:00
Yoshihiro Takahashi
7b3e532901
Fixed the size of array.
1999-11-13 14:09:08 +00:00
Yoshihiro Takahashi
16fb95e5e4
Sync with sys/isa/fd.c revision 1.167.
1999-11-11 12:15:15 +00:00
Peter Wemm
58c284aca4
Use cdevsw_add() until the rest of the devices are created with make_dev()
...
and change from DEV_DRIVER_MODULE() to DRIVER_MODULE().
1999-11-08 07:46:28 +00:00
Yoshihiro Takahashi
75c0f11718
Support RSA-98III PnP mode.
1999-11-03 09:13:16 +00:00
Yoshihiro Takahashi
53a70a424e
Sync with sys/isa/sio.c revision from 1.269 to 1.273.
1999-11-03 09:02:23 +00:00
Yoshihiro Takahashi
064fc58a7c
Sync with sys/i386/isa/clock.c revision 1.146.
1999-11-03 08:36:17 +00:00
Yoshihiro Takahashi
1a847d4dac
Merge from sys/isa/fd.c revision 1.146, 1.153, 1.154 and 1.159.
1999-09-27 03:32:31 +00:00
Poul-Henning Kamp
d6a0e38a1b
Remove five now unused fields from struct cdevsw. They should never
...
have been there in the first place. A GENERIC kernel shrinks almost 1k.
Add a slightly different safetybelt under nostop for tty drivers.
Add some missing FreeBSD tags
1999-09-25 18:24:47 +00:00
Poul-Henning Kamp
ae8e1d08d7
This patch clears the way for removing a number of tty related
...
fields in struct cdevsw:
d_stop moved to struct tty.
d_reset already unused.
d_devtotty linkage now provided by dev_t->si_tty.
These fields will be removed from struct cdevsw together with
d_params and d_maxio Real Soon Now.
The changes in this patch consist of:
initialize dev->si_tty in *_open()
initialize tty->t_stop
remove devtotty functions
rename ttpoll to ttypoll
a few adjustments to these changes in the generic code
a bump of __FreeBSD_version
add a couple of FreeBSD tags
1999-09-25 16:21:39 +00:00
Poul-Henning Kamp
46783fb897
Remove NBPF conditionality of bpf calls in most of our network drivers.
...
This means that we will not have to have a bpf and a non-bpf version
of our driver modules.
This does not open any security hole, because the bpf core isn't loadable
The drivers left unchanged are the "cross platform" drivers where the respective
maintainers are urged to DTRT, whatever that may be.
Add a couple of missing FreeBSD tags.
1999-09-25 12:06:01 +00:00
Yoshihiro Takahashi
a1e145f227
- Supported 1.23MB FD again.
...
- Supported all formats that IBM-PC's driver (isa/fd.c) supports.
- Changed the device minor numbers. They sync in IBM-PC's driver.
1999-09-23 14:21:14 +00:00
Poul-Henning Kamp
11a0be87e3
Two more devstat_end_transaction() -> devstat_end_transaction_buf().
1999-09-19 12:43:34 +00:00
Poul-Henning Kamp
2186cd9e8d
Use devstat_end_transaction_buf() rather than Use devstat_end_transaction()
1999-09-18 21:30:27 +00:00
Yoshihiro Takahashi
35762dce78
Gdc and pckbd driver don't support pnp mode.
1999-09-14 12:57:40 +00:00
Bruce Evans
887ba12fc5
Removed diskerr()'s unused d_name arg and updated callers. This fixes
...
warnings caused by the arg having the wrong type (not const enough).
The arg was also wrong (a full name instead of a short one) for calls
from from subr_diskmbr.c and pc98/diskslice_machdep.c.
1999-09-13 12:59:41 +00:00
Yoshihiro Takahashi
1065b855f9
Fixed missing changes from sys/isa/sio.c.
1999-09-12 13:44:54 +00:00
KATO Takenori
62fdcb4fc6
Change isa_get/set_flags() to device_get/set_flags().
...
Submitted by: dfr
1999-09-07 11:17:09 +00:00
KATO Takenori
acd0dd6ce1
Merge from sys/i386/isa/clock.c revision 1.145.
1999-09-04 01:39:52 +00:00
Peter Wemm
c3aac50f28
$Id$ -> $FreeBSD$
1999-08-28 01:08:13 +00:00
Julian Elischer
501f7f80bd
Remove some vestiges of devfs direct calls.
1999-08-27 08:31:20 +00:00
Julian Elischer
ada9bd8cb8
Add PHK's make_dev() into more places where DEVFS used to be
...
hooked in directly.
Alpha change checked by: Matthew Jacob <mjacob@feral.com>
i4b ISDN changes checked by: Udo Schweigert <ust@cert.siemens.de>
and Hellmuth Michaelis <hm@hcs.de>
PC98 changes checked by: Takahashi Yoshihiro <nyan@FreeBSD.org>
1999-08-27 07:26:26 +00:00
KATO Takenori
770e974a43
Updated to new keyboard driver.
...
Submitted by: yokota & nyan
1999-08-23 13:50:08 +00:00
Yoshihiro Takahashi
4e943310b7
Use V-FAST mode register to check whether it supports V-FST mode.
...
Submitted by: WATANABE Takuya <sodium@xuni.ne.jp>
1999-08-17 04:33:11 +00:00
Poul-Henning Kamp
49ff4debd3
Spring cleaning around strategy and disklabels/slices:
...
Introduce BUF_STRATEGY(struct buf *, int flag) macro, and use it throughout.
please see comment in sys/conf.h about the flag argument.
Remove strategy argument from all the diskslice/label/bad144
implementations, it should be found from the dev_t.
Remove bogus and unused strategy1 routines.
Remove open/close arguments from dssize(). Pick them up from dev_t.
Remove unused and unfinished setgeom support from diskslice/label/bad144 code.
1999-08-14 11:40:51 +00:00
Yoshihiro Takahashi
91ec7ad5f7
Fixed checking a type of the interface.
...
Submitted by: Tomohiko Kurahashi <kura@tim.hi-ho.ne.jp>
1999-08-09 13:03:35 +00:00
Poul-Henning Kamp
ce9edcf5b5
Merge the cons.c and cons.h to the best of my ability. alpha may or
...
may not compile, I can't test it.
1999-08-09 10:35:05 +00:00
KATO Takenori
6ae1d5b1aa
Sync with sys/i386/isa/clock.c revision up to 1.142.
1999-07-30 11:43:10 +00:00
Matthew N. Dodd
15317dd875
Alter the behavior of sys/kern/subr_bus.c:device_print_child()
...
- device_print_child() either lets the BUS_PRINT_CHILD
method produce the entire device announcement message or
it prints "foo0: not found\n"
Alter sys/kern/subr_bus.c:bus_generic_print_child() to take on
the previous behavior of device_print_child() (printing the
"foo0: <FooDevice 1.1>" bit of the announce message.)
Provide bus_print_child_header() and bus_print_child_footer()
to actually print the output for bus_generic_print_child().
These functions should be used whenever possible (unless you can
just use bus_generic_print_child())
The BUS_PRINT_CHILD method now returns int instead of void.
Modify everything else that defines or uses a BUS_PRINT_CHILD
method to comply with the above changes.
- Devices are 'on' a bus, not 'at' it.
- If a custom BUS_PRINT_CHILD method does the same thing
as bus_generic_print_child(), use bus_generic_print_child()
- Use device_get_nameunit() instead of both
device_get_name() and device_get_unit()
- All BUS_PRINT_CHILD methods return the number of
characters output.
Reviewed by: dfr, peter
1999-07-29 01:03:04 +00:00
KATO Takenori
3311081bea
Sync with sys/i386/isa/clock.c revision up to 1.140.
...
This commit may break 8MHz system clock mode.
1999-07-26 12:21:09 +00:00
Yoshihiro Takahashi
cb711cfb32
Fixed missing changes from sys/pc98/pc98/pc98.c when new-bus was integrated.
...
- In isa_dmastart() and isa_dmadone(), cache flush.
- Correct current word register address.
Submitted by (partial): Toshikazu Kaho <kaho@elam.kais.kyoto-u.ac.jp>
1999-07-21 13:30:56 +00:00
Dag-Erling Smørgrav
6b5ca0d83e
Rename bpfilter to bpf.
1999-07-06 19:23:32 +00:00
Poul-Henning Kamp
03016f421b
Remove cmaj and bmaj args from DEV_DRIVER_MODULE.
1999-07-04 14:58:56 +00:00
KATO Takenori
a63e8e0e3a
Added copyright.
...
Pointed out by: yokota
1999-07-03 08:50:45 +00:00
KATO Takenori
3e1a31161c
Moved LCD controle routine for certain models of EPSON laptops into
...
suitable place.
Submitted by: yokota
1999-07-03 08:44:32 +00:00
KATO Takenori
3dcce5117d
Typo: BUF_INITLOCK -> BUF_LOCKINIT and BUF_FREELOCK -> BUF_LOCKFREE.
1999-06-28 14:01:03 +00:00
KATO Takenori
bd2a72fdc9
Sync with sys/i386/isa/clock.c revision 1.138.
1999-06-28 13:11:16 +00:00
Kirk McKusick
67812eacd7
Convert buffer locking from using the B_BUSY and B_WANTED flags to using
...
lockmgr locks. This commit should be functionally equivalent to the old
semantics. That is, all buffer locking is done with LK_EXCLUSIVE
requests. Changes to take advantage of LK_SHARED and LK_RECURSIVE will
be done in future commits.
1999-06-26 02:47:16 +00:00
KATO Takenori
37c813d93c
From submitter:
...
The attached diff attempts to eliminate as much of the difference
between the i386 and the pc98 version of the file as possible. It
should not make any semantic difference (it consists of whitespace
changes, order changes, comment changes, changes of case for hex
constants, and merging in a couple of constants that hadn't made it
from the i386 version.)
Submitted by: eivind
1999-06-25 15:17:20 +00:00
KATO Takenori
a5788613e1
Sync with sys/dev/syscons/scvtb.c revision 1.2.
...
Submitted by: yokota
1999-06-24 14:03:07 +00:00
KATO Takenori
820c6a4541
Merge with sys/isa/syscons_isa.c and sys/dev/syscons/syscons.c
...
revisions 1.6 and 1.308, respectively.
Pointed-out by: yokota
1999-06-24 12:13:08 +00:00
KATO Takenori
4b148932c7
PC98 part of the second phase of syscons reorganization.
...
Submitted by: yokota
1999-06-24 10:51:40 +00:00
KATO Takenori
22001fd033
Sync with sys/i386/isa/clock.c revision 1.137.
1999-06-24 08:32:52 +00:00
KATO Takenori
fe85f176c7
New parallel port support for PC98. Old PC98s which have
...
uni-directional parallel port should use olpt driver instead of lpt
driver.
Files ppc.c and ppcreg.h are copied form i386/isa directory with PC98
change.
Submitted by: Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp>
1999-06-18 14:48:28 +00:00
KATO Takenori
a3bcef65cd
Fixed locations of include files.
1999-06-01 13:14:35 +00:00
KATO Takenori
f0828bf1b0
Sync with sys/i386/isa/clock.c revision 1.136.
1999-06-01 12:32:54 +00:00
Poul-Henning Kamp
4e2f199e0c
This commit should be a extensive NO-OP:
...
Reformat and initialize correctly all "struct cdevsw".
Initialize the d_maj and d_bmaj fields.
The d_reset field was not removed, although it is never used.
I used a program to do most of this, so all the files now use the
same consistent format. Please keep it that way.
Vinum and i4b not modified, patches emailed to respective authors.
1999-05-30 16:53:49 +00:00
KATO Takenori
09a41d3082
Sync with sys/isa/sio.c revision 1.241.
1999-05-11 08:38:28 +00:00
KATO Takenori
6048ba838c
Sync with sys/i386/isa/fd.c revision 1.143.
1999-05-11 08:37:16 +00:00
KATO Takenori
f77f865c0f
Fixed for COM_MULTIPORT option. Members flags and unit should be
...
obtained via appropriate functions.
1999-05-10 09:37:37 +00:00
KATO Takenori
871d777f45
Sync with sys/isa/sio.c revision 1.240.
1999-05-10 09:14:40 +00:00
KATO Takenori
efaba47853
Sync with sys/i386/isa/isa_dma.c revision 1.3.
1999-05-10 09:09:08 +00:00
KATO Takenori
cd6e9ed786
Sync with sys/i386/isa/clock.c revision 1.133.
1999-05-10 09:05:01 +00:00
Poul-Henning Kamp
52400704e9
Unconfuse DEV_MODULE() and DEV_DRIVER_MODULE() about the difference between
...
a major number for a dev_t.
1999-05-09 13:00:50 +00:00
KATO Takenori
f88efae58f
Sync with sys/isa/sio.c revision 1.234.
1999-05-09 05:00:54 +00:00
KATO Takenori
ac2e82dee1
Removed DRIVER_TYPE_TTY field.
1999-05-09 04:56:42 +00:00
KATO Takenori
ad4e5e0cfe
Sync with sys/isa/atkbd_isa.c revision 1.4.
1999-05-09 04:53:58 +00:00
KATO Takenori
75442335ac
Sync with sys/i386/isa/fd.c revision 1.142.
1999-05-09 04:34:28 +00:00
Poul-Henning Kamp
46eede0058
Continue where Julian left off in July 1998:
...
Virtualize bdevsw[] from cdevsw. bdevsw() is now an (inline)
function.
Join CDEV_MODULE and BDEV_MODULE to DEV_MODULE (please pay attention
to the order of the cmaj/bmaj arguments!)
Join CDEV_DRIVER_MODULE and BDEV_DRIVER_MODULE to DEV_DRIVER_MODULE
(ditto!)
(Next step will be to convert all bdev dev_t's to cdev dev_t's
before they get to do any damage^H^H^H^H^H^Hwork in the kernel.)
1999-05-07 10:11:40 +00:00
Poul-Henning Kamp
c48d17750f
Introduce two functions: physread() and physwrite() and use these directly
...
in *devsw[] rather than the 46 local copies of the same functions.
(grog will do the same for vinum when he has time)
1999-05-07 07:03:47 +00:00
Poul-Henning Kamp
b0eeea2042
remove b_proc from struct buf, it's (now) unused.
...
Reviewed by: dillon, bde
1999-05-06 20:00:34 +00:00
KATO Takenori
ef560ddafd
Sync with sys/i386/isa/fd.c revision 1.137.
1999-05-05 03:43:00 +00:00
KATO Takenori
86f210dfba
Fixed missing parenthesis.
...
Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
1999-05-05 01:53:43 +00:00
KATO Takenori
482f0be026
Sync with sys/i386/isa/clock.c revision 1.132.
1999-04-28 08:06:00 +00:00
Poul-Henning Kamp
f711d546d2
Suser() simplification:
...
1:
s/suser/suser_xxx/
2:
Add new function: suser(struct proc *), prototyped in <sys/proc.h>.
3:
s/suser_xxx(\([a-zA-Z0-9_]*\)->p_ucred, \&\1->p_acflag)/suser(\1)/
The remaining suser_xxx() calls will be scrutinized and dealt with
later.
There may be some unneeded #include <sys/cred.h>, but they are left
as an exercise for Bruce.
More changes to the suser() API will come along with the "jail" code.
1999-04-27 11:18:52 +00:00
KATO Takenori
866a540287
Sync with sys/i386/isa/isa_dma.c revision 1.2.
1999-04-21 12:17:00 +00:00
KATO Takenori
8e6e1dfb88
Sync with sys/i386/isa/clock.c revision 1.131.
1999-04-21 12:14:37 +00:00
KATO Takenori
feee147835
Fixed missing changes for new-bus (return value of the probe routine).
...
Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
1999-04-19 16:10:40 +00:00
KATO Takenori
3d88f91408
Sync with sys/isa/sio.c revision 1.226.
1999-04-19 11:11:01 +00:00
KATO Takenori
c55a92c639
Sync with follwing files:
...
Path Revision
i386/conf/GENERIC 1.162
i386/conf/Makefile.i386 1.146
i386/conf/files.i386 1.236
i386/conf/options.i386 1.111
i386/i386/machdep.c 1.329
i386/i386/userconfig.c 1.134
i386/isa/fd.c 1.135
i386/isa/if_ed.c 1.151
i386/isa/isa_dam.c 1.1
i386/isa/npx.c 1.67
isa/sio.c 1.224
dev/syscons/syscons.c 1.300
i386/isa/wd.c 1.194
isa/vga_isa.c 1.5
isa/atkbd_isa.c 1.3
isa/syscons_isa.c 1.2
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1999-04-18 14:42:20 +00:00
Peter Wemm
6ac1f14d0b
Use PHOLD/PRELE() instead of P_PHSYIO.
1999-04-06 03:12:22 +00:00
KATO Takenori
e82834ca32
Sync with sys/i386/isa/sio.c revision 1.234.
1999-04-03 15:51:14 +00:00
KATO Takenori
812d50e7a5
Sync with sys/i386/isa/sio.c revision up to 1.233.
1999-04-01 13:44:15 +00:00
KATO Takenori
b2fa1a8926
Sync with sys/i386/isa/sio.c revision up to 1.231.
1999-03-25 08:26:50 +00:00
KATO Takenori
b1af2afcd4
Keyboard driver update.
...
Submitted by: Kazutaka YOKOTA <yokota@FreeBSD.org>
1999-03-10 14:51:53 +00:00
KATO Takenori
bd87150cd2
Sync with sys/i386/isa/sio.c revision 1.229.
1999-03-04 10:37:30 +00:00
KATO Takenori
24d3fe2bd8
Fix for LINE30 option. This option was not tested under new console
...
driver.
Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
1999-03-02 12:34:24 +00:00
Kenneth D. Merry
2a888f938e
Add a prioritization field to the devstat_add_entry() call so that
...
peripheral drivers can determine where in the devstat(9) list they are
inserted.
This requires recompilation of libdevstat, systat, vmstat, rpc.rstatd, and
any ports that depend on the devstat code, since the size of the devstat
structure has changed. The devstat version number has been incremented as
well to reflect the change.
This sorts devices in the devstat list in "more interesting" to "less
interesting" order. So, for instance, da devices are now more important
than floppy drives, and so will appear before floppy drives in the default
output from systat, iostat, vmstat, etc.
The order of devices is, for now, kept in a central table in devicestat.h.
If individual drivers were able to make a meaningful decision on what
priority they should be at attach time, we could consider splitting the
priority information out into the various drivers. For now, though, they
have no way of knowing that, so it's easier to put them in an easy to find
table.
Also, move the checkversion() call in vmstat(8) to a more logical place.
Thanks to Bruce and David O'Brien for suggestions, for reviewing this, and
for putting up with the long time it has taken me to commit it. Bruce did
object somewhat to the central priority table (he would rather the
priorities be distributed in each driver), so his objection is duly noted
here.
Reviewed by: bde, obrien
1999-02-10 00:04:13 +00:00
KATO Takenori
8ffb208fa0
Sync with syscons for i386.
...
Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
1999-02-06 09:30:19 +00:00
KATO Takenori
533601dc35
Sync with sys/i386/isa/sio.c revision up to 1.228.
...
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1999-02-05 11:37:40 +00:00
KATO Takenori
f19a38101a
Added braces around initializsers and in if-statements.
...
Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
1999-02-02 17:26:03 +00:00
Poul-Henning Kamp
4e2d2aa1cd
Use suser() to check for super user rather than examining cr_uid directly.
...
Use TTYDEF_SPEED rather than 9600 a couple of places.
Reviewed by: bde, with a few grumbles.
1999-01-30 12:17:38 +00:00
KATO Takenori
22cd7960a2
The "easy" fixe for compiling the kernel -Wunused: remove unreferenced
...
local variable.
1999-01-28 11:36:22 +00:00
KATO Takenori
4d8efbff69
The "easy" fixes for compiling the kernel -Wunused: remove unreferenced static
...
and local variables, goto labels, and functions declared but not defined.
1999-01-28 11:24:36 +00:00
KATO Takenori
9e0c98036f
Sync with sys/i386/isa/sio.c revision 1.225.
1999-01-27 08:26:16 +00:00
KATO Takenori
efcf88f963
Fixed argument to intr member of the variable kbd.
1999-01-19 14:08:04 +00:00
KATO Takenori
972a5e4d92
Sync with sys/dev/syscons and sys/dev/kbd drivers.
...
Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
1999-01-19 12:41:26 +00:00
Peter Wemm
d17e4ee67d
Update the pccard hooks to use a module style declaration instead.
1999-01-19 00:21:53 +00:00
KATO Takenori
5343d329b6
Added copyright.
...
Pointed out by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
1999-01-18 14:55:38 +00:00
KATO Takenori
1ec0a1bcd4
Don't forget to initialize va_mode.
...
Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
Forgotten by: kato
1999-01-18 14:47:01 +00:00
KATO Takenori
1835ec2219
Switched to new syscons driver.
...
Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp> and
Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
1999-01-18 08:38:08 +00:00
KATO Takenori
a87737af86
Sync with sys/i386/isa/sio.c revision up to 1.223.
1999-01-16 11:42:16 +00:00
KATO Takenori
21da8ffad1
Sync with sys/i386/isa/fd.c revision 1.131.
1999-01-16 11:40:02 +00:00
KATO Takenori
fe1e7db615
Sync with sys/i386/isa/sio.c and syscons.c revisions 1.221 and 1.289,
...
respectively.
1999-01-08 16:09:23 +00:00
KATO Takenori
8f1ca31497
- Remove bus-dependent addresses from `ic' file.
...
- Special registers of IO-DATA device's RSA series are defined in
ic/rsa.h (new file).
Pointed out by: Bruce Evans <bde@zeta.org.au>
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1999-01-03 15:57:02 +00:00
KATO Takenori
3171a83027
Support following devices:
...
- on board 2nd CCU
- Midori Elec. MDC-926Rs
- Midori-Hayes ESP98
- NEC PC-9861K, PC-9801-101 PC-9801-120
- Melco IND-SP and IND-SS
- PIO-9032A/B/C
- B98-01 and B98-02
- IO-data device RSA-98II and RSA-98III
- MC-16550
- MC-RS98
- Media Inteligent RSB-2000/3000 and RSB-384
- PCMCIA modem card
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1999-01-03 05:03:47 +00:00
KATO Takenori
d35502a380
Sync with sys/i386/isa/sio.c revision 1.220.
1998-12-30 08:09:11 +00:00
KATO Takenori
a498ae6954
Sync with sys/i386/isa/fd.c revision 1.130.
1998-12-30 08:06:41 +00:00
KATO Takenori
57276bc0d3
Sync with sys/i386/isa/clock.c revision 1.129.
1998-12-17 08:54:47 +00:00
KATO Takenori
012291989b
Sync with sys/i386/isa/fd.c revision 1.129.
1998-12-17 08:40:36 +00:00
KATO Takenori
c2a3601760
Sync with sys/i386/isa/fd.c revision 1.128.
1998-12-14 09:06:23 +00:00
Eivind Eklund
2ae353f9a7
Rename one of the two devfs_link's to devfs_makelink.
1998-12-10 19:57:01 +00:00
KATO Takenori
e4561e2ae0
Sync with sys/i386/isa/fd.c, if_fe.c, npx.c and sio.c revisions 1.126,
...
1.44, 1.63 and 1.219, respectively.
1998-12-08 08:18:59 +00:00
KATO Takenori
6684a4f19d
Sync with sys/i386/isa/fd.c revision 1.125.
1998-12-05 09:24:20 +00:00
KATO Takenori
76a505024d
Sync with sys/i386/isa/sio.c revision up to 1.218.
1998-11-23 07:49:03 +00:00
KATO Takenori
7f9848cd68
Sync with sys/i386/isa/clock.c revision 1.128.
1998-10-23 13:13:43 +00:00
Bruce Evans
fe310de802
Initialize isa_devtab entries for interrupt handlers in individual
...
device drivers, not in ioconf.c. Use a different hack in isa_device.h
so that a new config(8) is not required yet.
pc98 parts approved by: kato
1998-10-22 05:58:45 +00:00
KATO Takenori
854de3d138
Fix for wrap arround.
1998-10-13 03:24:01 +00:00
KATO Takenori
f1132a191e
Implement TSC clock calibration for PC-98.
1998-10-13 02:33:21 +00:00
KATO Takenori
42d36a9a0b
Sync with sys/i386/isa/clock.c revision 1.127.
1998-09-22 16:12:00 +00:00
KATO Takenori
e0029f2568
Sync with sys/i386/isa/clock.c revision 1.126.
1998-09-20 10:51:57 +00:00
KATO Takenori
c87ddee143
Sync with sys/i386/isa/fd.c revision 1.123.
1998-09-16 08:08:38 +00:00
KATO Takenori
a42481ee16
Sync with sys/i386/isa/fd.c and wd.c revisions 1.122 and 1.176,
...
respectively.
1998-09-15 14:07:08 +00:00
Søren Schmidt
d024c95599
Remove the SLICE code.
...
This clearly needs alot more thought, and we dont need this to hunt
us down in 3.0-RELEASE.
1998-09-14 19:56:42 +00:00
KATO Takenori
cabd14ebb6
Sync with sys/i386/isa/if_ed.c and sio.c revisions 1.145 and 1.215,
...
respectively.
1998-09-14 11:37:29 +00:00
KATO Takenori
9df3bd9208
Sync with sys/i386/isa/clock.c revision 1.125.
1998-09-08 09:47:46 +00:00
KATO Takenori
750d7ad72e
Sync with sys/i386/isa/sio.c revision up to 1.214.
1998-08-28 12:44:49 +00:00
KATO Takenori
da2b3f29f2
Sync with sys/i386/isa/sio.c revision 1.211.
1998-08-19 11:48:38 +00:00
KATO Takenori
c0e4cfbfe2
Sync with sys/i386/isa/sio.c revision 1.210.
1998-08-13 07:36:40 +00:00
KATO Takenori
523bea959c
Sync with sys/i386/isa/fd.c revision 1.120.
1998-07-30 09:01:12 +00:00
KATO Takenori
1e023fc3c6
Sync with sys/i386/isa/fd.c revision 1.119.
1998-07-19 15:03:49 +00:00
KATO Takenori
c76d1cd8e7
Sync with sys/i386/isa/fd.c revision 1.118.
1998-07-16 10:27:49 +00:00
Bruce Evans
18da528d41
Changed %n to %r in devfs name format strings. %n has almost gone away.
1998-07-15 12:18:34 +00:00
KATO Takenori
6baa65474d
Sync with sys/i386/isa/fd.c and wd.c revisions 1.117 and 1.172,
...
respectively.
1998-07-13 09:29:25 +00:00
KATO Takenori
13992e6dc1
Sync with sys/i386/isa/fd.c revision 1.116.
1998-07-11 17:02:07 +00:00
KATO Takenori
36a5980c70
Sync with sys/i386/isa/fd.c and wd.c revisions 1.115 and 1.170,
...
respectively.
1998-07-06 10:09:42 +00:00
KATO Takenori
d035c1e702
Sync with sys/i386/isa/syscons.c revision 1.208.
1998-06-24 13:37:23 +00:00
KATO Takenori
0495b7f964
Sync with sys/i386/isa/sio.c revision 1.207.
1998-06-17 09:27:15 +00:00
KATO Takenori
a06a8629ce
Sync with sys/i386/isa/clock.c revision 1.124.
1998-06-10 08:25:23 +00:00
KATO Takenori
4dd125707d
Sync with sys/i386/isa/clock.c revision 1.123.
1998-06-08 08:56:43 +00:00
KATO Takenori
c7e9ceee59
Merge 64bit portability fixes from sys/i386 stuff.
1998-06-08 08:55:47 +00:00
KATO Takenori
4b71df3705
Sync with sys/i386/isa/clock.c revision 1.122.
1998-06-07 09:51:08 +00:00
KATO Takenori
1bd5af4d02
Sync with sys/i386/isa/sio.c revision up to 1.205.
1998-06-05 08:31:01 +00:00
KATO Takenori
1098580586
Sync with sys/i386/isa/sio.c revision 1.203.
1998-06-01 12:40:24 +00:00
KATO Takenori
35800bf56f
Sync with sys/i386/isa/clock.c revision 1.121.
1998-05-28 13:51:39 +00:00
KATO Takenori
bcd11c3b62
Sync with sys/i386/isa/sio.c revision 1.202.
1998-05-20 13:39:06 +00:00
KATO Takenori
499579a474
Sync with sys/i386/isa/clock.c revision 1.120.
1998-05-20 13:38:42 +00:00
KATO Takenori
cd0ab95415
Sync with sys/i386/isa/sio.c revision 1.201.
1998-05-13 10:42:36 +00:00
KATO Takenori
0b9df1bef1
Sync with sys/i386/isa/fd.c revision 1.112.
1998-05-07 08:36:48 +00:00
KATO Takenori
54f5627faa
Sync with sys/i386/isa/sio.c revision 1.200.
1998-05-04 11:25:13 +00:00
KATO Takenori
b30dab363b
System clock speed is always detected automatically.
1998-05-04 07:47:33 +00:00
Julian Elischer
26d3bf5f1b
close() is no longer a SLICE method.
...
Close is simply an open with no-read and no-write once internal to SLICE
(it still exports a close to the rest of the kernel)
1998-04-22 10:25:27 +00:00
KATO Takenori
9a3c443d5a
Sync with sys/i386/isa/fd.c revision 1.109.
1998-04-20 13:50:58 +00:00
Dag-Erling Smørgrav
dc73342347
Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108.
1998-04-17 22:37:19 +00:00
KATO Takenori
237d5c328a
Sync with sys/i386/isa/clock.c revision 1.119.
1998-04-06 03:38:18 +00:00
KATO Takenori
2dbeac88d1
Sync with sys/i386/i386/trap.c revision 1.125 and sys/i386/isa/clock.c
...
revision 1.118.
1998-03-31 07:53:13 +00:00
KATO Takenori
b96ae93234
Sync with sys/i386/isa/clock.c revision 1.117.
1998-03-17 08:42:18 +00:00
KATO Takenori
d16238bcdd
Sync with sys/i386/isa/clock.c revision 1.116.
1998-03-15 13:35:42 +00:00
KATO Takenori
546c9ed396
Sync with sys/i386/isa/clock.c revision 1.115.
1998-03-07 15:43:43 +00:00
KATO Takenori
55a5998a24
Sync with sys/i386/isa/clock.c revision 1.114.
1998-03-01 05:22:25 +00:00
KATO Takenori
269d7ee60c
Sync with sys/i386/isa/sio.c revision up to 1.199.
1998-02-27 15:24:51 +00:00
KATO Takenori
9f3962f9bb
Sync with sys/i386/isa/clock.c revision 1.113.
1998-02-23 12:24:27 +00:00
KATO Takenori
6dd95c2390
Sync with sys/i386/isa/clock.c revision 1.112.
1998-02-22 13:44:39 +00:00
KATO Takenori
7cd00cc31e
Oops, previous commit was incomplete.
1998-02-21 15:54:23 +00:00
KATO Takenori
c2515e4e62
Sync with sys/i386/isa/clock.c revision 1.111.
1998-02-21 15:52:40 +00:00
KATO Takenori
127f07ea76
Sync with sys/i386/isa/sio.c revision 1.197.
1998-02-15 11:18:47 +00:00
Poul-Henning Kamp
a4daaa09f2
Implement the spirit but not the letter of Terrys hot-char patch.
...
The differences Terrys patch and this patch are:
* Remove a lot of un-needed comments.
* Don't put l_hotchar at the front of stuct linesw, there is no need to.
* Use the #defines for the hotchar in the SLIP and PPP line disciplines
1998-02-13 12:46:28 +00:00
KATO Takenori
a7378a5844
Sync with sys/i386/isa/clock.c revision 1.110.
1998-02-13 09:32:17 +00:00
KATO Takenori
cf43dcc13b
Sync with sys/i386/isa/clock.c and spker.c revision 1.109 and 1.32,
...
resplectivley.
1998-02-09 15:05:44 +00:00
KATO Takenori
4e82d9dc12
Fixed bugs introduced by syncing with i386/isa/sio.c revision 1.143.
...
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1998-02-02 07:59:05 +00:00
KATO Takenori
bbc4f6d526
Sync with sys/i386/isa/clock.c revision 1.108.
1998-01-28 12:25:06 +00:00
Eivind Eklund
7b778b5e61
Make all file-system (MFS, FFS, NFS, LFS, DEVFS) related option new-style.
...
This introduce an xxxFS_BOOT for each of the rootable filesystems.
(Presently not required, but encouraged to allow a smooth move of option *FS
to opt_dontuse.h later.)
LFS is temporarily disabled, and will be re-enabled tomorrow.
1998-01-24 02:54:56 +00:00
KATO Takenori
774f324f38
Added dealy.
...
Submitted by: Kawanobe Koh <kawanobe@st.rim.or.jp>
1998-01-22 03:52:55 +00:00
KATO Takenori
60fa2968df
Fixed bugs introduced when files were synchronized with
...
sys/i386/isa/mse.c and sio.c.
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1998-01-16 11:20:22 +00:00
KATO Takenori
ab29750a7f
Sync with sys/i386/isa/sio.c revision 1.194.
1998-01-08 10:50:06 +00:00
KATO Takenori
3b6f48e947
Sync with sys/i386/isa/clock.c revision up to 1.107.
1997-12-29 16:15:57 +00:00
KATO Takenori
b8c15aa548
Sync with sys/i386/isa/sio.c revision up to 1.193.
1997-12-29 16:08:48 +00:00
Poul-Henning Kamp
71f461f86a
Rename "i586_ctr" to "tsc" (both upper and lower case instances).
...
Fix a couple of printfs too.
Warning: This changes the names of a couple of kernel options!
1997-12-26 20:42:37 +00:00
Eivind Eklund
5591b823d1
Make COMPAT_43 and COMPAT_SUNOS new-style options.
1997-12-16 17:40:42 +00:00
Bruce Evans
239b7b699e
Use ENOIOCTL instead of -1 (= ERESTART) for tty ioctls that are
...
not handled at a particular level. This fixes mainly restarting
of interrupted TIOCDRAINs and TIOCSETA{W,F}s.
1997-12-06 13:25:01 +00:00
Poul-Henning Kamp
ab3f746966
In all such uses of struct buf: 's/b_un.b_addr/b_data/g'
1997-12-02 21:07:20 +00:00
KATO Takenori
681be1a529
Sync with sys/i386/isa/if_ed.c, if_fe.c and sio.c revisions 1.129,
...
1.35 and 1.189, respectively.
1997-11-25 09:42:26 +00:00
KATO Takenori
9621c9ed58
Synchronize with sys/i386/isa/clock.c revision 1.104.
1997-11-19 11:35:22 +00:00
KATO Takenori
00be5a552a
Sync with sys/i386/isa/sio.c revision 1.188.
1997-11-03 02:30:45 +00:00
KATO Takenori
016f33ea47
Synchronize with sys/i386/isa/npx.c and clock.c revisions 1.53 and
...
1.103, respectively.
1997-10-28 14:30:47 +00:00
KATO Takenori
6fd3c7fdea
Synchronize with sys/i386/isa/sio.c revision 1.187.
1997-10-27 11:00:31 +00:00
KATO Takenori
b2bf5e1cfd
Synchronize with sys/i386/isa/fd.c revision 1.105.
1997-10-21 09:48:38 +00:00
KATO Takenori
5ea17fc758
Synchronize with sys/i386/isa/sio.c revision 1.184.
1997-10-13 09:23:14 +00:00
KATO Takenori
09044baf2a
Synchronize with sys/i386/isa/fd.c revision 1.104.
1997-09-24 08:21:26 +00:00
KATO Takenori
e79c5cf3a8
Synchronize with sys/i386/isa/fd.c, isa.c and sio.c revisions 1.103,
...
1.105 and 1.183, respectively.
1997-09-22 12:23:49 +00:00
KATO Takenori
55d994bfb5
Synchronize with sys/i386/conf/options.i386 and sys/i386/isa/sio.c
...
revisions 1.60 and 1.182, respectively.
1997-09-20 05:28:02 +00:00
KATO Takenori
073e89f3e6
Synchronize with sys/i386/isa/fd.c revision 1.102.
1997-09-18 08:10:45 +00:00
KATO Takenori
61fd9882c1
Synchronize with sys/i386/conf/options.i386 and sys/i386/isa/fd.c
...
revisions 1.59 and 1.101, respectively.
1997-09-17 08:01:07 +00:00
KATO Takenori
e70ee0f24b
Synchronize with sys/i386/isa/mse.c, pcaudio.c, sio.c and syscons.c
...
revisions 1.34, 1.37, 1.181 and 1.232, respectively.
1997-09-14 16:27:37 +00:00
KATO Takenori
52f3a7293c
Synchronize with sys/i386/isa/sio.c revision 1.180.
1997-09-01 10:45:02 +00:00
KATO Takenori
dd4ca852b4
Synchronize with sys/i386/isa/clock.c revision 1.102.
1997-09-01 10:44:06 +00:00
KATO Takenori
bc4534f4cc
Synchronize with sys/i386/isa/clock.c and sio.c revisions 1.101 and
...
i.178, respectively.
1997-08-30 15:47:49 +00:00
KATO Takenori
463695c856
Synchronize with sys/i386/i386/userconfig.c and sys/i386/isa/clock.c
...
revisions 1.89 and 1.100, respectively.
1997-08-22 08:12:14 +00:00
KATO Takenori
28f454282d
Synchronize with sys/i386/isa/sio.c revision up to 1.177.
1997-08-21 08:25:13 +00:00
KATO Takenori
1d39bbefd2
Synchronize with sys/i386/isa/clock.c revision 1.99.
1997-08-21 08:23:52 +00:00
KATO Takenori
3a19895e49
Synchronize with sys/i386/i386/trap.c revision 1.106 and
...
sys/i386/isa/sio.c revision 1.175.
1997-08-20 10:25:21 +00:00
KATO Takenori
b8baf50c94
Synchronize with sys/i386/isa/sio.c revision 1.174.
1997-08-06 09:42:57 +00:00
KATO Takenori
95ec91943b
Synchronize with sys/i386/isa/clock.c revision 1.98.
1997-07-26 13:52:47 +00:00
KATO Takenori
1cc4d2e950
Synchronize with sys/i386/isa/clock.c revision up to 1.97.
1997-07-23 11:28:39 +00:00
KATO Takenori
50902335e5
Synchronize with sys/i386/isa/clock.c revision up to 1.95.
1997-07-21 13:12:01 +00:00