blob: 8de2d7427d465bdf19251dbdfe3a9d150fcad0da [file] [log] [blame]
Arthur Heymans7b9c1392017-04-09 20:40:39 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * 2012 secunet Security Networks AG
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020019#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Arthur Heymans7b9c1392017-04-09 20:40:39 +020021#include <console/console.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
Arthur Heymans349e0852017-04-09 20:48:37 +020025#include "i82801jx.h"
Arthur Heymans7b9c1392017-04-09 20:40:39 +020026#include <pc80/mc146818rtc.h>
27
Arthur Heymans349e0852017-04-09 20:48:37 +020028typedef struct southbridge_intel_i82801jx_config config_t;
Arthur Heymans7b9c1392017-04-09 20:40:39 +020029
30static void sata_enable_ahci_mmap(struct device *const dev, const u8 port_map,
31 const int is_mobile)
32{
33 int i;
34 u32 reg32;
35
36 /* Initialize AHCI memory-mapped space */
37 u8 *abar = (u8 *)pci_read_config32(dev, PCI_BASE_ADDRESS_5);
38 printk(BIOS_DEBUG, "ABAR: %p\n", abar);
39
40 /* Set AHCI access mode.
41 No other ABAR registers should be accessed before this. */
42 reg32 = read32(abar + 0x04);
43 reg32 |= 1 << 31;
44 write32(abar + 0x04, reg32);
45
46 /* CAP (HBA Capabilities) : enable power management */
47 reg32 = read32(abar + 0x00);
48 /* CCCS must be set. */
49 reg32 |= 0x0c006080; /* set CCCS+PSC+SSC+SALP+SSS */
50 reg32 &= ~0x00020060; /* clear SXS+EMS+PMS */
51 write32(abar + 0x00, reg32);
52
53 /* PI (Ports implemented) */
54 write32(abar + 0x0c, port_map);
55 /* PCH code reads back twice, do we need it, too? */
56 (void) read32(abar + 0x0c); /* Read back 1 */
57 (void) read32(abar + 0x0c); /* Read back 2 */
58
59 /* VSP (Vendor Specific Register) */
60 reg32 = read32(abar + 0xa0);
61 reg32 &= ~0x00000001; /* clear SLPD */
62 write32(abar + 0xa0, reg32);
63
64 /* Lock R/WO bits in Port command registers. */
65 for (i = 0; i < 6; ++i) {
66 if (((i == 2) || (i == 3)) && is_mobile)
67 continue;
68 u8 *addr = abar + 0x118 + (i * 0x80);
69 write32(addr, read32(addr));
70 }
71}
72
73static void sata_program_indexed(struct device *const dev, const int is_mobile)
74{
75 u32 reg32;
76
77 pci_write_config8(dev, D31F2_SIDX, 0x18);
78 reg32 = pci_read_config32(dev, D31F2_SDAT);
79 reg32 &= ~((7 << 6) | (7 << 3) | (7 << 0));
80 reg32 |= (3 << 3) | (3 << 0);
81 pci_write_config32(dev, D31F2_SDAT, reg32);
82
83 pci_write_config8(dev, D31F2_SIDX, 0x28);
84 pci_write_config32(dev, D31F2_SDAT, 0x00cc2080);
85
86 pci_write_config8(dev, D31F2_SIDX, 0x40);
87 pci_write_config8(dev, D31F2_SDAT + 2, 0x22);
88
89 pci_write_config8(dev, D31F2_SIDX, 0x78);
90 pci_write_config8(dev, D31F2_SDAT + 2, 0x22);
91
92 if (!is_mobile) {
93 pci_write_config8(dev, D31F2_SIDX, 0x84);
94 reg32 = pci_read_config32(dev, D31F2_SDAT);
95 reg32 &= ~((7 << 3) | (7 << 0));
96 reg32 |= (3 << 3) | (3 << 0);
97 pci_write_config32(dev, D31F2_SDAT, reg32);
98 }
99
100 pci_write_config8(dev, D31F2_SIDX, 0x88);
101 reg32 = pci_read_config32(dev, D31F2_SDAT);
102 if (!is_mobile)
103 reg32 &= ~((7 << 27) | (7 << 24) | (7 << 11) | (7 << 8));
104 reg32 &= ~((7 << 19) | (7 << 16) | (7 << 3) | (7 << 0));
105 if (!is_mobile)
106 reg32 |= (4 << 27) | (4 << 24) | (2 << 11) | (2 << 8);
107 reg32 |= (4 << 19) | (4 << 16) | (2 << 3) | (2 << 0);
108 pci_write_config32(dev, D31F2_SDAT, reg32);
109
110 pci_write_config8(dev, D31F2_SIDX, 0x8c);
111 reg32 = pci_read_config32(dev, D31F2_SDAT);
112 if (!is_mobile)
113 reg32 &= ~((7 << 27) | (7 << 24));
114 reg32 &= ~((7 << 19) | (7 << 16) | 0xffff);
115 if (!is_mobile)
116 reg32 |= (2 << 27) | (2 << 24);
117 reg32 |= (2 << 19) | (2 << 16) | 0x00aa;
118 pci_write_config32(dev, D31F2_SDAT, reg32);
119
120 pci_write_config8(dev, D31F2_SIDX, 0x94);
121 pci_write_config32(dev, D31F2_SDAT, 0x00000022);
122
123 pci_write_config8(dev, D31F2_SIDX, 0xa0);
124 reg32 = pci_read_config32(dev, D31F2_SDAT);
125 reg32 &= ~((7 << 3) | (7 << 0));
126 reg32 |= (3 << 3) | (3 << 0);
127 pci_write_config32(dev, D31F2_SDAT, reg32);
128
129 pci_write_config8(dev, D31F2_SIDX, 0xa8);
130 reg32 = pci_read_config32(dev, D31F2_SDAT);
131 reg32 &= ~((7 << 19) | (7 << 16) | (7 << 3) | (7 << 0));
132 reg32 |= (4 << 19) | (4 << 16) | (2 << 3) | (2 << 0);
133 pci_write_config32(dev, D31F2_SDAT, reg32);
134
135 pci_write_config8(dev, D31F2_SIDX, 0xac);
136 reg32 = pci_read_config32(dev, D31F2_SDAT);
137 reg32 &= ~((7 << 19) | (7 << 16) | 0xffff);
138 reg32 |= (2 << 19) | (2 << 16) | 0x000a;
139 pci_write_config32(dev, D31F2_SDAT, reg32);
140}
141
142static void sata_init(struct device *const dev)
143{
144 u16 reg16;
145
146 /* Get the chip configuration */
147 const config_t *const config = dev->chip_info;
148
149 const u16 devid = pci_read_config16(dev, PCI_DEVICE_ID);
150 const int is_mobile = (devid == 0x2928) || (devid == 0x2929);
151 u8 sata_mode;
152
Arthur Heymans349e0852017-04-09 20:48:37 +0200153 printk(BIOS_DEBUG, "i82801jx_sata: initializing...\n");
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200154
155 if (config == NULL) {
Arthur Heymans349e0852017-04-09 20:48:37 +0200156 printk(BIOS_ERR, "i82801jx_sata: error: "
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200157 "device not in devicetree.cb!\n");
158 return;
159 }
160
161 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
162 /* Default to AHCI */
163 sata_mode = 0;
164
165 /*
166 * TODO: In contrast to ICH7 and PCH code we don't set
167 * timings, dma and IDE-I/O settings here. Looks like they
168 * became obsolete with the fading of real IDE ports.
169 * Maybe we can safely remove those settings from PCH code and
170 * even ICH7 code if it doesn't use the feature to combine the
171 * IDE and SATA controllers.
172 */
173
174 pci_write_config16(dev, PCI_COMMAND,
175 PCI_COMMAND_MASTER |
176 PCI_COMMAND_MEMORY | /* read-only in IDE modes */
177 PCI_COMMAND_IO);
178 if (sata_mode != 0)
179 /* No AHCI: clear AHCI base */
180 pci_write_config32(dev, PCI_BASE_ADDRESS_5, 0x00000000);
181
182 if (sata_mode == 0) {
183 printk(BIOS_DEBUG, "SATA controller in AHCI mode.\n");
184 } else {
185 printk(BIOS_DEBUG, "SATA controller in native mode.\n");
186
187 /* Enable native mode on both primary and secondary. */
188 pci_write_config8(dev, PCI_CLASS_PROG, 0x8f);
189 }
190
191 /* Looks like we should only enable decoding here. */
192 pci_write_config16(dev, D31F2_IDE_TIM_PRI, (1 << 15));
193 pci_write_config16(dev, D31F2_IDE_TIM_SEC, (1 << 15));
194
195 /* Port enable. For AHCI, it's managed in memory mapped space. */
196 reg16 = pci_read_config16(dev, 0x92);
197 reg16 &= ~0x3f;
198 reg16 |= (1 << 15) | ((sata_mode == 0) ? 0x3f : config->sata_port_map);
199 pci_write_config16(dev, 0x92, reg16);
200
201 /* SATA clock settings */
202 u32 sclkcg = 0;
203 if (config->sata_clock_request &&
204 !(inb(DEFAULT_GPIOBASE + 0x30) & (1 << (35 - 32))))
205 sclkcg |= 1 << 30; /* Enable SATA clock request. */
206 /* Disable unused ports. */
207 sclkcg |= ((~config->sata_port_map) & 0x3f) << 24;
208 /* Must be programmed. */
209 sclkcg |= 0x193;
210 pci_write_config32(dev, 0x94, sclkcg);
211
212 if (is_mobile && config->sata_traffic_monitor) {
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300213 struct device *const lpc_dev = pcidev_on_root(0x1f, 0);
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200214 if (((pci_read_config8(lpc_dev, D31F0_CxSTATE_CNF)
215 >> 3) & 3) == 3) {
216 u8 reg8 = pci_read_config8(dev, 0x9c);
217 reg8 &= ~(0x1f << 2);
218 reg8 |= 3 << 2;
219 pci_write_config8(dev, 0x9c, reg8);
220 }
221 }
222
223 if (sata_mode == 0)
224 sata_enable_ahci_mmap(dev, config->sata_port_map, is_mobile);
225
226 sata_program_indexed(dev, is_mobile);
227}
228
Elyes HAOUAS1a8c1df2018-05-13 13:36:44 +0200229static void sata_enable(struct device *dev)
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200230{
231 /* Get the chip configuration */
232 const config_t *const config = dev->chip_info;
233
234 u16 map = 0;
235 u8 sata_mode;
236
237 if (!config)
238 return;
239
240 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
241 /* Default to AHCI */
242 sata_mode = 0;
243
244 /*
245 * Set SATA controller mode early so the resource allocator can
246 * properly assign IO/Memory resources for the controller.
247 */
248 if (sata_mode == 0)
249 map = 0x0040 | 0x0020; /* SATA mode + all ports on D31:F2 */
250
251 map |= (config->sata_port_map ^ 0x3f) << 8;
252
253 pci_write_config16(dev, 0x90, map);
254}
255
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200256static struct pci_operations sata_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +0530257 .set_subsystem = pci_dev_set_subsystem,
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200258};
259
260static struct device_operations sata_ops = {
261 .read_resources = pci_dev_read_resources,
262 .set_resources = pci_dev_set_resources,
263 .enable_resources = pci_dev_enable_resources,
264 .init = sata_init,
265 .enable = sata_enable,
266 .scan_bus = 0,
267 .ops_pci = &sata_pci_ops,
268};
269
270static const unsigned short pci_device_ids[] = {
Arthur Heymans349e0852017-04-09 20:48:37 +0200271 0x3a00,
272 0x3a02,
273 0x3a05,
274 0x3a06,
275 0x3a20,
276 0x3a22,
277 0x3a25,
278 0x3a26,
Arthur Heymans7b9c1392017-04-09 20:40:39 +0200279 0,
280};
281
282static const struct pci_driver pch_sata __pci_driver = {
283 .ops = &sata_ops,
284 .vendor = PCI_VENDOR_ID_INTEL,
285 .devices = pci_device_ids,
286};