blob: 18fe38b1224b0703f56d0e6e7c955081c971f485 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgie72a8a32012-11-06 11:05:09 +01002
3#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Kyösti Mälkkif555a582020-01-06 19:41:42 +02005#include <device/smbus_host.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +01006#include "i82801ix.h"
Arthur Heymans9ed0df42019-10-12 14:18:18 +02007#include "chip.h"
Patrick Georgie72a8a32012-11-06 11:05:09 +01008
9void i82801ix_early_init(void)
10{
Antonello Dettori196e3d42016-09-01 17:04:14 +020011 const pci_devfn_t d31f0 = PCI_DEV(0, 0x1f, 0);
Patrick Georgie72a8a32012-11-06 11:05:09 +010012
Kyösti Mälkki1cfafe22020-01-07 12:00:31 +020013 if (ENV_ROMSTAGE)
14 enable_smbus();
15
Patrick Georgie72a8a32012-11-06 11:05:09 +010016 /* Set up RCBA. */
Peter Lemenkov7b428112018-10-23 11:12:46 +020017 pci_write_config32(d31f0, RCBA, (uintptr_t)DEFAULT_RCBA | 1);
Patrick Georgie72a8a32012-11-06 11:05:09 +010018
19 /* Set up PMBASE. */
20 pci_write_config32(d31f0, D31F0_PMBASE, DEFAULT_PMBASE | 1);
21 /* Enable PMBASE. */
22 pci_write_config8(d31f0, D31F0_ACPI_CNTL, 0x80);
23
24 /* Set up GPIOBASE. */
25 pci_write_config32(d31f0, D31F0_GPIO_BASE, DEFAULT_GPIOBASE);
26 /* Enable GPIO. */
Angel Pons67406472020-06-08 11:13:42 +020027 pci_or_config8(d31f0, D31F0_GPIO_CNTL, 0x10);
Patrick Georgie72a8a32012-11-06 11:05:09 +010028
29 /* Reset watchdog. */
30 outw(0x0008, DEFAULT_TCOBASE + 0x04); /* R/WC, clear TCO caused SMI. */
31 outw(0x0002, DEFAULT_TCOBASE + 0x06); /* R/WC, clear second timeout. */
32
33 /* Enable upper 128bytes of CMOS. */
34 RCBA32(0x3400) = (1 << 2);
35
Martin Roth2ed0aa22016-01-05 20:58:58 -070036 /* Initialize power management initialization
Patrick Georgie72a8a32012-11-06 11:05:09 +010037 register early as it affects reboot behavior. */
38 /* Bit 20 activates global reset of host and ME on cf9 writes of 0x6
39 and 0xe (required if ME is disabled but present), bit 31 locks it.
40 The other bits are 'must write'. */
41 u8 reg8 = pci_read_config8(d31f0, 0xac);
Angel Pons67406472020-06-08 11:13:42 +020042
43 /* FIXME: It's a 8-bit variable!!! */
Patrick Georgie72a8a32012-11-06 11:05:09 +010044 reg8 |= (1 << 31) | (1 << 30) | (1 << 20) | (3 << 8);
45 pci_write_config8(d31f0, 0xac, reg8);
46
47 /* TODO: If RTC power failed, reset RTC state machine
48 (set, then reset RTC 0x0b bit7) */
49
50 /* TODO: Check power state bits in GEN_PMCON_2 (D31F0 0xa2)
51 before they get cleared. */
52}
Arthur Heymans9ed0df42019-10-12 14:18:18 +020053
54void i82801ix_lpc_decode(void)
55{
56 const pci_devfn_t d31f0 = PCI_DEV(0, 0x1f, 0);
57 const struct device *dev = pcidev_on_root(0x1f, 0);
58 const struct southbridge_intel_i82801ix_config *config = NULL;
59
60 /* Configure serial IRQs.*/
61 pci_write_config8(d31f0, D31F0_SERIRQ_CNTL, 0xd0);
62 /*
63 * Enable some common LPC IO ranges:
64 * - 0x2e/0x2f, 0x4e/0x4f often SuperIO
65 * - 0x60/0x64, 0x62/0x66 often KBC/EC
66 * - 0x3f0-0x3f5/0x3f7 FDD
67 * - 0x378-0x37f and 0x778-0x77f LPT
68 * - 0x2f8-0x2ff COMB
69 * - 0x3f8-0x3ff COMA
Arthur Heymans21c9aa12019-11-20 12:24:25 +010070 * - 0x208-0x20f GAMEH
71 * - 0x200-0x207 GAMEL
Arthur Heymans9ed0df42019-10-12 14:18:18 +020072 */
73 pci_write_config16(d31f0, D31F0_LPC_IODEC, 0x0010);
74 pci_write_config16(d31f0, D31F0_LPC_EN, 0x3f0f);
75
76 /* Set up generic decode ranges */
77 if (!dev || !dev->chip_info)
78 return;
79 config = dev->chip_info;
80
81 pci_write_config32(d31f0, D31F0_GEN1_DEC, config->gen1_dec);
82 pci_write_config32(d31f0, D31F0_GEN2_DEC, config->gen2_dec);
83 pci_write_config32(d31f0, D31F0_GEN3_DEC, config->gen3_dec);
84 pci_write_config32(d31f0, D31F0_GEN4_DEC, config->gen4_dec);
85}