Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-10-21 | tidy up dmesg printing a bit, makes PCI hme only take 2 lines | Brad Smith | |
per interface instead of 3. | |||
2005-07-09 | Do not #include "foo.h" and keep the whole file between #if NFOO >0 ... #endif, | Miod Vallat | |
config(8) will not bring us into play unless NFOO > 0 anyway. | |||
2005-06-08 | remove netns crud. | Henning Brauer | |
some drivers actually had hooks for SIOCSIFADDR, most just useless includes "looks good" deraadt miod brad | |||
2005-04-16 | do not provide round_buffer if not needed unless explained why in comments | Michael Shalayeff | |
2005-04-15 | make sure aligment does not return zero block size | Michael Shalayeff | |
2005-04-01 | handle burst size of 64 | Brad Smith | |
2005-03-15 | Take care of updating the PROMs view of the cursor position in the common fb | Miod Vallat | |
code, rather than doing this in only a subset of the fb drivers. | |||
2005-03-13 | Add missed WSDISPLAYIO_[GS]VIDEO ioctl handling. | Miod Vallat | |
2005-03-08 | also display the correct priority on sparc64 when failing to register | Martin Reindl | |
an interrupt ok miod@ deraadt@ | |||
2005-03-08 | When failing to register an interrupt, display the correct priority on sparc64. | Miod Vallat | |
ok cloder@ martin@ | |||
2005-03-08 | Cosmetics... | Thierry Deval | |
Mainly remove space between locators parens, replace spaces with tabs where appropriate and consistently align dependencies. | |||
2005-03-07 | - Match PGI,tvthree (similar frame buffer capacities) | Miod Vallat | |
- Correctly handle invalid freqcode position 6. | |||
2005-03-07 | Do not bother passing the blanking routine to fbwscons_console_init(), | Miod Vallat | |
as fbwscons_attach() can find it on its own. | |||
2005-03-06 | Missing argument to printf(); pat@ | Miod Vallat | |
2005-03-05 | Now that xbox sort-of works on sparc64, port the cgtwelve driver, since | Miod Vallat | |
the only way to connect it to a sparc64 machine is via an xbox device. | |||
2005-03-05 | Preliminary xbox support: attaches, memory mapping and interrupts work, but | Miod Vallat | |
DMA transfers are not implemented yet, and are disabled (which causes drivers to SBus cards on the xbox to fail to attach). In practice, this allows frame buffers to work, maybe more devices; DMA support will be worked on in the near future. | |||
2005-03-03 | Sync a few comments with reality. | Miod Vallat | |
2005-03-03 | Do not attempt to read past firmware data in rfx_initialize(). | Miod Vallat | |
2005-03-03 | If we couldn't register an interrupt, don't abort attaching - we'll just | Miod Vallat | |
update colormaps immediately rather than waiting for the retrace interrupt. | |||
2005-03-03 | Do not let dma attach children if it could not initialize properly. | Miod Vallat | |
2005-03-03 | Do not unmap more memory than we mapped earlier, in case of attachment failure. | Miod Vallat | |
2005-03-02 | Dmesg nit | Miod Vallat | |
2005-03-01 | Display hardware name and display resolution at attach time, as done on sparc. | Miod Vallat | |
2005-03-01 | Print display resolution as %dx%d, not %d x %d. | Miod Vallat | |
2005-01-27 | Add pcmcia_intr_string() to format the intr string for pcmcia attach | Todd C. Miller | |
routines. | |||
2005-01-15 | make sure interface is in RUNNING state before touching the multicast filters | Brad Smith | |
From NetBSD NetBSD PR 27678 for details ok mcbride@ | |||
2005-01-05 | Let wsdisplay drivers return zero for WSDISPLAYIO_[GS]VIDEO ioctls - most | Miod Vallat | |
of the work is done in the upper layer, but they get to see the ioctl, so don't always return an error. | |||
2004-12-05 | rather then -> rather than | Jonathan Gray | |
2004-11-29 | Move the struct wsscreen_descr from a per-driver global to a per-instance | Miod Vallat | |
field of the sunfb structure. This allows multiple instances of the same driver, but with different resolutions (such as a couple of vigra or a TGX cgsix and a TGX+ cgsix) to use distinct wsscreen_descr structures featuring different resolution information. Doing this allows more wsscreen_descr fiddling inside the sparc* fb api, and results in some code shrinkage (about 4KB on sparc GENERIC). | |||
2004-11-29 | Port the remaining two sbus framebuffer drivers to sparc64; tvtwo untested | Miod Vallat | |
due to lack of hardware. | |||
2004-11-09 | Always free memory on failure in c{e,s}4231_alloc(); from Patrick Lafiti. | Miod Vallat | |
2004-09-30 | Do not pretend we have set up an ifmedia structure if we did not; fixes | Miod Vallat | |
PR #3407 and #3661. | |||
2004-09-29 | Ratibibugle now useless evcnt structures. | Miod Vallat | |
2004-07-26 | Remove orphaned prototypes. | Miod Vallat | |
2004-06-21 | Add support for agten(4) - on Andrey's U2 the PROM is not able to initialize | Miod Vallat | |
the board correctly, though. | |||
2004-06-20 | Port mgx(4) to sparc64. | Miod Vallat | |
2004-06-20 | Port the rfx(4) frame buffer driver to sparc64. | Miod Vallat | |
2004-06-20 | zx(4) support for sparc64, tested on an Ultra 2. | Miod Vallat | |
2004-05-12 | network drivers don't need to include bpfdesc.h | Ted Unangst | |
ok krw@ canacar@ | |||
2004-03-03 | The socket number diagnostic check was simply crying out for unsigned | Miod Vallat | |
arithmetic... | |||
2004-03-02 | Rework the card insertion/removal detection logic: | Miod Vallat | |
- instead of queueing events each time the sense information changes, only remember that the slot needs attention - when processing a slot needing attention, decide what to do depending upon its current sense information, rather than what it was when the change was detected - handle the ``only one sensor asserted'' state happening during slow insertion or removal. This makes the driver much more reactive to insertions and removals, and also removes unnecessary attach/detach calls. ok deraadt@ | |||
2003-10-03 | Merge tty_attach() in ttymalloc() and tty_detach() in ttyfree(). The need for | Miod Vallat | |
separate tty registering is gone now that sparc has switched to wscons, and this makes the code less error-prone. Also, remove tests for ttymalloc() failure, since it uses M_WAITOK. ok millert@ deraadt@, tested by various people as well besides me... | |||
2003-09-23 | Replace select backends with poll backends. selscan() and pollscan() | Todd C. Miller | |
now call the poll backend. With this change we implement greater poll(2) functionality instead of emulating it via the select backend. Adapted from NetBSD and including some changes from FreeBSD. Tested by many, deraadt@ OK | |||
2003-08-15 | change arguments to suser. suser now takes the process, and a flags | Ted Unangst | |
argument. old cred only calls user suser_ucred. this will allow future work to more flexibly implement the idea of a root process. looks like something i saw in freebsd, but a little different. use of suser_ucred vs suser in file system code should be looked at again, for the moment semantics remain unchanged. review and input from art@ testing and further review miod@ | |||
2003-08-01 | The Vigra VS10-EK is recognized as a cgthree clone, but due to its utterly | Miod Vallat | |
ridiculous resolution, we need to plug the "clear the screen and switch font" trick here too. [Thanks to Andrey Smagin for providing a card for testing] | |||
2003-07-25 | remove extra arg to printf | Jason Wright | |
2003-07-15 | ansi | Jason Wright | |
2003-07-07 | ansify and remove statics | Jason Wright | |
2003-07-03 | ansify | Jason Wright | |
2003-07-03 | ansify | Jason Wright | |