we decide not to enable BM DAM form them
authorLi-Ta Lo <ollie@lanl.gov>
Thu, 4 Nov 2004 21:48:39 +0000 (21:48 +0000)
committerLi-Ta Lo <ollie@lanl.gov>
Thu, 4 Nov 2004 21:48:39 +0000 (21:48 +0000)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1743 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/drivers/adaptec/7902/Config.lb [deleted file]
src/drivers/adaptec/7902/adaptec_scsi.c [deleted file]
src/drivers/broadcom/tg3/Config.lb [deleted file]
src/drivers/broadcom/tg3/broadcom_nic.c [deleted file]
src/drivers/intel/82551/Config.lb [deleted file]
src/drivers/intel/82551/intel_nic.c [deleted file]

diff --git a/src/drivers/adaptec/7902/Config.lb b/src/drivers/adaptec/7902/Config.lb
deleted file mode 100644 (file)
index 4db3765..0000000
+++ /dev/null
@@ -1 +0,0 @@
-driver adaptec_scsi.o
diff --git a/src/drivers/adaptec/7902/adaptec_scsi.c b/src/drivers/adaptec/7902/adaptec_scsi.c
deleted file mode 100644 (file)
index 5524a56..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright 2003 Tyan */
-
-/* Author: Yinghai Lu 
- *
- */
-
-
-#include <delay.h>
-#include <stdlib.h>
-#include <string.h>
-#include <arch/io.h>
-
-#include <console/console.h>
-#include <device/device.h>
-#include <device/pci.h>
-#include <device/pci_ids.h>
-#include <device/pci_ops.h>
-
-
-static void adaptec_scsi_init(struct device *dev)
-{
-       uint16_t word;
-
-        word = pci_read_config16(dev, 0x4);
-        word |= ((1 << 2) |(1<<4)); // Command: 3--> 17
-        pci_write_config16(dev, 0x4, word);
-
-       printk_debug("ADAPTEC_SCSI_FIXUP:  done  \n");
-       
-       
-}
-
-static struct device_operations adaptec_scsi_ops  = {
-       .read_resources   = pci_dev_read_resources,
-       .set_resources    = pci_dev_set_resources,
-       .enable_resources = pci_dev_enable_resources,
-       .init             = adaptec_scsi_init,
-       .scan_bus         = 0,
-};
-
-static struct pci_driver adaptec2_scsi_driver __pci_driver = {
-       .ops    = &adaptec_scsi_ops,
-       .vendor = PCI_VENDOR_ID_ADAPTEC2,
-       .device = PCI_DEVICE_ID_ADAPTEC2_7902,//0x8012
-};
-
-static struct pci_driver adaptec3_scsi_driver __pci_driver = {
-        .ops    = &adaptec_scsi_ops,
-        .vendor = PCI_VENDOR_ID_ADAPTEC2,
-        .device = 0x801d
-};
-
-static struct pci_driver adaptec_scsi_driver __pci_driver = {
-        .ops    = &adaptec_scsi_ops,
-        .vendor = PCI_VENDOR_ID_ADAPTEC,
-        .device = PCI_DEVICE_ID_ADAPTEC_7895,
-};
diff --git a/src/drivers/broadcom/tg3/Config.lb b/src/drivers/broadcom/tg3/Config.lb
deleted file mode 100644 (file)
index c154669..0000000
+++ /dev/null
@@ -1 +0,0 @@
-driver broadcom_nic
diff --git a/src/drivers/broadcom/tg3/broadcom_nic.c b/src/drivers/broadcom/tg3/broadcom_nic.c
deleted file mode 100644 (file)
index 87f2fb0..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/* Copyright 2003 Tyan */
-
-/* Author: Yinghai Lu 
- *
- */
-
-
-#include <delay.h>
-#include <stdlib.h>
-#include <string.h>
-#include <arch/io.h>
-
-#include <console/console.h>
-#include <device/device.h>
-#include <device/pci.h>
-#include <device/pci_ids.h>
-#include <device/pci_ops.h>
-
-static void broadcom_nic_init(struct device *dev)
-{
-       uint16_t word;
-
-        word = pci_read_config16(dev, 0x4);
-        word |= ((1 << 2) |(1<<4)); // Command: 3--> 17
-        pci_write_config16(dev, 0x4, word);
-
-       printk_debug("BROADCOM_NIC_FIXUP:  done  \n");
-       
-       
-}
-
-static struct device_operations broadcom_nic_ops  = {
-       .read_resources   = pci_dev_read_resources,
-       .set_resources    = pci_dev_set_resources,
-       .enable_resources = pci_dev_enable_resources,
-       .init             = broadcom_nic_init,
-       .scan_bus         = 0,
-};
-
-static struct pci_driver broadcom_nic_driver __pci_driver = {
-       .ops    = &broadcom_nic_ops,
-       .vendor = PCI_VENDOR_ID_BROADCOM,
-       .device = PCI_DEVICE_ID_TIGON3_5703X,
-};
-static struct pci_driver broadcom_nic2_driver __pci_driver = {
-        .ops    = &broadcom_nic_ops,
-        .vendor = PCI_VENDOR_ID_BROADCOM,
-        .device = 0x1653,
-};
-static struct pci_driver broadcom_nic3_driver __pci_driver = {
-        .ops    = &broadcom_nic_ops,
-        .vendor = PCI_VENDOR_ID_BROADCOM,
-        .device = 0x4401,
-};
-
diff --git a/src/drivers/intel/82551/Config.lb b/src/drivers/intel/82551/Config.lb
deleted file mode 100644 (file)
index fb4fbbe..0000000
+++ /dev/null
@@ -1 +0,0 @@
-driver intel_nic
diff --git a/src/drivers/intel/82551/intel_nic.c b/src/drivers/intel/82551/intel_nic.c
deleted file mode 100644 (file)
index f940c1f..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/* Copyright 2003 Tyan */
-
-/* Author: Yinghai Lu 
- *
- */
-
-
-#include <delay.h>
-#include <stdlib.h>
-#include <string.h>
-#include <arch/io.h>
-
-#include <console/console.h>
-#include <device/device.h>
-#include <device/pci.h>
-#include <device/pci_ids.h>
-#include <device/pci_ops.h>
-
-
-static void intel_nic_init(struct device *dev)
-{
-       uint16_t word;
-
-        word = pci_read_config16(dev, 0x4);
-        word |= ((1 << 2) |(1<<4)); // Command: 3--> 17
-        pci_write_config16(dev, 0x4, word);
-
-       printk_debug("INTEL_NIC_FIXUP:  done  \n");
-       
-       
-}
-
-static struct device_operations intel_nic_ops  = {
-       .read_resources   = pci_dev_read_resources,
-       .set_resources    = pci_dev_set_resources,
-       .enable_resources = pci_dev_enable_resources,
-       .init             = intel_nic_init,
-       .scan_bus         = 0,
-};
-
-static struct pci_driver intel_nic_driver __pci_driver = {
-       .ops    = &intel_nic_ops,
-       .vendor = PCI_VENDOR_ID_INTEL,
-       .device = 0x1010,
-};
-static struct pci_driver intel_nic2_driver __pci_driver = {
-        .ops    = &intel_nic_ops,
-        .vendor = PCI_VENDOR_ID_INTEL,
-        .device = 0x100f,
-};