blob: bf0b6003b233fb2f149db5b91ba216e9d0dde3b2 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Jonesbc94aea2018-09-26 09:57:08 -06002
3#include <device/device.h>
4#include <device/pci.h>
5#include <device/pci_ids.h>
Marc Jonesbc94aea2018-09-26 09:57:08 -06006#include <lib.h>
7
8static void iommu_read_resources(struct device *dev)
9{
10 struct resource *res;
11
12 /* Get the normal pci resources of this device */
13 pci_dev_read_resources(dev);
14
15 /* Add an extra subtractive resource for both memory and I/O. */
16 res = new_resource(dev, 0x44);
17 res->size = 512 * 1024;
18 res->align = log2(res->size);
19 res->gran = log2(res->size);
20 res->limit = 0xffffffff; /* 4G */
21 res->flags = IORESOURCE_MEM;
22}
23
24static struct pci_operations lops_pci = {
25 .set_subsystem = pci_dev_set_subsystem,
26};
27
28static struct device_operations iommu_ops = {
29 .read_resources = iommu_read_resources,
30 .set_resources = pci_dev_set_resources,
31 .enable_resources = pci_dev_enable_resources,
Marc Jonesbc94aea2018-09-26 09:57:08 -060032 .ops_pci = &lops_pci,
33};
34
Marshall Dawsonec63a712019-05-03 12:55:16 -060035static const unsigned short pci_device_ids[] = {
36 PCI_DEVICE_ID_AMD_15H_MODEL_303F_NB_IOMMU,
37 PCI_DEVICE_ID_AMD_15H_MODEL_707F_NB_IOMMU,
Furquan Shaikh590bdc62020-04-15 23:00:44 -070038 PCI_DEVICE_ID_AMD_17H_MODEL_1020_NB_IOMMU,
Marshall Dawsonec63a712019-05-03 12:55:16 -060039 0
40};
41
Marc Jonesbc94aea2018-09-26 09:57:08 -060042static const struct pci_driver iommu_driver __pci_driver = {
43 .ops = &iommu_ops,
44 .vendor = PCI_VENDOR_ID_AMD,
Marshall Dawsonec63a712019-05-03 12:55:16 -060045 .devices = pci_device_ids,
Marc Jonesbc94aea2018-09-26 09:57:08 -060046};