blob: 2693e2b63a3c833e39e6af5219d305d2df83df5f [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
Felix Singer192666f2020-04-06 10:54:42 +0200117 /* Without AHCI BAR no memory decoding */
Stefan Reinauer8e073822012-04-04 00:07:22 +0200118 reg16 = pci_read_config16(dev, PCI_COMMAND);
119 reg16 &= ~PCI_COMMAND_MEMORY;
120 pci_write_config16(dev, PCI_COMMAND, reg16);
121
122 /* Native mode capable on both primary and secondary (0xa)
123 * or'ed with enabled (0x50) = 0xf
124 */
125 pci_write_config8(dev, 0x09, 0x8f);
126
Stefan Reinauer8e073822012-04-04 00:07:22 +0200127 /* Set timings */
128 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
129 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
130 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
131 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
132 IDE_SITRE | IDE_ISP_3_CLOCKS |
133 IDE_RCT_1_CLOCKS | IDE_IE0 | IDE_TIME0);
134
135 /* Sync DMA */
136 pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0 | IDE_PSDE0);
137 pci_write_config16(dev, IDE_SDMA_TIM, 0x0201);
138
139 /* Set IDE I/O Configuration */
140 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
141 pci_write_config32(dev, IDE_CONFIG, reg32);
142
143 /* Port enable */
144 reg16 = pci_read_config16(dev, 0x92);
145 reg16 &= ~0x3f;
146 reg16 |= config->sata_port_map;
147 pci_write_config16(dev, 0x92, reg16);
148
149 /* SATA Initialization register */
150 pci_write_config32(dev, 0x94,
151 ((config->sata_port_map ^ 0x3f) << 24) | 0x183);
152 }
Duncan Lauriecfb64bd2012-07-16 16:16:31 -0700153
154 /* Set Gen3 Transmitter settings if needed */
155 if (config->sata_port0_gen3_tx)
156 pch_iobp_update(SATA_IOBP_SP0G3IR, 0,
157 config->sata_port0_gen3_tx);
158
159 if (config->sata_port1_gen3_tx)
160 pch_iobp_update(SATA_IOBP_SP1G3IR, 0,
161 config->sata_port1_gen3_tx);
Stefan Reinauer16b022a2012-07-17 16:42:51 -0700162
163 /* Additional Programming Requirements */
164 sir_write(dev, 0x04, 0x00001600);
165 sir_write(dev, 0x28, 0xa0000033);
166 reg32 = sir_read(dev, 0x54);
167 reg32 &= 0xff000000;
168 reg32 |= 0x5555aa;
169 sir_write(dev, 0x54, reg32);
170 sir_write(dev, 0x64, 0xcccc8484);
171 reg32 = sir_read(dev, 0x68);
172 reg32 &= 0xffff0000;
173 reg32 |= 0xcccc;
174 sir_write(dev, 0x68, reg32);
175 reg32 = sir_read(dev, 0x78);
176 reg32 &= 0x0000ffff;
177 reg32 |= 0x88880000;
178 sir_write(dev, 0x78, reg32);
179 sir_write(dev, 0x84, 0x001c7000);
180 sir_write(dev, 0x88, 0x88338822);
181 sir_write(dev, 0xa0, 0x001c7000);
182 // a4
183 sir_write(dev, 0xc4, 0x0c0c0c0c);
184 sir_write(dev, 0xc8, 0x0c0c0c0c);
185 sir_write(dev, 0xd4, 0x10000000);
186
187 pch_iobp_update(0xea004001, 0x3fffffff, 0xc0000000);
188 pch_iobp_update(0xea00408a, 0xfffffcff, 0x00000100);
Stefan Reinauer8e073822012-04-04 00:07:22 +0200189}
190
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200191static void sata_enable(struct device *dev)
Stefan Reinauer816d0812012-04-30 16:42:07 -0700192{
193 /* Get the chip configuration */
194 config_t *config = dev->chip_info;
195 u16 map = 0;
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100196 u8 sata_mode;
Stefan Reinauer816d0812012-04-30 16:42:07 -0700197
198 if (!config)
199 return;
200
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100201 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
202 sata_mode = 0;
203
Stefan Reinauer816d0812012-04-30 16:42:07 -0700204 /*
205 * Set SATA controller mode early so the resource allocator can
206 * properly assign IO/Memory resources for the controller.
207 */
Vladimir Serbinenko6d6298d2014-01-11 07:46:50 +0100208 if (sata_mode == 0)
Stefan Reinauer816d0812012-04-30 16:42:07 -0700209 map = 0x0060;
210
211 map |= (config->sata_port_map ^ 0x3f) << 8;
212
213 pci_write_config16(dev, 0x90, map);
214}
215
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600216static const char *sata_acpi_name(const struct device *dev)
Patrick Rudolph604f6982017-06-07 09:46:52 +0200217{
218 return "SATA";
219}
220
Elyes HAOUAS4aec3402018-05-25 08:29:27 +0200221static void sata_fill_ssdt(struct device *dev)
Alexander Couzens7bf47ee2015-04-16 02:00:21 +0200222{
223 config_t *config = dev->chip_info;
224 generate_sata_ssdt_ports("\\_SB_.PCI0.SATA", config->sata_port_map);
225}
226
Stefan Reinauer8e073822012-04-04 00:07:22 +0200227static struct pci_operations sata_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +0530228 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200229};
230
231static struct device_operations sata_ops = {
232 .read_resources = pci_dev_read_resources,
233 .set_resources = pci_dev_set_resources,
234 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200235 .acpi_fill_ssdt = sata_fill_ssdt,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200236 .init = sata_init,
Stefan Reinauer816d0812012-04-30 16:42:07 -0700237 .enable = sata_enable,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200238 .ops_pci = &sata_pci_ops,
Patrick Rudolph604f6982017-06-07 09:46:52 +0200239 .acpi_name = sata_acpi_name,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200240};
241
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700242static const unsigned short pci_device_ids[] = { 0x1c00, 0x1c01, 0x1c02, 0x1c03,
243 0x1e00, 0x1e01, 0x1e02, 0x1e03,
244 0 };
245
246static const struct pci_driver pch_sata __pci_driver = {
247 .ops = &sata_ops,
248 .vendor = PCI_VENDOR_ID_INTEL,
249 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200250};