wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _PCI_I386_H_ |
Gabe Black | 452f50f | 2012-10-10 13:12:57 +0000 | [diff] [blame] | 9 | #define _PCI_I386_H_ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 10 | |
Simon Glass | a219dae | 2015-03-05 12:25:31 -0700 | [diff] [blame] | 11 | #include <pci.h> |
| 12 | |
Bin Meng | 3c8ae53 | 2015-02-02 22:35:25 +0800 | [diff] [blame] | 13 | /* bus mapping constants (used for PCI core initialization) */ |
| 14 | #define PCI_REG_ADDR 0xcf8 |
| 15 | #define PCI_REG_DATA 0xcfc |
| 16 | |
| 17 | #define PCI_CFG_EN 0x80000000 |
| 18 | |
| 19 | #ifndef __ASSEMBLY__ |
| 20 | |
Simon Glass | a219dae | 2015-03-05 12:25:31 -0700 | [diff] [blame] | 21 | int pci_x86_read_config(struct udevice *bus, pci_dev_t bdf, uint offset, |
| 22 | ulong *valuep, enum pci_size_t size); |
| 23 | |
| 24 | int pci_x86_write_config(struct udevice *bus, pci_dev_t bdf, uint offset, |
| 25 | ulong value, enum pci_size_t size); |
| 26 | |
Bin Meng | e3e7fa2 | 2015-04-24 18:10:03 +0800 | [diff] [blame] | 27 | /** |
| 28 | * Assign IRQ number to a PCI device |
| 29 | * |
| 30 | * This function assigns IRQ for a PCI device. If the device does not exist |
| 31 | * or does not require interrupts then this function has no effect. |
| 32 | * |
| 33 | * @bus: PCI bus number |
| 34 | * @device: PCI device number |
Bin Meng | e3e7fa2 | 2015-04-24 18:10:03 +0800 | [diff] [blame] | 35 | * @irq: An array of IRQ numbers that are assigned to INTA through |
| 36 | * INTD of this PCI device. |
| 37 | */ |
Bin Meng | 31a2dc6 | 2015-07-15 16:23:40 +0800 | [diff] [blame] | 38 | void pci_assign_irqs(int bus, int device, u8 irq[4]); |
Bin Meng | e3e7fa2 | 2015-04-24 18:10:03 +0800 | [diff] [blame] | 39 | |
Bin Meng | 3c8ae53 | 2015-02-02 22:35:25 +0800 | [diff] [blame] | 40 | #endif /* __ASSEMBLY__ */ |
| 41 | |
| 42 | #endif /* _PCI_I386_H_ */ |