KATO Takenori
bb0992d7ab
Sync with sys/i386/conf/files.i386 revision 1.237.
1999-05-06 09:13:56 +00:00
KATO Takenori
742958ce9d
Commented out adv_isa.c.
1999-04-24 04:22:57 +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
KATO Takenori
6b21bf93e7
Sync with sys/i386/conf/files.i386 revision 1.233.
1999-04-10 04:42:46 +00:00
KATO Takenori
bd5934b045
o sys/i386/include/soundcard.h
...
Add Sound Card ID for the nss(NEC PC-9801-86 Sound System) driver.
Old name of this driver was pcm driver in FreeBSD 2.2.x.
Fix lack of the length of the name member of the synth_info structure.
(attach_mpu401 in sys/i386/isa/sound/mpu401.c requires 33 chars.)
o sys/i386/isa/sound/dev_table.h
Add the DMAbuf flags definition DMA_DISABLE.
Add the nss driver entry.
o sys/i386/isa/sound/dmabuf.c
Add the DMA_DISABLE flag check in DMAbuf_outputintr and DMAbuf_inputintr
to disable DMA control in FIFO only use (nss driver required).
o sys/i386/isa/sound/local.h
Add the nss driver entry.
o sys/i386/isa/sound/mpu401.c
Replace inb function in probe_mpu401 to mpu401_status macro.
Wrap macro argument for above replace.
Add I/O port maping macro for NEC PC-98x1 arch.
Add delay in NEC PC-98x1 arch.
o sys/i386/isa/sound/pcm86.c
Change driver name to avoid name space conflict to new pcm driver.
Fix NEC PC-9801-86 driver to work on RELENG_3 branch or latter.
o sys/i386/isa/sound/sound_calls.h
Fix the mpuintr definition.
Add the nss driver entry.
attach_nss, probe_nss, nssintr
o sys/i386/isa/sound/soundcard.c
Fix lack of the mpuintr registration.
Add the nss driver entry.
o sys/pc98/conf/files.pc98
Add the nss driver entry.
Reviewed by: kato
Submitted by: Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp>
1999-04-02 08:51:06 +00:00
KATO Takenori
3ba4fb4098
Sync with sys/i386/conf/files.i386 revision up to 1.232.
1999-04-01 13:40:47 +00:00
KATO Takenori
2e11ea2373
Sync with sys/i386/conf/files.i386 revision 1.229.
1999-03-17 08:58:42 +00:00
KATO Takenori
82a9512c46
Sync with sys/i386/conf/files.i386 revision up to 1.227.
1999-03-10 13:59:20 +00:00
KATO Takenori
88a368fa84
Sync with sys/i386/conf/files.i386 revision 1.225.
1999-03-04 10:36:27 +00:00
KATO Takenori
dc461a09bb
Merge with sys/i386/conf/files.i386 revision 1.224.
1999-03-02 14:03:21 +00:00
KATO Takenori
3b91c9f034
Added adv driver support.
...
Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
1999-02-25 13:53:13 +00:00
KATO Takenori
38d2964075
Remove 'alog'.
1999-01-20 08:31:56 +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
47badd2e6f
Sync with sys/i386/conf/files.i386 revision up to 1.217.
1999-01-04 08:07:47 +00:00
KATO Takenori
bce191bf65
Enables snd driver.
1998-12-31 11:38:52 +00:00
KATO Takenori
f6814477b7
Sync with sys/i386/conf/files.i386 revision up to 1.215.
1998-12-30 07:57:00 +00:00
KATO Takenori
3ab80a8e63
Sync with sys/i386/conf/files.i386 revision 1.207.
1998-12-25 09:04:11 +00:00
KATO Takenori
9de1707415
Sync with current sc driver in sys/i386/isa.
...
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1998-12-16 14:57:38 +00:00
KATO Takenori
4896212043
Oops, I forgot to commit two diffs to fe driver.
1998-12-15 15:56:37 +00:00
KATO Takenori
9ad861edee
- For some old Cyrix CPUs, %cr2 is clobbered by interrupts. This
...
problem is worked around by using an interrupt gate for the page
fault handler. This code was originally made for NetBSD/pc98 by
Naofumi Honda <honda@kururu.math.sci.hokudai.ac.jp> and has already
been in PC98 tree. Because of this bug, trap_fatal cannot show
correct page fault address if %cr2 is obtained in this function.
Therefore, trap_fatal uses the value from trap() function.
- The trap handler always enables interruption when buggy application
or kernel code has disabled interrupts and then trapped. This code
was prepared by Bruce Evans <bde@FreeBSD.org>.
Submitted by: Bruce Evans <bde@FreeBSD.org>
Naofumi Honda <honda@kururu.math.sci.hokudai.ac.jp>
1998-12-02 08:15:17 +00:00
KATO Takenori
9e1e84578a
Sync with sys/i386/conf/files.i386 revision 1.206.
1998-10-11 15:02:49 +00:00
KATO Takenori
47d002cf75
Sync with sys/i386/conf/files.i386 revision 1.205.
1998-09-20 10:50:18 +00:00
KATO Takenori
12629290f5
Sync with sys/i386/isa/files.i386 and options.i386 revisions 1.204 and
...
1.87, respectively.
1998-09-16 08:37:40 +00:00
KATO Takenori
81083f630d
Sync with sys/i386/conf/GENERIC, SMP-GENERIC, device.i386, files.i386,
...
majors.i386 and options.i386 revisions 1.116, 1.13, 1.14, 1.203, 1.49
and 1.86, respectively.
1998-09-15 14:10:56 +00:00
KATO Takenori
2663a4af57
Sync with sys/i386/conf/files.i386 revision 1.202.
1998-09-09 14:39:56 +00:00
KATO Takenori
2bfe25d193
Sync with sys/i386/conf/files.i386 revision 1.201.
1998-09-05 02:36:18 +00:00
KATO Takenori
cdc2343491
Sync with sys/i386/conf/files.i386 and majors.i386 revisions 1.200 and
...
1.44, respectively.
1998-08-07 11:52:19 +00:00
KATO Takenori
fd3ae2d6b0
Sync with sys/i386/conf/files.i386 revision 1.199.
1998-07-21 12:07:02 +00:00
KATO Takenori
14f155eeb0
Sync with sys/i386/isa/conf/files.i386 revision 1.198.
1998-06-17 09:26:23 +00:00
KATO Takenori
68b675d4af
Deleted unused item.
1998-05-05 13:19:34 +00:00
KATO Takenori
b4e7319708
Commented out ide_pci.c.
...
Reviewed by: kato
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1998-04-20 13:54:47 +00:00
KATO Takenori
47c5d70acc
Sync with sys/i386/conf/files.i386 revision 1.197.
1998-04-20 13:52:13 +00:00
KATO Takenori
74a64e52c9
Sync with sys/i386/conf/files.i386 revision 1.196.
1998-04-07 09:08:27 +00:00
KATO Takenori
2d6b7367bc
- Use existing file (psm.c) though the driver does not work under
...
PC-98 arch.
- Merge the change in sys/i386/conf/files.i386 revision from 1.187 to
1.188.
1998-03-30 12:36:16 +00:00
KATO Takenori
469057f93e
Sync with sys/i386/conf/files.i386 revision 1.195.
1998-03-24 08:26:02 +00:00
KATO Takenori
8fb62a4f93
Sync with sys/i386/conf/files.i386 revision 1.194.
1998-03-14 02:31:00 +00:00
KATO Takenori
95b31a1d26
Sync with sys/i386/conf/files.i386 revision 1.193.
1998-02-26 03:21:41 +00:00
KATO Takenori
eb564225af
Sync with sys/i386/conf/files.i386 revision 1.192.
1998-02-21 15:49:03 +00:00
KATO Takenori
5783aeff4d
Sync with sys/i386/conf/files.i386 revision 1.191.
1998-02-19 08:42:57 +00:00
KATO Takenori
dc4179fd63
Sync with sys/i386/conf/files.i386 revision 1.190.
1998-02-18 12:34:01 +00:00
KATO Takenori
3ddaa5931a
Sync with sys/i386/conf/files.i386 revision 1.189.
1998-02-16 09:38:37 +00:00
KATO Takenori
27b31fd7be
Cosmetic changes (indentation, reordering and using existing file name).
...
Pointed by: Michio "Karl" Jinbo <karl@marcer.nagaokaut.ac.jp>
1998-02-02 07:55:31 +00:00
KATO Takenori
15ebf6c973
Sync with sys/i386/confi/files.i386, majors.i386 and options.i386
...
revisions 1.187, 1.25 and 1.68, respectively.
1998-01-26 09:17:43 +00:00
KATO Takenori
43a0695fdf
Sync with sys/i386/conf/files.i386 revision 1.186.
1998-01-18 15:09:34 +00:00
KATO Takenori
7cd3361aa5
Sync with sys/i386/conf/files.i386 revision 1.185.
1998-01-15 15:09:00 +00:00
KATO Takenori
98e7f9ea42
Sync with sys/i386/conf/files.i386 revision 1.184.
1998-01-09 08:49:43 +00:00
KATO Takenori
232e69fdfa
Sync with sys/i386/conf/files.i386 revision 1.183.
1998-01-06 13:47:54 +00:00
KATO Takenori
162c095232
Sync with sys/i386/conf/files.i386 revision 1.182.
1997-12-14 12:30:54 +00:00
KATO Takenori
fede2ad755
Sync with sys/i386/conf/files.i386, majors.i386 and options.i386
...
revisions 1.181, 1.23 and 1.64, respectively.
1997-12-10 09:28:59 +00:00
KATO Takenori
769d22ee8b
Sync with sys/i386/conf/files.i386 revision 1.180.
1997-12-02 08:20:34 +00:00