Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 Freescale Semiconductor, Inc. |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 4 | * Copyright 2019 NXP |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 5 | * Author: Tang Yuantian <b29983@freescale.com> |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | e7b0278 | 2022-01-31 07:49:34 -0700 | [diff] [blame] | 9 | #include <blk.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Simon Glass | e7b0278 | 2022-01-31 07:49:34 -0700 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 13 | #include <pci.h> |
| 14 | #include <command.h> |
| 15 | #include <asm/byteorder.h> |
| 16 | #include <malloc.h> |
| 17 | #include <asm/io.h> |
| 18 | #include <fis.h> |
Pavel Herrmann | e46a435 | 2012-09-27 23:18:04 +0000 | [diff] [blame] | 19 | #include <sata.h> |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 20 | #include <libata.h> |
Kim Phillips | 00caa7f | 2012-10-29 13:34:40 +0000 | [diff] [blame] | 21 | #include <sata.h> |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 22 | #include <dm/device-internal.h> |
Simon Glass | e7b0278 | 2022-01-31 07:49:34 -0700 | [diff] [blame] | 23 | #include <linux/delay.h> |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 24 | |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 25 | #include "sata_sil.h" |
| 26 | |
Andre Przywara | 44a4042 | 2020-06-11 12:03:19 +0100 | [diff] [blame] | 27 | #define virt_to_bus(devno, v) dm_pci_virt_to_mem(devno, (void *) (v)) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 28 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 29 | /* just compatible ahci_ops */ |
| 30 | struct sil_ops { |
| 31 | int *rev0; |
| 32 | int *rev1; |
| 33 | int (*scan)(struct udevice *dev); |
| 34 | }; |
| 35 | |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 36 | static struct sata_info sata_info; |
| 37 | |
| 38 | static struct pci_device_id supported[] = { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 39 | { PCI_DEVICE(PCI_VENDOR_ID_SILICONIMAGE, PCI_DEVICE_ID_SIL3131) }, |
| 40 | { PCI_DEVICE(PCI_VENDOR_ID_SILICONIMAGE, PCI_DEVICE_ID_SIL3132) }, |
| 41 | { PCI_DEVICE(PCI_VENDOR_ID_SILICONIMAGE, PCI_DEVICE_ID_SIL3124) }, |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 42 | {} |
| 43 | }; |
| 44 | |
| 45 | static void sil_sata_dump_fis(struct sata_fis_d2h *s) |
| 46 | { |
| 47 | printf("Status FIS dump:\n"); |
| 48 | printf("fis_type: %02x\n", s->fis_type); |
| 49 | printf("pm_port_i: %02x\n", s->pm_port_i); |
| 50 | printf("status: %02x\n", s->status); |
| 51 | printf("error: %02x\n", s->error); |
| 52 | printf("lba_low: %02x\n", s->lba_low); |
| 53 | printf("lba_mid: %02x\n", s->lba_mid); |
| 54 | printf("lba_high: %02x\n", s->lba_high); |
| 55 | printf("device: %02x\n", s->device); |
| 56 | printf("lba_low_exp: %02x\n", s->lba_low_exp); |
| 57 | printf("lba_mid_exp: %02x\n", s->lba_mid_exp); |
| 58 | printf("lba_high_exp: %02x\n", s->lba_high_exp); |
| 59 | printf("res1: %02x\n", s->res1); |
| 60 | printf("sector_count: %02x\n", s->sector_count); |
| 61 | printf("sector_count_exp: %02x\n", s->sector_count_exp); |
| 62 | } |
| 63 | |
| 64 | static const char *sata_spd_string(unsigned int speed) |
| 65 | { |
| 66 | static const char * const spd_str[] = { |
| 67 | "1.5 Gbps", |
| 68 | "3.0 Gbps", |
| 69 | "6.0 Gbps", |
| 70 | }; |
| 71 | |
| 72 | if ((speed - 1) > 2) |
| 73 | return "<unknown>"; |
| 74 | |
| 75 | return spd_str[speed - 1]; |
| 76 | } |
| 77 | |
| 78 | static u32 ata_wait_register(void *reg, u32 mask, |
| 79 | u32 val, int timeout_msec) |
| 80 | { |
| 81 | u32 tmp; |
| 82 | |
| 83 | tmp = readl(reg); |
| 84 | while ((tmp & mask) == val && timeout_msec > 0) { |
| 85 | mdelay(1); |
| 86 | timeout_msec--; |
| 87 | tmp = readl(reg); |
| 88 | } |
| 89 | |
| 90 | return tmp; |
| 91 | } |
| 92 | |
| 93 | static void sil_config_port(void *port) |
| 94 | { |
| 95 | /* configure IRQ WoC */ |
| 96 | writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR); |
| 97 | |
| 98 | /* zero error counters. */ |
| 99 | writew(0x8000, port + PORT_DECODE_ERR_THRESH); |
| 100 | writew(0x8000, port + PORT_CRC_ERR_THRESH); |
| 101 | writew(0x8000, port + PORT_HSHK_ERR_THRESH); |
| 102 | writew(0x0000, port + PORT_DECODE_ERR_CNT); |
| 103 | writew(0x0000, port + PORT_CRC_ERR_CNT); |
| 104 | writew(0x0000, port + PORT_HSHK_ERR_CNT); |
| 105 | |
| 106 | /* always use 64bit activation */ |
| 107 | writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_CLR); |
| 108 | |
| 109 | /* clear port multiplier enable and resume bits */ |
| 110 | writel(PORT_CS_PMP_EN | PORT_CS_PMP_RESUME, port + PORT_CTRL_CLR); |
| 111 | } |
| 112 | |
| 113 | static int sil_init_port(void *port) |
| 114 | { |
| 115 | u32 tmp; |
| 116 | |
| 117 | writel(PORT_CS_INIT, port + PORT_CTRL_STAT); |
| 118 | ata_wait_register(port + PORT_CTRL_STAT, |
| 119 | PORT_CS_INIT, PORT_CS_INIT, 100); |
| 120 | tmp = ata_wait_register(port + PORT_CTRL_STAT, |
| 121 | PORT_CS_RDY, 0, 100); |
| 122 | |
| 123 | if ((tmp & (PORT_CS_INIT | PORT_CS_RDY)) != PORT_CS_RDY) |
| 124 | return 1; |
| 125 | |
| 126 | return 0; |
| 127 | } |
| 128 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 129 | static void sil_read_fis(struct sil_sata *sata, int tag, |
| 130 | struct sata_fis_d2h *fis) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 131 | { |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 132 | void *port = sata->port; |
| 133 | struct sil_prb *prb; |
| 134 | int i; |
| 135 | u32 *src, *dst; |
| 136 | |
| 137 | prb = port + PORT_LRAM + tag * PORT_LRAM_SLOT_SZ; |
| 138 | src = (u32 *)&prb->fis; |
| 139 | dst = (u32 *)fis; |
| 140 | for (i = 0; i < sizeof(struct sata_fis_h2d); i += 4) |
| 141 | *dst++ = readl(src++); |
| 142 | } |
| 143 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 144 | static int sil_exec_cmd(struct sil_sata *sata, struct sil_cmd_block *pcmd, |
| 145 | int tag) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 146 | { |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 147 | void *port = sata->port; |
| 148 | u64 paddr = virt_to_bus(sata->devno, pcmd); |
| 149 | u32 irq_mask, irq_stat; |
| 150 | int rc; |
| 151 | |
| 152 | writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR, port + PORT_IRQ_ENABLE_CLR); |
| 153 | |
| 154 | /* better to add momery barrior here */ |
| 155 | writel((u32)paddr, port + PORT_CMD_ACTIVATE + tag * 8); |
| 156 | writel((u64)paddr >> 32, port + PORT_CMD_ACTIVATE + tag * 8 + 4); |
| 157 | |
| 158 | irq_mask = (PORT_IRQ_COMPLETE | PORT_IRQ_ERROR) << PORT_IRQ_RAW_SHIFT; |
| 159 | irq_stat = ata_wait_register(port + PORT_IRQ_STAT, irq_mask, |
| 160 | 0, 10000); |
| 161 | |
| 162 | /* clear IRQs */ |
| 163 | writel(irq_mask, port + PORT_IRQ_STAT); |
| 164 | irq_stat >>= PORT_IRQ_RAW_SHIFT; |
| 165 | |
| 166 | if (irq_stat & PORT_IRQ_COMPLETE) |
| 167 | rc = 0; |
| 168 | else { |
| 169 | /* force port into known state */ |
| 170 | sil_init_port(port); |
| 171 | if (irq_stat & PORT_IRQ_ERROR) |
| 172 | rc = 1; /* error */ |
| 173 | else |
| 174 | rc = 2; /* busy */ |
| 175 | } |
| 176 | |
| 177 | return rc; |
| 178 | } |
| 179 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 180 | static int sil_cmd_set_feature(struct sil_sata *sata) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 181 | { |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 182 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
| 183 | struct sata_fis_d2h fis; |
| 184 | u8 udma_cap; |
| 185 | int ret; |
| 186 | |
| 187 | memset((void *)&cmdb, 0, sizeof(struct sil_cmd_block)); |
| 188 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 189 | pcmd->prb.fis.pm_port_c = (1 << 7); |
| 190 | pcmd->prb.fis.command = ATA_CMD_SET_FEATURES; |
| 191 | pcmd->prb.fis.features = SETFEATURES_XFER; |
| 192 | |
| 193 | /* First check the device capablity */ |
| 194 | udma_cap = (u8)(sata->udma & 0xff); |
| 195 | debug("udma_cap %02x\n", udma_cap); |
| 196 | |
| 197 | if (udma_cap == ATA_UDMA6) |
| 198 | pcmd->prb.fis.sector_count = XFER_UDMA_6; |
| 199 | if (udma_cap == ATA_UDMA5) |
| 200 | pcmd->prb.fis.sector_count = XFER_UDMA_5; |
| 201 | if (udma_cap == ATA_UDMA4) |
| 202 | pcmd->prb.fis.sector_count = XFER_UDMA_4; |
| 203 | if (udma_cap == ATA_UDMA3) |
| 204 | pcmd->prb.fis.sector_count = XFER_UDMA_3; |
| 205 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 206 | ret = sil_exec_cmd(sata, pcmd, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 207 | if (ret) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 208 | sil_read_fis(sata, 0, &fis); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 209 | printf("Err: exe cmd(0x%x).\n", |
| 210 | readl(sata->port + PORT_SERROR)); |
| 211 | sil_sata_dump_fis(&fis); |
| 212 | return 1; |
| 213 | } |
| 214 | |
| 215 | return 0; |
| 216 | } |
| 217 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 218 | static void sil_sata_init_wcache(struct sil_sata *sata, u16 *id) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 219 | { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 220 | if (ata_id_has_wcache(id) && ata_id_wcache_enabled(id)) |
| 221 | sata->wcache = 1; |
| 222 | if (ata_id_has_flush(id)) |
| 223 | sata->flush = 1; |
| 224 | if (ata_id_has_flush_ext(id)) |
| 225 | sata->flush_ext = 1; |
| 226 | } |
| 227 | |
| 228 | static void sil_sata_set_feature_by_id(struct sil_sata *sata, u16 *id) |
| 229 | { |
| 230 | #ifdef CONFIG_LBA48 |
| 231 | /* Check if support LBA48 */ |
| 232 | if (ata_id_has_lba48(id)) { |
| 233 | sata->lba48 = 1; |
| 234 | debug("Device supports LBA48\n"); |
| 235 | } else { |
| 236 | debug("Device supports LBA28\n"); |
| 237 | } |
| 238 | #endif |
| 239 | |
| 240 | sil_sata_init_wcache(sata, id); |
| 241 | sil_cmd_set_feature(sata); |
| 242 | } |
| 243 | |
| 244 | static int sil_cmd_identify_device(struct sil_sata *sata, u16 *id) |
| 245 | { |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 246 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
| 247 | struct sata_fis_d2h fis; |
| 248 | int ret; |
| 249 | |
| 250 | memset((void *)&cmdb, 0, sizeof(struct sil_cmd_block)); |
| 251 | pcmd->prb.ctrl = cpu_to_le16(PRB_CTRL_PROTOCOL); |
| 252 | pcmd->prb.prot = cpu_to_le16(PRB_PROT_READ); |
| 253 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 254 | pcmd->prb.fis.pm_port_c = (1 << 7); |
| 255 | pcmd->prb.fis.command = ATA_CMD_ID_ATA; |
| 256 | pcmd->sge.addr = cpu_to_le64(virt_to_bus(sata->devno, id)); |
| 257 | pcmd->sge.cnt = cpu_to_le32(sizeof(id[0]) * ATA_ID_WORDS); |
| 258 | pcmd->sge.flags = cpu_to_le32(SGE_TRM); |
| 259 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 260 | ret = sil_exec_cmd(sata, pcmd, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 261 | if (ret) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 262 | sil_read_fis(sata, 0, &fis); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 263 | printf("Err: id cmd(0x%x).\n", readl(sata->port + PORT_SERROR)); |
| 264 | sil_sata_dump_fis(&fis); |
| 265 | return 1; |
| 266 | } |
| 267 | ata_swap_buf_le16(id, ATA_ID_WORDS); |
| 268 | |
| 269 | return 0; |
| 270 | } |
| 271 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 272 | static int sil_cmd_soft_reset(struct sil_sata *sata) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 273 | { |
| 274 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 275 | struct sata_fis_d2h fis; |
| 276 | void *port = sata->port; |
| 277 | int ret; |
| 278 | |
| 279 | /* put the port into known state */ |
| 280 | if (sil_init_port(port)) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 281 | printf("SRST: port %d not ready\n", sata->id); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 282 | return 1; |
| 283 | } |
| 284 | |
| 285 | memset((void *)&cmdb, 0, sizeof(struct sil_cmd_block)); |
| 286 | |
| 287 | pcmd->prb.ctrl = cpu_to_le16(PRB_CTRL_SRST); |
| 288 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 289 | pcmd->prb.fis.pm_port_c = 0xf; |
| 290 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 291 | ret = sil_exec_cmd(sata, &cmdb, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 292 | if (ret) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 293 | sil_read_fis(sata, 0, &fis); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 294 | printf("SRST cmd error.\n"); |
| 295 | sil_sata_dump_fis(&fis); |
| 296 | return 1; |
| 297 | } |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 302 | static ulong sil_sata_rw_cmd(struct sil_sata *sata, ulong start, ulong blkcnt, |
| 303 | u8 *buffer, int is_write) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 304 | { |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 305 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
| 306 | struct sata_fis_d2h fis; |
| 307 | u64 block; |
| 308 | int ret; |
| 309 | |
| 310 | block = (u64)start; |
| 311 | memset(pcmd, 0, sizeof(struct sil_cmd_block)); |
| 312 | pcmd->prb.ctrl = cpu_to_le16(PRB_CTRL_PROTOCOL); |
| 313 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 314 | pcmd->prb.fis.pm_port_c = (1 << 7); |
| 315 | if (is_write) { |
| 316 | pcmd->prb.fis.command = ATA_CMD_WRITE; |
| 317 | pcmd->prb.prot = cpu_to_le16(PRB_PROT_WRITE); |
| 318 | } else { |
| 319 | pcmd->prb.fis.command = ATA_CMD_READ; |
| 320 | pcmd->prb.prot = cpu_to_le16(PRB_PROT_READ); |
| 321 | } |
| 322 | |
| 323 | pcmd->prb.fis.device = ATA_LBA; |
| 324 | pcmd->prb.fis.device |= (block >> 24) & 0xf; |
| 325 | pcmd->prb.fis.lba_high = (block >> 16) & 0xff; |
| 326 | pcmd->prb.fis.lba_mid = (block >> 8) & 0xff; |
| 327 | pcmd->prb.fis.lba_low = block & 0xff; |
| 328 | pcmd->prb.fis.sector_count = (u8)blkcnt & 0xff; |
| 329 | |
| 330 | pcmd->sge.addr = cpu_to_le64(virt_to_bus(sata->devno, buffer)); |
| 331 | pcmd->sge.cnt = cpu_to_le32(blkcnt * ATA_SECT_SIZE); |
| 332 | pcmd->sge.flags = cpu_to_le32(SGE_TRM); |
| 333 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 334 | ret = sil_exec_cmd(sata, pcmd, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 335 | if (ret) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 336 | sil_read_fis(sata, 0, &fis); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 337 | printf("Err: rw cmd(0x%08x).\n", |
| 338 | readl(sata->port + PORT_SERROR)); |
| 339 | sil_sata_dump_fis(&fis); |
| 340 | return 1; |
| 341 | } |
| 342 | |
| 343 | return blkcnt; |
| 344 | } |
| 345 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 346 | static ulong sil_sata_rw_cmd_ext(struct sil_sata *sata, ulong start, |
| 347 | ulong blkcnt, u8 *buffer, int is_write) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 348 | { |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 349 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
| 350 | struct sata_fis_d2h fis; |
| 351 | u64 block; |
| 352 | int ret; |
| 353 | |
| 354 | block = (u64)start; |
| 355 | memset(pcmd, 0, sizeof(struct sil_cmd_block)); |
| 356 | pcmd->prb.ctrl = cpu_to_le16(PRB_CTRL_PROTOCOL); |
| 357 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 358 | pcmd->prb.fis.pm_port_c = (1 << 7); |
| 359 | if (is_write) { |
| 360 | pcmd->prb.fis.command = ATA_CMD_WRITE_EXT; |
| 361 | pcmd->prb.prot = cpu_to_le16(PRB_PROT_WRITE); |
| 362 | } else { |
| 363 | pcmd->prb.fis.command = ATA_CMD_READ_EXT; |
| 364 | pcmd->prb.prot = cpu_to_le16(PRB_PROT_READ); |
| 365 | } |
| 366 | |
| 367 | pcmd->prb.fis.lba_high_exp = (block >> 40) & 0xff; |
| 368 | pcmd->prb.fis.lba_mid_exp = (block >> 32) & 0xff; |
| 369 | pcmd->prb.fis.lba_low_exp = (block >> 24) & 0xff; |
| 370 | pcmd->prb.fis.lba_high = (block >> 16) & 0xff; |
| 371 | pcmd->prb.fis.lba_mid = (block >> 8) & 0xff; |
| 372 | pcmd->prb.fis.lba_low = block & 0xff; |
| 373 | pcmd->prb.fis.device = ATA_LBA; |
| 374 | pcmd->prb.fis.sector_count_exp = (blkcnt >> 8) & 0xff; |
| 375 | pcmd->prb.fis.sector_count = blkcnt & 0xff; |
| 376 | |
| 377 | pcmd->sge.addr = cpu_to_le64(virt_to_bus(sata->devno, buffer)); |
| 378 | pcmd->sge.cnt = cpu_to_le32(blkcnt * ATA_SECT_SIZE); |
| 379 | pcmd->sge.flags = cpu_to_le32(SGE_TRM); |
| 380 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 381 | ret = sil_exec_cmd(sata, pcmd, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 382 | if (ret) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 383 | sil_read_fis(sata, 0, &fis); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 384 | printf("Err: rw ext cmd(0x%08x).\n", |
| 385 | readl(sata->port + PORT_SERROR)); |
| 386 | sil_sata_dump_fis(&fis); |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | return blkcnt; |
| 391 | } |
| 392 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 393 | static ulong sil_sata_rw_lba28(struct sil_sata *sata, ulong blknr, |
| 394 | lbaint_t blkcnt, const void *buffer, |
| 395 | int is_write) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 396 | { |
| 397 | ulong start, blks, max_blks; |
| 398 | u8 *addr; |
| 399 | |
| 400 | start = blknr; |
| 401 | blks = blkcnt; |
| 402 | addr = (u8 *)buffer; |
| 403 | |
| 404 | max_blks = ATA_MAX_SECTORS; |
| 405 | do { |
| 406 | if (blks > max_blks) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 407 | sil_sata_rw_cmd(sata, start, max_blks, addr, is_write); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 408 | start += max_blks; |
| 409 | blks -= max_blks; |
| 410 | addr += ATA_SECT_SIZE * max_blks; |
| 411 | } else { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 412 | sil_sata_rw_cmd(sata, start, blks, addr, is_write); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 413 | start += blks; |
| 414 | blks = 0; |
| 415 | addr += ATA_SECT_SIZE * blks; |
| 416 | } |
| 417 | } while (blks != 0); |
| 418 | |
| 419 | return blkcnt; |
| 420 | } |
| 421 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 422 | static ulong sil_sata_rw_lba48(struct sil_sata *sata, ulong blknr, |
| 423 | lbaint_t blkcnt, const void *buffer, |
| 424 | int is_write) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 425 | { |
| 426 | ulong start, blks, max_blks; |
| 427 | u8 *addr; |
| 428 | |
| 429 | start = blknr; |
| 430 | blks = blkcnt; |
| 431 | addr = (u8 *)buffer; |
| 432 | |
| 433 | max_blks = ATA_MAX_SECTORS_LBA48; |
| 434 | do { |
| 435 | if (blks > max_blks) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 436 | sil_sata_rw_cmd_ext(sata, start, max_blks, |
| 437 | addr, is_write); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 438 | start += max_blks; |
| 439 | blks -= max_blks; |
| 440 | addr += ATA_SECT_SIZE * max_blks; |
| 441 | } else { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 442 | sil_sata_rw_cmd_ext(sata, start, blks, |
| 443 | addr, is_write); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 444 | start += blks; |
| 445 | blks = 0; |
| 446 | addr += ATA_SECT_SIZE * blks; |
| 447 | } |
| 448 | } while (blks != 0); |
| 449 | |
| 450 | return blkcnt; |
| 451 | } |
| 452 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 453 | static void sil_sata_cmd_flush_cache(struct sil_sata *sata) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 454 | { |
| 455 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
| 456 | |
| 457 | memset((void *)pcmd, 0, sizeof(struct sil_cmd_block)); |
| 458 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 459 | pcmd->prb.fis.pm_port_c = (1 << 7); |
| 460 | pcmd->prb.fis.command = ATA_CMD_FLUSH; |
| 461 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 462 | sil_exec_cmd(sata, pcmd, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 465 | static void sil_sata_cmd_flush_cache_ext(struct sil_sata *sata) |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 466 | { |
| 467 | struct sil_cmd_block cmdb, *pcmd = &cmdb; |
| 468 | |
| 469 | memset((void *)pcmd, 0, sizeof(struct sil_cmd_block)); |
| 470 | pcmd->prb.fis.fis_type = SATA_FIS_TYPE_REGISTER_H2D; |
| 471 | pcmd->prb.fis.pm_port_c = (1 << 7); |
| 472 | pcmd->prb.fis.command = ATA_CMD_FLUSH_EXT; |
| 473 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 474 | sil_exec_cmd(sata, pcmd, 0); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | /* |
| 478 | * SATA interface between low level driver and command layer |
| 479 | */ |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 480 | static ulong sata_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 481 | void *buffer) |
| 482 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 483 | struct sil_sata_priv *priv = dev_get_plat(dev); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 484 | int port_number = priv->port_num; |
| 485 | struct sil_sata *sata = priv->sil_sata_desc[port_number]; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 486 | ulong rc; |
| 487 | |
| 488 | if (sata->lba48) |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 489 | rc = sil_sata_rw_lba48(sata, blknr, blkcnt, buffer, READ_CMD); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 490 | else |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 491 | rc = sil_sata_rw_lba28(sata, blknr, blkcnt, buffer, READ_CMD); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 492 | |
| 493 | return rc; |
| 494 | } |
| 495 | |
| 496 | /* |
| 497 | * SATA interface between low level driver and command layer |
| 498 | */ |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 499 | ulong sata_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 500 | const void *buffer) |
| 501 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 502 | struct sil_sata_priv *priv = dev_get_plat(dev); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 503 | int port_number = priv->port_num; |
| 504 | struct sil_sata *sata = priv->sil_sata_desc[port_number]; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 505 | ulong rc; |
| 506 | |
| 507 | if (sata->lba48) { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 508 | rc = sil_sata_rw_lba48(sata, blknr, blkcnt, buffer, WRITE_CMD); |
| 509 | if (sata->wcache && sata->flush_ext) |
| 510 | sil_sata_cmd_flush_cache_ext(sata); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 511 | } else { |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 512 | rc = sil_sata_rw_lba28(sata, blknr, blkcnt, buffer, WRITE_CMD); |
| 513 | if (sata->wcache && sata->flush) |
| 514 | sil_sata_cmd_flush_cache(sata); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | return rc; |
| 518 | } |
| 519 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 520 | static int sil_init_sata(struct udevice *uc_dev, int dev) |
Nikita Kiryanov | 10ee8ec | 2014-11-21 12:47:23 +0200 | [diff] [blame] | 521 | { |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 522 | struct sil_sata_priv *priv = dev_get_plat(uc_dev); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 523 | struct sil_sata *sata; |
| 524 | void *port; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 525 | u32 tmp; |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 526 | int cnt; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 527 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 528 | printf("SATA#%d:\n", dev); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 529 | |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 530 | port = (void *)sata_info.iobase[1] + |
| 531 | PORT_REGS_SIZE * (dev - sata_info.portbase); |
| 532 | |
| 533 | /* Initial PHY setting */ |
| 534 | writel(0x20c, port + PORT_PHY_CFG); |
| 535 | |
| 536 | /* clear port RST */ |
| 537 | tmp = readl(port + PORT_CTRL_STAT); |
| 538 | if (tmp & PORT_CS_PORT_RST) { |
| 539 | writel(PORT_CS_PORT_RST, port + PORT_CTRL_CLR); |
| 540 | tmp = ata_wait_register(port + PORT_CTRL_STAT, |
| 541 | PORT_CS_PORT_RST, PORT_CS_PORT_RST, 100); |
| 542 | if (tmp & PORT_CS_PORT_RST) |
| 543 | printf("Err: Failed to clear port RST\n"); |
| 544 | } |
| 545 | |
| 546 | /* Check if device is present */ |
| 547 | for (cnt = 0; cnt < 100; cnt++) { |
| 548 | tmp = readl(port + PORT_SSTATUS); |
| 549 | if ((tmp & 0xF) == 0x3) |
| 550 | break; |
| 551 | mdelay(1); |
| 552 | } |
| 553 | |
| 554 | tmp = readl(port + PORT_SSTATUS); |
| 555 | if ((tmp & 0xf) != 0x3) { |
| 556 | printf(" (No RDY)\n"); |
| 557 | return 1; |
| 558 | } |
| 559 | |
| 560 | /* Wait for port ready */ |
| 561 | tmp = ata_wait_register(port + PORT_CTRL_STAT, |
| 562 | PORT_CS_RDY, PORT_CS_RDY, 100); |
| 563 | if ((tmp & PORT_CS_RDY) != PORT_CS_RDY) { |
| 564 | printf("%d port not ready.\n", dev); |
| 565 | return 1; |
| 566 | } |
| 567 | |
| 568 | /* configure port */ |
| 569 | sil_config_port(port); |
| 570 | |
| 571 | /* Reset port */ |
| 572 | writel(PORT_CS_DEV_RST, port + PORT_CTRL_STAT); |
| 573 | readl(port + PORT_CTRL_STAT); |
| 574 | tmp = ata_wait_register(port + PORT_CTRL_STAT, PORT_CS_DEV_RST, |
| 575 | PORT_CS_DEV_RST, 100); |
| 576 | if (tmp & PORT_CS_DEV_RST) { |
| 577 | printf("%d port reset failed.\n", dev); |
| 578 | return 1; |
| 579 | } |
| 580 | |
| 581 | sata = (struct sil_sata *)malloc(sizeof(struct sil_sata)); |
| 582 | if (!sata) { |
| 583 | printf("%d no memory.\n", dev); |
| 584 | return 1; |
| 585 | } |
| 586 | memset((void *)sata, 0, sizeof(struct sil_sata)); |
| 587 | |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 588 | /* Save the private struct to block device struct */ |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 589 | priv->sil_sata_desc[dev] = sata; |
| 590 | priv->port_num = dev; |
Andre Przywara | 44a4042 | 2020-06-11 12:03:19 +0100 | [diff] [blame] | 591 | sata->devno = uc_dev->parent; |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 592 | sata->id = dev; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 593 | sata->port = port; |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 594 | sprintf(sata->name, "SATA#%d", dev); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 595 | sil_cmd_soft_reset(sata); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 596 | tmp = readl(port + PORT_SSTATUS); |
| 597 | tmp = (tmp >> 4) & 0xf; |
| 598 | printf(" (%s)\n", sata_spd_string(tmp)); |
| 599 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 600 | return 0; |
| 601 | } |
| 602 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 603 | static int scan_sata(struct udevice *blk_dev, int dev) |
| 604 | { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 605 | struct blk_desc *desc = dev_get_uclass_plat(blk_dev); |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 606 | struct sil_sata_priv *priv = dev_get_plat(blk_dev); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 607 | struct sil_sata *sata = priv->sil_sata_desc[dev]; |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 608 | unsigned char serial[ATA_ID_SERNO_LEN + 1]; |
| 609 | unsigned char firmware[ATA_ID_FW_REV_LEN + 1]; |
| 610 | unsigned char product[ATA_ID_PROD_LEN + 1]; |
| 611 | u16 *id; |
| 612 | |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 613 | id = (u16 *)malloc(ATA_ID_WORDS * 2); |
| 614 | if (!id) { |
| 615 | printf("Id malloc failed\n"); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 616 | return 1; |
| 617 | } |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 618 | sil_cmd_identify_device(sata, id); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 619 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 620 | sil_sata_set_feature_by_id(sata, id); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 621 | |
| 622 | /* Serial number */ |
| 623 | ata_id_c_string(id, serial, ATA_ID_SERNO, sizeof(serial)); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 624 | |
| 625 | /* Firmware version */ |
| 626 | ata_id_c_string(id, firmware, ATA_ID_FW_REV, sizeof(firmware)); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 627 | |
| 628 | /* Product model */ |
| 629 | ata_id_c_string(id, product, ATA_ID_PROD, sizeof(product)); |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 630 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 631 | memcpy(desc->product, serial, sizeof(serial)); |
| 632 | memcpy(desc->revision, firmware, sizeof(firmware)); |
| 633 | memcpy(desc->vendor, product, sizeof(product)); |
| 634 | desc->lba = ata_id_n_sectors(id); |
| 635 | #ifdef CONFIG_LBA48 |
| 636 | desc->lba48 = sata->lba48; |
| 637 | #endif |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 638 | |
| 639 | #ifdef DEBUG |
Tang Yuantian | 83c484d | 2011-10-07 19:26:58 +0000 | [diff] [blame] | 640 | ata_dump_id(id); |
| 641 | #endif |
| 642 | free((void *)id); |
| 643 | |
| 644 | return 0; |
| 645 | } |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 646 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 647 | static const struct blk_ops sata_sil_blk_ops = { |
| 648 | .read = sata_read, |
| 649 | .write = sata_write, |
| 650 | }; |
| 651 | |
| 652 | U_BOOT_DRIVER(sata_sil_driver) = { |
| 653 | .name = "sata_sil_blk", |
| 654 | .id = UCLASS_BLK, |
| 655 | .ops = &sata_sil_blk_ops, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 656 | .plat_auto = sizeof(struct sil_sata_priv), |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 657 | }; |
| 658 | |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 659 | static int sil_unbind_device(struct udevice *dev) |
| 660 | { |
| 661 | int ret; |
| 662 | |
| 663 | ret = device_remove(dev, DM_REMOVE_NORMAL); |
| 664 | if (ret) |
| 665 | return ret; |
| 666 | |
| 667 | ret = device_unbind(dev); |
| 668 | if (ret) |
| 669 | return ret; |
| 670 | |
| 671 | return 0; |
| 672 | } |
| 673 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 674 | static int sil_pci_probe(struct udevice *dev) |
| 675 | { |
| 676 | struct udevice *blk; |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 677 | int failed_number; |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 678 | char sata_name[10]; |
| 679 | pci_dev_t devno; |
| 680 | u16 word; |
| 681 | int ret; |
| 682 | int i; |
| 683 | |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 684 | failed_number = 0; |
| 685 | |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 686 | /* Get PCI device number */ |
| 687 | devno = dm_pci_get_bdf(dev); |
| 688 | if (devno == -1) |
| 689 | return 1; |
| 690 | |
| 691 | dm_pci_read_config16(dev, PCI_DEVICE_ID, &word); |
| 692 | |
| 693 | /* get the port count */ |
| 694 | word &= 0xf; |
| 695 | |
| 696 | sata_info.portbase = 0; |
| 697 | sata_info.maxport = sata_info.portbase + word; |
| 698 | sata_info.devno = devno; |
| 699 | |
| 700 | /* Read out all BARs */ |
| 701 | sata_info.iobase[0] = (ulong)dm_pci_map_bar(dev, |
Andrew Scull | 2635e3b | 2022-04-21 16:11:13 +0000 | [diff] [blame] | 702 | PCI_BASE_ADDRESS_0, 0, 0, PCI_REGION_TYPE, |
| 703 | PCI_REGION_MEM); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 704 | sata_info.iobase[1] = (ulong)dm_pci_map_bar(dev, |
Andrew Scull | 2635e3b | 2022-04-21 16:11:13 +0000 | [diff] [blame] | 705 | PCI_BASE_ADDRESS_2, 0, 0, PCI_REGION_TYPE, |
| 706 | PCI_REGION_MEM); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 707 | |
| 708 | /* mask out the unused bits */ |
| 709 | sata_info.iobase[0] &= 0xffffff80; |
| 710 | sata_info.iobase[1] &= 0xfffffc00; |
| 711 | |
| 712 | /* Enable Bus Mastering and memory region */ |
| 713 | dm_pci_write_config16(dev, PCI_COMMAND, |
| 714 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
| 715 | |
| 716 | /* Check if mem accesses and Bus Mastering are enabled. */ |
| 717 | dm_pci_read_config16(dev, PCI_COMMAND, &word); |
| 718 | if (!(word & PCI_COMMAND_MEMORY) || |
| 719 | (!(word & PCI_COMMAND_MASTER))) { |
| 720 | printf("Error: Can not enable MEM access or Bus Mastering.\n"); |
| 721 | debug("PCI command: %04x\n", word); |
| 722 | return 1; |
| 723 | } |
| 724 | |
| 725 | /* GPIO off */ |
| 726 | writel(0, (void *)(sata_info.iobase[0] + HOST_FLASH_CMD)); |
| 727 | /* clear global reset & mask interrupts during initialization */ |
| 728 | writel(0, (void *)(sata_info.iobase[0] + HOST_CTRL)); |
| 729 | |
| 730 | for (i = sata_info.portbase; i < sata_info.maxport; i++) { |
| 731 | snprintf(sata_name, sizeof(sata_name), "sil_sata%d", i); |
| 732 | ret = blk_create_devicef(dev, "sata_sil_blk", sata_name, |
Simon Glass | e33a5c6 | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 733 | UCLASS_AHCI, -1, 512, 0, &blk); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 734 | if (ret) { |
| 735 | debug("Can't create device\n"); |
| 736 | return ret; |
| 737 | } |
| 738 | |
| 739 | ret = sil_init_sata(blk, i); |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 740 | if (ret) { |
| 741 | ret = sil_unbind_device(blk); |
| 742 | if (ret) |
| 743 | return ret; |
| 744 | |
| 745 | failed_number++; |
| 746 | continue; |
| 747 | } |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 748 | |
| 749 | ret = scan_sata(blk, i); |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 750 | if (ret) { |
| 751 | ret = sil_unbind_device(blk); |
| 752 | if (ret) |
| 753 | return ret; |
| 754 | |
| 755 | failed_number++; |
| 756 | continue; |
| 757 | } |
AKASHI Takahiro | c662edd | 2022-03-08 20:36:43 +0900 | [diff] [blame] | 758 | |
| 759 | ret = device_probe(dev); |
| 760 | if (ret < 0) { |
| 761 | debug("Probing %s failed (%d)\n", dev->name, ret); |
| 762 | ret = sil_unbind_device(blk); |
| 763 | device_unbind(dev); |
| 764 | if (ret) |
| 765 | return ret; |
| 766 | |
| 767 | failed_number++; |
| 768 | continue; |
| 769 | } |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | if (failed_number == sata_info.maxport) |
| 773 | return -ENODEV; |
| 774 | else |
| 775 | return 0; |
| 776 | } |
| 777 | |
| 778 | static int sil_pci_remove(struct udevice *dev) |
| 779 | { |
| 780 | int i; |
| 781 | struct sil_sata *sata; |
| 782 | struct sil_sata_priv *priv; |
| 783 | |
| 784 | priv = dev_get_priv(dev); |
| 785 | |
| 786 | for (i = sata_info.portbase; i < sata_info.maxport; i++) { |
| 787 | sata = priv->sil_sata_desc[i]; |
| 788 | if (sata) |
| 789 | free(sata); |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | return 0; |
| 793 | } |
| 794 | |
| 795 | static int sata_sil_scan(struct udevice *dev) |
| 796 | { |
| 797 | /* Nothing to do here */ |
| 798 | |
| 799 | return 0; |
| 800 | } |
| 801 | |
| 802 | struct sil_ops sata_sil_ops = { |
| 803 | .scan = sata_sil_scan, |
| 804 | }; |
| 805 | |
| 806 | static const struct udevice_id sil_pci_ids[] = { |
| 807 | { .compatible = "sil-pci-sample" }, |
| 808 | { } |
| 809 | }; |
| 810 | |
| 811 | U_BOOT_DRIVER(sil_ahci_pci) = { |
| 812 | .name = "sil_ahci_pci", |
| 813 | .id = UCLASS_AHCI, |
| 814 | .of_match = sil_pci_ids, |
| 815 | .ops = &sata_sil_ops, |
| 816 | .probe = sil_pci_probe, |
Peng Ma | 40cdf26 | 2019-12-04 10:36:42 +0000 | [diff] [blame] | 817 | .remove = sil_pci_remove, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 818 | .priv_auto = sizeof(struct sil_sata_priv), |
Peng Ma | 6b9d8a7 | 2019-11-19 06:17:40 +0000 | [diff] [blame] | 819 | }; |
| 820 | |
| 821 | U_BOOT_PCI_DEVICE(sil_ahci_pci, supported); |