From a94a63f0a6bc1ec25bf0d162e1dd9a53e020d176 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 9 Jul 2017 16:57:24 +0000 Subject: An MMC/SD/SDIO stack using CAM Implement the MMC/SD/SDIO protocol within a CAM framework. CAM's flexible queueing will make it easier to write non-storage drivers than the legacy stack. SDIO drivers from both the kernel and as userland daemons are possible, though much of that functionality will come later. Some of the CAM integration isn't complete (there are sleeps in the device probe state machine, for example), but those minor issues can be improved in-tree more easily than out of tree and shouldn't gate progress on other fronts. Appologies to reviews if specific items have been overlooked. Submitted by: Ilya Bakulin Reviewed by: emaste, imp, mav, adrian, ian Differential Review: https://reviews.freebsd.org/D4761 merge with first commit, various compile hacks. --- lib/libcam/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/libcam') diff --git a/lib/libcam/Makefile b/lib/libcam/Makefile index 7dd3e33bfba5..4ea82681a071 100644 --- a/lib/libcam/Makefile +++ b/lib/libcam/Makefile @@ -38,6 +38,7 @@ MLINKS+= cam.3 cam_open_device.3 \ .PATH: ${SRCTOP}/sys/cam \ ${SRCTOP}/sys/cam/ata \ + ${SRCTOP}/sys/cam/mmc \ ${SRCTOP}/sys/cam/scsi CFLAGS+= -I${.CURDIR} -I${SRCTOP}/sys -- cgit v1.2.3