blob: 9fdbeb64af5e4b2f7e55863ca0ba2ce1da8db00a [file] [log] [blame]
Angel Pons7544e2f2020-04-03 01:23:10 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer838c5a52010-01-17 14:08:17 +00002
Arthur Heymansc5839202019-11-12 23:48:42 +01003#include <bootblock_common.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +00004#include <stdint.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +00005#include <arch/io.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +02006#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02007#include <device/pci_ops.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +00008#include <device/pci_def.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +02009#include <option.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110010#include <northbridge/intel/i945/i945.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110011#include <southbridge/intel/i82801gx/i82801gx.h>
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010012#include <superio/smsc/lpc47n227/lpc47n227.h>
13
Arthur Heymansfecf7772019-11-09 14:19:04 +010014/* Override the default lpc decode ranges */
Arthur Heymansdc584c32019-11-12 20:37:21 +010015void mainboard_lpc_decode(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000016{
Patrick Georgia4700192011-01-27 07:39:38 +000017 int lpt_en = 0;
Kyösti Mälkkibee82ab2019-12-26 10:57:43 +020018
Angel Pons88dcb312021-04-26 17:10:28 +020019 if (get_uint_option("lpt", 0))
Arthur Heymansb451df22017-08-15 20:59:09 +020020 lpt_en = LPT_LPC_EN; /* enable LPT */
21
Arthur Heymansb451df22017-08-15 20:59:09 +020022 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Arthur Heymansfecf7772019-11-09 14:19:04 +010023
24 pci_update_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, ~LPT_LPC_EN, lpt_en);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000025}
26
Stefan Reinauer838c5a52010-01-17 14:08:17 +000027/* This box has two superios, so enabling serial becomes slightly excessive.
28 * We disable a lot of stuff to make sure that there are no conflicts between
29 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
30 * but safe anyways" method.
31 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000032
Arthur Heymansc5839202019-11-12 23:48:42 +010033void bootblock_mainboard_early_init(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000034{
Elyes HAOUASefc3d042020-04-08 12:15:16 +020035 const pnp_devfn_t dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000036
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010037 pnp_enter_conf_state(dev);
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020038 pnp_write_config(dev, 0x01, 0x94); /* Extended Parport modes */
39 pnp_write_config(dev, 0x02, 0x88); /* UART power on */
40 pnp_write_config(dev, 0x03, 0x72); /* Floppy */
41 pnp_write_config(dev, 0x04, 0x01); /* EPP + SPP */
42 pnp_write_config(dev, 0x14, 0x03); /* Floppy */
43 pnp_write_config(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
44 pnp_write_config(dev, 0x23, (0x378 >> 2)); /* PP base */
45 pnp_write_config(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
46 pnp_write_config(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
47 pnp_write_config(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
48 pnp_write_config(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
49 pnp_write_config(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000050 /* These are the SMI status registers in the SIO: */
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020051 pnp_write_config(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000052
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020053 pnp_write_config(dev, 0x31, 0x00); /* GPIO1 DIR */
54 pnp_write_config(dev, 0x32, 0x00); /* GPIO1 POL */
55 pnp_write_config(dev, 0x33, 0x40); /* GPIO2 DIR */
56 pnp_write_config(dev, 0x34, 0x00); /* GPIO2 POL */
57 pnp_write_config(dev, 0x35, 0xff); /* GPIO3 DIR */
58 pnp_write_config(dev, 0x36, 0x00); /* GPIO3 POL */
59 pnp_write_config(dev, 0x37, 0xe0); /* GPIO4 DIR */
60 pnp_write_config(dev, 0x38, 0x00); /* GPIO4 POL */
61 pnp_write_config(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000062
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010063 pnp_exit_conf_state(dev);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000064}
65
Arthur Heymansdc584c32019-11-12 20:37:21 +010066void mainboard_late_rcba_config(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000067{
Stefan Reinauer838c5a52010-01-17 14:08:17 +000068 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +020069 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000070
71 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +020072 RCBA16(D31IR) = 0x0232;
73 RCBA16(D30IR) = 0x3246;
74 RCBA16(D29IR) = 0x0237;
75 RCBA16(D28IR) = 0x3201;
76 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000077
Stefan Reinauer838c5a52010-01-17 14:08:17 +000078 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +010079 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000080}
81
Stefan Reinauer838c5a52010-01-17 14:08:17 +000082static void init_artec_dongle(void)
83{
Elyes HAOUASec16e932016-10-07 18:22:44 +020084 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000085 outb(0xf1, 0x88);
86 outb(0xf4, 0x88);
87}
88
Arthur Heymansdc584c32019-11-12 20:37:21 +010089void mainboard_pre_raminit_config(int s3_resume)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000090{
Stefan Reinauer838c5a52010-01-17 14:08:17 +000091 init_artec_dongle();
Stefan Reinauer838c5a52010-01-17 14:08:17 +000092}