blob: c000aca856a8e1c61406c43d405c2b7188dbfdcb [file] [log] [blame]
Simon Glass17f1c402014-11-14 18:18:32 -07001/*
2 * Copyright (C) 2014 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
Simon Glass17f1c402014-11-14 18:18:32 -07006#include <common.h>
Simon Glasse0e7b362015-03-05 12:25:33 -07007#include <dm.h>
Simon Glass17f1c402014-11-14 18:18:32 -07008#include <errno.h>
9#include <fdtdec.h>
10#include <malloc.h>
Simon Glass32761632016-01-18 20:19:21 -070011#include <pch.h>
Simon Glass17f1c402014-11-14 18:18:32 -070012#include <asm/lapic.h>
13#include <asm/pci.h>
14#include <asm/arch/bd82x6x.h>
15#include <asm/arch/model_206ax.h>
16#include <asm/arch/pch.h>
17#include <asm/arch/sandybridge.h>
18
Simon Glass32761632016-01-18 20:19:21 -070019#define BIOS_CTRL 0xdc
20
Simon Glass17f1c402014-11-14 18:18:32 -070021void bd82x6x_pci_init(pci_dev_t dev)
22{
23 u16 reg16;
24 u8 reg8;
25
26 debug("bd82x6x PCI init.\n");
27 /* Enable Bus Master */
Simon Glass240d06d2015-03-05 12:25:15 -070028 reg16 = x86_pci_read_config16(dev, PCI_COMMAND);
Simon Glass17f1c402014-11-14 18:18:32 -070029 reg16 |= PCI_COMMAND_MASTER;
Simon Glass240d06d2015-03-05 12:25:15 -070030 x86_pci_write_config16(dev, PCI_COMMAND, reg16);
Simon Glass17f1c402014-11-14 18:18:32 -070031
32 /* This device has no interrupt */
Simon Glass240d06d2015-03-05 12:25:15 -070033 x86_pci_write_config8(dev, INTR, 0xff);
Simon Glass17f1c402014-11-14 18:18:32 -070034
35 /* disable parity error response and SERR */
Simon Glass240d06d2015-03-05 12:25:15 -070036 reg16 = x86_pci_read_config16(dev, BCTRL);
Simon Glass17f1c402014-11-14 18:18:32 -070037 reg16 &= ~(1 << 0);
38 reg16 &= ~(1 << 1);
Simon Glass240d06d2015-03-05 12:25:15 -070039 x86_pci_write_config16(dev, BCTRL, reg16);
Simon Glass17f1c402014-11-14 18:18:32 -070040
41 /* Master Latency Count must be set to 0x04! */
Simon Glass240d06d2015-03-05 12:25:15 -070042 reg8 = x86_pci_read_config8(dev, SMLT);
Simon Glass17f1c402014-11-14 18:18:32 -070043 reg8 &= 0x07;
44 reg8 |= (0x04 << 3);
Simon Glass240d06d2015-03-05 12:25:15 -070045 x86_pci_write_config8(dev, SMLT, reg8);
Simon Glass17f1c402014-11-14 18:18:32 -070046
47 /* Will this improve throughput of bus masters? */
Simon Glass240d06d2015-03-05 12:25:15 -070048 x86_pci_write_config8(dev, PCI_MIN_GNT, 0x06);
Simon Glass17f1c402014-11-14 18:18:32 -070049
50 /* Clear errors in status registers */
Simon Glass240d06d2015-03-05 12:25:15 -070051 reg16 = x86_pci_read_config16(dev, PSTS);
Simon Glass17f1c402014-11-14 18:18:32 -070052 /* reg16 |= 0xf900; */
Simon Glass240d06d2015-03-05 12:25:15 -070053 x86_pci_write_config16(dev, PSTS, reg16);
Simon Glass17f1c402014-11-14 18:18:32 -070054
Simon Glass240d06d2015-03-05 12:25:15 -070055 reg16 = x86_pci_read_config16(dev, SECSTS);
Simon Glass17f1c402014-11-14 18:18:32 -070056 /* reg16 |= 0xf900; */
Simon Glass240d06d2015-03-05 12:25:15 -070057 x86_pci_write_config16(dev, SECSTS, reg16);
Simon Glass17f1c402014-11-14 18:18:32 -070058}
59
Simon Glasse0e7b362015-03-05 12:25:33 -070060static int bd82x6x_probe(struct udevice *dev)
Simon Glass17f1c402014-11-14 18:18:32 -070061{
Simon Glasscd0adb32014-11-14 18:18:38 -070062 const void *blob = gd->fdt_blob;
Simon Glass06409c92014-11-14 18:18:35 -070063 struct pci_controller *hose;
Simon Glasscf46d372014-11-24 21:18:16 -070064 struct x86_cpu_priv *cpu;
Simon Glassd90f8e12014-11-14 20:56:36 -070065 int sata_node, gma_node;
66 int ret;
Simon Glass06409c92014-11-14 18:18:35 -070067
68 hose = pci_bus_to_hose(0);
69 lpc_enable(PCH_LPC_DEV);
70 lpc_init(hose, PCH_LPC_DEV);
Simon Glasscd0adb32014-11-14 18:18:38 -070071 sata_node = fdtdec_next_compatible(blob, 0,
72 COMPAT_INTEL_PANTHERPOINT_AHCI);
73 if (sata_node < 0) {
74 debug("%s: Cannot find SATA node\n", __func__);
75 return -EINVAL;
76 }
77 bd82x6x_sata_init(PCH_SATA_DEV, blob, sata_node);
Simon Glass194d7572014-11-14 18:18:40 -070078 bd82x6x_usb_ehci_init(PCH_EHCI1_DEV);
79 bd82x6x_usb_ehci_init(PCH_EHCI2_DEV);
Simon Glass06409c92014-11-14 18:18:35 -070080
Simon Glasscf46d372014-11-24 21:18:16 -070081 cpu = calloc(1, sizeof(*cpu));
82 if (!cpu)
83 return -ENOMEM;
84 model_206ax_init(cpu);
85
Simon Glassd90f8e12014-11-14 20:56:36 -070086 gma_node = fdtdec_next_compatible(blob, 0, COMPAT_INTEL_GMA);
87 if (gma_node < 0) {
88 debug("%s: Cannot find GMA node\n", __func__);
89 return -EINVAL;
90 }
Simon Glass35230352015-11-29 13:17:55 -070091 ret = dm_pci_bus_find_bdf(PCH_VIDEO_DEV, &dev);
92 if (ret)
93 return ret;
94 ret = gma_func0_init(dev, blob, gma_node);
Simon Glassd90f8e12014-11-14 20:56:36 -070095 if (ret)
96 return ret;
97
Simon Glass17f1c402014-11-14 18:18:32 -070098 return 0;
99}
100
Simon Glass32761632016-01-18 20:19:21 -0700101/* TODO(sjg@chromium.org): Move this to the PCH init() method */
Simon Glass17f1c402014-11-14 18:18:32 -0700102int bd82x6x_init(void)
103{
Simon Glasscd0adb32014-11-14 18:18:38 -0700104 const void *blob = gd->fdt_blob;
105 int sata_node;
106
107 sata_node = fdtdec_next_compatible(blob, 0,
108 COMPAT_INTEL_PANTHERPOINT_AHCI);
109 if (sata_node < 0) {
110 debug("%s: Cannot find SATA node\n", __func__);
111 return -EINVAL;
112 }
113
Simon Glass17f1c402014-11-14 18:18:32 -0700114 bd82x6x_pci_init(PCH_DEV);
Simon Glasscd0adb32014-11-14 18:18:38 -0700115 bd82x6x_sata_enable(PCH_SATA_DEV, blob, sata_node);
Simon Glass61612ed2014-11-24 21:18:18 -0700116 northbridge_enable(PCH_DEV);
117 northbridge_init(PCH_DEV);
Simon Glass17f1c402014-11-14 18:18:32 -0700118
119 return 0;
120}
Simon Glasse0e7b362015-03-05 12:25:33 -0700121
Simon Glass32761632016-01-18 20:19:21 -0700122static int bd82x6x_pch_get_sbase(struct udevice *dev, ulong *sbasep)
123{
124 u32 rcba;
125
126 dm_pci_read_config32(dev, PCH_RCBA, &rcba);
127 /* Bits 31-14 are the base address, 13-1 are reserved, 0 is enable */
128 rcba = rcba & 0xffffc000;
129 *sbasep = rcba + 0x3800;
130
131 return 0;
132}
133
134static enum pch_version bd82x6x_pch_get_version(struct udevice *dev)
135{
136 return PCHV_9;
137}
138
139static int bd82x6x_set_spi_protect(struct udevice *dev, bool protect)
140{
141 uint8_t bios_cntl;
142
143 /* Adjust the BIOS write protect and SMM BIOS Write Protect Disable */
144 dm_pci_read_config8(dev, BIOS_CTRL, &bios_cntl);
145 if (protect) {
146 bios_cntl &= ~BIOS_CTRL_BIOSWE;
147 bios_cntl |= BIT(5);
148 } else {
149 bios_cntl |= BIOS_CTRL_BIOSWE;
150 bios_cntl &= ~BIT(5);
151 }
152 dm_pci_write_config8(dev, BIOS_CTRL, bios_cntl);
153
154 return 0;
155}
156
157static const struct pch_ops bd82x6x_pch_ops = {
158 .get_sbase = bd82x6x_pch_get_sbase,
159 .get_version = bd82x6x_pch_get_version,
160 .set_spi_protect = bd82x6x_set_spi_protect,
161};
162
Simon Glasse0e7b362015-03-05 12:25:33 -0700163static const struct udevice_id bd82x6x_ids[] = {
164 { .compatible = "intel,bd82x6x" },
165 { }
166};
167
168U_BOOT_DRIVER(bd82x6x_drv) = {
169 .name = "bd82x6x",
170 .id = UCLASS_PCH,
171 .of_match = bd82x6x_ids,
172 .probe = bd82x6x_probe,
Simon Glass32761632016-01-18 20:19:21 -0700173 .ops = &bd82x6x_pch_ops,
Simon Glasse0e7b362015-03-05 12:25:33 -0700174};