summaryrefslogtreecommitdiff
path: root/libdde-linux26/contrib/include/linux/mbus.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:15:10 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:15:10 +0000
commitb5875be0451b92bdd99663c8305ae46bd6a7d90c (patch)
tree68a6a5f79ac618c79ba3777c21faaea9aec2f0b4 /libdde-linux26/contrib/include/linux/mbus.h
parentce6a36c7f7c88e7ca0fda816f9282237bb86829d (diff)
parent7996a3d79d55b7f879dfd62e202bbfe2963718d3 (diff)
Merge branch 'upstream-merged'
Diffstat (limited to 'libdde-linux26/contrib/include/linux/mbus.h')
-rw-r--r--libdde-linux26/contrib/include/linux/mbus.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/libdde-linux26/contrib/include/linux/mbus.h b/libdde-linux26/contrib/include/linux/mbus.h
new file mode 100644
index 00000000..c11ff293
--- /dev/null
+++ b/libdde-linux26/contrib/include/linux/mbus.h
@@ -0,0 +1,36 @@
+/*
+ * Marvell MBUS common definitions.
+ *
+ * Copyright (C) 2008 Marvell Semiconductor
+ *
+ * This file is licensed under the terms of the GNU General Public
+ * License version 2. This program is licensed "as is" without any
+ * warranty of any kind, whether express or implied.
+ */
+
+#ifndef __LINUX_MBUS_H
+#define __LINUX_MBUS_H
+
+struct mbus_dram_target_info
+{
+ /*
+ * The 4-bit MBUS target ID of the DRAM controller.
+ */
+ u8 mbus_dram_target_id;
+
+ /*
+ * The base address, size, and MBUS attribute ID for each
+ * of the possible DRAM chip selects. Peripherals are
+ * required to support at least 4 decode windows.
+ */
+ int num_cs;
+ struct mbus_dram_window {
+ u8 cs_index;
+ u8 mbus_attr;
+ u32 base;
+ u32 size;
+ } cs[4];
+};
+
+
+#endif