|
@@ -36,6 +36,7 @@
|
|
|
#include <asm/cdmm.h>
|
|
|
#include <asm/cpu.h>
|
|
|
#include <asm/debug.h>
|
|
|
+#include <asm/dma-coherence.h>
|
|
|
#include <asm/sections.h>
|
|
|
#include <asm/setup.h>
|
|
|
#include <asm/smp-ops.h>
|
|
@@ -1055,3 +1056,26 @@ static int __init debugfs_mips(void)
|
|
|
}
|
|
|
arch_initcall(debugfs_mips);
|
|
|
#endif
|
|
|
+
|
|
|
+#if defined(CONFIG_DMA_MAYBE_COHERENT) && !defined(CONFIG_DMA_PERDEV_COHERENT)
|
|
|
+/* User defined DMA coherency from command line. */
|
|
|
+enum coherent_io_user_state coherentio = IO_COHERENCE_DEFAULT;
|
|
|
+EXPORT_SYMBOL_GPL(coherentio);
|
|
|
+int hw_coherentio = 0; /* Actual hardware supported DMA coherency setting. */
|
|
|
+
|
|
|
+static int __init setcoherentio(char *str)
|
|
|
+{
|
|
|
+ coherentio = IO_COHERENCE_ENABLED;
|
|
|
+ pr_info("Hardware DMA cache coherency (command line)\n");
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+early_param("coherentio", setcoherentio);
|
|
|
+
|
|
|
+static int __init setnocoherentio(char *str)
|
|
|
+{
|
|
|
+ coherentio = IO_COHERENCE_DISABLED;
|
|
|
+ pr_info("Software DMA cache coherency (command line)\n");
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+early_param("nocoherentio", setnocoherentio);
|
|
|
+#endif
|