aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64/creator
Commit message (Collapse)AuthorAgeFilesLines
* - Add missing <sys/module.h>. [1]Marius Strobl2004-07-091-1/+3
| | | | | | | | | | - Remove unused includes. - Sort includes. Reported by: Pyun YongHyeon <yongari@kt-is.co.kr> [1] Notes: svn path=/head/; revision=131887
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-162-5/+5
| | | | | | | Bump __FreeBSD_version accordingly. Notes: svn path=/head/; revision=130585
* - Use an ihandle_t to store the stdout instance handle instead of aThomas Moestl2004-04-041-1/+1
| | | | | | | | | | | | | | | phandle_t. Since both are typedefed to unsigned int, this is more or less cosmetic. - Fix the code that determines whether a creator instance was used for firmware output (and should not be blanked on initialization). Since r1.2 of dev/fb/creator.c, this consisted comparing a handle of an instance of a package with a handle of the package itself. Use the test from r1.1, which utilizes OF_instance_to_package(). Submitted by: Marius Strobl <marius@alchemy.franken.de> Notes: svn path=/head/; revision=127838
* Device megapatch 4/6:Poul-Henning Kamp2004-02-211-0/+2
| | | | | | | | | | | Introduce d_version field in struct cdevsw, this must always be initialized to D_VERSION. Flip sense of D_NOGIANT flag to D_NEEDGIANT, this involves removing four D_NOGIANT flags and adding 145 D_NEEDGIANT flags. Notes: svn path=/head/; revision=126080
* Assume that unit 0 is the graphics console initialized by syscons, insteadJake Burkholder2003-11-111-1/+1
| | | | | | | | of testing if the device's firmware node is stdout. This allows syscons to be used when the firmware's input and output is the serial console. Notes: svn path=/head/; revision=122465
* Add a driver for creator upa frame buffers found in many sparc64 machines.Jake Burkholder2003-08-242-0/+458
These are fixed resolution and operate only in pixel mode so they present a challenge to syscons (square peg, round hole, etc, etc). The driver provides a video driver interface for syscons and a separate character device for X to mmap. Wherever possible the creator's accelarated graphics functions are used so text mode is very fast. Based roughly on the openbsd driver. Notes: svn path=/head/; revision=119381