blob: baa17d174c749af834bd1d84afdc2a7378f43d97 [file] [log] [blame]
Angel Pons7544e2f2020-04-03 01:23:10 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauer838c5a52010-01-17 14:08:17 +00003
Arthur Heymansc5839202019-11-12 23:48:42 +01004#include <bootblock_common.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +00005#include <stdint.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +00006#include <arch/io.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +02007#include <cf9_reset.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +02008#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02009#include <device/pci_ops.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000010#include <device/pci_def.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020011#include <option.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110012#include <northbridge/intel/i945/i945.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110013#include <southbridge/intel/i82801gx/i82801gx.h>
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010014#include <superio/smsc/lpc47n227/lpc47n227.h>
15
Arthur Heymansfecf7772019-11-09 14:19:04 +010016/* Override the default lpc decode ranges */
Arthur Heymansdc584c32019-11-12 20:37:21 +010017void mainboard_lpc_decode(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000018{
Patrick Georgia4700192011-01-27 07:39:38 +000019 int lpt_en = 0;
Kyösti Mälkkibee82ab2019-12-26 10:57:43 +020020 u8 val;
21
22 if (get_option(&val, "lpt") == CB_SUCCESS && val)
Arthur Heymansb451df22017-08-15 20:59:09 +020023 lpt_en = LPT_LPC_EN; /* enable LPT */
24
Arthur Heymansb451df22017-08-15 20:59:09 +020025 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Arthur Heymansfecf7772019-11-09 14:19:04 +010026
27 pci_update_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, ~LPT_LPC_EN, lpt_en);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000028}
29
Stefan Reinauer838c5a52010-01-17 14:08:17 +000030/* This box has two superios, so enabling serial becomes slightly excessive.
31 * We disable a lot of stuff to make sure that there are no conflicts between
32 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
33 * but safe anyways" method.
34 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000035
Arthur Heymansc5839202019-11-12 23:48:42 +010036void bootblock_mainboard_early_init(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000037{
Elyes HAOUASefc3d042020-04-08 12:15:16 +020038 const pnp_devfn_t dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000039
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010040 pnp_enter_conf_state(dev);
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020041 pnp_write_config(dev, 0x01, 0x94); /* Extended Parport modes */
42 pnp_write_config(dev, 0x02, 0x88); /* UART power on */
43 pnp_write_config(dev, 0x03, 0x72); /* Floppy */
44 pnp_write_config(dev, 0x04, 0x01); /* EPP + SPP */
45 pnp_write_config(dev, 0x14, 0x03); /* Floppy */
46 pnp_write_config(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
47 pnp_write_config(dev, 0x23, (0x378 >> 2)); /* PP base */
48 pnp_write_config(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
49 pnp_write_config(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
50 pnp_write_config(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
51 pnp_write_config(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
52 pnp_write_config(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000053 /* These are the SMI status registers in the SIO: */
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020054 pnp_write_config(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000055
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020056 pnp_write_config(dev, 0x31, 0x00); /* GPIO1 DIR */
57 pnp_write_config(dev, 0x32, 0x00); /* GPIO1 POL */
58 pnp_write_config(dev, 0x33, 0x40); /* GPIO2 DIR */
59 pnp_write_config(dev, 0x34, 0x00); /* GPIO2 POL */
60 pnp_write_config(dev, 0x35, 0xff); /* GPIO3 DIR */
61 pnp_write_config(dev, 0x36, 0x00); /* GPIO3 POL */
62 pnp_write_config(dev, 0x37, 0xe0); /* GPIO4 DIR */
63 pnp_write_config(dev, 0x38, 0x00); /* GPIO4 POL */
64 pnp_write_config(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000065
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010066 pnp_exit_conf_state(dev);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000067}
68
Arthur Heymansdc584c32019-11-12 20:37:21 +010069void mainboard_late_rcba_config(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000070{
Stefan Reinauer838c5a52010-01-17 14:08:17 +000071 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +020072 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000073
74 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +020075 RCBA16(D31IR) = 0x0232;
76 RCBA16(D30IR) = 0x3246;
77 RCBA16(D29IR) = 0x0237;
78 RCBA16(D28IR) = 0x3201;
79 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000080
Stefan Reinauer838c5a52010-01-17 14:08:17 +000081 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +010082 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000083
84 /* This should probably go into the ACPI OS Init trap */
85
86 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
87 RCBA32(0x1e84) = 0x00020001;
88 RCBA32(0x1e80) = 0x0000fe01;
89
90 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
91 RCBA32(0x1e9c) = 0x000200f0;
92 RCBA32(0x1e98) = 0x000c0801;
93}
94
Stefan Reinauer838c5a52010-01-17 14:08:17 +000095static void init_artec_dongle(void)
96{
Elyes HAOUASec16e932016-10-07 18:22:44 +020097 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000098 outb(0xf1, 0x88);
99 outb(0xf4, 0x88);
100}
101
Arthur Heymansdc584c32019-11-12 20:37:21 +0100102void mainboard_pre_raminit_config(int s3_resume)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000103{
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000104 init_artec_dongle();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000105}