Commit d1dc17aa authored by David S. Miller's avatar David S. Miller

[SPARC64]: Add JIO/Tomatillo PCI controller support.

parent 8eb8462c
...@@ -205,6 +205,7 @@ void pci_config_write32(u32 *addr, u32 val) ...@@ -205,6 +205,7 @@ void pci_config_write32(u32 *addr, u32 val)
extern void sabre_init(int, char *); extern void sabre_init(int, char *);
extern void psycho_init(int, char *); extern void psycho_init(int, char *);
extern void schizo_init(int, char *); extern void schizo_init(int, char *);
extern void tomatillo_init(int, char *);
static struct { static struct {
char *model_name; char *model_name;
...@@ -216,7 +217,9 @@ static struct { ...@@ -216,7 +217,9 @@ static struct {
{ "SUNW,psycho", psycho_init }, { "SUNW,psycho", psycho_init },
{ "pci108e,8000", psycho_init }, { "pci108e,8000", psycho_init },
{ "SUNW,schizo", schizo_init }, { "SUNW,schizo", schizo_init },
{ "pci108e,8001", schizo_init } { "pci108e,8001", schizo_init },
{ "SUNW,tomatillo", tomatillo_init },
{ "pci108e,a801", tomatillo_init },
}; };
#define PCI_NUM_CONTROLLER_TYPES (sizeof(pci_controller_table) / \ #define PCI_NUM_CONTROLLER_TYPES (sizeof(pci_controller_table) / \
sizeof(pci_controller_table[0])) sizeof(pci_controller_table[0]))
......
This diff is collapsed.
...@@ -1855,6 +1855,7 @@ ...@@ -1855,6 +1855,7 @@
8001 Schizo PCI Bus Module 8001 Schizo PCI Bus Module
a000 Ultra IIi a000 Ultra IIi
a001 Ultra IIe a001 Ultra IIe
a801 Tomatillo PCI Bus Module
108f Systemsoft 108f Systemsoft
1090 Encore Computer Corporation 1090 Encore Computer Corporation
1091 Intergraph Corporation 1091 Intergraph Corporation
......
...@@ -840,6 +840,7 @@ ...@@ -840,6 +840,7 @@
#define PCI_DEVICE_ID_SUN_SCHIZO 0x8001 #define PCI_DEVICE_ID_SUN_SCHIZO 0x8001
#define PCI_DEVICE_ID_SUN_SABRE 0xa000 #define PCI_DEVICE_ID_SUN_SABRE 0xa000
#define PCI_DEVICE_ID_SUN_HUMMINGBIRD 0xa001 #define PCI_DEVICE_ID_SUN_HUMMINGBIRD 0xa001
#define PCI_DEVICE_ID_SUN_TOMATILLO 0xa801
#define PCI_VENDOR_ID_CMD 0x1095 #define PCI_VENDOR_ID_CMD 0x1095
#define PCI_DEVICE_ID_CMD_640 0x0640 #define PCI_DEVICE_ID_CMD_640 0x0640
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment