blob: 720cb0d0136cb6fd90eb254c5a42e7aaef19862a [file] [log] [blame]
Uwe Hermann0865b4d2010-09-19 21:12:05 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Uwe Hermann0865b4d2010-09-19 21:12:05 +000015 */
16
17#include <stdint.h>
Uwe Hermann115c5b92010-10-09 17:00:18 +000018#include <arch/io.h>
Kyösti Mälkki8a41f4b2019-02-08 18:14:34 +020019#include <device/pci.h>
Uwe Hermann115c5b92010-10-09 17:00:18 +000020#include <device/pci_def.h>
Uwe Hermann0865b4d2010-09-19 21:12:05 +000021#include <device/pci_ids.h>
22#include "i82371eb.h"
23
Uwe Hermann115c5b92010-10-09 17:00:18 +000024void enable_pm(void)
Uwe Hermann0865b4d2010-09-19 21:12:05 +000025{
Antonello Dettorif068a732016-09-03 10:45:33 +020026 pci_devfn_t dev;
Uwe Hermann0865b4d2010-09-19 21:12:05 +000027 u8 reg8;
28 u16 reg16;
29
Uwe Hermann115c5b92010-10-09 17:00:18 +000030 /* Get the SMBus/PM device of the 82371AB/EB/MB. */
Uwe Hermann0865b4d2010-09-19 21:12:05 +000031 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_INTEL,
32 PCI_DEVICE_ID_INTEL_82371AB_SMB_ACPI), 0);
33
Uwe Hermann0865b4d2010-09-19 21:12:05 +000034 /* Set the PM I/O base. */
Tobias Diedriche87c38e2010-11-27 09:40:16 +000035 pci_write_config32(dev, PMBA, DEFAULT_PMBASE | 1);
Uwe Hermann0865b4d2010-09-19 21:12:05 +000036
37 /* Enable access to the PM I/O space. */
38 reg16 = pci_read_config16(dev, PCI_COMMAND);
39 reg16 |= PCI_COMMAND_IO;
40 pci_write_config16(dev, PCI_COMMAND, reg16);
41
42 /* PM I/O Space Enable (PMIOSE). */
43 reg8 = pci_read_config8(dev, PMREGMISC);
44 reg8 |= PMIOSE;
45 pci_write_config8(dev, PMREGMISC, reg8);
46}