summaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/x201/mainboard.c
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-01-10 19:30:54 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-01-23 20:32:41 +0100
commit4c8b1ee14a0a293289fe90e4c25032979b35adbb (patch)
tree4a6f955d646868863281be5023f3df807dd497de /src/mainboard/lenovo/x201/mainboard.c
parent786c0f5fca4735f4d4b8d680749f6ef8b6198a3f (diff)
downloadcoreboot-4c8b1ee14a0a293289fe90e4c25032979b35adbb.tar.xz
X201: Enable expresscard hotplug.
Change-Id: Ieefc2ad775c16de9aa974b2602d55ee047c9f568 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4643 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/lenovo/x201/mainboard.c')
-rw-r--r--src/mainboard/lenovo/x201/mainboard.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x201/mainboard.c b/src/mainboard/lenovo/x201/mainboard.c
index 75e44f4856..c16c3a4ccc 100644
--- a/src/mainboard/lenovo/x201/mainboard.c
+++ b/src/mainboard/lenovo/x201/mainboard.c
@@ -163,6 +163,14 @@ static void mainboard_enable(device_t dev)
*/
pc_keyboard_init(0);
verb_setup();
+
+ /* Enable expresscard hotplug events. */
+ pci_write_config32(dev_find_slot(0, PCI_DEVFN(0x1c, 3)),
+ 0xd8,
+ pci_read_config32(dev_find_slot(0, PCI_DEVFN(0x1c, 3)), 0xd8)
+ | (1 << 30));
+ pci_write_config16(dev_find_slot(0, PCI_DEVFN(0x1c, 3)),
+ 0x42, 0x142);
}
struct chip_operations mainboard_ops = {