blob: c67ba997629adf9b2a9556f22e2de4204ef44607 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese33357862016-05-23 11:12:05 +02002/*
3 * Copyright (C) 2015-2016 Marvell International Ltd.
Stefan Roese33357862016-05-23 11:12:05 +02004 */
5
6#include <common.h>
7#include <asm/io.h>
8
Marek Behún4b8cb842018-08-17 12:58:51 +02009#include "comphy_core.h"
Stefan Roese33357862016-05-23 11:12:05 +020010#include "comphy_hpipe.h"
11
12/*
13 * comphy_mux_check_config()
14 * description: this function passes over the COMPHY lanes and check if the type
15 * is valid for specific lane. If the type is not valid,
16 * the function update the struct and set the type of the lane as
17 * PHY_TYPE_UNCONNECTED
18 */
19static void comphy_mux_check_config(struct comphy_mux_data *mux_data,
20 struct comphy_map *comphy_map_data, int comphy_max_lanes)
21{
22 struct comphy_mux_options *mux_opt;
23 int lane, opt, valid;
24
25 debug_enter();
26
27 for (lane = 0; lane < comphy_max_lanes;
28 lane++, comphy_map_data++, mux_data++) {
Stefan Roese6ecc0b12017-04-24 18:45:24 +030029 /* Don't check ignored COMPHYs */
30 if (comphy_map_data->type == PHY_TYPE_IGNORE)
31 continue;
32
Stefan Roese33357862016-05-23 11:12:05 +020033 mux_opt = mux_data->mux_values;
34 for (opt = 0, valid = 0; opt < mux_data->max_lane_values;
35 opt++, mux_opt++) {
36 if (mux_opt->type == comphy_map_data->type) {
37 valid = 1;
38 break;
39 }
40 }
41 if (valid == 0) {
42 debug("lane number %d, had invalid type %d\n",
43 lane, comphy_map_data->type);
44 debug("set lane %d as type %d\n", lane,
45 PHY_TYPE_UNCONNECTED);
46 comphy_map_data->type = PHY_TYPE_UNCONNECTED;
47 } else {
48 debug("lane number %d, has type %d\n",
49 lane, comphy_map_data->type);
50 }
51 }
52
53 debug_exit();
54}
55
56static u32 comphy_mux_get_mux_value(struct comphy_mux_data *mux_data,
57 u32 type, int lane)
58{
59 struct comphy_mux_options *mux_opt;
60 int opt;
61 u32 value = 0;
62
63 debug_enter();
64
65 mux_opt = mux_data->mux_values;
66 for (opt = 0 ; opt < mux_data->max_lane_values; opt++, mux_opt++) {
67 if (mux_opt->type == type) {
68 value = mux_opt->mux_value;
69 break;
70 }
71 }
72
73 debug_exit();
74
75 return value;
76}
77
78static void comphy_mux_reg_write(struct comphy_mux_data *mux_data,
79 struct comphy_map *comphy_map_data,
80 int comphy_max_lanes,
Marek Behún7586ac22018-04-24 17:21:21 +020081 void __iomem *selector_base,
82 const fdt32_t *mux_lane_order, u32 bitcount)
Stefan Roese33357862016-05-23 11:12:05 +020083{
84 u32 lane, value, offset, mask;
85
86 debug_enter();
87
88 for (lane = 0; lane < comphy_max_lanes;
89 lane++, comphy_map_data++, mux_data++) {
Stefan Roese6ecc0b12017-04-24 18:45:24 +030090 if (comphy_map_data->type == PHY_TYPE_IGNORE)
91 continue;
92
Marek Behún7586ac22018-04-24 17:21:21 +020093 /*
94 * if the order of nodes in selector base register is
95 * nontrivial, use mapping from mux_lane_order
96 */
97 if (mux_lane_order)
98 offset = fdt32_to_cpu(mux_lane_order[lane]) * bitcount;
99 else
100 offset = lane * bitcount;
101
Stefan Roese33357862016-05-23 11:12:05 +0200102 mask = (((1 << bitcount) - 1) << offset);
103 value = (comphy_mux_get_mux_value(mux_data,
104 comphy_map_data->type,
105 lane) << offset);
106 reg_set(selector_base, value, mask);
107 }
108
109 debug_exit();
110}
111
112void comphy_mux_init(struct chip_serdes_phy_config *chip_cfg,
113 struct comphy_map *comphy_map_data,
114 void __iomem *selector_base)
115{
116 struct comphy_mux_data *mux_data;
Marek Behún7586ac22018-04-24 17:21:21 +0200117 const fdt32_t *mux_lane_order;
Stefan Roese33357862016-05-23 11:12:05 +0200118 u32 mux_bitcount;
119 u32 comphy_max_lanes;
120
121 debug_enter();
122
123 comphy_max_lanes = chip_cfg->comphy_lanes_count;
124 mux_data = chip_cfg->mux_data;
Marek Behún7586ac22018-04-24 17:21:21 +0200125 mux_lane_order = chip_cfg->comphy_mux_lane_order;
Stefan Roese33357862016-05-23 11:12:05 +0200126 mux_bitcount = chip_cfg->comphy_mux_bitcount;
127
128 /* check if the configuration is valid */
129 comphy_mux_check_config(mux_data, comphy_map_data, comphy_max_lanes);
130 /* Init COMPHY selectors */
131 comphy_mux_reg_write(mux_data, comphy_map_data, comphy_max_lanes,
Marek Behún7586ac22018-04-24 17:21:21 +0200132 selector_base, mux_lane_order, mux_bitcount);
Stefan Roese33357862016-05-23 11:12:05 +0200133
134 debug_exit();
135}