Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Bin Meng | 239a09b | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | 239a09b | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <ahci.h> |
Masami Hiramatsu | 700ef60 | 2021-06-04 18:43:23 +0900 | [diff] [blame] | 8 | #include <scsi.h> |
Bin Meng | 239a09b | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 9 | #include <dm.h> |
| 10 | #include <pci.h> |
| 11 | |
| 12 | static int ahci_pci_bind(struct udevice *dev) |
| 13 | { |
| 14 | struct udevice *scsi_dev; |
| 15 | |
| 16 | return ahci_bind_scsi(dev, &scsi_dev); |
| 17 | } |
| 18 | |
| 19 | static int ahci_pci_probe(struct udevice *dev) |
| 20 | { |
Bin Meng | 485e83d | 2017-08-02 19:07:17 -0700 | [diff] [blame] | 21 | return ahci_probe_scsi_pci(dev); |
Bin Meng | 239a09b | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | static const struct udevice_id ahci_pci_ids[] = { |
| 25 | { .compatible = "ahci-pci" }, |
| 26 | { } |
| 27 | }; |
| 28 | |
| 29 | U_BOOT_DRIVER(ahci_pci) = { |
| 30 | .name = "ahci_pci", |
| 31 | .id = UCLASS_AHCI, |
Masami Hiramatsu | 700ef60 | 2021-06-04 18:43:23 +0900 | [diff] [blame] | 32 | .ops = &scsi_ops, |
Bin Meng | 239a09b | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 33 | .of_match = ahci_pci_ids, |
| 34 | .bind = ahci_pci_bind, |
| 35 | .probe = ahci_pci_probe, |
| 36 | }; |
| 37 | |
| 38 | static struct pci_device_id ahci_pci_supported[] = { |
| 39 | { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, ~0) }, |
Pali Rohár | d8ea987 | 2022-12-04 13:31:08 +0100 | [diff] [blame] | 40 | { PCI_DEVICE(PCI_VENDOR_ID_ASMEDIA, 0x0611) }, |
Hajo Noerenberg | 4f9fa4e | 2022-03-28 15:49:08 +0200 | [diff] [blame] | 41 | { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6121) }, |
| 42 | { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6145) }, |
Bin Meng | 239a09b | 2017-07-30 19:23:59 -0700 | [diff] [blame] | 43 | {}, |
| 44 | }; |
| 45 | |
| 46 | U_BOOT_PCI_DEVICE(ahci_pci, ahci_pci_supported); |