diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2002-02-02 02:22:51 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2002-02-02 02:22:51 +0000 |
| commit | 3230a24cb48bc2fa8dc548177224002893db6fc8 (patch) | |
| tree | 32d25568deec6f3d690d8af3a01f1782fcd796ec /sys/dev/cy | |
| parent | 7e8c3cecdf7578fa3e4047d339c98514d4b618f7 (diff) | |
Notes
Diffstat (limited to 'sys/dev/cy')
| -rw-r--r-- | sys/dev/cy/cy_pci.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/sys/dev/cy/cy_pci.c b/sys/dev/cy/cy_pci.c index 70af94ec9d98..ca128af56738 100644 --- a/sys/dev/cy/cy_pci.c +++ b/sys/dev/cy/cy_pci.c @@ -47,7 +47,22 @@ #include <dev/pci/pcivar.h> -#include <pci/cy_pcireg.h> +#define CY_PCI_BASE_ADDR0 0x10 +#define CY_PCI_BASE_ADDR1 0x14 +#define CY_PCI_BASE_ADDR2 0x18 + +#define CY_PLX_9050_ICS 0x4c +#define CY_PLX_9060_ICS 0x68 +#define CY_PLX_9050_ICS_IENABLE 0x040 +#define CY_PLX_9050_ICS_LOCAL_IENABLE 0x001 +#define CY_PLX_9060_ICS_IENABLE 0x100 +#define CY_PLX_9060_ICS_LOCAL_IENABLE 0x800 + +/* Cyclom-Y Custom Register for PLX ID. */ +#define PLX_VER 0x3400 +#define PLX_9050 0x0b +#define PLX_9060 0x0c +#define PLX_9080 0x0d extern int cyattach_common(void *, int); /* Not exactly correct */ extern void cyintr(int); |
