Home | History | Annotate | Download | only in dev
History log of /src/sys/arch/mac68k/dev/ite_compat.c
RevisionDateAuthorComments
 1.14  26-Mar-2023  andvar s/diplay/display/ and s/DIPPLAY/DISPLAY/ in comments.
 1.13  20-Aug-2015  christos include "ioconf.h" to get the 'void <driver>attach(int count);' prototype.
 1.12  25-Jul-2014  dholland branches: 1.12.4;
Add d_discard to all struct cdevsw instances I could find.

All have been set to "nodiscard"; some should get a real implementation.
 1.11  16-Mar-2014  dholland branches: 1.11.2;
Change (mostly mechanically) every cdevsw/bdevsw I can find to use
designated initializers.

I have not built every extant kernel so I have probably broken at
least one build; however I've also found and fixed some wrong
cdevsw/bdevsw entries so even if so I think we come out ahead.
 1.10  04-Mar-2007  christos branches: 1.10.78; 1.10.88; 1.10.94;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.9  11-Dec-2005  christos branches: 1.9.26;
merge ktrace-lwp.
 1.8  15-Jan-2005  chs branches: 1.8.10;
de-__P, remove register, ansify, b* -> mem*.
 1.7  15-Jul-2003  lukem __KERNEL_RCSID()
 1.6  23-Oct-2002  jdolecek branches: 1.6.6;
merge kqueue branch into -current

kqueue provides a stateful and efficient event notification framework
currently supported events include socket, file, directory, fifo,
pipe, tty and device changes, and monitoring of processes and signals

kqueue is supported by all writable filesystems in NetBSD tree
(with exception of Coda) and all device drivers supporting poll(2)

based on work done by Jonathan Lemon for FreeBSD
initial NetBSD port done by Luke Mewburn and Jason Thorpe
 1.5  06-Sep-2002  gehenna Merge the gehenna-devsw branch into the trunk.

This merge changes the device switch tables from static array to
dynamically generated by config(8).

- All device switches is defined as a constant structure in device drivers.

- The new grammer ``device-major'' is introduced to ``files''.

device-major <prefix> char <num> [block <num>] [<rules>]

- All device major numbers must be listed up in port dependent majors.<arch>
by using this grammer.

- Added the new naming convention.
The name of the device switch must be <prefix>_[bc]devsw for auto-generation
of device switch tables.

- The backward compatibility of loading block/character device
switch by LKM framework is broken. This is necessary to convert
from block/character device major to device name in runtime and vice versa.

- The restriction to assign device major by LKM is completely removed.
We don't need to reserve LKM entries for dynamic loading of device switch.

- In compile time, device major numbers list is packed into the kernel and
the LKM framework will refer it to assign device major number dynamically.
 1.4  14-May-2001  scw branches: 1.4.2; 1.4.4; 1.4.8; 1.4.16;
port-mac68l/12931 by Dave Huang:

Add an itepoll() function. This one slipped through my recent sweep
of line-disciplines...
 1.3  22-Jan-2001  scottr branches: 1.3.2;
Correct a thinko: iteopen()/iteclose() shouldn't just pass off to
the wsdisplay driver. Otherwise, closing ttye0 (ite compat) ends
up closing ttyE0, the actual console, when ttyflags runs. Fixes
PR 12022.
 1.2  14-Feb-2000  scottr branches: 1.2.4; 1.2.6;
Merge wscons work onto the main development branch.
 1.1  07-Feb-2000  scottr branches: 1.1.2;
file ite_compat.c was initially added on branch scottr-mac68k-wscons.
 1.1.2.3  11-Feb-2000  scottr Get the console device without any outside help. Also, do a sanity
check in iteioctl().
 1.1.2.2  07-Feb-2000  scottr Add missing copyright/license.
 1.1.2.1  07-Feb-2000  scottr Implement an ite console emulator for wscons. The only thing we actually
need to do is handle a few ioctls, as wsdisplay already handles everything
else nicely.
 1.2.6.3  11-Feb-2001  bouyer Sync with HEAD.
 1.2.6.2  20-Nov-2000  bouyer Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.
 1.2.6.1  14-Feb-2000  bouyer file ite_compat.c was added on branch thorpej_scsipi on 2000-11-20 20:12:17 +0000
 1.2.4.1  03-Feb-2001  he Pull up revision 1.3 (requested by scottr):
Correct the implementation of iteopen()/iteclose(). Fixes
PR#12022.
 1.3.2.1  21-Jun-2001  nathanw Catch up to -current.
 1.4.16.1  19-May-2002  gehenna Add device switch.
Replace the access to devsw table and the hard-coded majors with devsw API.
 1.4.8.3  11-Nov-2002  nathanw Catch up to -current
 1.4.8.2  17-Sep-2002  nathanw Catch up to -current.
 1.4.8.1  14-May-2001  nathanw file ite_compat.c was added on branch nathanw_sa on 2002-09-17 21:15:25 +0000
 1.4.4.1  10-Oct-2001  fvdl Convert all remaining devices.
 1.4.2.1  10-Oct-2002  jdolecek sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
 1.6.6.5  25-Jan-2005  skrll Adapt to branch.
 1.6.6.4  17-Jan-2005  skrll Sync with HEAD.
 1.6.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.6.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.6.6.1  03-Aug-2004  skrll Sync with HEAD
 1.8.10.2  03-Sep-2007  yamt sync with head.
 1.8.10.1  21-Jun-2006  yamt sync with head.
 1.9.26.1  12-Mar-2007  rmind Sync with HEAD.
 1.10.94.1  18-May-2014  rmind sync with head
 1.10.88.2  03-Dec-2017  jdolecek update from HEAD
 1.10.88.1  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.10.78.1  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.11.2.1  10-Aug-2014  tls Rebase.
 1.12.4.1  22-Sep-2015  skrll Sync with HEAD

RSS XML Feed