Move dwmmc.h to dwmmc_reg.h. This is in preperation for adding support to

subclass the dwmmc driver to allow SoC specific attachments.

Sponsored by:	ABT Systems Ltd
This commit is contained in:
Andrew Turner 2015-08-28 15:27:55 +00:00
parent 93d5e88d46
commit 755eb18fd7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287258
2 changed files with 6 additions and 1 deletions

View File

@ -59,7 +59,7 @@ __FBSDID("$FreeBSD$");
#include <machine/cpu.h>
#include <machine/intr.h>
#include <dev/mmc/host/dwmmc.h>
#include <dev/mmc/host/dwmmc_reg.h>
#include "mmcbr_if.h"

View File

@ -30,6 +30,9 @@
* $FreeBSD$
*/
#ifndef DEV_MMC_HOST_DWMMC_REG_H
#define DEV_MMC_HOST_DWMMC_REG_H
#define SDMMC_CTRL 0x0 /* Control Register */
#define SDMMC_CTRL_USE_IDMAC (1 << 25) /* Use Internal DMAC */
#define SDMMC_CTRL_DMA_ENABLE (1 << 5) /* */
@ -150,3 +153,5 @@
#define SDMMC_CLKSEL_SAMPLE_SHIFT 0
#define SDMMC_CLKSEL_DRIVE_SHIFT 16
#define SDMMC_CLKSEL_DIVIDER_SHIFT 24
#endif /* DEV_MMC_HOST_DWMMC_REG_H */