From 99bc4514c23f0001f2da7da47f03d3ba94232cc7 Mon Sep 17 00:00:00 2001 From: Libra Li Date: Thu, 22 Oct 2009 02:54:25 +0000 Subject: The LAN chip-set on the Technexion TIM-5690 is enabled by hardware and does not need any handling in software. Signed-off-by: Libra Li Acked-by: Carl-Daniel Hailfinger git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4822 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/technexion/tim5690/mainboard.c | 32 ---------------------------- 1 file changed, 32 deletions(-) (limited to 'src/mainboard') diff --git a/src/mainboard/technexion/tim5690/mainboard.c b/src/mainboard/technexion/tim5690/mainboard.c index 468c65e5ca..9cd2931843 100644 --- a/src/mainboard/technexion/tim5690/mainboard.c +++ b/src/mainboard/technexion/tim5690/mainboard.c @@ -47,37 +47,6 @@ extern void lb_add_memory_range(struct lb_memory *mem, uint32_t type, uint64_t uma_memory_base, uma_memory_size; - -/*************************************************** -* This board, the TIM-5690 has two Marvel 88e5056 PCI-E -* 10/100/1000 chips on board. -* Both of their pin PERSTn pins are connected to GPIO 5 of the -* SB600 southbridge. -****************************************************/ -static void enable_onboard_nic() -{ - - u8 byte; - device_t sm_dev; - - printk_info("enable_onboard_nic.\n"); - - sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0)); - - byte = pci_read_config8(sm_dev, 0x9a); - byte |= ( 1 << 7); - pci_write_config8(sm_dev, 0x9a, byte); - - byte=pm_ioread(0x59); - byte &= ~( 1<< 5); - pm_iowrite(0x59,byte); - - byte = pci_read_config8(sm_dev, 0xA8); - - byte |= (1 << 1); //set bit 1 to high - pci_write_config8(sm_dev, 0xA8, byte); -} - /* set thermal config */ static void set_thermal_config() @@ -193,7 +162,6 @@ void tim5690_enable(device_t dev) uma_memory_base = 0x38000000; /* 1GB system memory supposed */ #endif - enable_onboard_nic(); set_thermal_config(); } -- cgit v1.2.3