blob: 3477c52c32098733c0ef40593ff179d7f474b80b [file] [log] [blame]
Richard Smithcb8eab42006-07-24 04:25:47 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermann1410c2d2007-05-29 10:37:52 +00003 *
4 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
Tobias Diedriche87c38e2010-11-27 09:40:16 +00005 * Copyright (C) 2010 Keith Hui <buurin@gmail.com>
6 * Copyright (C) 2010 Idwer Vollering <vidwer@gmail.com>
7 * Copyright (C) 2010 Tobias Diedrich <ranma+coreboot@gmail.com>
Uwe Hermann1410c2d2007-05-29 10:37:52 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
Uwe Hermann1410c2d2007-05-29 10:37:52 +000018 */
Richard Smithcb8eab42006-07-24 04:25:47 +000019
Tobias Diedriche87c38e2010-11-27 09:40:16 +000020#include <arch/io.h>
21#include <console/console.h>
Uwe Hermann9da69f82007-11-30 02:08:26 +000022#include <stdint.h>
Richard Smithcb8eab42006-07-24 04:25:47 +000023#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
Richard Smithcb8eab42006-07-24 04:25:47 +000026#include <device/smbus.h>
Arthur Heymans16fe7902017-04-12 17:01:31 +020027#include <southbridge/intel/common/smbus.h>
Stefan Reinauera14b4682006-08-04 07:50:59 +000028#include "i82371eb.h"
Richard Smithcb8eab42006-07-24 04:25:47 +000029
Tobias Diedriche87c38e2010-11-27 09:40:16 +000030static void pwrmgt_enable(struct device *dev)
31{
32 struct southbridge_intel_i82371eb_config *sb = dev->chip_info;
33 u32 reg, gpo = sb->gpo;
34
35 /* Sets the base address of power management ports. */
36 pci_write_config16(dev, PMBA, DEFAULT_PMBASE | 1);
37
38 /* Set Power Management IO Space Enable bit */
39 u8 val = pci_read_config8(dev, PMREGMISC);
40 pci_write_config8(dev, PMREGMISC, val | 1);
41
42 /* set global control:
43 * bit25 (lid_pol): 1=invert lid polarity
44 * bit24 (sm_freeze): 1=freeze idle and standby timers
45 * bit16 (end of smi): 0=disable smi assertion (cleared by hw)
46 * bits8-15,26: global standby timer inital count 127 * 4minutes
47 * bit2 (thrm_pol): 1=active low THRM#
48 * bit0 (smi_en): 1=disable smi generation upon smi event
49 */
50 reg = (sb->lid_polarity<<25)|
51 (1<<24)|
52 (0xff<<8)|
53 (sb->thrm_polarity<<2);
54 outl(reg, DEFAULT_PMBASE + GLBCTL);
55
56 /* set processor control:
57 * bit12 (stpclk_en): 1=enable stopping of host clk on lvl3
58 * bit11 (sleep_en): 1=enable slp# assertion on lvl3
59 * bit9 (cc_en): 1=enable clk control with lvl2 and lvl3 regs
60 */
61 outl(0, DEFAULT_PMBASE + PCNTRL);
62
63 /* disable smi event enables */
64 outw(0, DEFAULT_PMBASE + GLBEN);
65 outl(0, DEFAULT_PMBASE + DEVCTL);
66
67 /* set default gpo value.
68 * power-on default is 0x7fffbfffh */
69 if (gpo) {
70 /* only 8bit access allowed */
71 outb( gpo & 0xff, DEFAULT_PMBASE + GPO0);
72 outb((gpo >> 8) & 0xff, DEFAULT_PMBASE + GPO1);
73 outb((gpo >> 16) & 0xff, DEFAULT_PMBASE + GPO2);
74 outb((gpo >> 24) & 0xff, DEFAULT_PMBASE + GPO3);
75 } else {
76 printk(BIOS_SPEW,
77 "%s: gpo default missing in devicetree.cb!\n", __func__);
78 }
79
80 /* Clear status events. */
81 outw(0xffff, DEFAULT_PMBASE + PMSTS);
82 outw(0xffff, DEFAULT_PMBASE + GPSTS);
83 outw(0xffff, DEFAULT_PMBASE + GLBSTS);
84 outl(0xffffffff, DEFAULT_PMBASE + DEVSTS);
85
Tobias Diedrich4e22a3b2010-12-13 22:39:46 +010086 /* set PMCNTRL default */
Tobias Diedriche87c38e2010-11-27 09:40:16 +000087 outw(SUS_TYP_S0|SCI_EN, DEFAULT_PMBASE + PMCNTRL);
88}
89
90static void pwrmgt_read_resources(struct device *dev)
91{
92 struct resource *res;
93
94 pci_dev_read_resources(dev);
95
96 res = new_resource(dev, 1);
97 res->base = DEFAULT_PMBASE;
98 res->size = 0x0040;
99 res->limit = 0xffff;
100 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
101 IORESOURCE_RESERVE;
102
103 res = new_resource(dev, 2);
104 res->base = SMBUS_IO_BASE;
105 res->size = 0x0010;
106 res->limit = 0xffff;
107 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
108 IORESOURCE_RESERVE;
109}
110
111
Uwe Hermann9da69f82007-11-30 02:08:26 +0000112static const struct smbus_bus_operations lops_smbus_bus = {
Richard Smithcb8eab42006-07-24 04:25:47 +0000113};
114
Uwe Hermann9da69f82007-11-30 02:08:26 +0000115static const struct device_operations smbus_ops = {
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000116 .read_resources = pwrmgt_read_resources,
Uwe Hermann1410c2d2007-05-29 10:37:52 +0000117 .set_resources = pci_dev_set_resources,
118 .enable_resources = pci_dev_enable_resources,
119 .init = 0,
Kyösti Mälkkid0e212c2015-02-26 20:47:47 +0200120 .scan_bus = scan_smbus,
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000121 .enable = pwrmgt_enable,
Uwe Hermann56a91252007-06-03 16:57:27 +0000122 .ops_pci = 0, /* No subsystem IDs on 82371EB! */
Uwe Hermann1410c2d2007-05-29 10:37:52 +0000123 .ops_smbus_bus = &lops_smbus_bus,
Richard Smithcb8eab42006-07-24 04:25:47 +0000124};
125
Uwe Hermann9da69f82007-11-30 02:08:26 +0000126/* Note: There's no SMBus on 82371FB/SB/MX and 82437MX. */
127
128/* Intel 82371AB/EB/MB */
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000129static const struct pci_driver smbus_driver __pci_driver = {
Uwe Hermann1410c2d2007-05-29 10:37:52 +0000130 .ops = &smbus_ops,
131 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann447aafe2007-11-29 01:44:43 +0000132 .device = PCI_DEVICE_ID_INTEL_82371AB_SMB_ACPI,
Richard Smithcb8eab42006-07-24 04:25:47 +0000133};