summaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/include/soc/modphy_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/baytrail/include/soc/modphy_table.h')
-rw-r--r--src/soc/intel/baytrail/include/soc/modphy_table.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/soc/intel/baytrail/include/soc/modphy_table.h b/src/soc/intel/baytrail/include/soc/modphy_table.h
new file mode 100644
index 0000000000..9a483c4a6a
--- /dev/null
+++ b/src/soc/intel/baytrail/include/soc/modphy_table.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef _BAYTRAIL_MODPHY_TABLE_H_
+#define _BAYTRAIL_MODPHY_TABLE_H_
+
+struct modphy_entry {
+ u8 port;
+ u32 reg;
+ u32 mask;
+ u32 value;
+ u8 op_read;
+ u8 op_write;
+};
+
+#define MODPHY_ENTRY_END ((struct modphy_entry) { 0, 0, 0, 0, 0, 0 })
+
+extern struct modphy_entry reva0_modphy_table[]; /* SOC stepping A0/A1 */
+extern struct modphy_entry revb0_modphy_table[]; /* SOC stepping B0 or later */
+
+#endif