Handle _CID being a Package type, in which case we'll use the first
item in the Package as the cid value to match against.
This will allow pckbc at acpi to match on some chromebooks.
ok kettenis@
Although one would expect systems emulating the legacy PS/2 keyboard
controller to do this faithfully, there are more and more systems which
use creative interrupt configurations differing from the ISA defaults,
and cause pckbc at isa to not behave correctly, making these keyboards (and
sometimes trackpads, too) unusable.
This commit introduces a pckbc at acpi attachment, which will attach instead
of pckbc at isa if it detects an interrupt configuration which would not be
handled correctly by the isa attachment.
This unbreaks, among other things, the keyboards in various ChromeBook.
ok kettenis@, thanks to everyone who tested.
Change getfp() to return an unBIASed stack pointer; this unbreaks
stackdump() which got broken in machdep.c 1.202.
It is much simpler to change getfp() than stackdump() which is its only
caller.
gettytab's dx flag is supposed to set decctlq, which is the opposite of
ixany, but was setting ixany instead.
Fix this by reversing the logic.
Bug report and fix from Piotr Durlej, thanks!
Remove OF_package_to_path(). This routine used to be needed by the OFW
devices (ofnet, etc) for the VI board in the before-macppc days which nobody
remembers, and has never been needed for anything on macs.
Remove two unnecessary instructions, at least one being a leftover from
debug code added in NetBSD 1.51 not being completely removed in 1.133, and
which we have been carried since 1.1 here...
Add -g option to get the index of the current virtual terminal.
This can help scripts using wsconsctl display.focus to perform vt switches.
From NetBSD via Sergiy Kopchalyuk.
A long, long, time ago, pending interrupt handlers were stored in arrays
of up to 8 handlers, one arrays par ipl level. Eventually the interrupt
logic was changed to linked lists, but the arrays remained, even when
the pending interrupt structures were moved to per-cpu data.
Simplify this by only keeping a pointer to the list head, per ipl level;
update the computations in locore accordingly, and update the relevant
comments to match reality as well.
ok kettenis@
Give locore a few more symbolic constants to make the code path constructing
a struct clockframe rather than a struct trapframe, more visible. No
functional change.
ok claudio@ kettenis@