1# 2# $FreeBSD$ 3# 4# Copyright (c) 2013-2020 Hans Petter Selasky. 5# Copyright (c) 2014 SRI International 6# All rights reserved. 7# 8# This software was developed by SRI International and the University of 9# Cambridge Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237 10# ("CTSRD"), as part of the DARPA CRASH research programme. 11# 12# Redistribution and use in source and binary forms, with or without 13# modification, are permitted provided that the following conditions 14# are met: 15# 1. Redistributions of source code must retain the above copyright 16# notice, this list of conditions and the following disclaimer. 17# 2. Redistributions in binary form must reproduce the above copyright 18# notice, this list of conditions and the following disclaimer in the 19# documentation and/or other materials provided with the distribution. 20# 21# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 22# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 25# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31# SUCH DAMAGE. 32# 33 34USBCOREDIR:= ${.PARSEDIR} 35S=${USBCOREDIR}/../../sys 36 37MACHDEP_DIRS= 38 39.if defined(HAVE_EXYNOS_EHCI) 40MACHDEP_DIRS+= ${S}/arm/samsung/exynos 41.endif 42 43.PATH: \ 44 ${USBCOREDIR} \ 45 ${USBCOREDIR}/storage \ 46 ${S}/dev/usb \ 47 ${S}/dev/usb/controller \ 48 ${S}/dev/usb/serial \ 49 ${S}/dev/usb/storage \ 50 ${S}/dev/usb/template \ 51 ${MACHDEP_DIRS} 52.undef S 53 54USB_POOL_SIZE?= 131072 55 56CFLAGS+= -DUSB_MSCTEST_BULK_SIZE=65536 57CFLAGS+= -DUSB_POOL_SIZE=${USB_POOL_SIZE} 58 59 60# 61# BUSDMA implementation 62# 63SRCS+= usb_busdma_loader.c 64 65# 66# USB controller drivers 67# 68 69KSRCS+= usb_controller.c 70 71.if defined(HAVE_AT91DCI) 72CFLAGS += -DUSB_PCI_PROBE_LIST="\"at91dci\"" 73KSRCS+= at91dci.c 74.endif 75 76.if defined(HAVE_ATMEGADCI) 77CFLAGS += -DUSB_PCI_PROBE_LIST="\"atmegadci\"" 78KSRCS+= atmegadci.c 79.endif 80 81.if defined(HAVE_AVR32DCI) 82CFLAGS += -DUSB_PCI_PROBE_LIST="\"avr32dci\"" 83KSRCS+= avr32dci.c 84.endif 85 86.if defined(HAVE_DWCOTG) 87CFLAGS += -DUSB_PCI_PROBE_LIST="\"dwcotg\"" 88KSRCS+= dwcotg.c 89.endif 90 91.if defined(HAVE_MUSBOTG) 92CFLAGS += -DUSB_PCI_PROBE_LIST="\"musbotg\"" 93KSRCS+= musbotg.c 94.endif 95 96.if defined(HAVE_EHCI) 97CFLAGS += -DUSB_PCI_PROBE_LIST="\"ehci\"" 98KSRCS+= ehci.c 99.endif 100 101.if defined(HAVE_EXYNOS_EHCI) 102CFLAGS += -DUSB_PCI_PROBE_LIST="\"combiner\", \"pad\", \"ehci\"" 103KSRCS+= ehci.c 104KSRCS+= exynos5_combiner.c 105KSRCS+= exynos5_pad.c 106KSRCS+= exynos5_ehci.c 107.endif 108 109.if defined(HAVE_OHCI) 110CFLAGS += -DUSB_PCI_PROBE_LIST="\"ohci\"" 111KSRCS+= ohci.c 112.endif 113 114.if defined(HAVE_UHCI) 115CFLAGS += -DUSB_PCI_PROBE_LIST="\"uhci\"" 116KSRCS+= uhci.c 117.endif 118 119.if defined(HAVE_XHCI) 120CFLAGS += -DUSB_PCI_PROBE_LIST="\"xhci\"" 121KSRCS+= xhci.c 122.endif 123 124.if defined(HAVE_USS820DCI) 125CFLAGS += -DUSB_PCI_PROBE_LIST="\"uss820dci\"" 126KSRCS+= uss820dci.c 127.endif 128 129# 130# USB core and templates 131# 132KSRCS+= usb_core.c 133KSRCS+= usb_debug.c 134KSRCS+= usb_device.c 135KSRCS+= usb_dynamic.c 136KSRCS+= usb_error.c 137KSRCS+= usb_handle_request.c 138KSRCS+= usb_hid.c 139KSRCS+= usb_hub.c 140KSRCS+= usb_lookup.c 141KSRCS+= usb_msctest.c 142KSRCS+= usb_parse.c 143KSRCS+= usb_request.c 144KSRCS+= usb_transfer.c 145KSRCS+= usb_util.c 146KSRCS+= usb_template.c 147KSRCS+= usb_template_cdce.c 148KSRCS+= usb_template_msc.c 149KSRCS+= usb_template_mtp.c 150KSRCS+= usb_template_modem.c 151KSRCS+= usb_template_mouse.c 152KSRCS+= usb_template_kbd.c 153KSRCS+= usb_template_audio.c 154KSRCS+= usb_template_phone.c 155KSRCS+= usb_template_serialnet.c 156KSRCS+= usb_template_midi.c 157KSRCS+= usb_template_multi.c 158KSRCS+= usb_template_cdceem.c 159 160# 161# USB mass storage support 162# 163SRCS+= umass_common.c 164 165.if defined(HAVE_UMASS_LOADER) 166CFLAGS+= -I${.CURDIR}/../common 167SRCS+= umass_loader.c 168.endif 169 170