blob: 11ec98b56f9bd479d6872be25d77dac194c9c0bc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Menga5c680f2017-07-30 19:23:59 -07002/*
3 * Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
Bin Menga5c680f2017-07-30 19:23:59 -07004 */
5
6#include <common.h>
7#include <ahci.h>
8#include <dm.h>
9#include <pci.h>
10
11static int ahci_pci_bind(struct udevice *dev)
12{
13 struct udevice *scsi_dev;
14
15 return ahci_bind_scsi(dev, &scsi_dev);
16}
17
18static int ahci_pci_probe(struct udevice *dev)
19{
Bin Meng7b9c88b2017-08-02 19:07:17 -070020 return ahci_probe_scsi_pci(dev);
Bin Menga5c680f2017-07-30 19:23:59 -070021}
22
23static const struct udevice_id ahci_pci_ids[] = {
24 { .compatible = "ahci-pci" },
25 { }
26};
27
28U_BOOT_DRIVER(ahci_pci) = {
29 .name = "ahci_pci",
30 .id = UCLASS_AHCI,
31 .of_match = ahci_pci_ids,
32 .bind = ahci_pci_bind,
33 .probe = ahci_pci_probe,
34};
35
36static struct pci_device_id ahci_pci_supported[] = {
37 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, ~0) },
Oleksandr Rybalko25643a52019-08-22 12:26:55 +020038 { PCI_DEVICE(0x1b21, 0x0611) },
Bin Menga5c680f2017-07-30 19:23:59 -070039 {},
40};
41
42U_BOOT_PCI_DEVICE(ahci_pci, ahci_pci_supported);