1
2
3
4
5
6
7
8#include <common.h>
9#include <blk.h>
10#include <cpu_func.h>
11#include <dm.h>
12#include <log.h>
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>
19#include <sata.h>
20#include <libata.h>
21#include <sata.h>
22#include <dm/device-internal.h>
23#include <linux/delay.h>
24
25#include "sata_sil.h"
26
27#define virt_to_bus(devno, v) dm_pci_virt_to_mem(devno, (void *) (v))
28
29
30struct sil_ops {
31 int *rev0;
32 int *rev1;
33 int (*scan)(struct udevice *dev);
34};
35
36static struct sata_info sata_info;
37
38static struct pci_device_id supported[] = {
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) },
42 {}
43};
44
45static 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
64static 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
78static 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
93static void sil_config_port(void *port)
94{
95
96 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR);
97
98
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
107 writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_CLR);
108
109
110 writel(PORT_CS_PMP_EN | PORT_CS_PMP_RESUME, port + PORT_CTRL_CLR);
111}
112
113static 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
129static void sil_read_fis(struct sil_sata *sata, int tag,
130 struct sata_fis_d2h *fis)
131{
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
144static int sil_exec_cmd(struct sil_sata *sata, struct sil_cmd_block *pcmd,
145 int tag)
146{
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
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
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
170 sil_init_port(port);
171 if (irq_stat & PORT_IRQ_ERROR)
172 rc = 1;
173 else
174 rc = 2;
175 }
176
177 return rc;
178}
179
180static int sil_cmd_set_feature(struct sil_sata *sata)
181{
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
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
206 ret = sil_exec_cmd(sata, pcmd, 0);
207 if (ret) {
208 sil_read_fis(sata, 0, &fis);
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
218static void sil_sata_init_wcache(struct sil_sata *sata, u16 *id)
219{
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
228static void sil_sata_set_feature_by_id(struct sil_sata *sata, u16 *id)
229{
230#ifdef CONFIG_LBA48
231
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
244static int sil_cmd_identify_device(struct sil_sata *sata, u16 *id)
245{
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
260 ret = sil_exec_cmd(sata, pcmd, 0);
261 if (ret) {
262 sil_read_fis(sata, 0, &fis);
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
272static int sil_cmd_soft_reset(struct sil_sata *sata)
273{
274 struct sil_cmd_block cmdb, *pcmd = &cmdb;
275 struct sata_fis_d2h fis;
276 void *port = sata->port;
277 int ret;
278
279
280 if (sil_init_port(port)) {
281 printf("SRST: port %d not ready\n", sata->id);
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
291 ret = sil_exec_cmd(sata, &cmdb, 0);
292 if (ret) {
293 sil_read_fis(sata, 0, &fis);
294 printf("SRST cmd error.\n");
295 sil_sata_dump_fis(&fis);
296 return 1;
297 }
298
299 return 0;
300}
301
302static ulong sil_sata_rw_cmd(struct sil_sata *sata, ulong start, ulong blkcnt,
303 u8 *buffer, int is_write)
304{
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
334 ret = sil_exec_cmd(sata, pcmd, 0);
335 if (ret) {
336 sil_read_fis(sata, 0, &fis);
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
346static ulong sil_sata_rw_cmd_ext(struct sil_sata *sata, ulong start,
347 ulong blkcnt, u8 *buffer, int is_write)
348{
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
381 ret = sil_exec_cmd(sata, pcmd, 0);
382 if (ret) {
383 sil_read_fis(sata, 0, &fis);
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
393static ulong sil_sata_rw_lba28(struct sil_sata *sata, ulong blknr,
394 lbaint_t blkcnt, const void *buffer,
395 int is_write)
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) {
407 sil_sata_rw_cmd(sata, start, max_blks, addr, is_write);
408 start += max_blks;
409 blks -= max_blks;
410 addr += ATA_SECT_SIZE * max_blks;
411 } else {
412 sil_sata_rw_cmd(sata, start, blks, addr, is_write);
413 start += blks;
414 blks = 0;
415 addr += ATA_SECT_SIZE * blks;
416 }
417 } while (blks != 0);
418
419 return blkcnt;
420}
421
422static ulong sil_sata_rw_lba48(struct sil_sata *sata, ulong blknr,
423 lbaint_t blkcnt, const void *buffer,
424 int is_write)
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) {
436 sil_sata_rw_cmd_ext(sata, start, max_blks,
437 addr, is_write);
438 start += max_blks;
439 blks -= max_blks;
440 addr += ATA_SECT_SIZE * max_blks;
441 } else {
442 sil_sata_rw_cmd_ext(sata, start, blks,
443 addr, is_write);
444 start += blks;
445 blks = 0;
446 addr += ATA_SECT_SIZE * blks;
447 }
448 } while (blks != 0);
449
450 return blkcnt;
451}
452
453static void sil_sata_cmd_flush_cache(struct sil_sata *sata)
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
462 sil_exec_cmd(sata, pcmd, 0);
463}
464
465static void sil_sata_cmd_flush_cache_ext(struct sil_sata *sata)
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
474 sil_exec_cmd(sata, pcmd, 0);
475}
476
477
478
479
480static ulong sata_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
481 void *buffer)
482{
483 struct sil_sata_priv *priv = dev_get_plat(dev);
484 int port_number = priv->port_num;
485 struct sil_sata *sata = priv->sil_sata_desc[port_number];
486 ulong rc;
487
488 if (sata->lba48)
489 rc = sil_sata_rw_lba48(sata, blknr, blkcnt, buffer, READ_CMD);
490 else
491 rc = sil_sata_rw_lba28(sata, blknr, blkcnt, buffer, READ_CMD);
492
493 return rc;
494}
495
496
497
498
499ulong sata_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
500 const void *buffer)
501{
502 struct sil_sata_priv *priv = dev_get_plat(dev);
503 int port_number = priv->port_num;
504 struct sil_sata *sata = priv->sil_sata_desc[port_number];
505 ulong rc;
506
507 if (sata->lba48) {
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);
511 } else {
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);
515 }
516
517 return rc;
518}
519
520static int sil_init_sata(struct udevice *uc_dev, int dev)
521{
522 struct sil_sata_priv *priv = dev_get_plat(uc_dev);
523 struct sil_sata *sata;
524 void *port;
525 u32 tmp;
526 int cnt;
527
528 printf("SATA#%d:\n", dev);
529
530 port = (void *)sata_info.iobase[1] +
531 PORT_REGS_SIZE * (dev - sata_info.portbase);
532
533
534 writel(0x20c, port + PORT_PHY_CFG);
535
536
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
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
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
569 sil_config_port(port);
570
571
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
588
589 priv->sil_sata_desc[dev] = sata;
590 priv->port_num = dev;
591 sata->devno = uc_dev->parent;
592 sata->id = dev;
593 sata->port = port;
594 sprintf(sata->name, "SATA#%d", dev);
595 sil_cmd_soft_reset(sata);
596 tmp = readl(port + PORT_SSTATUS);
597 tmp = (tmp >> 4) & 0xf;
598 printf(" (%s)\n", sata_spd_string(tmp));
599
600 return 0;
601}
602
603static int scan_sata(struct udevice *blk_dev, int dev)
604{
605 struct blk_desc *desc = dev_get_uclass_plat(blk_dev);
606 struct sil_sata_priv *priv = dev_get_plat(blk_dev);
607 struct sil_sata *sata = priv->sil_sata_desc[dev];
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
613 id = (u16 *)malloc(ATA_ID_WORDS * 2);
614 if (!id) {
615 printf("Id malloc failed\n");
616 return 1;
617 }
618 sil_cmd_identify_device(sata, id);
619
620 sil_sata_set_feature_by_id(sata, id);
621
622
623 ata_id_c_string(id, serial, ATA_ID_SERNO, sizeof(serial));
624
625
626 ata_id_c_string(id, firmware, ATA_ID_FW_REV, sizeof(firmware));
627
628
629 ata_id_c_string(id, product, ATA_ID_PROD, sizeof(product));
630
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
638
639#ifdef DEBUG
640 ata_dump_id(id);
641#endif
642 free((void *)id);
643
644 return 0;
645}
646
647static const struct blk_ops sata_sil_blk_ops = {
648 .read = sata_read,
649 .write = sata_write,
650};
651
652U_BOOT_DRIVER(sata_sil_driver) = {
653 .name = "sata_sil_blk",
654 .id = UCLASS_BLK,
655 .ops = &sata_sil_blk_ops,
656 .plat_auto = sizeof(struct sil_sata_priv),
657};
658
659static 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
674static int sil_pci_probe(struct udevice *dev)
675{
676 struct udevice *blk;
677 int failed_number;
678 char sata_name[10];
679 pci_dev_t devno;
680 u16 word;
681 int ret;
682 int i;
683
684 failed_number = 0;
685
686
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
694 word &= 0xf;
695
696 sata_info.portbase = 0;
697 sata_info.maxport = sata_info.portbase + word;
698 sata_info.devno = devno;
699
700
701 sata_info.iobase[0] = (ulong)dm_pci_map_bar(dev,
702 PCI_BASE_ADDRESS_0, 0, 0, PCI_REGION_TYPE,
703 PCI_REGION_MEM);
704 sata_info.iobase[1] = (ulong)dm_pci_map_bar(dev,
705 PCI_BASE_ADDRESS_2, 0, 0, PCI_REGION_TYPE,
706 PCI_REGION_MEM);
707
708
709 sata_info.iobase[0] &= 0xffffff80;
710 sata_info.iobase[1] &= 0xfffffc00;
711
712
713 dm_pci_write_config16(dev, PCI_COMMAND,
714 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
715
716
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
726 writel(0, (void *)(sata_info.iobase[0] + HOST_FLASH_CMD));
727
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,
733 UCLASS_AHCI, -1, 512, 0, &blk);
734 if (ret) {
735 debug("Can't create device\n");
736 return ret;
737 }
738
739 ret = sil_init_sata(blk, i);
740 if (ret) {
741 ret = sil_unbind_device(blk);
742 if (ret)
743 return ret;
744
745 failed_number++;
746 continue;
747 }
748
749 ret = scan_sata(blk, i);
750 if (ret) {
751 ret = sil_unbind_device(blk);
752 if (ret)
753 return ret;
754
755 failed_number++;
756 continue;
757 }
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 }
770 }
771
772 if (failed_number == sata_info.maxport)
773 return -ENODEV;
774 else
775 return 0;
776}
777
778static 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);
790 }
791
792 return 0;
793}
794
795static int sata_sil_scan(struct udevice *dev)
796{
797
798
799 return 0;
800}
801
802struct sil_ops sata_sil_ops = {
803 .scan = sata_sil_scan,
804};
805
806static const struct udevice_id sil_pci_ids[] = {
807 { .compatible = "sil-pci-sample" },
808 { }
809};
810
811U_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,
817 .remove = sil_pci_remove,
818 .priv_auto = sizeof(struct sil_sata_priv),
819};
820
821U_BOOT_PCI_DEVICE(sil_ahci_pci, supported);
822