svn commit: r355626 - in head/sys/modules/rockchip: . rk_dwmmc

Emmanuel Vadot manu at FreeBSD.org
Wed Dec 11 18:43:40 UTC 2019


Author: manu
Date: Wed Dec 11 18:43:39 2019
New Revision: 355626
URL: https://svnweb.freebsd.org/changeset/base/355626

Log:
  arm64: rockchip: Add a module for rk_dwmmc
  
  This is mostly needed for dev/debug as most users will have their root
  on the sdcard or emmc.
  
  MFC after:	1 month

Added:
  head/sys/modules/rockchip/rk_dwmmc/
  head/sys/modules/rockchip/rk_dwmmc/Makefile   (contents, props changed)
Modified:
  head/sys/modules/rockchip/Makefile

Modified: head/sys/modules/rockchip/Makefile
==============================================================================
--- head/sys/modules/rockchip/Makefile	Wed Dec 11 18:41:13 2019	(r355625)
+++ head/sys/modules/rockchip/Makefile	Wed Dec 11 18:43:39 2019	(r355626)
@@ -3,6 +3,7 @@
 
 SUBDIR = \
 	rk_i2c \
-	rk805
+	rk805 \
+	rk_dwmmc
 
 .include <bsd.subdir.mk>

Added: head/sys/modules/rockchip/rk_dwmmc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/rockchip/rk_dwmmc/Makefile	Wed Dec 11 18:43:39 2019	(r355626)
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/dev/mmc/host/
+
+KMOD=	rk_dwmmc
+SRCS=	dwmmc.c dwmmc_rockchip.c
+
+SRCS+=	\
+	bus_if.h \
+	clknode_if.h \
+	device_if.h \
+	ofw_bus_if.h
+
+.include <bsd.kmod.mk>


More information about the svn-src-head mailing list