blob: 6b4efcea37dedd9df3c9b265eb9cf0c1f4dc12a2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass36d0d3b2015-03-05 12:25:28 -07002/*
3 * Copyright (c) 2014 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass36d0d3b2015-03-05 12:25:28 -07005 */
6
7#include <common.h>
8#include <dm.h>
9#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Simon Glass36d0d3b2015-03-05 12:25:28 -070011#include <pci.h>
12#include <dm/lists.h>
Simon Glass9b69ba42019-09-25 08:56:10 -060013#include <dm/uclass-internal.h>
Simon Glass36d0d3b2015-03-05 12:25:28 -070014
Bin Meng841f3212018-08-03 01:14:49 -070015struct sandbox_pci_emul_priv {
Simon Glass36d0d3b2015-03-05 12:25:28 -070016 int dev_count;
17};
18
19int sandbox_pci_get_emul(struct udevice *bus, pci_dev_t find_devfn,
Bin Meng43459982018-08-03 01:14:45 -070020 struct udevice **containerp, struct udevice **emulp)
Simon Glass36d0d3b2015-03-05 12:25:28 -070021{
22 struct udevice *dev;
23 int ret;
24
Bin Meng43459982018-08-03 01:14:45 -070025 *containerp = NULL;
Bin Mengb3f96b42018-08-03 01:14:43 -070026 ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(find_devfn), &dev);
Simon Glass36d0d3b2015-03-05 12:25:28 -070027 if (ret) {
28 debug("%s: Could not find emulator for dev %x\n", __func__,
29 find_devfn);
30 return ret;
31 }
Bin Meng43459982018-08-03 01:14:45 -070032 *containerp = dev;
Simon Glass36d0d3b2015-03-05 12:25:28 -070033
Simon Glass9b69ba42019-09-25 08:56:10 -060034 /*
35 * See commit 4345998ae9df,
36 * "pci: sandbox: Support dynamically binding device driver"
37 */
38 ret = uclass_find_device_by_phandle(UCLASS_PCI_EMUL, dev,
39 "sandbox,emul", emulp);
40 if (ret && device_get_uclass_id(dev) != UCLASS_PCI_GENERIC)
Bin Meng43459982018-08-03 01:14:45 -070041 *emulp = dev;
Simon Glass36d0d3b2015-03-05 12:25:28 -070042
43 return *emulp ? 0 : -ENODEV;
44}
45
46static int sandbox_pci_emul_post_probe(struct udevice *dev)
47{
Bin Meng841f3212018-08-03 01:14:49 -070048 struct sandbox_pci_emul_priv *priv = dev->uclass->priv;
Simon Glass36d0d3b2015-03-05 12:25:28 -070049
50 priv->dev_count++;
51 sandbox_set_enable_pci_map(true);
52
53 return 0;
54}
55
56static int sandbox_pci_emul_pre_remove(struct udevice *dev)
57{
Bin Meng841f3212018-08-03 01:14:49 -070058 struct sandbox_pci_emul_priv *priv = dev->uclass->priv;
Simon Glass36d0d3b2015-03-05 12:25:28 -070059
60 priv->dev_count--;
61 sandbox_set_enable_pci_map(priv->dev_count > 0);
62
63 return 0;
64}
65
66UCLASS_DRIVER(pci_emul) = {
67 .id = UCLASS_PCI_EMUL,
68 .name = "pci_emul",
69 .post_probe = sandbox_pci_emul_post_probe,
70 .pre_remove = sandbox_pci_emul_pre_remove,
Bin Meng841f3212018-08-03 01:14:49 -070071 .priv_auto_alloc_size = sizeof(struct sandbox_pci_emul_priv),
Simon Glass36d0d3b2015-03-05 12:25:28 -070072};
Simon Glass9b69ba42019-09-25 08:56:10 -060073
74/*
75 * This uclass is a child of the pci bus. Its platdata is not defined here so
76 * is defined by its parent, UCLASS_PCI, which uses struct pci_child_platdata.
77 * See per_child_platdata_auto_alloc_size in UCLASS_DRIVER(pci).
78 */
79UCLASS_DRIVER(pci_emul_parent) = {
80 .id = UCLASS_PCI_EMUL_PARENT,
81 .name = "pci_emul_parent",
82 .post_bind = dm_scan_fdt_dev,
83};
84
85static const struct udevice_id pci_emul_parent_ids[] = {
86 { .compatible = "sandbox,pci-emul-parent" },
87 { }
88};
89
90U_BOOT_DRIVER(pci_emul_parent_drv) = {
91 .name = "pci_emul_parent_drv",
92 .id = UCLASS_PCI_EMUL_PARENT,
93 .of_match = pci_emul_parent_ids,
94};