We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fba663 commit c133ec1Copy full SHA for c133ec1
drivers/reset/reset-imx8mp-audiomix.c
@@ -17,6 +17,9 @@
17
#define IMX8MP_AUDIOMIX_EARC_RESET_MASK BIT(1)
18
#define IMX8MP_AUDIOMIX_EARC_PHY_RESET_MASK BIT(2)
19
20
+#define IMX8MP_AUDIOMIX_DSP_RUNSTALL_OFFSET 0x108
21
+#define IMX8MP_AUDIOMIX_DSP_RUNSTALL_MASK BIT(5)
22
+
23
struct imx8mp_reset_map {
24
unsigned int offset;
25
unsigned int mask;
@@ -34,6 +37,11 @@ static const struct imx8mp_reset_map reset_map[] = {
34
37
.mask = IMX8MP_AUDIOMIX_EARC_PHY_RESET_MASK,
35
38
.active_low = true,
36
39
},
40
+ [IMX8MP_AUDIOMIX_DSP_RUNSTALL] = {
41
+ .offset = IMX8MP_AUDIOMIX_DSP_RUNSTALL_OFFSET,
42
+ .mask = IMX8MP_AUDIOMIX_DSP_RUNSTALL_MASK,
43
+ .active_low = false,
44
+ },
45
};
46
47
struct imx8mp_audiomix_reset {
0 commit comments