Home | History | Annotate | Download | only in dev
History log of /src/sys/arch/atari/dev/itevar.h
RevisionDateAuthorComments
 1.16  06-Jan-2023  tsutsui TAB/spaces/indents cleanup.
 1.15  25-Jun-2022  tsutsui Add a minimum DEC special graphics character support for atari ite(4).

This closes PR port-atari/46647 (Menu borders in sysinst appear as
characters with diacritical marks instead of graphics characters).

Switching encoding support by "ESC ( <F>" sequence for vt220 was
pulled from x68k ite(4) (that already supports ISO-2022-JP and EUC-JP).
Note atari's fonts already include DEC special graphics characters.
ET4000 on Hades is untested due to long-term lack of hardware.
Discussed on port-atari@ etc.
 1.14  05-Jun-2011  tsutsui branches: 1.14.58;
Split device_t/softc. Also rename some softc variables. Tested on TT030.

XXX: old ugly config_console() hack should go away...
 1.13  14-Mar-2009  dsl branches: 1.13.4; 1.13.6; 1.13.10;
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball.
i386 and amd64 GENERIC and sys still build.
 1.12  04-Mar-2007  christos branches: 1.12.44; 1.12.52; 1.12.58;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.11  11-Dec-2005  christos branches: 1.11.26;
merge ktrace-lwp.
 1.10  19-Jan-2005  chs branches: 1.10.8;
use a flag in the softc to indicate if an instance has been configured,
rather than a bit in 32-bit global variable indexed by unit number.
 1.9  06-Sep-2002  gehenna branches: 1.9.6; 1.9.14;
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.8  30-May-2001  leo branches: 1.8.2; 1.8.8; 1.8.16;
Add itepoll() prototype as suggested by 'maximum entropy' (pr#13047).
 1.7  27-Mar-2000  leo branches: 1.7.6;
This file was forgotten in the commit with log message:
Move the ite_default_* variables to ite.c. They are generic ite.
 1.6  11-Oct-1996  leo branches: 1.6.28;
Remove grf_ite_ioctl(). Replace it by 'itexx_ioctl' that is configurable
per ite-type.
 1.5  18-Apr-1996  leo Yet more prototyping and -Wall fixes.
 1.4  20-Mar-1996  leo And more proto's.....
 1.3  22-Feb-1996  leo First bunch of changes due to stricter prototype checking.
 1.2  25-Jul-1995  leo A forgotten file for the kbdmap fixes.
 1.1  26-Mar-1995  leo branches: 1.1.1;
Initial revision
 1.1.1.1  26-Mar-1995  leo NetBSD/Atari, port by Leo Weppelman.
 1.6.28.1  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.7.6.1  21-Jun-2001  nathanw Catch up to -current.
 1.8.16.1  19-May-2002  gehenna Remove unnecessary prototype.
 1.8.8.2  17-Sep-2002  nathanw Catch up to -current.
 1.8.8.1  30-May-2001  nathanw file itevar.h was added on branch nathanw_sa on 2002-09-17 21:13:46 +0000
 1.8.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.9.14.1  29-Apr-2005  kent sync with -current
 1.9.6.2  24-Jan-2005  skrll Sync with HEAD.
 1.9.6.1  17-Jan-2005  skrll Adapt to branch.
 1.10.8.2  03-Sep-2007  yamt sync with head.
 1.10.8.1  21-Jun-2006  yamt sync with head.
 1.11.26.1  12-Mar-2007  rmind Sync with HEAD.
 1.12.58.1  13-May-2009  jym Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.
 1.12.52.1  28-Apr-2009  skrll Sync with HEAD.
 1.12.44.1  04-May-2009  yamt sync with head.
 1.13.10.1  23-Jun-2011  cherry Catchup with rmind-uvmplock merge.
 1.13.6.1  06-Jun-2011  jruoho Sync with HEAD.
 1.13.4.1  12-Jun-2011  rmind sync with head
 1.14.58.1  11-Sep-2022  martin Pull up following revision(s) (requested by tsutsui in ticket #1518):

sys/arch/atari/dev/ite.c: revision 1.82
sys/arch/atari/dev/ite_cc.c: revision 1.45
sys/arch/atari/dev/ite_et.c: revision 1.36
sys/arch/atari/dev/itevar.h: revision 1.15

Add a minimum DEC special graphics character support for atari ite(4).

This closes PR port-atari/46647 (Menu borders in sysinst appear as
characters with diacritical marks instead of graphics characters).

Switching encoding support by "ESC ( <F>" sequence for vt220 was
pulled from x68k ite(4) (that already supports ISO-2022-JP and EUC-JP).

Note atari's fonts already include DEC special graphics characters.
ET4000 on Hades is untested due to long-term lack of hardware.

Discussed on port-atari@ etc.

RSS XML Feed