summaryrefslogtreecommitdiff
path: root/sys/arch/hp300
AgeCommit message (Collapse)Author
2005-05-09Compile if no wsmouse device is configured in the kernel.Miod Vallat
2005-05-09Compile without option WSDISPLAY_COMPAT_RAWKBDMiod Vallat
2005-05-08For 4bpp and 6bpp frame buffers, advertize highligting and colors capabilitiesMiod Vallat
back after rasops has initialized, as it will treat anything < 8bpp as mono.
2005-05-06Keyboard maps for all international Domain keyboard layouts, reconstructedMiod Vallat
from X11 tables mickey@ pointed me to.
2005-05-06generate vim-compatible tag files, from netbsdPedro Martelletto
2005-05-06Fix links target.Marco Peereboom
2005-05-01Bring raise-only semantics to splsoft* on m68k and m88k, as done elsewhere.Miod Vallat
2005-05-01spacing; ok miod@ deraadt@David Krause
2005-04-30start the job of making things look more alikeTheo de Raadt
2005-04-30nice docs at top of GENERICTheo de Raadt
2005-04-25Pass the complete keybuffer to wskbd_rawinput(); dnkbd now works under X11.Miod Vallat
2005-04-24Oops, 1.3 would cause a keyboard plugged at boot time to start in the wrongMiod Vallat
state...
2005-04-23Discard 0 byte keyboard identification strings.Miod Vallat
Do not invoke wskbd_rawinput() with an empty buffer.
2005-04-22Do not process the FIFO during interrupts when we are polling.Miod Vallat
Also, if no keyboard has been detected at initialization, correctly initialize the state machine so that keyboard hotplug works.
2005-04-22Doh, typo in constant...Miod Vallat
2005-04-22Oops!Miod Vallat
2005-04-22Driver for the Apollo Domain keyboard and mouse, for the HP 9000/4xx series.Miod Vallat
Claims the console keyboard if a keyboard is detected at boot time, otherwise HIL is preferred (but due to wsmux both can be used simultaneously).
2005-04-22Allow an external device to force the HIL loop to not claim the keyboardMiod Vallat
console.
2005-04-22Pass -Wall, complete prototypes, some KNF; no functional change.Miod Vallat
2005-04-19nothing uses spllowersoftclock() anymoreMichael Shalayeff
2005-03-30first approximation: spoof UDF filesystem disklabels when we see them.Theo de Raadt
it is likely a slight bug or two will sneak in with this, so everyone please keep an eye out on your disklabels
2005-03-08Kill hp300 DISKLESS kernel, not worth using against GENERIC for disklessMiod Vallat
systems since it still has all the filesystems for vnd usage and thus does not save much memory... ok deraadt@
2005-03-08Cosmetics...Thierry Deval
Mainly remove space between locators parens, replace spaces with tabs where appropriate and consistently align dependencies.
2005-02-27Document how to set CONSCODE to point to an SGC device if one wants to forceMiod Vallat
the console.
2005-02-27Split sti softc in two structures, one device-related for regular deviceMiod Vallat
attachment and interface, one screen-attached for the real work. The attachment code is now required to decide whether sti_end_attach() is run immediately, or as a startuphook. This allows hp300 to initialize sti early, and use it as a console; hppa is functionally unchanged, as it uses the PROM console until the root device is mounted.
2005-02-27Invoke hp300_cninit() twice, with a global variable letting theMiod Vallat
console-dependent routines know which pass they are being invoked in. The first pass is the usual console detection code. The second pass runs after uvm is initialized, and will allow devices which need VM services to run to claim the console.
2005-02-27Decide whether to force serial console on the 425e based upon the serviceMiod Vallat
switch, which is a physical switch on this model, unlike other frodo-based hp300. Service mode will now select serial console, while normal mode will select graphics console.
2005-02-22Be sure to attach the console keyboard, if any, before prompting for anMiod Vallat
alternate root device if boot -a.
2005-02-20A better console test.Miod Vallat
2005-02-20Link uboot with libgcc for quad arithmetic now that gcc won't emit theseMiod Vallat
instructions natively.
2005-02-14Behave correctly in interrupt handlers if no tty has been allocated yet.Miod Vallat
Prevents monkeys pounding on your serial terminal from panicing your kernel before getty gets spawned on the serial ports. dcm(4) looks safe from this problem from code inspection.
2005-02-13remove race w/ improper spllowersoftclock() use; miod@ ok; not tested due to ↵Michael Shalayeff
lack of hw
2005-02-13Remove __P usage in sys that has crept back in.Jonathan Gray
'Looks fine' millert@, ok miod@
2005-02-12Use cons_decl() instead of rolling our own prototypes.Miod Vallat
2005-02-12consinit_active is not used anymore.Miod Vallat
2005-01-27In windowmove(), put another hardware blitter synchronization beforeMiod Vallat
returning, so that rasops bursts including non-accelerated operations do not have side effects.
2005-01-24Switch hp300 wscons code to rasops, for DIO frame buffers.Miod Vallat
Features: - coloured kernel messages - color support in console (use TERM=wsvt25) - pretty Gallant wsfont, rather than the acceptable or ugly (depending upon the frame buffer) ROM font - colormap ioctl support for Gatorbox and Topcat; DaVinci and Renaissance not done due to lack of hardware and/or documentation - even more code factorization tested on hyperion, and 4/6/8bpp catseye/topcat/kathmandu hardware, by millert@ and I
2005-01-24Do not attach hilkbd as console if we are running on a serial console.Miod Vallat
2005-01-23bus_space_map() sti regions with BUS_SPACE_MAP_CACHEABLE if they have theMiod Vallat
cache bit set in the region descriptor. Halves sti processing time on hp300. ok mickey@
2005-01-23Enable sgc and sti.Miod Vallat
2005-01-23Kill redundant or unnecessary includes.Miod Vallat
2005-01-22Honour wsconsctl display.vblank setting.Miod Vallat
2005-01-21Oops, revert changes not intended to be commited in previous commit.Miod Vallat
2005-01-21Overhaul of the pxa2x0_lcd code, to allow early (before autoconf) attachment,Miod Vallat
and collateral changes. Because this driver requires us_dma (and as such, vm services) to work, it can not be selected in consinit(). Instead, add a hook to the arm cpu_startup() which will, on zaurus, switch console from serial (selected in consinit()) to lcd. This also makes the zaurus-specific early pxa2x0_clkman() substitute code cleaner. While there, move boot -c handling later, after the glass console is set up. Tested by drahn@ and uwe@
2005-01-19Oops, repair stand/ by putting copies of the old grf/ite include filesMiod Vallat
in stand/include until they are cleaned up.
2005-01-19Report the appropriate wsdisplay types to WSDISPLAYIO_GTYPE.Miod Vallat
2005-01-18Better colormap recovery after X11 exits.Miod Vallat
2005-01-18Colormap handling for topcat; Xwsfb now runs.Miod Vallat
2005-01-18Enable WSDISPLAY_COMPAT_RAWKBDMiod Vallat
2005-01-18In phys_badaddr() when probe fails, restore the correct PROM bus errorMiod Vallat
handle callback (i.e. fix a typo).