sb/intel/bd82x6x/sata: Set values as described in BIOS spec
[coreboot.git] / src / southbridge / intel / bd82x6x / sata.c
blobc1b61f24c6efaaabb3f01dd7ee28ef5f05f30205
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* This file is part of the coreboot project. */
4 #include <device/mmio.h>
5 #include <device/pci_ops.h>
6 #include <console/console.h>
7 #include <device/device.h>
8 #include <device/pci.h>
9 #include <device/pci_ids.h>
10 #include <option.h>
11 #include <acpi/sata.h>
12 #include <types.h>
14 #include "chip.h"
15 #include "pch.h"
17 typedef struct southbridge_intel_bd82x6x_config config_t;
19 static inline u32 sir_read(struct device *dev, int idx)
21 pci_write_config32(dev, SATA_SIRI, idx);
22 return pci_read_config32(dev, SATA_SIRD);
25 static inline void sir_write(struct device *dev, int idx, u32 value)
27 pci_write_config32(dev, SATA_SIRI, idx);
28 pci_write_config32(dev, SATA_SIRD, value);
31 static void sata_init(struct device *dev)
33 u32 reg32;
34 u16 reg16;
35 /* Get the chip configuration */
36 config_t *config = dev->chip_info;
37 u8 sata_mode;
39 printk(BIOS_DEBUG, "SATA: Initializing...\n");
41 if (config == NULL) {
42 printk(BIOS_ERR, "SATA: ERROR: Device not in devicetree.cb!\n");
43 return;
46 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
47 /* Default to AHCI */
48 sata_mode = 0;
50 /* SATA configuration */
52 /* Enable BARs */
53 pci_write_config16(dev, PCI_COMMAND, 0x0007);
55 /* AHCI */
56 if (sata_mode == 0) {
57 u8 *abar;
59 printk(BIOS_DEBUG, "SATA: Controller in AHCI mode.\n");
61 /* 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);
68 /* Sync DMA */
69 pci_write_config16(dev, IDE_SDMA_CNT, IDE_PSDE0);
70 pci_write_config16(dev, IDE_SDMA_TIM, 0x0001);
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);
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);
82 /* SATA Initialization register */
83 pci_write_config32(dev, 0x94,
84 ((config->sata_port_map ^ 0x3f) << 24) | 0x183);
86 /* Initialize AHCI memory-mapped space */
87 abar = (u8 *)pci_read_config32(dev, PCI_BASE_ADDRESS_5);
88 printk(BIOS_DEBUG, "ABAR: %p\n", abar);
89 /* 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
93 /* Set ISS, if available */
94 if (config->sata_interface_speed_support)
96 reg32 &= ~0x00f00000;
97 reg32 |= (config->sata_interface_speed_support & 0x03)
98 << 20;
100 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 {
114 /* IDE */
115 printk(BIOS_DEBUG, "SATA: Controller in plain mode.\n");
117 /* Without AHCI BAR no memory decoding */
118 reg16 = pci_read_config16(dev, PCI_COMMAND);
119 reg16 &= ~PCI_COMMAND_MEMORY;
120 pci_write_config16(dev, PCI_COMMAND, reg16);
122 /* Native mode capable on both primary and secondary (0xa)
123 * or'ed with enabled (0x50) = 0xf
125 pci_write_config8(dev, 0x09, 0x8f);
127 /* 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);
135 /* Sync DMA */
136 pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0 | IDE_PSDE0);
137 pci_write_config16(dev, IDE_SDMA_TIM, 0x0201);
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);
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);
149 /* SATA Initialization register */
150 pci_write_config32(dev, 0x94,
151 ((config->sata_port_map ^ 0x3f) << 24) | 0x183);
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);
159 if (config->sata_port1_gen3_tx)
160 pch_iobp_update(SATA_IOBP_SP1G3IR, 0,
161 config->sata_port1_gen3_tx);
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);
187 pch_iobp_update(0xea004001, 0x3fffffff, 0xc0000000);
188 pch_iobp_update(0xea00408a, 0xfffffcff, 0x00000100);
190 pci_update_config32(dev, 0x98,
191 ~(1 << 16 | 0x3f << 7 | 3 << 5 | 3 << 3),
192 1 << 24 | 1 << 22 | 1 << 20 | 1 << 19 |
193 1 << 18 | 1 << 14 | 0x04 << 7 | 1 << 3);
196 static void sata_enable(struct device *dev)
198 /* Get the chip configuration */
199 config_t *config = dev->chip_info;
200 u16 map = 0;
201 u8 sata_mode;
203 if (!config)
204 return;
206 if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS)
207 sata_mode = 0;
210 * Set SATA controller mode early so the resource allocator can
211 * properly assign IO/Memory resources for the controller.
213 if (sata_mode == 0)
214 map = 0x0060;
216 map |= (config->sata_port_map ^ 0x3f) << 8;
218 pci_write_config16(dev, 0x90, map);
221 static const char *sata_acpi_name(const struct device *dev)
223 return "SATA";
226 static void sata_fill_ssdt(struct device *dev)
228 config_t *config = dev->chip_info;
229 generate_sata_ssdt_ports("\\_SB_.PCI0.SATA", config->sata_port_map);
232 static struct pci_operations sata_pci_ops = {
233 .set_subsystem = pci_dev_set_subsystem,
236 static struct device_operations sata_ops = {
237 .read_resources = pci_dev_read_resources,
238 .set_resources = pci_dev_set_resources,
239 .enable_resources = pci_dev_enable_resources,
240 .acpi_fill_ssdt = sata_fill_ssdt,
241 .init = sata_init,
242 .enable = sata_enable,
243 .ops_pci = &sata_pci_ops,
244 .acpi_name = sata_acpi_name,
247 static const unsigned short pci_device_ids[] = { 0x1c00, 0x1c01, 0x1c02, 0x1c03,
248 0x1e00, 0x1e01, 0x1e02, 0x1e03,
249 0 };
251 static const struct pci_driver pch_sata __pci_driver = {
252 .ops = &sata_ops,
253 .vendor = PCI_VENDOR_ID_INTEL,
254 .devices = pci_device_ids,