summaryrefslogtreecommitdiff
path: root/sys/arch/amiga/dev
AgeCommit message (Collapse)Author
2023-06-24Fix typo in comment.msaitoh
2023-05-06s/regster/register/ in comments and error messages.andvar
2023-05-03Driver for the MNT ZZ9000 Zorro board. Submitted by Alain Runa.phx
It was formerly known as mntzz, which Alain released three years ago. Since then, the ZZ9000 had several firmware updates which changed some hardware interface details rendering the former driver non functional in some aspects. Also the audio card plug-in ZZ9000AX became available from MNT Research. Considering the major rewrite of the driver in some areas he decided to rename it to zz9k(9). The driver consists of several sub-drivers each addressing different functionality of the MNT ZZ9000 & ZZ9000AX combo card. zz9k* is the main card driver and need to be enabled if any of the sub-driver is enabled. zz9k on its own is not very useful, it only provides a common zz9kbus for the other sub-drivers to connect to, so only enable it if one of the zz9k sub-drivers are enabled. zzfb* represents the graphics driver for the boot console and the dumb framebuffer for X11 based on WSCONS. ZZFB_CONSOLE option enables the ZZ9000 to become the boot console. zz* represents the ethernet interface of the ZZ9000. It basically works but is considered experimental. zzax* represents the ZZ9000AX audio card driver, audio* attaches to it to provide audio output and input functionality. The driver is not functional yet. zzusb* represents the ZZ9000AX usb driver. It was not implemented yet and probably never will.
2023-03-26s/dipslay/display/ in comments.andvar
2023-02-19s/collsions/collisions/ in comment.andvar
2023-02-14s/programm/program/ and s/suuport/support/ in comments and message.andvar
2023-01-23s/makre/make/ in comment.andvar
2022-10-26amiga/msc(4): Convert to ttylock/ttyunlock.riastradh
2022-10-26amiga/mfc(4): Convert to ttylock/ttyunlock.riastradh
2022-10-26ddb/db_active.h: New home for extern db_active.riastradh
This can be included unconditionally, and db_active can then be queried unconditionally; if DDB is not in the kernel, then db_active is a constant zero. Reduces need for #include opt_ddb.h, #ifdef DDB.
2022-10-04Remove unused extern declaration of constty.rin
2022-09-17Eliminate use of IFF_OACTIVE.thorpej
2022-09-17Make qn_softc::transmit_pending a bool. NFC.thorpej
2022-09-17Remove statically allocated qn_softc[] array. NFC, as it was notthorpej
referenced by anything.
2022-09-17Eliminate use of IFF_OACTIVE.thorpej
2022-08-20esstart(): Replace "IF_DEQUEUE() -> IF_PREPEND() on failure" withthorpej
"IF_POLL() -> IF_DEQUEUE() on success".
2022-08-01ms_wscons_ioctl(): Return EPASSTHROUGH instead of -1, for unsupportedrin
ioctl, as done for other backends of wsmouse(4).
2022-07-06Return display depth correctly from WSDISPLAYIO_GET_FBINFO.jandberg
(previous workaround to always return 1 no longer needed with latest wsfb)
2022-06-27s/loobpack/loopback/ in comment.andvar
2022-05-31fix various typos in comments, documentation and messages.andvar
2022-05-28fix various typos, mainly in comments.andvar
2022-05-24fix various typos in comment, documentation and log messages.andvar
2022-05-24s/changable/changeable/ in comments.andvar
2022-05-03fix various typos, mainly s/trasfering/transferring/ and s/theese/these/.andvar
2022-04-07s/psuedo/pseudo/andvar
2022-04-07fix various typos in comments.andvar
2022-03-28sys: Split struct device into a private device_impl.h.riastradh
Include this only inside autoconf itself, and a few files that abuse autoconf in ways I can't confidently make easy fixes for. XXX kernel ABI change requires bump -- no more use of struct device internals allowed, previously done by some drivers
2022-03-26s/logial/logical/andvar
2022-02-12s/epxected/expected/andvar
2022-02-06Refactor cursor drawing.jandberg
Fixes rare case where cursor gets painted over when screen is cleared.
2022-01-17fix typos in comments.andvar
2022-01-01fix typos in comments, mainly basicly -> basically.andvar
2022-01-01s/frambuffer/framebuffer/ in comment.msaitoh
2021-12-26fix various typos, mainly in comments.andvar
2021-12-05s/timout/timeout/msaitoh
2021-12-05s/convience/convenience/ in comment.msaitoh
2021-11-01fix typos, mainly in words minimum and maximum, but also few others.andvar
2021-10-21fix various typos, mainly in comments, but also in man pages and log messages.andvar
2021-10-04follow fcambus steps by fixing typos for "unknown" in few more error messages.andvar
2021-09-26Driver "kqfilter" entry points return an error code, so if an invalidthorpej
filter is requested, return EINVAL rather than 1.
2021-09-26Change the kqueue filterops::f_isfd field to filterops::f_flags, andthorpej
define a flag FILTEROP_ISFD that has the meaning of the prior f_isfd. Field and flag name aligned with OpenBSD. This does not constitute a functional or ABI change, as the field location and size, and the value placed in that field, are the same as the previous code, but we're bumping __NetBSD_Version__ so 3rd-party module source code can adapt, as needed. NetBSD 9.99.89
2021-09-19fix various typos in comments, messages and documentation.andvar
2021-09-16fix various typos, mainly in comments.andvar
2021-08-21fix mainly same typos as in my previous commit but outside sys/dev/dm.andvar
2021-08-17fix multiplei repetitive typos in comments, messages and documentation. ↵andvar
mainly because copy paste code big amount of files are affected.
2021-08-09s/definitons/definitions/andvar
2021-08-07Merge thorpej-cfargs2.thorpej
2021-06-15Remove parentheses from return. No functional changes.rin
2021-06-15Add support for WSDISPLAYIO_MODE_DUMBFB to WSDISPLAYIO_SMODE.rin
2021-06-03kbd(4) and ms(4) carry multiple interface attributes. They are configurablerin
both as standalone drivers for legacy framebuffer console, or parents of wskbd(4) and wsmouse(4), respectively. For the latter, be explicit about using "wskbddev" and "wsmousedev" interface attributes for children.