blob: 310d1a291da09fb452427a783ef25c05fe985be7 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauer8e073822012-04-04 00:07:22 +02003
Kyösti Mälkki13f66502019-03-03 08:01:05 +02004#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +02006#include <console/console.h>
7#include <device/device.h>
8#include <device/pci.h>
9#include <device/pci_ids.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +020010#include <option.h>
Alexander Couzens7bf47ee2015-04-16 02:00:21 +020011#include <acpi/sata.h>
Elyes HAOUASab89edb2019-05-15 21:10:44 +020012#include <types.h>
13
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030014#include "chip.h"
Elyes HAOUASab89edb2019-05-15 21:10:44 +020015#include "pch.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020016
17typedef struct southbridge_intel_bd82x6x_config config_t;
18
Stefan Reinauer16b022a2012-07-17 16:42:51 -070019static inline u32 sir_read(struct device *dev, int idx)
20{
21 pci_write_config32(dev, SATA_SIRI, idx);
22 return pci_read_config32(dev, SATA_SIRD);
23}
24
25static inline void sir_write(struct device *dev, int idx, u32 value)
26{
27 pci_write_config32(dev, SATA_SIRI, idx);
28 pci_write_config32(dev, SATA_SIRD, value);
29}
30
Stefan Reinauer8e073822012-04-04 00:07:22 +020031static void sata_init(struct device *dev)
32{
33 u32 reg32;
34 u16 reg16;
35 /* Get the chip configuration */
36 config_t *config = dev->chip_info;
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +010037 u8 sata_mode;
Stefan Reinauer8e073822012-04-04 00:07:22 +020038
Stefan Reinauer16b022a2012-07-17 16:42:51 -070039 printk(BIOS_DEBUG, "SATA: Initializing...\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +020040
41 if (config == NULL) {
Stefan Reinauer16b022a2012-07-17 16:42:51 -070042 printk(BIOS_ERR, "SATA: ERROR: Device not in devicetree.cb!\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +020043 return;
44 }
45
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +010046 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
47 /* Default to AHCI */
48 sata_mode = 0;
49
Stefan Reinauer8e073822012-04-04 00:07:22 +020050 /* SATA configuration */
51
52 /* Enable BARs */
53 pci_write_config16(dev, PCI_COMMAND, 0x0007);
54
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +010055 /* AHCI */
56 if (sata_mode == 0) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080057 u8 *abar;
Stefan Reinauer8e073822012-04-04 00:07:22 +020058
Stefan Reinauer16b022a2012-07-17 16:42:51 -070059 printk(BIOS_DEBUG, "SATA: Controller in AHCI mode.\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +020060
Stefan Reinauer8e073822012-04-04 00:07:22 +020061 /* Set timings */
62 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
63 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
64 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
65 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
66 IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
67
68 /* Sync DMA */
69 pci_write_config16(dev, IDE_SDMA_CNT, IDE_PSDE0);
70 pci_write_config16(dev, IDE_SDMA_TIM, 0x0001);
71
72 /* Set IDE I/O Configuration */
73 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
74 pci_write_config32(dev, IDE_CONFIG, reg32);
75
76 /* for AHCI, Port Enable is managed in memory mapped space */
77 reg16 = pci_read_config16(dev, 0x92);
78 reg16 &= ~0x3f; /* 6 ports SKU + ORM */
79 reg16 |= 0x8000 | config->sata_port_map;
80 pci_write_config16(dev, 0x92, reg16);
81
82 /* SATA Initialization register */
83 pci_write_config32(dev, 0x94,
84 ((config->sata_port_map ^ 0x3f) << 24) | 0x183);
85
86 /* Initialize AHCI memory-mapped space */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080087 abar = (u8 *)pci_read_config32(dev, PCI_BASE_ADDRESS_5);
88 printk(BIOS_DEBUG, "ABAR: %p\n", abar);
Stefan Reinauer8e073822012-04-04 00:07:22 +020089 /* CAP (HBA Capabilities) : enable power management */
90 reg32 = read32(abar + 0x00);
91 reg32 |= 0x0c006000; // set PSC+SSC+SALP+SSS
92 reg32 &= ~0x00020060; // clear SXS+EMS+PMS
Shawn Nematbakhshc9fc0292013-03-14 10:44:13 -070093 /* Set ISS, if available */
94 if (config->sata_interface_speed_support)
95 {
96 reg32 &= ~0x00f00000;
97 reg32 |= (config->sata_interface_speed_support & 0x03)
98 << 20;
99 }
Stefan Reinauer8e073822012-04-04 00:07:22 +0200100 write32(abar + 0x00, reg32);
101 /* PI (Ports implemented) */
102 write32(abar + 0x0c, config->sata_port_map);
103 (void) read32(abar + 0x0c); /* Read back 1 */
104 (void) read32(abar + 0x0c); /* Read back 2 */
105 /* CAP2 (HBA Capabilities Extended)*/
106 reg32 = read32(abar + 0x24);
107 reg32 &= ~0x00000002;
108 write32(abar + 0x24, reg32);
109 /* VSP (Vendor Specific Register */
110 reg32 = read32(abar + 0xa0);
111 reg32 &= ~0x00000005;
112 write32(abar + 0xa0, reg32);
113 } else {
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100114 /* IDE */
Stefan Reinauer16b022a2012-07-17 16:42:51 -0700115 printk(BIOS_DEBUG, "SATA: Controller in plain mode.\n");
Stefan Reinauer8e073822012-04-04 00:07:22 +0200116
117 /* No AHCI: clear AHCI base */
118 pci_write_config32(dev, 0x24, 0x00000000);
119
120 /* And without AHCI BAR no memory decoding */
121 reg16 = pci_read_config16(dev, PCI_COMMAND);
122 reg16 &= ~PCI_COMMAND_MEMORY;
123 pci_write_config16(dev, PCI_COMMAND, reg16);
124
125 /* Native mode capable on both primary and secondary (0xa)
126 * or'ed with enabled (0x50) = 0xf
127 */
128 pci_write_config8(dev, 0x09, 0x8f);
129
Stefan Reinauer8e073822012-04-04 00:07:22 +0200130 /* Set timings */
131 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
132 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
133 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
134 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
135 IDE_SITRE | IDE_ISP_3_CLOCKS |
136 IDE_RCT_1_CLOCKS | IDE_IE0 | IDE_TIME0);
137
138 /* Sync DMA */
139 pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0 | IDE_PSDE0);
140 pci_write_config16(dev, IDE_SDMA_TIM, 0x0201);
141
142 /* Set IDE I/O Configuration */
143 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
144 pci_write_config32(dev, IDE_CONFIG, reg32);
145
146 /* Port enable */
147 reg16 = pci_read_config16(dev, 0x92);
148 reg16 &= ~0x3f;
149 reg16 |= config->sata_port_map;
150 pci_write_config16(dev, 0x92, reg16);
151
152 /* SATA Initialization register */
153 pci_write_config32(dev, 0x94,
154 ((config->sata_port_map ^ 0x3f) << 24) | 0x183);
155 }
Duncan Lauriecfb64bd2012-07-16 16:16:31 -0700156
157 /* Set Gen3 Transmitter settings if needed */
158 if (config->sata_port0_gen3_tx)
159 pch_iobp_update(SATA_IOBP_SP0G3IR, 0,
160 config->sata_port0_gen3_tx);
161
162 if (config->sata_port1_gen3_tx)
163 pch_iobp_update(SATA_IOBP_SP1G3IR, 0,
164 config->sata_port1_gen3_tx);
Stefan Reinauer16b022a2012-07-17 16:42:51 -0700165
166 /* Additional Programming Requirements */
167 sir_write(dev, 0x04, 0x00001600);
168 sir_write(dev, 0x28, 0xa0000033);
169 reg32 = sir_read(dev, 0x54);
170 reg32 &= 0xff000000;
171 reg32 |= 0x5555aa;
172 sir_write(dev, 0x54, reg32);
173 sir_write(dev, 0x64, 0xcccc8484);
174 reg32 = sir_read(dev, 0x68);
175 reg32 &= 0xffff0000;
176 reg32 |= 0xcccc;
177 sir_write(dev, 0x68, reg32);
178 reg32 = sir_read(dev, 0x78);
179 reg32 &= 0x0000ffff;
180 reg32 |= 0x88880000;
181 sir_write(dev, 0x78, reg32);
182 sir_write(dev, 0x84, 0x001c7000);
183 sir_write(dev, 0x88, 0x88338822);
184 sir_write(dev, 0xa0, 0x001c7000);
185 // a4
186 sir_write(dev, 0xc4, 0x0c0c0c0c);
187 sir_write(dev, 0xc8, 0x0c0c0c0c);
188 sir_write(dev, 0xd4, 0x10000000);
189
190 pch_iobp_update(0xea004001, 0x3fffffff, 0xc0000000);
191 pch_iobp_update(0xea00408a, 0xfffffcff, 0x00000100);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200192}
193
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200194static void sata_enable(struct device *dev)
Stefan Reinauer816d0812012-04-30 16:42:07 -0700195{
196 /* Get the chip configuration */
197 config_t *config = dev->chip_info;
198 u16 map = 0;
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100199 u8 sata_mode;
Stefan Reinauer816d0812012-04-30 16:42:07 -0700200
201 if (!config)
202 return;
203
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100204 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
205 sata_mode = 0;
206
Stefan Reinauer816d0812012-04-30 16:42:07 -0700207 /*
208 * Set SATA controller mode early so the resource allocator can
209 * properly assign IO/Memory resources for the controller.
210 */
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100211 if (sata_mode == 0)
Stefan Reinauer816d0812012-04-30 16:42:07 -0700212 map = 0x0060;
213
214 map |= (config->sata_port_map ^ 0x3f) << 8;
215
216 pci_write_config16(dev, 0x90, map);
217}
218
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600219static const char *sata_acpi_name(const struct device *dev)
Patrick Rudolph604f6982017-06-07 09:46:52 +0200220{
221 return "SATA";
222}
223
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200224static void sata_fill_ssdt(struct device *dev)
Alexander Couzens7bf47ee2015-04-16 02:00:21 +0200225{
226 config_t *config = dev->chip_info;
227 generate_sata_ssdt_ports("\\_SB_.PCI0.SATA", config->sata_port_map);
228}
229
Stefan Reinauer8e073822012-04-04 00:07:22 +0200230static struct pci_operations sata_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +0530231 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200232};
233
234static struct device_operations sata_ops = {
235 .read_resources = pci_dev_read_resources,
236 .set_resources = pci_dev_set_resources,
237 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200238 .acpi_fill_ssdt = sata_fill_ssdt,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200239 .init = sata_init,
Stefan Reinauer816d0812012-04-30 16:42:07 -0700240 .enable = sata_enable,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200241 .ops_pci = &sata_pci_ops,
Patrick Rudolph604f6982017-06-07 09:46:52 +0200242 .acpi_name = sata_acpi_name,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200243};
244
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700245static const unsigned short pci_device_ids[] = { 0x1c00, 0x1c01, 0x1c02, 0x1c03,
246 0x1e00, 0x1e01, 0x1e02, 0x1e03,
247 0 };
248
249static const struct pci_driver pch_sata __pci_driver = {
250 .ops = &sata_ops,
251 .vendor = PCI_VENDOR_ID_INTEL,
252 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200253};