The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/agp/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/11.2/sys/modules/agp/Makefile 329527 2018-02-18 19:46:57Z markj $
    2 
    3 .PATH: ${SRCTOP}/sys/dev/agp
    4 
    5 KMOD=   agp
    6 SRCS=   agp.c agp_if.c
    7 .if ${MACHINE_CPUARCH} == "i386"
    8 SRCS+=  agp_i810.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c \
    9         agp_nvidia.c agp_ati.c
   10 .endif
   11 .if ${MACHINE} == "i386"
   12 SRCS+=  agp_amd64.c
   13 .endif
   14 .if ${MACHINE_CPUARCH} == "amd64"
   15 SRCS+=  agp_amd64.c agp_i810.c agp_via.c
   16 .endif
   17 .if ${MACHINE_CPUARCH} == "powerpc"
   18 SRCS+=  agp_apple.c
   19 .endif
   20 SRCS+=  device_if.h bus_if.h agp_if.h pci_if.h
   21 SRCS+=  opt_agp.h
   22 
   23 EXPORT_SYMS=    agp_find_device         \
   24                 agp_state               \
   25                 agp_acquire             \
   26                 agp_release             \
   27                 agp_enable              \
   28                 agp_alloc_memory        \
   29                 agp_free_memory         \
   30                 agp_bind_memory         \
   31                 agp_unbind_memory       \
   32                 agp_memory_info
   33 
   34 
   35 .if ${MACHINE_CPUARCH} == "i386"  || ${MACHINE_CPUARCH} == "amd64"
   36 EXPORT_SYMS+=   intel_gtt_clear_range   \
   37                 intel_gtt_insert_pages  \
   38                 intel_gtt_install_pte   \
   39                 intel_gtt_get           \
   40                 intel_gtt_chipset_flush \
   41                 intel_gtt_unmap_memory  \
   42                 intel_gtt_map_memory    \
   43                 intel_gtt_insert_sg_entries \
   44                 intel_gtt_get_bridge_device
   45 .endif
   46 
   47 .include <bsd.kmod.mk>

Cache object: 30c9b30de92020d407853d238cd8513e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.