blob: b0d08f4dd2f831eaafa782f354ce6d4ab748a64d [file] [log] [blame]
Stefan Reinauer838c5a52010-01-17 14:08:17 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer14e22772010-04-27 06:56:47 +00003 *
Stefan Reinauer838c5a52010-01-17 14:08:17 +00004 * Copyright (C) 2007-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer838c5a52010-01-17 14:08:17 +000015 */
16
Arthur Heymansc5839202019-11-12 23:48:42 +010017#include <bootblock_common.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000018#include <stdint.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000019#include <arch/io.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +020020#include <cf9_reset.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +020021#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000023#include <device/pci_def.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020024#include <option.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110025#include <northbridge/intel/i945/i945.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110026#include <southbridge/intel/i82801gx/i82801gx.h>
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010027#include <superio/smsc/lpc47n227/lpc47n227.h>
28
Arthur Heymansfecf7772019-11-09 14:19:04 +010029/* Override the default lpc decode ranges */
Arthur Heymansdc584c32019-11-12 20:37:21 +010030void mainboard_lpc_decode(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000031{
Patrick Georgia4700192011-01-27 07:39:38 +000032 int lpt_en = 0;
Kyösti Mälkkibee82ab2019-12-26 10:57:43 +020033 u8 val;
34
35 if (get_option(&val, "lpt") == CB_SUCCESS && val)
Arthur Heymansb451df22017-08-15 20:59:09 +020036 lpt_en = LPT_LPC_EN; /* enable LPT */
37
Arthur Heymansb451df22017-08-15 20:59:09 +020038 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Arthur Heymansfecf7772019-11-09 14:19:04 +010039
40 pci_update_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, ~LPT_LPC_EN, lpt_en);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000041}
42
Stefan Reinauer838c5a52010-01-17 14:08:17 +000043/* This box has two superios, so enabling serial becomes slightly excessive.
44 * We disable a lot of stuff to make sure that there are no conflicts between
45 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
46 * but safe anyways" method.
47 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000048
Arthur Heymansc5839202019-11-12 23:48:42 +010049void bootblock_mainboard_early_init(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000050{
Antonello Dettori63028fd2016-11-08 18:44:46 +010051 pnp_devfn_t dev;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000052
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060053 dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000054
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010055 pnp_enter_conf_state(dev);
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020056 pnp_write_config(dev, 0x01, 0x94); /* Extended Parport modes */
57 pnp_write_config(dev, 0x02, 0x88); /* UART power on */
58 pnp_write_config(dev, 0x03, 0x72); /* Floppy */
59 pnp_write_config(dev, 0x04, 0x01); /* EPP + SPP */
60 pnp_write_config(dev, 0x14, 0x03); /* Floppy */
61 pnp_write_config(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
62 pnp_write_config(dev, 0x23, (0x378 >> 2)); /* PP base */
63 pnp_write_config(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
64 pnp_write_config(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
65 pnp_write_config(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
66 pnp_write_config(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
67 pnp_write_config(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000068 /* These are the SMI status registers in the SIO: */
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020069 pnp_write_config(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000070
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020071 pnp_write_config(dev, 0x31, 0x00); /* GPIO1 DIR */
72 pnp_write_config(dev, 0x32, 0x00); /* GPIO1 POL */
73 pnp_write_config(dev, 0x33, 0x40); /* GPIO2 DIR */
74 pnp_write_config(dev, 0x34, 0x00); /* GPIO2 POL */
75 pnp_write_config(dev, 0x35, 0xff); /* GPIO3 DIR */
76 pnp_write_config(dev, 0x36, 0x00); /* GPIO3 POL */
77 pnp_write_config(dev, 0x37, 0xe0); /* GPIO4 DIR */
78 pnp_write_config(dev, 0x38, 0x00); /* GPIO4 POL */
79 pnp_write_config(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000080
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010081 pnp_exit_conf_state(dev);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000082}
83
Arthur Heymansdc584c32019-11-12 20:37:21 +010084void mainboard_late_rcba_config(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000085{
Stefan Reinauer838c5a52010-01-17 14:08:17 +000086 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +020087 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000088
89 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +020090 RCBA16(D31IR) = 0x0232;
91 RCBA16(D30IR) = 0x3246;
92 RCBA16(D29IR) = 0x0237;
93 RCBA16(D28IR) = 0x3201;
94 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000095
Stefan Reinauer838c5a52010-01-17 14:08:17 +000096 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +010097 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000098
99 /* This should probably go into the ACPI OS Init trap */
100
101 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
102 RCBA32(0x1e84) = 0x00020001;
103 RCBA32(0x1e80) = 0x0000fe01;
104
105 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
106 RCBA32(0x1e9c) = 0x000200f0;
107 RCBA32(0x1e98) = 0x000c0801;
108}
109
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000110static void init_artec_dongle(void)
111{
Elyes HAOUASec16e932016-10-07 18:22:44 +0200112 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000113 outb(0xf1, 0x88);
114 outb(0xf4, 0x88);
115}
116
Arthur Heymansdc584c32019-11-12 20:37:21 +0100117void mainboard_pre_raminit_config(int s3_resume)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000118{
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000119 init_artec_dongle();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000120}