blob: 76471ebe928f2f8fff5c89ffbc7e052b234a8e38 [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>
Elyes HAOUASd07048a2019-04-21 20:17:11 +02006#include <cf9_reset.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +02007#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02008#include <device/pci_ops.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +00009#include <device/pci_def.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020010#include <option.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110011#include <northbridge/intel/i945/i945.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110012#include <southbridge/intel/i82801gx/i82801gx.h>
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010013#include <superio/smsc/lpc47n227/lpc47n227.h>
14
Arthur Heymansfecf7772019-11-09 14:19:04 +010015/* Override the default lpc decode ranges */
Arthur Heymansdc584c32019-11-12 20:37:21 +010016void mainboard_lpc_decode(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000017{
Patrick Georgia4700192011-01-27 07:39:38 +000018 int lpt_en = 0;
Kyösti Mälkkibee82ab2019-12-26 10:57:43 +020019
Angel Pons88dcb312021-04-26 17:10:28 +020020 if (get_uint_option("lpt", 0))
Arthur Heymansb451df22017-08-15 20:59:09 +020021 lpt_en = LPT_LPC_EN; /* enable LPT */
22
Arthur Heymansb451df22017-08-15 20:59:09 +020023 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Arthur Heymansfecf7772019-11-09 14:19:04 +010024
25 pci_update_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, ~LPT_LPC_EN, lpt_en);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000026}
27
Stefan Reinauer838c5a52010-01-17 14:08:17 +000028/* This box has two superios, so enabling serial becomes slightly excessive.
29 * We disable a lot of stuff to make sure that there are no conflicts between
30 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
31 * but safe anyways" method.
32 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000033
Arthur Heymansc5839202019-11-12 23:48:42 +010034void bootblock_mainboard_early_init(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000035{
Elyes HAOUASefc3d042020-04-08 12:15:16 +020036 const pnp_devfn_t dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000037
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010038 pnp_enter_conf_state(dev);
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020039 pnp_write_config(dev, 0x01, 0x94); /* Extended Parport modes */
40 pnp_write_config(dev, 0x02, 0x88); /* UART power on */
41 pnp_write_config(dev, 0x03, 0x72); /* Floppy */
42 pnp_write_config(dev, 0x04, 0x01); /* EPP + SPP */
43 pnp_write_config(dev, 0x14, 0x03); /* Floppy */
44 pnp_write_config(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
45 pnp_write_config(dev, 0x23, (0x378 >> 2)); /* PP base */
46 pnp_write_config(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
47 pnp_write_config(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
48 pnp_write_config(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
49 pnp_write_config(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
50 pnp_write_config(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000051 /* These are the SMI status registers in the SIO: */
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020052 pnp_write_config(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000053
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020054 pnp_write_config(dev, 0x31, 0x00); /* GPIO1 DIR */
55 pnp_write_config(dev, 0x32, 0x00); /* GPIO1 POL */
56 pnp_write_config(dev, 0x33, 0x40); /* GPIO2 DIR */
57 pnp_write_config(dev, 0x34, 0x00); /* GPIO2 POL */
58 pnp_write_config(dev, 0x35, 0xff); /* GPIO3 DIR */
59 pnp_write_config(dev, 0x36, 0x00); /* GPIO3 POL */
60 pnp_write_config(dev, 0x37, 0xe0); /* GPIO4 DIR */
61 pnp_write_config(dev, 0x38, 0x00); /* GPIO4 POL */
62 pnp_write_config(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000063
Elyes HAOUASebcd0a82019-12-13 07:57:37 +010064 pnp_exit_conf_state(dev);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000065}
66
Arthur Heymansdc584c32019-11-12 20:37:21 +010067void mainboard_late_rcba_config(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000068{
Stefan Reinauer838c5a52010-01-17 14:08:17 +000069 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +020070 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000071
72 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +020073 RCBA16(D31IR) = 0x0232;
74 RCBA16(D30IR) = 0x3246;
75 RCBA16(D29IR) = 0x0237;
76 RCBA16(D28IR) = 0x3201;
77 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000078
Stefan Reinauer838c5a52010-01-17 14:08:17 +000079 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +010080 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000081
82 /* This should probably go into the ACPI OS Init trap */
83
84 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
85 RCBA32(0x1e84) = 0x00020001;
86 RCBA32(0x1e80) = 0x0000fe01;
87
88 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
89 RCBA32(0x1e9c) = 0x000200f0;
90 RCBA32(0x1e98) = 0x000c0801;
91}
92
Stefan Reinauer838c5a52010-01-17 14:08:17 +000093static void init_artec_dongle(void)
94{
Elyes HAOUASec16e932016-10-07 18:22:44 +020095 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000096 outb(0xf1, 0x88);
97 outb(0xf4, 0x88);
98}
99
Arthur Heymansdc584c32019-11-12 20:37:21 +0100100void mainboard_pre_raminit_config(int s3_resume)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000101{
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000102 init_artec_dongle();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000103}