Linux Kernel
3.7.1
|
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/device.h>
#include <scsi/scsi_host.h>
#include <linux/libata.h>
#include "sis.h"
Go to the source code of this file.
Macros | |
#define | DRV_NAME "sata_sis" |
#define | DRV_VERSION "1.0" |
Enumerations | |
enum | { sis_180 = 0, SIS_SCR_PCI_BAR = 5, SIS_GENCTL = 0x54, SIS_SCR_BASE = 0xc0, SIS180_SATA1_OFS = 0x10, SIS182_SATA1_OFS = 0x20, SIS_PMR = 0x90, SIS_PMR_COMBINED = 0x30, SIS_FLAG_CFGSCR = (1 << 30), GENCTL_IOMAPPED_SCR = (1 << 26) } |
Functions | |
MODULE_AUTHOR ("Uwe Koziolek") | |
MODULE_DESCRIPTION ("low-level driver for Silicon Integrated Systems SATA controller") | |
MODULE_LICENSE ("GPL") | |
MODULE_DEVICE_TABLE (pci, sis_pci_tbl) | |
MODULE_VERSION (DRV_VERSION) | |
module_pci_driver (sis_pci_driver) | |
#define DRV_NAME "sata_sis" |
Definition at line 45 of file sata_sis.c.
#define DRV_VERSION "1.0" |
Definition at line 46 of file sata_sis.c.
anonymous enum |
sis_180 | |
SIS_SCR_PCI_BAR | |
SIS_GENCTL | |
SIS_SCR_BASE | |
SIS180_SATA1_OFS | |
SIS182_SATA1_OFS | |
SIS_PMR | |
SIS_PMR_COMBINED | |
SIS_FLAG_CFGSCR | |
GENCTL_IOMAPPED_SCR |
Definition at line 48 of file sata_sis.c.
MODULE_AUTHOR | ( | "Uwe Koziolek" | ) |
MODULE_DESCRIPTION | ( | "low-level driver for Silicon Integrated Systems SATA controller" | ) |
MODULE_DEVICE_TABLE | ( | pci | , |
sis_pci_tbl | |||
) |
MODULE_LICENSE | ( | "GPL" | ) |
module_pci_driver | ( | sis_pci_driver | ) |
MODULE_VERSION | ( | DRV_VERSION | ) |