Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Dec 2019 18:43:40 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r355626 - in head/sys/modules/rockchip: . rk_dwmmc
Message-ID:  <201912111843.xBBIheUk019646@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912111843.xBBIheUk019646>