summaryrefslogtreecommitdiff
path: root/include/mvebu/comphy.h
diff options
context:
space:
mode:
authorMarek BehĂșn <marek.behun@nic.cz>2018-08-17 12:58:51 +0200
committerStefan Roese <sr@denx.de>2018-09-19 08:59:26 +0200
commit4b8cb84327a448f16b276769e0ffbc7869d6de4a (patch)
tree5ffd78ce20819b00712a5d7ba31e35cb80f81dbf /include/mvebu/comphy.h
parent2fd4284051e33763e3424cbd7e106e0a75dfd16e (diff)
phy: marvell: Support changing SERDES map in board file
This adds a weak definition of comphy_update_map to comphy_core, which does nothing. If this function is defined elsewhere, for example in board file, the board file can change some parameters of SERDES configuration. This is needed on Turris Mox, where the SERDES speed on lane 1 has to be set differently when SFP module is connected and when Topaz Switch module is connected. This is a temporary solution. When the comphy driver for armada-3720 will be added to the kernel, the comphy driver in u-boot shall also be updated and this should be done differently then. Signed-off-by: Marek Behun <marek.behun@nic.cz> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/mvebu/comphy.h')
-rw-r--r--include/mvebu/comphy.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/mvebu/comphy.h b/include/mvebu/comphy.h
new file mode 100644
index 0000000000..cde7a022af
--- /dev/null
+++ b/include/mvebu/comphy.h
@@ -0,0 +1,22 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2015-2016 Marvell International Ltd.
+ */
+
+#ifndef _MVEBU_COMPHY_H_
+#define _MVEBU_COMPHY_H_
+
+#include <dt-bindings/comphy/comphy_data.h>
+
+struct comphy_map {
+ u32 type;
+ u32 speed;
+ u32 invert;
+ bool clk_src;
+ bool end_point;
+};
+
+int comphy_update_map(struct comphy_map *serdes_map, int count);
+
+#endif /* _MVEBU_COMPHY_H_ */
+