diff options
author | Robert Mustacchi <rm@joyent.com> | 2017-03-01 20:08:21 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2017-03-10 18:21:18 +0000 |
commit | 993e3faf6a142ae3efdd24388883264c2b56bede (patch) | |
tree | 324b5e837525e6b947ae3287563066ff704cdb8e /usr/src/uts/intel/xhci | |
parent | f6c9444388aee97beabfda543e0845ab11c9d7b1 (diff) | |
download | illumos-joyent-993e3faf6a142ae3efdd24388883264c2b56bede.tar.gz |
1979 USB 3.0 support
7918 want usb_pipe_xopen(9F)
7919 usbai burst macros for endpoint descriptor are wrong
7920 usba_hcdi_register() should fail if driver is using private data
7921 failing to load the usba root hub module destroys driver parent private data
7922 want ::hubd walker
7923 ::prtusb should include version
7924 usb_*_request(9S) manual pages should match structure names
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Bryan Cantrill <bryan@joyent.com>
Reviewed by: Dale Ghent <daleg@omniti.com>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/uts/intel/xhci')
-rw-r--r-- | usr/src/uts/intel/xhci/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/usr/src/uts/intel/xhci/Makefile b/usr/src/uts/intel/xhci/Makefile new file mode 100644 index 0000000000..0a49e69579 --- /dev/null +++ b/usr/src/uts/intel/xhci/Makefile @@ -0,0 +1,50 @@ +# +# This file and its contents are supplied under the terms of the +# Common Development and Distribution License ("CDDL"), version 1.0. +# You may only use this file in accordance with the terms of version +# 1.0 of the CDDL. +# +# A full copy of the text of the CDDL should have accompanied this +# source. A copy of the CDDL is also available via the Internet at +# http://www.illumos.org/license/CDDL. +# + +# +# Copyright 2016 Joyent, Inc. +# + +UTSBASE = ../.. + +MODULE = xhci +OBJECTS = $(XHCI_OBJS:%=$(OBJS_DIR)/%) +LINTS = $(XHCI_OBJS:%.o=$(LINTS_DIR)/%.ln) +ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) +CONF_SRCDIR = $(UTSBASE)/common/io/usb/hcd/xhci + +include $(UTSBASE)/intel/Makefile.intel + +ALL_TARGET = $(BINARY) $(CONFMOD) +LINT_TARGET = $(MODULE).lint +INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) + +LDFLAGS += -dy -Nmisc/usba + +.KEEP_STATE: + +def: $(DEF_DEPS) + +all: $(ALL_DEPS) + +clean: $(CLEAN_DEPS) + +clobber: $(CLOBBER_DEPS) + +lint: $(LINT_DEPS) + +modlintlib: $(MODLINTLIB_DEPS) + +clean.lint: $(CLEAN_LINT_DEPS) + +install: $(INSTALL_DEPS) + +include $(UTSBASE)/intel/Makefile.targ |