aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini2019-02-18 22:12:59 -0500
committerTom Rini2019-02-18 22:12:59 -0500
commitb78a9e2212d4d15fd16af41ae33d05a5c33954de (patch)
tree994b373c7178adb852da72c2f5ef91d521ffda4b /include
parentf14de0014c56093feecf42ca38b8ae5b3878f176 (diff)
parent5097ba6177bad8c7e09b50149cacd6fd5020f0c8 (diff)
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
- Misc Gen5 fixes - stratix10 bugfix - dwmmc bugfix
Diffstat (limited to 'include')
-rw-r--r--include/dwmmc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dwmmc.h b/include/dwmmc.h
index 4ceda5e43c5..f06720dc0d9 100644
--- a/include/dwmmc.h
+++ b/include/dwmmc.h
@@ -130,6 +130,13 @@
/* UHS register */
#define DWMCI_DDR_MODE (1 << 16)
+/* Internal IDMAC interrupt defines */
+#define DWMCI_IDINTEN_RI BIT(1)
+#define DWMCI_IDINTEN_TI BIT(0)
+
+#define DWMCI_IDINTEN_MASK (DWMCI_IDINTEN_TI | \
+ DWMCI_IDINTEN_RI)
+
/* quirks */
#define DWMCI_QUIRK_DISABLE_SMU (1 << 0)