#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/font.h>
#include <asm/hardware.h>
#include <asm/page.h>
#include <asm/parisc-device.h>
#include <asm/pdc.h>
#include <asm/cacheflush.h>
#include <asm/grfioctl.h>
#include "../sticore.h"
Go to the source code of this file.
|
void | sti_putc (struct sti_struct *sti, int c, int y, int x) |
|
void | sti_set (struct sti_struct *sti, int src_y, int src_x, int height, int width, u8 color) |
|
void | sti_clear (struct sti_struct *sti, int src_y, int src_x, int height, int width, int c) |
|
void | sti_bmove (struct sti_struct *sti, int src_y, int src_x, int dst_y, int dst_x, int height, int width) |
|
| __setup ("sti=", sti_setup) |
|
| MODULE_DEVICE_TABLE (pci, sti_pci_tbl) |
|
struct sti_struct * | sti_get_rom (unsigned int index) |
|
| EXPORT_SYMBOL (sti_get_rom) |
|
| MODULE_AUTHOR ("Philipp Rumpf, Helge Deller, Thomas Bogendoerfer") |
|
| MODULE_DESCRIPTION ("Core STI driver for HP's NGLE series graphics cards in HP PARISC machines") |
|
| MODULE_LICENSE ("GPL v2") |
|
#define BMODE_LAST_ADDR_OFFS 0x50 |
#define c_bg |
( |
|
sti, |
|
|
|
c |
|
) |
| col_trans[((c>>11) & 7)] |
#define c_fg |
( |
|
sti, |
|
|
|
c |
|
) |
| col_trans[((c>> 8) & 7)] |
#define c_index |
( |
|
sti, |
|
|
|
c |
|
) |
| ((c) & 0xff) |
#define STI_DRIVERVERSION "Version 0.9a" |
MODULE_AUTHOR |
( |
"Philipp |
Rumpf, |
|
|
Helge |
Deller, |
|
|
Thomas Bogendoerfer" |
|
|
) |
| |
MODULE_DESCRIPTION |
( |
"Core STI driver for HP's NGLE series graphics cards in HP PARISC machines" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
sti_pci_tbl |
|
|
) |
| |
MODULE_LICENSE |
( |
"GPL v2" |
| ) |
|