1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/mmio.h>
4 #include <device/pci_ops.h>
5 #include <console/console.h>
6 #include <device/device.h>
7 #include <device/pci.h>
8 #include <device/pci_ids.h>
10 #include <acpi/acpi_sata.h>
16 static inline u32
sir_read(struct device
*dev
, int idx
)
18 pci_write_config32(dev
, SATA_SIRI
, idx
);
19 return pci_read_config32(dev
, SATA_SIRD
);
22 static inline void sir_write(struct device
*dev
, int idx
, u32 value
)
24 pci_write_config32(dev
, SATA_SIRI
, idx
);
25 pci_write_config32(dev
, SATA_SIRD
, value
);
28 static void sata_init(struct device
*dev
)
32 /* Get the chip configuration */
33 const struct southbridge_intel_ibexpeak_config
*config
= dev
->chip_info
;
35 printk(BIOS_DEBUG
, "SATA: Initializing...\n");
38 printk(BIOS_ERR
, "SATA: ERROR: Device not in devicetree.cb!\n");
43 u8 sata_mode
= get_uint_option("sata_mode", 0);
45 /* SATA configuration */
48 pci_write_config16(dev
, PCI_COMMAND
,
49 PCI_COMMAND_MASTER
| PCI_COMMAND_MEMORY
| PCI_COMMAND_IO
);
55 printk(BIOS_DEBUG
, "SATA: Controller in AHCI mode.\n");
57 /* Set Interrupt Line */
58 /* Interrupt Pin is set by D31IP.PIP */
59 pci_write_config8(dev
, INTR_LN
, 0x0b);
62 pci_write_config16(dev
, IDE_TIM_PRI
, IDE_DECODE_ENABLE
);
63 pci_write_config16(dev
, IDE_TIM_SEC
, IDE_DECODE_ENABLE
);
65 /* for AHCI, Port Enable is managed in memory mapped space */
66 reg16
= pci_read_config16(dev
, 0x92);
67 reg16
&= ~0x3f; /* 6 ports SKU + ORM */
68 reg16
|= 0x8100 | config
->sata_port_map
;
69 pci_write_config16(dev
, 0x92, reg16
);
71 /* SATA Initialization register */
72 pci_write_config32(dev
, 0x94,
74 sata_port_map
^ 0x3f) << 24) | 0x183 |
76 pci_write_config32(dev
, 0x98, 0x00590200);
78 /* Initialize AHCI memory-mapped space */
79 abar
= (u32
*)(uintptr_t)pci_read_config32(dev
, PCI_BASE_ADDRESS_5
);
80 printk(BIOS_DEBUG
, "ABAR: %p\n", abar
);
81 /* CAP (HBA Capabilities) : enable power management */
82 reg32
= read32(abar
+ 0x00);
83 reg32
|= 0x0c006000; // set PSC+SSC+SALP+SSS
84 reg32
&= ~0x00020060; // clear SXS+EMS+PMS
85 /* Set ISS, if available */
86 if (config
->sata_interface_speed_support
) {
88 reg32
|= (config
->sata_interface_speed_support
& 0x03)
91 write32(abar
+ 0x00, reg32
);
92 /* PI (Ports implemented) */
93 write32(abar
+ 0x03, config
->sata_port_map
);
94 (void)read32(abar
+ 0x03); /* Read back 1 */
95 (void)read32(abar
+ 0x03); /* Read back 2 */
96 /* CAP2 (HBA Capabilities Extended) */
97 reg32
= read32(abar
+ 0x09);
99 write32(abar
+ 0x09, reg32
);
100 /* VSP (Vendor Specific Register */
101 reg32
= read32(abar
+ 0x28);
102 reg32
&= ~0x00000005;
103 write32(abar
+ 0x28, reg32
);
106 printk(BIOS_DEBUG
, "SATA: Controller in plain mode.\n");
108 /* No AHCI: clear AHCI base */
109 pci_write_config32(dev
, 0x24, 0x00000000);
111 /* And without AHCI BAR no memory decoding */
112 reg16
= pci_read_config16(dev
, PCI_COMMAND
);
113 reg16
&= ~PCI_COMMAND_MEMORY
;
114 pci_write_config16(dev
, PCI_COMMAND
, reg16
);
116 /* Native mode capable on both primary and secondary (0xa)
117 * or'ed with enabled (0x50) = 0xf
119 pci_write_config8(dev
, 0x09, 0x8f);
121 /* Set Interrupt Line */
122 /* Interrupt Pin is set by D31IP.PIP */
123 pci_write_config8(dev
, INTR_LN
, 0xff);
126 pci_write_config16(dev
, IDE_TIM_PRI
, IDE_DECODE_ENABLE
);
127 pci_write_config16(dev
, IDE_TIM_SEC
, IDE_DECODE_ENABLE
);
130 reg16
= pci_read_config16(dev
, 0x92);
132 reg16
|= config
->sata_port_map
;
133 pci_write_config16(dev
, 0x92, reg16
);
135 /* SATA Initialization register */
136 pci_write_config32(dev
, 0x94,
138 sata_port_map
^ 0x3f) << 24) | 0x183);
141 /* Additional Programming Requirements */
142 sir_write(dev
, 0x04, 0x00000000);
143 sir_write(dev
, 0x28, 0x0a000033);
144 reg32
= sir_read(dev
, 0x54);
147 sir_write(dev
, 0x54, reg32
);
148 sir_write(dev
, 0x64, 0xcccccccc);
149 reg32
= sir_read(dev
, 0x68);
152 sir_write(dev
, 0x68, reg32
);
153 reg32
= sir_read(dev
, 0x78);
156 sir_write(dev
, 0x78, reg32
);
157 sir_write(dev
, 0x84, 0x001c7000);
158 sir_write(dev
, 0x88, 0x88888888);
159 sir_write(dev
, 0xa0, 0x001c7000);
161 sir_write(dev
, 0xc4, 0x0c0c0c0c);
162 sir_write(dev
, 0xc8, 0x0c0c0c0c);
163 sir_write(dev
, 0xd4, 0x10000000);
166 static void sata_enable(struct device
*dev
)
168 /* Get the chip configuration */
169 const struct southbridge_intel_ibexpeak_config
*config
= dev
->chip_info
;
175 u8 sata_mode
= get_uint_option("sata_mode", 0);
178 * Set SATA controller mode early so the resource allocator can
179 * properly assign IO/Memory resources for the controller.
184 map
|= (config
->sata_port_map
^ 0x3f) << 8;
186 pci_write_config16(dev
, 0x90, map
);
189 static void sata_fill_ssdt(const struct device
*dev
)
191 const struct southbridge_intel_ibexpeak_config
*config
= dev
->chip_info
;
192 generate_sata_ssdt_ports("\\_SB_.PCI0.SATA", config
->sata_port_map
);
195 static struct device_operations sata_ops
= {
196 .read_resources
= pci_dev_read_resources
,
197 .set_resources
= pci_dev_set_resources
,
198 .enable_resources
= pci_dev_enable_resources
,
200 .enable
= sata_enable
,
201 .acpi_fill_ssdt
= sata_fill_ssdt
,
202 .ops_pci
= &pci_dev_ops_pci
,
205 static const unsigned short pci_device_ids
[] = {
206 PCI_DID_INTEL_IBEXPEAK_MOBILE_SATA_IDE_1
,
207 PCI_DID_INTEL_IBEXPEAK_MOBILE_SATA_AHCI
,
208 PCI_DID_INTEL_IBEXPEAK_MOBILE_SATA_IDE_2
,
212 static const struct pci_driver pch_sata __pci_driver
= {
214 .vendor
= PCI_VID_INTEL
,
215 .devices
= pci_device_ids
,