1 Apr 01:38
[PATCH] Disable integrated Intel 3100 devices properly
Ed Swierk <eswierk <at> arastra.com>
2008-03-31 23:38:34 GMT
2008-03-31 23:38:34 GMT
Setting an integrated southbridge device (like SATA or USB2.0) to "off" in Config.lb should cause the PCI device not to respond to configuration requests. The code that takes care of this for the Intel 3100 is in src/southbridge/intel/i3100/i3100.c. Unfortunately I copied the esb6300 implementation without noticing that it makes no sense at all on the Intel 3100. The attached patch implements this properly for the Intel 3100. --Ed
Index: coreboot-v2-3189/src/southbridge/intel/i3100/i3100.c
===================================================================
--- coreboot-v2-3189.orig/src/southbridge/intel/i3100/i3100.c
+++ coreboot-v2-3189/src/southbridge/intel/i3100/i3100.c
@@ -18,52 +18,43 @@
*
*/
-/* This code is based on src/southbridge/intel/esb6300/esb6300.c */
-
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
-#include <device/pci_ids.h>
#include "i3100.h"
void i3100_enable(device_t dev)
{
device_t lpc_dev;
(Continue reading)
Thanks - Joe
RSS Feed