775145314ef46933ecbab1dfeec40d5a44471028
[coreboot.git] / src / mainboard / lenovo / t60 / mainboard.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; version 2 of
10  * the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20  * MA 02110-1301 USA
21  */
22
23 #include <console/console.h>
24 #include <device/device.h>
25 #include <arch/io.h>
26 #include <boot/tables.h>
27 #include <delay.h>
28 #include <arch/coreboot_tables.h>
29 #include "chip.h"
30 #include <device/pci_def.h>
31 #include <device/pci_ops.h>
32 #include <arch/io.h>
33 #include <ec/lenovo/pmh7/pmh7.h>
34 #include <ec/acpi/ec.h>
35 #include <ec/lenovo/h8/h8.h>
36 #include <northbridge/intel/i945/i945.h>
37
38 static void mainboard_enable(device_t dev)
39 {
40         device_t dev0, idedev;
41
42         /* enable Audio */
43         h8_set_audio_mute(0);
44
45         /* If we're resuming from suspend, blink suspend LED */
46         dev0 = dev_find_slot(0, PCI_DEVFN(0,0));
47         if (dev0 && pci_read_config32(dev0, SKPAD) == 0xcafed00d)
48                 ec_write(0x0c, 0xc7);
49
50         idedev = dev_find_slot(0, PCI_DEVFN(0x1f,1));
51         if (idedev && idedev->chip_info && h8_ultrabay_device_present()) {
52                 struct southbridge_intel_i82801gx_config *config = idedev->chip_info;
53                 config->ide_enable_primary = 1;
54                 pmh7_ultrabay_power_enable(1);
55                 ec_write(0x0c, 0x84);
56         } else {
57                 pmh7_ultrabay_power_enable(0);
58                 ec_write(0x0c, 0x04);
59         }
60 }
61
62 struct chip_operations mainboard_ops = {
63         CHIP_NAME(CONFIG_MAINBOARD_VENDOR " " CONFIG_MAINBOARD_PART_NUMBER)
64         .enable_dev = mainboard_enable,
65 };
66