blob: c90c096a854c4d2e2e9f16459f819576ee1e7024 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05005#include <console/console.h>
6#include <device/device.h>
7#include <device/pci.h>
8#include <device/pci_ids.h>
Duncan Laurie26e7dd72012-12-19 09:12:31 -08009#include <delay.h>
Kyösti Mälkki12b121c2019-08-18 16:33:39 +030010#include "chip.h"
Angel Pons2178b722020-05-31 00:55:35 +020011#include "iobp.h"
Aaron Durbin76c37002012-10-30 09:03:43 -050012#include "pch.h"
13
Angel Ponsbe6ad1a2020-10-30 13:55:23 +010014#if CONFIG(INTEL_LYNXPOINT_LP)
15#define SATA_PORT_MASK 0x0f
16#else
17#define SATA_PORT_MASK 0x3f
18#endif
19
Aaron Durbin76c37002012-10-30 09:03:43 -050020static inline u32 sir_read(struct device *dev, int idx)
21{
22 pci_write_config32(dev, SATA_SIRI, idx);
23 return pci_read_config32(dev, SATA_SIRD);
24}
25
26static inline void sir_write(struct device *dev, int idx, u32 value)
27{
28 pci_write_config32(dev, SATA_SIRI, idx);
29 pci_write_config32(dev, SATA_SIRD, value);
30}
31
Angel Ponsd00af4f2020-10-30 12:56:02 +010032static inline void sir_unset_and_set_mask(struct device *dev, int idx, u32 unset, u32 set)
33{
34 pci_write_config32(dev, SATA_SIRI, idx);
35
36 const u32 value = pci_read_config32(dev, SATA_SIRD) & ~unset;
37 pci_write_config32(dev, SATA_SIRD, value | set);
38}
39
Aaron Durbin76c37002012-10-30 09:03:43 -050040static void sata_init(struct device *dev)
41{
42 u32 reg32;
Angel Pons8084b382020-10-30 10:56:31 +010043
44 u32 *abar;
45
Aaron Durbin76c37002012-10-30 09:03:43 -050046 /* Get the chip configuration */
Angel Ponsefebedd2021-09-08 16:16:58 +020047 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
Aaron Durbin76c37002012-10-30 09:03:43 -050048
49 printk(BIOS_DEBUG, "SATA: Initializing...\n");
50
51 if (config == NULL) {
52 printk(BIOS_ERR, "SATA: ERROR: Device not in devicetree.cb!\n");
53 return;
54 }
55
56 /* SATA configuration */
57
Angel Pons1b856922020-10-30 15:30:48 +010058 /* Enable memory space decoding for ABAR */
59 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
Aaron Durbin76c37002012-10-30 09:03:43 -050060
Angel Pons8084b382020-10-30 10:56:31 +010061 printk(BIOS_DEBUG, "SATA: Controller in AHCI mode.\n");
Aaron Durbin76c37002012-10-30 09:03:43 -050062
Angel Pons8084b382020-10-30 10:56:31 +010063 /* Set Interrupt Line */
64 /* Interrupt Pin is set by D31IP.PIP */
Angel Pons93859e32020-11-02 12:08:50 +010065 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0x0a);
Angel Ponsbf9bc502020-06-08 00:12:43 +020066
Angel Pons93859e32020-11-02 12:08:50 +010067 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE);
68 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE);
Aaron Durbin76c37002012-10-30 09:03:43 -050069
Angel Pons8084b382020-10-30 10:56:31 +010070 /* for AHCI, Port Enable is managed in memory mapped space */
Angel Ponsbe6ad1a2020-10-30 13:55:23 +010071 pci_update_config16(dev, 0x92, ~SATA_PORT_MASK, 0x8000 | config->sata_port_map);
Angel Pons8084b382020-10-30 10:56:31 +010072 udelay(2);
Aaron Durbin76c37002012-10-30 09:03:43 -050073
Angel Pons8084b382020-10-30 10:56:31 +010074 /* Setup register 98h */
Angel Pons9b629ad2020-11-02 12:13:23 +010075 reg32 = pci_read_config32(dev, 0x98);
Angel Pons8084b382020-10-30 10:56:31 +010076 reg32 |= 1 << 19; /* BWG step 6 */
77 reg32 |= 1 << 22; /* BWG step 5 */
78 reg32 &= ~(0x3f << 7);
79 reg32 |= 0x04 << 7; /* BWG step 7 */
80 reg32 |= 1 << 20; /* BWG step 8 */
81 reg32 &= ~(0x03 << 5);
82 reg32 |= 1 << 5; /* BWG step 9 */
83 reg32 |= 1 << 18; /* BWG step 10 */
84 reg32 |= 1 << 29; /* BWG step 11 */
85 if (pch_is_lp()) {
86 reg32 &= ~((1 << 31) | (1 << 30));
87 reg32 |= 1 << 23;
88 reg32 |= 1 << 24; /* Disable listen mode (hotplug) */
Aaron Durbin76c37002012-10-30 09:03:43 -050089 }
Angel Pons8084b382020-10-30 10:56:31 +010090 pci_write_config32(dev, 0x98, reg32);
91
92 /* Setup register 9Ch: Disable alternate ID and BWG step 12 */
93 pci_write_config16(dev, 0x9c, 1 << 5);
94
95 /* SATA Initialization register */
96 reg32 = 0x183;
Angel Ponsbe6ad1a2020-10-30 13:55:23 +010097 reg32 |= (config->sata_port_map ^ SATA_PORT_MASK) << 24;
Angel Pons8084b382020-10-30 10:56:31 +010098 reg32 |= (config->sata_devslp_mux & 1) << 15;
99 pci_write_config32(dev, 0x94, reg32);
100
101 /* Initialize AHCI memory-mapped space */
102 abar = (u32 *)pci_read_config32(dev, PCI_BASE_ADDRESS_5);
103 printk(BIOS_DEBUG, "ABAR: %p\n", abar);
104 /* CAP (HBA Capabilities) : enable power management */
105 reg32 = read32(abar + 0x00);
106 reg32 |= 0x0c006000; // set PSC+SSC+SALP+SSS
107 reg32 &= ~0x00020060; // clear SXS+EMS+PMS
108 if (pch_is_lp())
109 reg32 |= (1 << 18); // SAM: SATA AHCI MODE ONLY
110 write32(abar + 0x00, reg32);
111 /* PI (Ports implemented) */
112 write32(abar + 0x03, config->sata_port_map);
113 (void)read32(abar + 0x03); /* Read back 1 */
114 (void)read32(abar + 0x03); /* Read back 2 */
115 /* CAP2 (HBA Capabilities Extended)*/
116 reg32 = read32(abar + 0x09);
117 /* Enable DEVSLP */
118 if (pch_is_lp()) {
119 if (config->sata_devslp_disable)
120 reg32 &= ~(1 << 3);
121 else
122 reg32 |= (1 << 5)|(1 << 4)|(1 << 3)|(1 << 2);
123 } else {
124 reg32 &= ~0x00000002;
125 }
126 write32(abar + 0x09, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500127
128 /* Set Gen3 Transmitter settings if needed */
129 if (config->sata_port0_gen3_tx)
130 pch_iobp_update(SATA_IOBP_SP0G3IR, 0,
131 config->sata_port0_gen3_tx);
132
133 if (config->sata_port1_gen3_tx)
134 pch_iobp_update(SATA_IOBP_SP1G3IR, 0,
135 config->sata_port1_gen3_tx);
136
Shawn Nematbakhsh28752272013-08-13 10:45:21 -0700137 /* Set Gen3 DTLE DATA / EDGE registers if needed */
138 if (config->sata_port0_gen3_dtle) {
139 pch_iobp_update(SATA_IOBP_SP0DTLE_DATA,
140 ~(SATA_DTLE_MASK << SATA_DTLE_DATA_SHIFT),
141 (config->sata_port0_gen3_dtle & SATA_DTLE_MASK)
142 << SATA_DTLE_DATA_SHIFT);
143
144 pch_iobp_update(SATA_IOBP_SP0DTLE_EDGE,
145 ~(SATA_DTLE_MASK << SATA_DTLE_EDGE_SHIFT),
146 (config->sata_port0_gen3_dtle & SATA_DTLE_MASK)
147 << SATA_DTLE_EDGE_SHIFT);
148 }
149
150 if (config->sata_port1_gen3_dtle) {
151 pch_iobp_update(SATA_IOBP_SP1DTLE_DATA,
152 ~(SATA_DTLE_MASK << SATA_DTLE_DATA_SHIFT),
153 (config->sata_port1_gen3_dtle & SATA_DTLE_MASK)
154 << SATA_DTLE_DATA_SHIFT);
155
156 pch_iobp_update(SATA_IOBP_SP1DTLE_EDGE,
157 ~(SATA_DTLE_MASK << SATA_DTLE_EDGE_SHIFT),
158 (config->sata_port1_gen3_dtle & SATA_DTLE_MASK)
159 << SATA_DTLE_EDGE_SHIFT);
160 }
161
Aaron Durbin76c37002012-10-30 09:03:43 -0500162 /* Additional Programming Requirements */
Duncan Laurie74c0d052012-12-17 11:31:40 -0800163 /* Power Optimizer */
Duncan Laurie74c0d052012-12-17 11:31:40 -0800164
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800165 /* Step 1 */
Duncan Laurie70f04b42013-03-08 17:17:33 -0800166 if (pch_is_lp())
167 sir_write(dev, 0x64, 0x883c9003);
168 else
169 sir_write(dev, 0x64, 0x883c9001);
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800170
171 /* Step 2: SIR 68h[15:0] = 880Ah */
Angel Ponsd00af4f2020-10-30 12:56:02 +0100172 sir_unset_and_set_mask(dev, 0x68, 0xffff, 0x880a);
Aaron Durbin76c37002012-10-30 09:03:43 -0500173
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800174 /* Step 3: SIR 60h[3] = 1 */
Angel Ponsd00af4f2020-10-30 12:56:02 +0100175 sir_unset_and_set_mask(dev, 0x60, 0, 1 << 3);
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800176
177 /* Step 4: SIR 60h[0] = 1 */
Angel Ponsd00af4f2020-10-30 12:56:02 +0100178 sir_unset_and_set_mask(dev, 0x60, 0, 1 << 0);
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800179
180 /* Step 5: SIR 60h[1] = 1 */
Angel Ponsd00af4f2020-10-30 12:56:02 +0100181 sir_unset_and_set_mask(dev, 0x60, 0, 1 << 1);
Duncan Laurie74c0d052012-12-17 11:31:40 -0800182
183 /* Clock Gating */
184 sir_write(dev, 0x70, 0x3f00bf1f);
Duncan Laurie70f04b42013-03-08 17:17:33 -0800185 if (pch_is_lp()) {
186 sir_write(dev, 0x54, 0xcf000f0f);
187 sir_write(dev, 0x58, 0x00190000);
Angel Pons9ffb57c2020-10-30 13:48:46 +0100188 RCBA32_AND_OR(0x333c, 0xffcfffff, 0x00c00000);
Duncan Laurie70f04b42013-03-08 17:17:33 -0800189 }
Duncan Laurie74c0d052012-12-17 11:31:40 -0800190
191 reg32 = pci_read_config32(dev, 0x300);
192 reg32 |= (1 << 17) | (1 << 16);
Angel Pons8963f7d2020-10-24 12:20:28 +0200193 reg32 |= (1 << 31) | (1 << 30) | (1 << 29);
Duncan Laurie74c0d052012-12-17 11:31:40 -0800194 pci_write_config32(dev, 0x300, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500195}
196
Elyes HAOUAS7a5f7712018-06-08 17:20:38 +0200197static void sata_enable(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500198{
199 /* Get the chip configuration */
Angel Ponsefebedd2021-09-08 16:16:58 +0200200 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
Aaron Durbin76c37002012-10-30 09:03:43 -0500201
202 if (!config)
203 return;
204
205 /*
206 * Set SATA controller mode early so the resource allocator can
207 * properly assign IO/Memory resources for the controller.
208 */
Angel Ponsbe6ad1a2020-10-30 13:55:23 +0100209 pci_write_config16(dev, 0x90, 0x0060 | (config->sata_port_map ^ SATA_PORT_MASK) << 8);
Aaron Durbin76c37002012-10-30 09:03:43 -0500210}
211
Aaron Durbin76c37002012-10-30 09:03:43 -0500212static struct device_operations sata_ops = {
213 .read_resources = pci_dev_read_resources,
214 .set_resources = pci_dev_set_resources,
215 .enable_resources = pci_dev_enable_resources,
216 .init = sata_init,
217 .enable = sata_enable,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200218 .ops_pci = &pci_dev_ops_pci,
Aaron Durbin76c37002012-10-30 09:03:43 -0500219};
220
Duncan Laurie74c0d052012-12-17 11:31:40 -0800221static const unsigned short pci_device_ids[] = {
Felix Singer4ea08f92020-11-20 12:56:44 +0000222 PCI_DEVICE_ID_INTEL_LPT_H_DESKTOP_SATA_IDE,
223 PCI_DEVICE_ID_INTEL_LPT_H_DESKTOP_SATA_AHCI,
224 PCI_DEVICE_ID_INTEL_LPT_H_DESKTOP_SATA_RAID_1,
225 PCI_DEVICE_ID_INTEL_LPT_H_DESKTOP_SATA_RAID_PREM,
226 PCI_DEVICE_ID_INTEL_LPT_H_DESKTOP_SATA_IDE_P45,
227 PCI_DEVICE_ID_INTEL_LPT_H_DESKTOP_SATA_RAID_2,
228 PCI_DEVICE_ID_INTEL_LPT_H_MOBILE_SATA_IDE,
229 PCI_DEVICE_ID_INTEL_LPT_H_MOBILE_SATA_AHCI,
230 PCI_DEVICE_ID_INTEL_LPT_H_MOBILE_SATA_RAID_1,
231 PCI_DEVICE_ID_INTEL_LPT_H_MOBILE_SATA_RAID_PREM,
232 PCI_DEVICE_ID_INTEL_LPT_H_MOBILE_SATA_IDE_P45,
233 PCI_DEVICE_ID_INTEL_LPT_H_MOBILE_SATA_RAID_2,
234 PCI_DEVICE_ID_INTEL_LPT_LP_SATA_AHCI,
235 PCI_DEVICE_ID_INTEL_LPT_LP_SATA_RAID_1,
236 PCI_DEVICE_ID_INTEL_LPT_LP_SATA_RAID_PREM,
237 PCI_DEVICE_ID_INTEL_LPT_LP_SATA_RAID_2,
Duncan Laurie74c0d052012-12-17 11:31:40 -0800238 0
239};
Aaron Durbin76c37002012-10-30 09:03:43 -0500240
241static const struct pci_driver pch_sata __pci_driver = {
242 .ops = &sata_ops,
243 .vendor = PCI_VENDOR_ID_INTEL,
244 .devices = pci_device_ids,
245};