]> Git Repo - u-boot.git/blob - drivers/nvme/nvme_pci.c
Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"
[u-boot.git] / drivers / nvme / nvme_pci.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2017 NXP Semiconductors
4  * Copyright (C) 2017 Bin Meng <[email protected]>
5  */
6
7 #include <dm.h>
8 #include <init.h>
9 #include <pci.h>
10 #include "nvme.h"
11
12 static int nvme_bind(struct udevice *udev)
13 {
14         static int ndev_num;
15         char name[20];
16
17         sprintf(name, "nvme#%d", ndev_num++);
18
19         return device_set_name(udev, name);
20 }
21
22 static int nvme_probe(struct udevice *udev)
23 {
24         struct nvme_dev *ndev = dev_get_priv(udev);
25         struct pci_child_plat *pplat;
26
27         pplat = dev_get_parent_plat(udev);
28         sprintf(ndev->vendor, "0x%.4x", pplat->vendor);
29
30         ndev->instance = trailing_strtol(udev->name);
31         ndev->bar = dm_pci_map_bar(udev, PCI_BASE_ADDRESS_0, 0, 0,
32                                    PCI_REGION_TYPE, PCI_REGION_MEM);
33
34         /* Turn on bus-mastering */
35         dm_pci_clrset_config16(udev, PCI_COMMAND, 0, PCI_COMMAND_MASTER);
36
37         return nvme_init(udev);
38 }
39
40 U_BOOT_DRIVER(nvme) = {
41         .name   = "nvme",
42         .id     = UCLASS_NVME,
43         .bind   = nvme_bind,
44         .probe  = nvme_probe,
45         .priv_auto      = sizeof(struct nvme_dev),
46 };
47
48 struct pci_device_id nvme_supported[] = {
49         { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, ~0) },
50         {}
51 };
52
53 U_BOOT_PCI_DEVICE(nvme, nvme_supported);
This page took 0.031761 seconds and 4 git commands to generate.