blob: 168d3b2c1de34376fd42891ff65a67fc8ba1c868 [file] [log] [blame]
Patrick Georgi02363b52020-05-05 20:48:50 +02001/* This file is part of the coreboot project. */
Uwe Hermann0865b4d2010-09-19 21:12:05 +00002/*
Uwe Hermann0865b4d2010-09-19 21:12:05 +00003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Uwe Hermann0865b4d2010-09-19 21:12:05 +000013 */
14
15#include <stdint.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020016#include <device/pci_ops.h>
Kyösti Mälkki8a41f4b2019-02-08 18:14:34 +020017#include <device/pci.h>
Uwe Hermann115c5b92010-10-09 17:00:18 +000018#include <device/pci_def.h>
Uwe Hermann0865b4d2010-09-19 21:12:05 +000019#include <device/pci_ids.h>
20#include "i82371eb.h"
21
Uwe Hermann115c5b92010-10-09 17:00:18 +000022void enable_pm(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000023{
Antonello Dettorif068a732016-09-03 10:45:33 +020024 pci_devfn_t dev;
Uwe Hermann0865b4d2010-09-19 21:12:05 +000025 u8 reg8;
26 u16 reg16;
27
Uwe Hermann115c5b92010-10-09 17:00:18 +000028 /* Get the SMBus/PM device of the 82371AB/EB/MB. */
Uwe Hermann0865b4d2010-09-19 21:12:05 +000029 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_INTEL,
30 PCI_DEVICE_ID_INTEL_82371AB_SMB_ACPI), 0);
31
Uwe Hermann0865b4d2010-09-19 21:12:05 +000032 /* Set the PM I/O base. */
Tobias Diedriche87c38e2010-11-27 09:40:16 +000033 pci_write_config32(dev, PMBA, DEFAULT_PMBASE | 1);
Uwe Hermann0865b4d2010-09-19 21:12:05 +000034
35 /* Enable access to the PM I/O space. */
36 reg16 = pci_read_config16(dev, PCI_COMMAND);
37 reg16 |= PCI_COMMAND_IO;
38 pci_write_config16(dev, PCI_COMMAND, reg16);
39
40 /* PM I/O Space Enable (PMIOSE). */
41 reg8 = pci_read_config8(dev, PMREGMISC);
42 reg8 |= PMIOSE;
43 pci_write_config8(dev, PMREGMISC, reg8);
44}