blob: 38173571219b0d78a3072e5592037aa0f86855a9 [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.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010021 * Foundation, Inc.
Uwe Hermann1410c2d2007-05-29 10:37:52 +000022 */
Richard Smithcb8eab42006-07-24 04:25:47 +000023
Tobias Diedriche87c38e2010-11-27 09:40:16 +000024#include <arch/io.h>
25#include <console/console.h>
Uwe Hermann9da69f82007-11-30 02:08:26 +000026#include <stdint.h>
Richard Smithcb8eab42006-07-24 04:25:47 +000027#include <device/device.h>
28#include <device/pci.h>
29#include <device/pci_ids.h>
Richard Smithcb8eab42006-07-24 04:25:47 +000030#include <device/smbus.h>
Stefan Reinauera14b4682006-08-04 07:50:59 +000031#include "i82371eb.h"
stepan836ae292010-12-08 05:42:47 +000032#include "smbus.h"
Richard Smithcb8eab42006-07-24 04:25:47 +000033
Tobias Diedriche87c38e2010-11-27 09:40:16 +000034static void pwrmgt_enable(struct device *dev)
35{
36 struct southbridge_intel_i82371eb_config *sb = dev->chip_info;
37 u32 reg, gpo = sb->gpo;
38
39 /* Sets the base address of power management ports. */
40 pci_write_config16(dev, PMBA, DEFAULT_PMBASE | 1);
41
42 /* Set Power Management IO Space Enable bit */
43 u8 val = pci_read_config8(dev, PMREGMISC);
44 pci_write_config8(dev, PMREGMISC, val | 1);
45
46 /* set global control:
47 * bit25 (lid_pol): 1=invert lid polarity
48 * bit24 (sm_freeze): 1=freeze idle and standby timers
49 * bit16 (end of smi): 0=disable smi assertion (cleared by hw)
50 * bits8-15,26: global standby timer inital count 127 * 4minutes
51 * bit2 (thrm_pol): 1=active low THRM#
52 * bit0 (smi_en): 1=disable smi generation upon smi event
53 */
54 reg = (sb->lid_polarity<<25)|
55 (1<<24)|
56 (0xff<<8)|
57 (sb->thrm_polarity<<2);
58 outl(reg, DEFAULT_PMBASE + GLBCTL);
59
60 /* set processor control:
61 * bit12 (stpclk_en): 1=enable stopping of host clk on lvl3
62 * bit11 (sleep_en): 1=enable slp# assertion on lvl3
63 * bit9 (cc_en): 1=enable clk control with lvl2 and lvl3 regs
64 */
65 outl(0, DEFAULT_PMBASE + PCNTRL);
66
67 /* disable smi event enables */
68 outw(0, DEFAULT_PMBASE + GLBEN);
69 outl(0, DEFAULT_PMBASE + DEVCTL);
70
71 /* set default gpo value.
72 * power-on default is 0x7fffbfffh */
73 if (gpo) {
74 /* only 8bit access allowed */
75 outb( gpo & 0xff, DEFAULT_PMBASE + GPO0);
76 outb((gpo >> 8) & 0xff, DEFAULT_PMBASE + GPO1);
77 outb((gpo >> 16) & 0xff, DEFAULT_PMBASE + GPO2);
78 outb((gpo >> 24) & 0xff, DEFAULT_PMBASE + GPO3);
79 } else {
80 printk(BIOS_SPEW,
81 "%s: gpo default missing in devicetree.cb!\n", __func__);
82 }
83
84 /* Clear status events. */
85 outw(0xffff, DEFAULT_PMBASE + PMSTS);
86 outw(0xffff, DEFAULT_PMBASE + GPSTS);
87 outw(0xffff, DEFAULT_PMBASE + GLBSTS);
88 outl(0xffffffff, DEFAULT_PMBASE + DEVSTS);
89
Tobias Diedrich4e22a3b2010-12-13 22:39:46 +010090 /* set PMCNTRL default */
Tobias Diedriche87c38e2010-11-27 09:40:16 +000091 outw(SUS_TYP_S0|SCI_EN, DEFAULT_PMBASE + PMCNTRL);
92}
93
94static void pwrmgt_read_resources(struct device *dev)
95{
96 struct resource *res;
97
98 pci_dev_read_resources(dev);
99
100 res = new_resource(dev, 1);
101 res->base = DEFAULT_PMBASE;
102 res->size = 0x0040;
103 res->limit = 0xffff;
104 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
105 IORESOURCE_RESERVE;
106
107 res = new_resource(dev, 2);
108 res->base = SMBUS_IO_BASE;
109 res->size = 0x0010;
110 res->limit = 0xffff;
111 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
112 IORESOURCE_RESERVE;
113}
114
115
Uwe Hermann9da69f82007-11-30 02:08:26 +0000116static const struct smbus_bus_operations lops_smbus_bus = {
Richard Smithcb8eab42006-07-24 04:25:47 +0000117};
118
Uwe Hermann9da69f82007-11-30 02:08:26 +0000119static const struct device_operations smbus_ops = {
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000120 .read_resources = pwrmgt_read_resources,
Uwe Hermann1410c2d2007-05-29 10:37:52 +0000121 .set_resources = pci_dev_set_resources,
122 .enable_resources = pci_dev_enable_resources,
123 .init = 0,
Kyösti Mälkkid0e212c2015-02-26 20:47:47 +0200124 .scan_bus = scan_smbus,
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000125 .enable = pwrmgt_enable,
Uwe Hermann56a91252007-06-03 16:57:27 +0000126 .ops_pci = 0, /* No subsystem IDs on 82371EB! */
Uwe Hermann1410c2d2007-05-29 10:37:52 +0000127 .ops_smbus_bus = &lops_smbus_bus,
Richard Smithcb8eab42006-07-24 04:25:47 +0000128};
129
Uwe Hermann9da69f82007-11-30 02:08:26 +0000130/* Note: There's no SMBus on 82371FB/SB/MX and 82437MX. */
131
132/* Intel 82371AB/EB/MB */
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000133static const struct pci_driver smbus_driver __pci_driver = {
Uwe Hermann1410c2d2007-05-29 10:37:52 +0000134 .ops = &smbus_ops,
135 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann447aafe2007-11-29 01:44:43 +0000136 .device = PCI_DEVICE_ID_INTEL_82371AB_SMB_ACPI,
Richard Smithcb8eab42006-07-24 04:25:47 +0000137};