summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/sti_pci.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix format strings in STIDEBUG code.miod2014-08-301-2/+2
|
* Split sti structures into rom-related information and screen-relatedmiod2009-02-061-7/+8
| | | | | | | | | | | information. This is preliminary work to help eventually supporting the dual-head ELK model. Also split the initialization code in several routines, this makes the code easier to read, and makes it easier to release resources upon failure. Finally, don't forget to clear the text planes on non-console displays when initializing.
* Repair a couple of printfs.miod2007-06-171-3/+5
|
* Keep the wsscreen_descr in the softc, to allow sti of different textmiod2007-01-121-1/+3
| | | | resolutions to attach without disturbing each other.
* Add a platform specific sti_pci_is_console() to decide if a given pci stimiod2007-01-111-1/+5
| | | | | | | | | | device is the system console; the interface currently passes the pci attachment args and the sti region information, and will hopefully turn to be flexible enough. This allows sti@pci to be used as a console device on hppa, finally. ok mickey@
* Add callbacks to enable and disable the sti rom, so that it is only mappedmiod2007-01-111-64/+187
| | | | | | | | | | when we need to access it; and change the rom parser to walk all the rom images and pick the first one sporting code for the processor we run on, instead of picking the first. This allows dual-sti@pci setups to work. ok mickey@, dual-head test martin@
* Allow sti_attach_common() to return an error code, and do not fall intomiod2007-01-111-4/+4
| | | | | | sti_end_attach() if an error has occured. ok mickey@
* Add support for pci-based sti devices. ok mickey@miod2006-12-181-0/+247