blob: 2d69fad20188f7268b259d120cdf7ca11b55483c [file] [log] [blame]
Zheng Bao9db833b2009-12-28 09:59:44 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2000 AG Electronics Ltd.
5 * Copyright (C) 2003-2004 Linux Networx
Uwe Hermann340fa932010-11-10 14:53:36 +00006 * Copyright (C) 2004 Tyan
Stefan Reinauer14e22772010-04-27 06:56:47 +00007 * Copyright (C) 2010 Win Enterprises (anishp@win-ent.com)
Zheng Bao9db833b2009-12-28 09:59:44 +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
Paul Menzela46a7122013-02-23 18:37:27 +010021 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Zheng Bao9db833b2009-12-28 09:59:44 +000022 */
Ronald G. Minnich142babf2004-03-12 16:54:31 +000023
24#include <arch/io.h>
25#include <device/device.h>
26#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020027#include <superio/conf_mode.h>
Ronald G. Minnich142babf2004-03-12 16:54:31 +000028#include <console/console.h>
29#include <string.h>
Ronald G. Minnich142babf2004-03-12 16:54:31 +000030#include <pc80/keyboard.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000031#include <pc80/mc146818rtc.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000032#include <stdlib.h>
Ronald G. Minnich142babf2004-03-12 16:54:31 +000033#include "w83627hf.h"
34
Uwe Hermann340fa932010-11-10 14:53:36 +000035static void pnp_write_index(u16 port, u8 reg, u8 value)
Yinghai Lu70093f72004-07-01 03:55:03 +000036{
Uwe Hermann340fa932010-11-10 14:53:36 +000037 outb(reg, port);
38 outb(value, port + 1);
Yinghai Lu70093f72004-07-01 03:55:03 +000039}
40
Uwe Hermann340fa932010-11-10 14:53:36 +000041static u8 pnp_read_index(u16 port, u8 reg)
Yinghai Lu70093f72004-07-01 03:55:03 +000042{
Uwe Hermann340fa932010-11-10 14:53:36 +000043 outb(reg, port);
44 return inb(port + 1);
Myles Watsoncee94382008-10-02 19:21:30 +000045}
Yinghai Lu70093f72004-07-01 03:55:03 +000046
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110047static void enable_hwm_smbus(struct device *dev)
Zheng Bao9db833b2009-12-28 09:59:44 +000048{
Uwe Hermann340fa932010-11-10 14:53:36 +000049 u8 reg8;
50
51 /* Configure pins 91/92 as SDA/SCL (I2C bus). */
52 reg8 = pnp_read_config(dev, 0x2b);
53 reg8 &= 0x3f;
54 pnp_write_config(dev, 0x2b, reg8);
Yinghai Lu70093f72004-07-01 03:55:03 +000055}
56
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110057static void init_acpi(struct device *dev)
Yinghai Lu70093f72004-07-01 03:55:03 +000058{
Uwe Hermann340fa932010-11-10 14:53:36 +000059 u8 value = 0x20; /* FIXME: The 0x20 value here is never used? */
Luc Verhaegena9c5ea02009-06-03 14:19:33 +000060 int power_on = 1;
Yinghai Lu70093f72004-07-01 03:55:03 +000061
Luc Verhaegena9c5ea02009-06-03 14:19:33 +000062 get_option(&power_on, "power_on_after_fail");
Uwe Hermann340fa932010-11-10 14:53:36 +000063
Nico Huber13dc9762013-06-15 19:33:15 +020064 pnp_enter_conf_mode(dev);
Uwe Hermann340fa932010-11-10 14:53:36 +000065 pnp_set_logical_device(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000066 value = pnp_read_config(dev, 0xE4);
Uwe Hermann340fa932010-11-10 14:53:36 +000067 value &= ~(3 << 5);
68 if (power_on)
69 value |= (1 << 5);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000070 pnp_write_config(dev, 0xE4, value);
Nico Huber13dc9762013-06-15 19:33:15 +020071 pnp_exit_conf_mode(dev);
Yinghai Lu70093f72004-07-01 03:55:03 +000072}
Yinghai Lu70093f72004-07-01 03:55:03 +000073
Uwe Hermann340fa932010-11-10 14:53:36 +000074static void init_hwm(u16 base)
Yinghai Lu70093f72004-07-01 03:55:03 +000075{
Uwe Hermann340fa932010-11-10 14:53:36 +000076 u8 reg, value;
Yinghai Lu70093f72004-07-01 03:55:03 +000077 int i;
78
Uwe Hermann340fa932010-11-10 14:53:36 +000079 u8 hwm_reg_values[] = {
80 /* reg mask data */
81 0x40, 0xff, 0x81, /* Start HWM. */
82 0x48, 0xaa, 0x2a, /* Set SMBus base to 0x2a (0x54 >> 1). */
83 0x4a, 0x21, 0x21, /* Set T2 SMBus base to 0x92>>1 and T3 SMBus base to 0x94>>1. */
Myles Watsoncee94382008-10-02 19:21:30 +000084 0x4e, 0x80, 0x00,
85 0x43, 0x00, 0xff,
86 0x44, 0x00, 0x3f,
87 0x4c, 0xbf, 0x18,
Uwe Hermann340fa932010-11-10 14:53:36 +000088 0x4d, 0xff, 0x80, /* Turn off beep */
Yinghai Lu70093f72004-07-01 03:55:03 +000089 };
90
Uwe Hermann340fa932010-11-10 14:53:36 +000091 for (i = 0; i < ARRAY_SIZE(hwm_reg_values); i += 3) {
Zheng Bao9db833b2009-12-28 09:59:44 +000092 reg = hwm_reg_values[i];
Uwe Hermann340fa932010-11-10 14:53:36 +000093 value = pnp_read_index(base, reg);
94 value &= 0xff & hwm_reg_values[i + 1];
95 value |= 0xff & hwm_reg_values[i + 2];
96 printk(BIOS_DEBUG, "base = 0x%04x, reg = 0x%02x, "
97 "value = 0x%02x\n", base, reg, value);
Yinghai Lu12eb7bc2004-11-08 21:16:16 +000098 pnp_write_index(base, reg, value);
Yinghai Lu70093f72004-07-01 03:55:03 +000099 }
100}
101
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +1100102static void w83627hf_init(struct device *dev)
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000103{
Uwe Hermann5330dd92010-11-11 13:14:55 +0000104 struct resource *res0;
Uwe Hermann340fa932010-11-10 14:53:36 +0000105
106 if (!dev->enabled)
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000107 return;
Uwe Hermann340fa932010-11-10 14:53:36 +0000108
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000109 switch(dev->path.pnp.device) {
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000110 case W83627HF_KBC:
Edward O'Callaghandef00be2014-04-30 05:01:52 +1000111 pc_keyboard_init();
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000112 break;
Myles Watsoncee94382008-10-02 19:21:30 +0000113 case W83627HF_HWM:
114 res0 = find_resource(dev, PNP_IDX_IO0);
Yinghai Lu12eb7bc2004-11-08 21:16:16 +0000115#define HWM_INDEX_PORT 5
Myles Watsoncee94382008-10-02 19:21:30 +0000116 init_hwm(res0->base + HWM_INDEX_PORT);
117 break;
118 case W83627HF_ACPI:
119 init_acpi(dev);
120 break;
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000121 }
Yinghai Lu70093f72004-07-01 03:55:03 +0000122}
123
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +1100124static void w83627hf_pnp_enable_resources(struct device *dev)
Myles Watsoncee94382008-10-02 19:21:30 +0000125{
Myles Watsoncee94382008-10-02 19:21:30 +0000126 pnp_enable_resources(dev);
Nico Huber13dc9762013-06-15 19:33:15 +0200127
128 pnp_enter_conf_mode(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000129 switch(dev->path.pnp.device) {
Yinghai Lu70093f72004-07-01 03:55:03 +0000130 case W83627HF_HWM:
Uwe Hermann340fa932010-11-10 14:53:36 +0000131 printk(BIOS_DEBUG, "W83627HF HWM SMBus enabled\n");
Yinghai Lu70093f72004-07-01 03:55:03 +0000132 enable_hwm_smbus(dev);
133 break;
134 }
Nico Huber13dc9762013-06-15 19:33:15 +0200135 pnp_exit_conf_mode(dev);
Yinghai Lu70093f72004-07-01 03:55:03 +0000136}
137
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000138static struct device_operations ops = {
139 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +0200140 .set_resources = pnp_set_resources,
Yinghai Lu70093f72004-07-01 03:55:03 +0000141 .enable_resources = w83627hf_pnp_enable_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +0200142 .enable = pnp_alt_enable,
Yinghai Lu70093f72004-07-01 03:55:03 +0000143 .init = w83627hf_init,
Nico Huber1c811282013-06-15 20:33:44 +0200144 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000145};
146
147static struct pnp_info pnp_dev_info[] = {
Uwe Hermanna69d9782010-11-15 19:35:14 +0000148 { &ops, W83627HF_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
149 { &ops, W83627HF_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x07f8, 0}, },
150 { &ops, W83627HF_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
151 { &ops, W83627HF_SP2, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
152 { &ops, W83627HF_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, {0x07ff, 0}, {0x07ff, 4}, },
153 { &ops, W83627HF_CIR, PNP_IO0 | PNP_IRQ0, {0x07f8, 0}, },
154 { &ops, W83627HF_GAME_MIDI_GPIO1, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x07ff, 0}, {0x07fe, 4}, },
Myles Watsoncee94382008-10-02 19:21:30 +0000155 { &ops, W83627HF_GPIO2, },
156 { &ops, W83627HF_GPIO3, },
157 { &ops, W83627HF_ACPI, },
Uwe Hermanna69d9782010-11-15 19:35:14 +0000158 { &ops, W83627HF_HWM, PNP_IO0 | PNP_IRQ0, {0x0ff8, 0}, },
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000159};
160
Yinghai Lu6a61d6a2004-10-20 05:07:16 +0000161static void enable_dev(struct device *dev)
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000162{
Uwe Hermann340fa932010-11-10 14:53:36 +0000163 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000164}
165
Yinghai Lu6a61d6a2004-10-20 05:07:16 +0000166struct chip_operations superio_winbond_w83627hf_ops = {
Uwe Hermanna7aa29b2006-11-05 18:50:49 +0000167 CHIP_NAME("Winbond W83627HF Super I/O")
Yinghai Lu6a61d6a2004-10-20 05:07:16 +0000168 .enable_dev = enable_dev,
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000169};