blob: e9cc13b872de15e4b3dd088c1b2d86cd65c1057e [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.
Zheng Bao9db833b2009-12-28 09:59:44 +000018 */
Ronald G. Minnich142babf2004-03-12 16:54:31 +000019
20#include <arch/io.h>
21#include <device/device.h>
22#include <device/pnp.h>
Nico Huber1c811282013-06-15 20:33:44 +020023#include <superio/conf_mode.h>
Ronald G. Minnich142babf2004-03-12 16:54:31 +000024#include <console/console.h>
25#include <string.h>
Ronald G. Minnich142babf2004-03-12 16:54:31 +000026#include <pc80/keyboard.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000027#include <pc80/mc146818rtc.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000028#include <stdlib.h>
Ronald G. Minnich142babf2004-03-12 16:54:31 +000029#include "w83627hf.h"
30
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110031static void enable_hwm_smbus(struct device *dev)
Zheng Bao9db833b2009-12-28 09:59:44 +000032{
Uwe Hermann340fa932010-11-10 14:53:36 +000033 u8 reg8;
34
35 /* Configure pins 91/92 as SDA/SCL (I2C bus). */
36 reg8 = pnp_read_config(dev, 0x2b);
37 reg8 &= 0x3f;
38 pnp_write_config(dev, 0x2b, reg8);
Yinghai Lu70093f72004-07-01 03:55:03 +000039}
40
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110041static void init_acpi(struct device *dev)
Yinghai Lu70093f72004-07-01 03:55:03 +000042{
Elyes HAOUASfd9f4f72018-08-13 14:04:49 +020043 u8 value;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +000044 int power_on = 1;
Yinghai Lu70093f72004-07-01 03:55:03 +000045
Luc Verhaegena9c5ea02009-06-03 14:19:33 +000046 get_option(&power_on, "power_on_after_fail");
Uwe Hermann340fa932010-11-10 14:53:36 +000047
Nico Huber13dc9762013-06-15 19:33:15 +020048 pnp_enter_conf_mode(dev);
Uwe Hermann340fa932010-11-10 14:53:36 +000049 pnp_set_logical_device(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000050 value = pnp_read_config(dev, 0xE4);
Uwe Hermann340fa932010-11-10 14:53:36 +000051 value &= ~(3 << 5);
52 if (power_on)
53 value |= (1 << 5);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000054 pnp_write_config(dev, 0xE4, value);
Nico Huber13dc9762013-06-15 19:33:15 +020055 pnp_exit_conf_mode(dev);
Yinghai Lu70093f72004-07-01 03:55:03 +000056}
Yinghai Lu70093f72004-07-01 03:55:03 +000057
Uwe Hermann340fa932010-11-10 14:53:36 +000058static void init_hwm(u16 base)
Yinghai Lu70093f72004-07-01 03:55:03 +000059{
Uwe Hermann340fa932010-11-10 14:53:36 +000060 u8 reg, value;
Yinghai Lu70093f72004-07-01 03:55:03 +000061 int i;
62
Uwe Hermann340fa932010-11-10 14:53:36 +000063 u8 hwm_reg_values[] = {
64 /* reg mask data */
65 0x40, 0xff, 0x81, /* Start HWM. */
66 0x48, 0xaa, 0x2a, /* Set SMBus base to 0x2a (0x54 >> 1). */
67 0x4a, 0x21, 0x21, /* Set T2 SMBus base to 0x92>>1 and T3 SMBus base to 0x94>>1. */
Myles Watsoncee94382008-10-02 19:21:30 +000068 0x4e, 0x80, 0x00,
69 0x43, 0x00, 0xff,
70 0x44, 0x00, 0x3f,
71 0x4c, 0xbf, 0x18,
Uwe Hermann340fa932010-11-10 14:53:36 +000072 0x4d, 0xff, 0x80, /* Turn off beep */
Yinghai Lu70093f72004-07-01 03:55:03 +000073 };
74
Uwe Hermann340fa932010-11-10 14:53:36 +000075 for (i = 0; i < ARRAY_SIZE(hwm_reg_values); i += 3) {
Zheng Bao9db833b2009-12-28 09:59:44 +000076 reg = hwm_reg_values[i];
Uwe Hermann340fa932010-11-10 14:53:36 +000077 value = pnp_read_index(base, reg);
78 value &= 0xff & hwm_reg_values[i + 1];
79 value |= 0xff & hwm_reg_values[i + 2];
80 printk(BIOS_DEBUG, "base = 0x%04x, reg = 0x%02x, "
81 "value = 0x%02x\n", base, reg, value);
Yinghai Lu12eb7bc2004-11-08 21:16:16 +000082 pnp_write_index(base, reg, value);
Yinghai Lu70093f72004-07-01 03:55:03 +000083 }
84}
85
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +110086static void w83627hf_init(struct device *dev)
Ronald G. Minnich142babf2004-03-12 16:54:31 +000087{
Uwe Hermann5330dd92010-11-11 13:14:55 +000088 struct resource *res0;
Uwe Hermann340fa932010-11-10 14:53:36 +000089
90 if (!dev->enabled)
Ronald G. Minnich142babf2004-03-12 16:54:31 +000091 return;
Uwe Hermann340fa932010-11-10 14:53:36 +000092
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +010093 switch (dev->path.pnp.device) {
Ronald G. Minnich142babf2004-03-12 16:54:31 +000094 case W83627HF_KBC:
Timothy Pearson448e3862015-11-24 14:12:01 -060095 pc_keyboard_init(NO_AUX_DEVICE);
Ronald G. Minnich142babf2004-03-12 16:54:31 +000096 break;
Myles Watsoncee94382008-10-02 19:21:30 +000097 case W83627HF_HWM:
98 res0 = find_resource(dev, PNP_IDX_IO0);
Yinghai Lu12eb7bc2004-11-08 21:16:16 +000099#define HWM_INDEX_PORT 5
Myles Watsoncee94382008-10-02 19:21:30 +0000100 init_hwm(res0->base + HWM_INDEX_PORT);
101 break;
102 case W83627HF_ACPI:
103 init_acpi(dev);
104 break;
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000105 }
Yinghai Lu70093f72004-07-01 03:55:03 +0000106}
107
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +1100108static void w83627hf_pnp_enable_resources(struct device *dev)
Myles Watsoncee94382008-10-02 19:21:30 +0000109{
Myles Watsoncee94382008-10-02 19:21:30 +0000110 pnp_enable_resources(dev);
Nico Huber13dc9762013-06-15 19:33:15 +0200111
112 pnp_enter_conf_mode(dev);
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +0100113 switch (dev->path.pnp.device) {
Yinghai Lu70093f72004-07-01 03:55:03 +0000114 case W83627HF_HWM:
Uwe Hermann340fa932010-11-10 14:53:36 +0000115 printk(BIOS_DEBUG, "W83627HF HWM SMBus enabled\n");
Yinghai Lu70093f72004-07-01 03:55:03 +0000116 enable_hwm_smbus(dev);
117 break;
118 }
Nico Huber13dc9762013-06-15 19:33:15 +0200119 pnp_exit_conf_mode(dev);
Yinghai Lu70093f72004-07-01 03:55:03 +0000120}
121
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000122static struct device_operations ops = {
123 .read_resources = pnp_read_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +0200124 .set_resources = pnp_set_resources,
Yinghai Lu70093f72004-07-01 03:55:03 +0000125 .enable_resources = w83627hf_pnp_enable_resources,
Nico Huber0b2ee932013-06-15 19:58:35 +0200126 .enable = pnp_alt_enable,
Yinghai Lu70093f72004-07-01 03:55:03 +0000127 .init = w83627hf_init,
Nico Huber1c811282013-06-15 20:33:44 +0200128 .ops_pnp_mode = &pnp_conf_mode_8787_aa,
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000129};
130
131static struct pnp_info pnp_dev_info[] = {
Felix Held8c858802018-07-06 20:22:08 +0200132 { NULL, W83627HF_FDC, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
133 { NULL, W83627HF_PP, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, 0x07f8, },
134 { NULL, W83627HF_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8, },
135 { NULL, W83627HF_SP2, PNP_IO0 | PNP_IRQ0, 0x07f8, },
136 { NULL, W83627HF_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1,
137 0x07ff, 0x07ff, },
138 { NULL, W83627HF_CIR, PNP_IO0 | PNP_IRQ0, 0x07f8, },
139 { NULL, W83627HF_GAME_MIDI_GPIO1, PNP_IO0 | PNP_IO1 | PNP_IRQ0,
140 0x07ff, 0x07fe, },
141 { NULL, W83627HF_GPIO2, },
142 { NULL, W83627HF_GPIO3, },
143 { NULL, W83627HF_ACPI, },
144 { NULL, W83627HF_HWM, PNP_IO0 | PNP_IRQ0, 0x0ff8, },
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000145};
146
Yinghai Lu6a61d6a2004-10-20 05:07:16 +0000147static void enable_dev(struct device *dev)
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000148{
Uwe Hermann340fa932010-11-10 14:53:36 +0000149 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000150}
151
Yinghai Lu6a61d6a2004-10-20 05:07:16 +0000152struct chip_operations superio_winbond_w83627hf_ops = {
Uwe Hermanna7aa29b2006-11-05 18:50:49 +0000153 CHIP_NAME("Winbond W83627HF Super I/O")
Yinghai Lu6a61d6a2004-10-20 05:07:16 +0000154 .enable_dev = enable_dev,
Ronald G. Minnich142babf2004-03-12 16:54:31 +0000155};