sync with OpenBSD -current
This commit is contained in:
parent
e42955765e
commit
0c5463838b
28 changed files with 291 additions and 300 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: agpvar.h,v 1.35 2024/05/13 01:15:51 jsg Exp $ */
|
||||
/* $OpenBSD: agpvar.h,v 1.37 2024/07/02 04:29:01 jsg Exp $ */
|
||||
/* $NetBSD: agpvar.h,v 1.4 2001/10/01 21:54:48 fvdl Exp $ */
|
||||
|
||||
/*-
|
||||
|
@ -122,8 +122,6 @@ struct agp_gatt {
|
|||
size_t ag_size;
|
||||
};
|
||||
|
||||
struct agp_map;
|
||||
|
||||
/*
|
||||
* Functions private to the AGP code.
|
||||
*/
|
||||
|
@ -134,17 +132,7 @@ struct agp_gatt *
|
|||
agp_alloc_gatt(bus_dma_tag_t, u_int32_t);
|
||||
void agp_free_gatt(bus_dma_tag_t, struct agp_gatt *);
|
||||
void agp_flush_cache(void);
|
||||
void agp_flush_cache_range(vaddr_t, vsize_t);
|
||||
int agp_generic_enable(struct agp_softc *, u_int32_t);
|
||||
int agp_init_map(bus_space_tag_t, bus_addr_t, bus_size_t, int, struct
|
||||
agp_map **);
|
||||
void agp_destroy_map(struct agp_map *);
|
||||
int agp_map_subregion(struct agp_map *, bus_size_t, bus_size_t,
|
||||
bus_space_handle_t *);
|
||||
void agp_unmap_subregion(struct agp_map *, bus_space_handle_t,
|
||||
bus_size_t);
|
||||
void agp_map_atomic(struct agp_map *, bus_size_t, bus_space_handle_t *);
|
||||
void agp_unmap_atomic(struct agp_map *, bus_space_handle_t);
|
||||
|
||||
int agp_alloc_dmamem(bus_dma_tag_t, size_t, bus_dmamap_t *,
|
||||
bus_addr_t *, bus_dma_segment_t *);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$OpenBSD: pcidevs,v 1.2078 2024/06/30 08:11:36 kevlo Exp $
|
||||
$OpenBSD: pcidevs,v 1.2079 2024/07/02 22:28:02 kettenis Exp $
|
||||
/* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -8628,6 +8628,7 @@ product QLOGIC ISP8432 0x8432 ISP8432
|
|||
|
||||
/* Qualcomm products */
|
||||
product QUALCOMM SC8280XP_PCIE 0x010e SC8280XP PCIe
|
||||
product QUALCOMM X1E80100_PCIE 0x0111 X1E80100 PCIe
|
||||
product QUALCOMM QCNFA765 0x1103 QCNFA765
|
||||
|
||||
/* Quancom products */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.
|
||||
*
|
||||
* generated from:
|
||||
* OpenBSD: pcidevs,v 1.2078 2024/06/30 08:11:36 kevlo Exp
|
||||
* OpenBSD: pcidevs,v 1.2079 2024/07/02 22:28:02 kettenis Exp
|
||||
*/
|
||||
/* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */
|
||||
|
||||
|
@ -8633,6 +8633,7 @@
|
|||
|
||||
/* Qualcomm products */
|
||||
#define PCI_PRODUCT_QUALCOMM_SC8280XP_PCIE 0x010e /* SC8280XP PCIe */
|
||||
#define PCI_PRODUCT_QUALCOMM_X1E80100_PCIE 0x0111 /* X1E80100 PCIe */
|
||||
#define PCI_PRODUCT_QUALCOMM_QCNFA765 0x1103 /* QCNFA765 */
|
||||
|
||||
/* Quancom products */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.
|
||||
*
|
||||
* generated from:
|
||||
* OpenBSD: pcidevs,v 1.2078 2024/06/30 08:11:36 kevlo Exp
|
||||
* OpenBSD: pcidevs,v 1.2079 2024/07/02 22:28:02 kettenis Exp
|
||||
*/
|
||||
|
||||
/* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */
|
||||
|
@ -31139,6 +31139,10 @@ static const struct pci_known_product pci_known_products[] = {
|
|||
PCI_VENDOR_QUALCOMM, PCI_PRODUCT_QUALCOMM_SC8280XP_PCIE,
|
||||
"SC8280XP PCIe",
|
||||
},
|
||||
{
|
||||
PCI_VENDOR_QUALCOMM, PCI_PRODUCT_QUALCOMM_X1E80100_PCIE,
|
||||
"X1E80100 PCIe",
|
||||
},
|
||||
{
|
||||
PCI_VENDOR_QUALCOMM, PCI_PRODUCT_QUALCOMM_QCNFA765,
|
||||
"QCNFA765",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue