Home | History | Annotate | Line # | Download | only in linux
pci.h revision 1.24.4.1
      1  1.24.4.1  christos /*	$NetBSD: pci.h,v 1.24.4.1 2019/06/10 22:08:32 christos Exp $	*/
      2       1.2  riastrad 
      3       1.2  riastrad /*-
      4       1.2  riastrad  * Copyright (c) 2013 The NetBSD Foundation, Inc.
      5       1.2  riastrad  * All rights reserved.
      6       1.2  riastrad  *
      7       1.2  riastrad  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2  riastrad  * by Taylor R. Campbell.
      9       1.2  riastrad  *
     10       1.2  riastrad  * Redistribution and use in source and binary forms, with or without
     11       1.2  riastrad  * modification, are permitted provided that the following conditions
     12       1.2  riastrad  * are met:
     13       1.2  riastrad  * 1. Redistributions of source code must retain the above copyright
     14       1.2  riastrad  *    notice, this list of conditions and the following disclaimer.
     15       1.2  riastrad  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2  riastrad  *    notice, this list of conditions and the following disclaimer in the
     17       1.2  riastrad  *    documentation and/or other materials provided with the distribution.
     18       1.2  riastrad  *
     19       1.2  riastrad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.2  riastrad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.2  riastrad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.2  riastrad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.2  riastrad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.2  riastrad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.2  riastrad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.2  riastrad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.2  riastrad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.2  riastrad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.2  riastrad  * POSSIBILITY OF SUCH DAMAGE.
     30       1.2  riastrad  */
     31       1.2  riastrad 
     32       1.2  riastrad #ifndef _LINUX_PCI_H_
     33       1.2  riastrad #define _LINUX_PCI_H_
     34       1.2  riastrad 
     35      1.11    nonaka #ifdef _KERNEL_OPT
     36      1.10    nonaka #if defined(i386) || defined(amd64)
     37      1.10    nonaka #include "acpica.h"
     38      1.10    nonaka #else	/* !(i386 || amd64) */
     39      1.10    nonaka #define NACPICA	0
     40      1.10    nonaka #endif	/* i386 || amd64 */
     41      1.11    nonaka #endif
     42      1.10    nonaka 
     43       1.2  riastrad #include <sys/types.h>
     44       1.4  riastrad #include <sys/param.h>
     45       1.2  riastrad #include <sys/bus.h>
     46       1.3  riastrad #include <sys/cdefs.h>
     47       1.2  riastrad #include <sys/kmem.h>
     48       1.2  riastrad #include <sys/systm.h>
     49       1.2  riastrad 
     50       1.4  riastrad #include <machine/limits.h>
     51       1.4  riastrad 
     52       1.2  riastrad #include <dev/pci/pcidevs.h>
     53       1.2  riastrad #include <dev/pci/pcireg.h>
     54       1.2  riastrad #include <dev/pci/pcivar.h>
     55       1.4  riastrad #include <dev/pci/agpvar.h>
     56       1.2  riastrad 
     57      1.20  jmcneill #if NACPICA > 0
     58      1.10    nonaka #include <dev/acpi/acpivar.h>
     59      1.10    nonaka #include <dev/acpi/acpi_pci.h>
     60      1.20  jmcneill #else
     61      1.20  jmcneill struct acpi_devnode;
     62      1.20  jmcneill #endif
     63      1.10    nonaka 
     64       1.7  riastrad #include <linux/dma-mapping.h>
     65       1.2  riastrad #include <linux/ioport.h>
     66      1.15  riastrad #include <linux/kernel.h>
     67       1.2  riastrad 
     68  1.24.4.1  christos struct pci_driver;
     69  1.24.4.1  christos 
     70      1.10    nonaka struct pci_bus {
     71  1.24.4.1  christos 	/* NetBSD private members */
     72  1.24.4.1  christos 	pci_chipset_tag_t	pb_pc;
     73  1.24.4.1  christos 	device_t		pb_dev;
     74  1.24.4.1  christos 
     75  1.24.4.1  christos 	/* Linux API */
     76  1.24.4.1  christos 	u_int			number;
     77      1.10    nonaka };
     78       1.2  riastrad 
     79       1.2  riastrad struct pci_device_id {
     80       1.2  riastrad 	uint32_t	vendor;
     81       1.2  riastrad 	uint32_t	device;
     82       1.2  riastrad 	uint32_t	subvendor;
     83       1.2  riastrad 	uint32_t	subdevice;
     84       1.2  riastrad 	uint32_t	class;
     85       1.2  riastrad 	uint32_t	class_mask;
     86       1.2  riastrad 	unsigned long	driver_data;
     87       1.2  riastrad };
     88       1.2  riastrad 
     89  1.24.4.1  christos #define	PCI_ANY_ID		(~0)
     90       1.2  riastrad 
     91       1.2  riastrad #define	PCI_BASE_CLASS_DISPLAY	PCI_CLASS_DISPLAY
     92       1.2  riastrad 
     93      1.15  riastrad #define	PCI_CLASS_DISPLAY_VGA						\
     94      1.15  riastrad 	((PCI_CLASS_DISPLAY << 8) | PCI_SUBCLASS_DISPLAY_VGA)
     95       1.2  riastrad #define	PCI_CLASS_BRIDGE_ISA						\
     96       1.2  riastrad 	((PCI_CLASS_BRIDGE << 8) | PCI_SUBCLASS_BRIDGE_ISA)
     97       1.2  riastrad CTASSERT(PCI_CLASS_BRIDGE_ISA == 0x0601);
     98       1.2  riastrad 
     99       1.5  riastrad /* XXX This is getting silly...  */
    100  1.24.4.1  christos #define	PCI_VENDOR_ID_APPLE	PCI_VENDOR_APPLE
    101       1.5  riastrad #define	PCI_VENDOR_ID_ASUSTEK	PCI_VENDOR_ASUSTEK
    102       1.5  riastrad #define	PCI_VENDOR_ID_ATI	PCI_VENDOR_ATI
    103       1.5  riastrad #define	PCI_VENDOR_ID_DELL	PCI_VENDOR_DELL
    104       1.5  riastrad #define	PCI_VENDOR_ID_IBM	PCI_VENDOR_IBM
    105       1.5  riastrad #define	PCI_VENDOR_ID_HP	PCI_VENDOR_HP
    106       1.2  riastrad #define	PCI_VENDOR_ID_INTEL	PCI_VENDOR_INTEL
    107       1.7  riastrad #define	PCI_VENDOR_ID_NVIDIA	PCI_VENDOR_NVIDIA
    108  1.24.4.1  christos #define	PCI_VENDOR_ID_SI	PCI_VENDOR_SIS
    109       1.5  riastrad #define	PCI_VENDOR_ID_SONY	PCI_VENDOR_SONY
    110       1.5  riastrad #define	PCI_VENDOR_ID_VIA	PCI_VENDOR_VIATECH
    111       1.5  riastrad 
    112       1.5  riastrad #define	PCI_DEVICE_ID_ATI_RADEON_QY	PCI_PRODUCT_ATI_RADEON_RV100_QY
    113       1.2  riastrad 
    114       1.2  riastrad #define	PCI_DEVFN(DEV, FN)						\
    115       1.2  riastrad 	(__SHIFTIN((DEV), __BITS(3, 7)) | __SHIFTIN((FN), __BITS(0, 2)))
    116       1.2  riastrad #define	PCI_SLOT(DEVFN)		__SHIFTOUT((DEVFN), __BITS(3, 7))
    117       1.2  riastrad #define	PCI_FUNC(DEVFN)		__SHIFTOUT((DEVFN), __BITS(0, 2))
    118       1.2  riastrad 
    119       1.4  riastrad #define	PCI_NUM_RESOURCES	((PCI_MAPREG_END - PCI_MAPREG_START) / 4)
    120       1.5  riastrad #define	DEVICE_COUNT_RESOURCE	PCI_NUM_RESOURCES
    121       1.4  riastrad 
    122       1.2  riastrad #define	PCI_CAP_ID_AGP	PCI_CAP_AGP
    123       1.2  riastrad 
    124       1.4  riastrad typedef int pci_power_t;
    125       1.4  riastrad 
    126       1.4  riastrad #define	PCI_D0		0
    127       1.4  riastrad #define	PCI_D1		1
    128       1.4  riastrad #define	PCI_D2		2
    129       1.4  riastrad #define	PCI_D3hot	3
    130       1.4  riastrad #define	PCI_D3cold	4
    131       1.4  riastrad 
    132       1.4  riastrad #define	__pci_iomem
    133       1.4  riastrad 
    134       1.2  riastrad struct pci_dev {
    135       1.2  riastrad 	struct pci_attach_args	pd_pa;
    136       1.2  riastrad 	int			pd_kludges;	/* Gotta lose 'em...  */
    137       1.2  riastrad #define	NBPCI_KLUDGE_GET_MUMBLE	0x01
    138       1.2  riastrad #define	NBPCI_KLUDGE_MAP_ROM	0x02
    139       1.2  riastrad 	bus_space_tag_t		pd_rom_bst;
    140       1.2  riastrad 	bus_space_handle_t	pd_rom_bsh;
    141       1.2  riastrad 	bus_size_t		pd_rom_size;
    142      1.18  riastrad 	bus_space_handle_t	pd_rom_found_bsh;
    143      1.19  riastrad 	bus_size_t		pd_rom_found_size;
    144       1.2  riastrad 	void			*pd_rom_vaddr;
    145       1.2  riastrad 	device_t		pd_dev;
    146      1.15  riastrad 	struct drm_device	*pd_drm_dev; /* XXX Nouveau kludge!  */
    147       1.4  riastrad 	struct {
    148       1.4  riastrad 		pcireg_t		type;
    149       1.4  riastrad 		bus_addr_t		addr;
    150       1.4  riastrad 		bus_size_t		size;
    151       1.4  riastrad 		int			flags;
    152       1.4  riastrad 		bus_space_tag_t		bst;
    153       1.4  riastrad 		bus_space_handle_t	bsh;
    154       1.4  riastrad 		void __pci_iomem	*kva;
    155  1.24.4.1  christos 		bool			mapped;
    156       1.4  riastrad 	}			pd_resources[PCI_NUM_RESOURCES];
    157       1.5  riastrad 	struct pci_conf_state	*pd_saved_state;
    158      1.10    nonaka 	struct acpi_devnode	*pd_ad;
    159  1.24.4.1  christos 	pci_intr_handle_t	*pd_intr_handles;
    160  1.24.4.1  christos 	unsigned		pd_enablecnt;
    161  1.24.4.1  christos 
    162  1.24.4.1  christos 	/* Linx API only below */
    163       1.2  riastrad 	struct pci_bus		*bus;
    164       1.2  riastrad 	uint32_t		devfn;
    165       1.2  riastrad 	uint16_t		vendor;
    166       1.2  riastrad 	uint16_t		device;
    167       1.2  riastrad 	uint16_t		subsystem_vendor;
    168       1.2  riastrad 	uint16_t		subsystem_device;
    169       1.2  riastrad 	uint8_t			revision;
    170       1.2  riastrad 	uint32_t		class;
    171       1.5  riastrad 	bool			msi_enabled;
    172  1.24.4.1  christos 	bool			no_64bit_msi;
    173       1.2  riastrad };
    174       1.2  riastrad 
    175      1.17  riastrad #define	PCIBIOS_MIN_MEM	0x100000	/* XXX bogus x86 kludge bollocks */
    176       1.2  riastrad 
    177       1.2  riastrad #define	__pci_rom_iomem
    178       1.2  riastrad 
    179  1.24.4.1  christos /* Namespace.  */
    180  1.24.4.1  christos #define	pci_bus_alloc_resource		linux_pci_bus_alloc_resource
    181  1.24.4.1  christos #define	pci_bus_read_config_byte	linux_pci_bus_read_config_byte
    182  1.24.4.1  christos #define	pci_bus_read_config_dword	linux_pci_bus_read_config_dword
    183  1.24.4.1  christos #define	pci_bus_read_config_word	linux_pci_bus_read_config_word
    184  1.24.4.1  christos #define	pci_bus_write_config_byte	linux_pci_bus_write_config_byte
    185  1.24.4.1  christos #define	pci_bus_write_config_dword	linux_pci_bus_write_config_dword
    186  1.24.4.1  christos #define	pci_bus_write_config_word	linux_pci_bus_write_config_word
    187  1.24.4.1  christos #define	pci_clear_master		linux_pci_clear_master
    188  1.24.4.1  christos #define	pci_dev_dev			linux_pci_dev_dev
    189  1.24.4.1  christos #define	pci_dev_put			linux_pci_dev_put
    190  1.24.4.1  christos #define	pci_disable_msi			linux_pci_disable_msi
    191  1.24.4.1  christos #define	pci_disable_rom			linux_pci_disable_rom
    192  1.24.4.1  christos #define	pci_dma_supported		linux_pci_dma_supported
    193  1.24.4.1  christos #define	pci_domain_nr			linux_pci_domain_nr
    194  1.24.4.1  christos #define	pci_enable_msi			linux_pci_enable_msi
    195  1.24.4.1  christos #define	pci_enable_rom			linux_pci_enable_rom
    196  1.24.4.1  christos #define	pci_find_capability		linux_pci_find_capability
    197  1.24.4.1  christos #define	pci_get_bus_and_slot		linux_pci_get_bus_and_slot
    198  1.24.4.1  christos #define	pci_get_class			linux_pci_get_class
    199  1.24.4.1  christos #define	pci_get_drvdata			linux_pci_get_drvdata
    200  1.24.4.1  christos #define	pci_iomap			linux_pci_iomap
    201  1.24.4.1  christos #define	pci_iounmap			linux_pci_iounmap
    202  1.24.4.1  christos #define	pci_is_pcie			linux_pci_is_pcie
    203  1.24.4.1  christos #define	pci_is_root_bus			linux_pci_is_root_bus
    204  1.24.4.1  christos #define	pci_map_rom			linux_pci_map_rom
    205  1.24.4.1  christos #define	pci_platform_rom		linux_pci_platform_rom
    206  1.24.4.1  christos #define	pci_read_config_byte		linux_pci_read_config_byte
    207  1.24.4.1  christos #define	pci_read_config_dword		linux_pci_read_config_dword
    208  1.24.4.1  christos #define	pci_read_config_word		linux_pci_read_config_word
    209  1.24.4.1  christos #define	pci_resource_end		linux_pci_resource_end
    210  1.24.4.1  christos #define	pci_resource_flags		linux_pci_resource_flags
    211  1.24.4.1  christos #define	pci_resource_len		linux_pci_resource_len
    212  1.24.4.1  christos #define	pci_resource_start		linux_pci_resource_start
    213  1.24.4.1  christos #define	pci_restore_state		linux_pci_restore_state
    214  1.24.4.1  christos #define	pci_save_state			linux_pci_save_state
    215  1.24.4.1  christos #define	pci_set_master			linux_pci_set_master
    216  1.24.4.1  christos #define	pci_unmap_rom			linux_pci_unmap_rom
    217  1.24.4.1  christos #define	pci_write_config_byte		linux_pci_write_config_byte
    218  1.24.4.1  christos #define	pci_write_config_dword		linux_pci_write_config_dword
    219  1.24.4.1  christos #define	pci_write_config_word		linux_pci_write_config_word
    220  1.24.4.1  christos #define	pcibios_align_resource		linux_pcibios_align_resource
    221  1.24.4.1  christos 
    222  1.24.4.1  christos /* NetBSD local additions.  */
    223  1.24.4.1  christos void		linux_pci_dev_init(struct pci_dev *, device_t, device_t,
    224  1.24.4.1  christos 		    const struct pci_attach_args *, int);
    225  1.24.4.1  christos void		linux_pci_dev_destroy(struct pci_dev *);
    226  1.24.4.1  christos 
    227  1.24.4.1  christos /* NetBSD no-renames because use requires review.  */
    228  1.24.4.1  christos int		linux_pci_enable_device(struct pci_dev *);
    229  1.24.4.1  christos void		linux_pci_disable_device(struct pci_dev *);
    230  1.24.4.1  christos 
    231  1.24.4.1  christos bool		pci_is_root_bus(struct pci_bus *);
    232  1.24.4.1  christos int		pci_domain_nr(struct pci_bus *);
    233  1.24.4.1  christos 
    234  1.24.4.1  christos device_t	pci_dev_dev(struct pci_dev *);
    235  1.24.4.1  christos struct drm_device *		/* XXX Nouveau kludge!  */
    236  1.24.4.1  christos 		pci_get_drvdata(struct pci_dev *);
    237  1.24.4.1  christos 
    238  1.24.4.1  christos int		pci_find_capability(struct pci_dev *, int);
    239  1.24.4.1  christos bool		pci_is_pcie(struct pci_dev *);
    240  1.24.4.1  christos bool		pci_dma_supported(struct pci_dev *, uintmax_t);
    241  1.24.4.1  christos 
    242  1.24.4.1  christos int		pci_read_config_dword(struct pci_dev *, int, uint32_t *);
    243  1.24.4.1  christos int		pci_read_config_word(struct pci_dev *, int, uint16_t *);
    244  1.24.4.1  christos int		pci_read_config_byte(struct pci_dev *, int, uint8_t *);
    245  1.24.4.1  christos int		pci_write_config_dword(struct pci_dev *, int, uint32_t);
    246  1.24.4.1  christos int		pci_write_config_word(struct pci_dev *, int, uint16_t);
    247  1.24.4.1  christos int		pci_write_config_byte(struct pci_dev *, int, uint8_t);
    248  1.24.4.1  christos 
    249  1.24.4.1  christos int		pci_bus_read_config_dword(struct pci_bus *, unsigned, int,
    250  1.24.4.1  christos 		    uint32_t *);
    251  1.24.4.1  christos int		pci_bus_read_config_word(struct pci_bus *, unsigned, int,
    252  1.24.4.1  christos 		    uint16_t *);
    253  1.24.4.1  christos int		pci_bus_read_config_byte(struct pci_bus *, unsigned, int,
    254  1.24.4.1  christos 		    uint8_t *);
    255  1.24.4.1  christos int		pci_bus_write_config_dword(struct pci_bus *, unsigned, int,
    256  1.24.4.1  christos 		    uint32_t);
    257  1.24.4.1  christos int		pci_bus_write_config_word(struct pci_bus *, unsigned, int,
    258  1.24.4.1  christos 		    uint16_t);
    259  1.24.4.1  christos int		pci_bus_write_config_byte(struct pci_bus *, unsigned, int,
    260  1.24.4.1  christos 		    uint8_t);
    261  1.24.4.1  christos 
    262  1.24.4.1  christos int		pci_enable_msi(struct pci_dev *);
    263  1.24.4.1  christos void		pci_disable_msi(struct pci_dev *);
    264  1.24.4.1  christos void		pci_set_master(struct pci_dev *);
    265  1.24.4.1  christos void		pci_clear_master(struct pci_dev *);
    266  1.24.4.1  christos 
    267  1.24.4.1  christos bus_addr_t	pcibios_align_resource(void *, const struct resource *,
    268  1.24.4.1  christos 		    bus_addr_t, bus_size_t);
    269  1.24.4.1  christos int		pci_bus_alloc_resource(struct pci_bus *, struct resource *,
    270  1.24.4.1  christos 		    bus_size_t, bus_size_t, bus_addr_t, int,
    271  1.24.4.1  christos 		    bus_addr_t (*)(void *, const struct resource *, bus_addr_t,
    272  1.24.4.1  christos 			bus_size_t), struct pci_dev *);
    273  1.24.4.1  christos 
    274  1.24.4.1  christos /* XXX Kludges only -- do not use without checking the implementation!  */
    275  1.24.4.1  christos struct pci_dev *pci_get_bus_and_slot(int, int);
    276  1.24.4.1  christos struct pci_dev *pci_get_class(uint32_t, struct pci_dev *); /* i915 kludge */
    277  1.24.4.1  christos void		pci_dev_put(struct pci_dev *);
    278  1.24.4.1  christos 
    279  1.24.4.1  christos void __pci_rom_iomem *
    280  1.24.4.1  christos 		pci_map_rom(struct pci_dev *, size_t *);
    281  1.24.4.1  christos void __pci_rom_iomem *
    282  1.24.4.1  christos 		pci_platform_rom(struct pci_dev *, size_t *);
    283  1.24.4.1  christos void		pci_unmap_rom(struct pci_dev *, void __pci_rom_iomem *);
    284  1.24.4.1  christos int		pci_enable_rom(struct pci_dev *);
    285  1.24.4.1  christos void		pci_disable_rom(struct pci_dev *);
    286  1.24.4.1  christos 
    287  1.24.4.1  christos bus_addr_t	pci_resource_start(struct pci_dev *, unsigned);
    288  1.24.4.1  christos bus_size_t	pci_resource_len(struct pci_dev *, unsigned);
    289  1.24.4.1  christos bus_addr_t	pci_resource_end(struct pci_dev *, unsigned);
    290  1.24.4.1  christos int		pci_resource_flags(struct pci_dev *, unsigned);
    291  1.24.4.1  christos 
    292  1.24.4.1  christos void __pci_iomem *
    293  1.24.4.1  christos 		pci_iomap(struct pci_dev *, unsigned, bus_size_t);
    294  1.24.4.1  christos void		pci_iounmap(struct pci_dev *, void __pci_iomem *);
    295       1.9  riastrad 
    296  1.24.4.1  christos void		pci_save_state(struct pci_dev *);
    297  1.24.4.1  christos void		pci_restore_state(struct pci_dev *);
    298       1.7  riastrad 
    299       1.2  riastrad #endif  /* _LINUX_PCI_H_ */
    300