Bring in FreeBSD's MMC (MultiMediaCard) stack.
authorSascha Wildner <saw@online.de>
Fri, 16 Apr 2010 07:57:29 +0000 (09:57 +0200)
committerSascha Wildner <saw@online.de>
Fri, 16 Apr 2010 07:58:13 +0000 (09:58 +0200)
commitd664467926fd89b28ccdda75ae1bb5863fa3671b
treebf184c2e106ba21ab4780d0af2235b1a03928787
parent8f8338cee253097b7ea1d75cdefc4b5de453dd6b
Bring in FreeBSD's MMC (MultiMediaCard) stack.

mmc(4)   - The MMC bus
sdhci(4) - Host controller driver
mmcsd(4) - Memory card disk device driver

SD, SDHC and MMC cards should be supported (tested with an SDHC card).
22 files changed:
share/man/man4/Makefile
share/man/man4/mmc.4 [new file with mode: 0644]
share/man/man4/mmcsd.4 [new file with mode: 0644]
share/man/man4/sdhci.4 [new file with mode: 0644]
sys/bus/Makefile
sys/bus/mmc/Makefile [new file with mode: 0644]
sys/bus/mmc/bridge.h [new file with mode: 0644]
sys/bus/mmc/mmc.c [new file with mode: 0644]
sys/bus/mmc/mmcbr_if.m [new file with mode: 0644]
sys/bus/mmc/mmcbrvar.h [new file with mode: 0644]
sys/bus/mmc/mmcbus_if.m [new file with mode: 0644]
sys/bus/mmc/mmcreg.h [new file with mode: 0644]
sys/bus/mmc/mmcvar.h [new file with mode: 0644]
sys/conf/files
sys/conf/kmod.mk
sys/config/LINT
sys/dev/disk/Makefile
sys/dev/disk/mmcsd/Makefile [new file with mode: 0644]
sys/dev/disk/mmcsd/mmcsd.c [new file with mode: 0644]
sys/dev/disk/sdhci/Makefile [new file with mode: 0644]
sys/dev/disk/sdhci/sdhci.c [new file with mode: 0644]
sys/dev/disk/sdhci/sdhci.h [new file with mode: 0644]