Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Compatibility functions for pre-driver-model code |
| 3 | * |
| 4 | * Copyright (C) 2014 Google, Inc |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0+ |
| 7 | */ |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 8 | #include <common.h> |
| 9 | #include <dm.h> |
| 10 | #include <errno.h> |
| 11 | #include <malloc.h> |
| 12 | #include <pci.h> |
| 13 | #include <dm/device-internal.h> |
| 14 | #include <dm/lists.h> |
| 15 | |
| 16 | #define PCI_HOSE_OP(rw, name, size, type) \ |
| 17 | int pci_hose_##rw##_config_##name(struct pci_controller *hose, \ |
| 18 | pci_dev_t dev, \ |
| 19 | int offset, type value) \ |
| 20 | { \ |
| 21 | return pci_##rw##_config##size(dev, offset, value); \ |
| 22 | } |
| 23 | |
| 24 | PCI_HOSE_OP(read, byte, 8, u8 *) |
| 25 | PCI_HOSE_OP(read, word, 16, u16 *) |
| 26 | PCI_HOSE_OP(read, dword, 32, u32 *) |
| 27 | PCI_HOSE_OP(write, byte, 8, u8) |
| 28 | PCI_HOSE_OP(write, word, 16, u16) |
| 29 | PCI_HOSE_OP(write, dword, 32, u32) |
| 30 | |
| 31 | pci_dev_t pci_find_devices(struct pci_device_id *ids, int index) |
| 32 | { |
Simon Glass | 4b515e4 | 2015-07-06 16:47:46 -0600 | [diff] [blame] | 33 | struct udevice *dev; |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 34 | |
| 35 | if (pci_find_device_id(ids, index, &dev)) |
| 36 | return -1; |
Simon Glass | 4b515e4 | 2015-07-06 16:47:46 -0600 | [diff] [blame] | 37 | return pci_get_bdf(dev); |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 38 | } |