1 // SPDX-License-Identifier: GPL-2.0+
3 * PCIe SERDES driver for AM654x SoC
5 * Copyright (C) 2018 Texas Instruments
6 * Author: Kishon Vijay Abraham I <kishon@ti.com>
10 #include <clk-uclass.h>
13 #include <dm/device.h>
14 #include <dm/device_compat.h>
16 #include <dt-bindings/phy/phy.h>
17 #include <generic-phy.h>
19 #include <asm/arch/sys_proto.h>
20 #include <power-domain.h>
23 #include <linux/bitops.h>
24 #include <linux/delay.h>
25 #include <linux/err.h>
28 #define CMU_MASTER_CDN_O BIT(24)
30 #define COMLANE_R138 0xb38
31 #define CONFIG_VERSION_REG_MASK GENMASK(23, 16)
32 #define CONFIG_VERSION_REG_SHIFT 16
35 #define COMLANE_R190 0xb90
36 #define L1_MASTER_CDN_O BIT(9)
38 #define COMLANE_R194 0xb94
39 #define CMU_OK_I_0 BIT(19)
41 #define SERDES_CTRL 0x1fd0
42 #define POR_EN BIT(29)
44 #define WIZ_LANEXCTL_STS 0x1fe0
45 #define TX0_ENABLE_OVL BIT(31)
46 #define TX0_ENABLE_MASK GENMASK(30, 29)
47 #define TX0_ENABLE_SHIFT 29
48 #define TX0_DISABLE_STATE 0x0
49 #define TX0_SLEEP_STATE 0x1
50 #define TX0_SNOOZE_STATE 0x2
51 #define TX0_ENABLE_STATE 0x3
52 #define RX0_ENABLE_OVL BIT(15)
53 #define RX0_ENABLE_MASK GENMASK(14, 13)
54 #define RX0_ENABLE_SHIFT 13
55 #define RX0_DISABLE_STATE 0x0
56 #define RX0_SLEEP_STATE 0x1
57 #define RX0_SNOOZE_STATE 0x2
58 #define RX0_ENABLE_STATE 0x3
60 #define WIZ_PLL_CTRL 0x1ff4
61 #define PLL_ENABLE_OVL BIT(31)
62 #define PLL_ENABLE_MASK GENMASK(30, 29)
63 #define PLL_ENABLE_SHIFT 29
64 #define PLL_DISABLE_STATE 0x0
65 #define PLL_SLEEP_STATE 0x1
66 #define PLL_SNOOZE_STATE 0x2
67 #define PLL_ENABLE_STATE 0x3
68 #define PLL_OK BIT(28)
70 #define PLL_LOCK_TIME 1000 /* in milliseconds */
71 #define SLEEP_TIME 100 /* in microseconds */
74 #define LANE_PCIE0_LANE0 0x1
76 #define LANE_PCIE1_LANE0 0x0
77 #define LANE_PCIE0_LANE1 0x1
79 #define SERDES_NUM_CLOCKS 3
81 /* SERDES control MMR bit offsets */
82 #define SERDES_CTL_LANE_FUNC_SEL_SHIFT 0
83 #define SERDES_CTL_LANE_FUNC_SEL_MASK GENMASK(1, 0)
84 #define SERDES_CTL_CLK_SEL_SHIFT 4
85 #define SERDES_CTL_CLK_SEL_MASK GENMASK(7, 4)
88 * struct serdes_am654_mux_clk_data - clock controller information structure
90 struct serdes_am654_mux_clk_data {
91 struct regmap *regmap;
92 struct clk_bulk parents;
95 static int serdes_am654_mux_clk_probe(struct udevice *dev)
97 struct serdes_am654_mux_clk_data *data = dev_get_priv(dev);
98 struct udevice *syscon;
99 struct regmap *regmap;
102 debug("%s(dev=%s)\n", __func__, dev->name);
107 ret = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
108 "ti,serdes-clk", &syscon);
110 dev_err(dev, "unable to find syscon device\n");
114 regmap = syscon_get_regmap(syscon);
115 if (IS_ERR(regmap)) {
116 dev_err(dev, "Fail to get Syscon regmap\n");
117 return PTR_ERR(regmap);
120 data->regmap = regmap;
122 ret = clk_get_bulk(dev, &data->parents);
124 dev_err(dev, "Failed to obtain parent clocks\n");
131 static int mux_table[SERDES_NUM_CLOCKS][3] = {
133 * The entries represent values for selecting between
134 * {left input, external reference clock, right input}
135 * Only one of Left Output or Right Output should be used since
136 * both left and right output clock uses the same bits and modifying
137 * one clock will impact the other.
139 { BIT(2), 0, BIT(0) }, /* Mux of CMU refclk */
140 { -1, BIT(3), BIT(1) }, /* Mux of Left Output */
141 { BIT(1), BIT(3) | BIT(1), -1 }, /* Mux of Right Output */
144 static int serdes_am654_mux_clk_set_parent(struct clk *clk, struct clk *parent)
146 struct serdes_am654_mux_clk_data *data = dev_get_priv(clk->dev);
150 debug("%s(clk=%s, parent=%s)\n", __func__, clk->dev->name,
154 * Since we have the same device-tree node represent both the
155 * clock and serdes device, we have two devices associated with
156 * the serdes node. assigned-clocks for this node is processed twice,
157 * once for the clock device and another time for the serdes
158 * device. When it is processed for the clock device, it is before
159 * the probe for clock device has been called. We ignore this case
160 * and rely on assigned-clocks to be processed correctly for the
166 for (i = 0; i < data->parents.count; i++) {
167 if (clk_is_match(&data->parents.clks[i], parent))
171 if (i >= data->parents.count)
174 val = mux_table[clk->id][i];
175 val <<= SERDES_CTL_CLK_SEL_SHIFT;
177 regmap_update_bits(data->regmap, 0, SERDES_CTL_CLK_SEL_MASK, val);
182 static struct clk_ops serdes_am654_mux_clk_ops = {
183 .set_parent = serdes_am654_mux_clk_set_parent,
186 U_BOOT_DRIVER(serdes_am654_mux_clk) = {
187 .name = "ti-serdes-am654-mux-clk",
189 .probe = serdes_am654_mux_clk_probe,
190 .priv_auto_alloc_size = sizeof(struct serdes_am654_mux_clk_data),
191 .ops = &serdes_am654_mux_clk_ops,
194 struct serdes_am654 {
195 struct regmap *regmap;
196 struct regmap *serdes_ctl;
199 static int serdes_am654_enable_pll(struct serdes_am654 *phy)
201 u32 mask = PLL_ENABLE_OVL | PLL_ENABLE_MASK;
202 u32 val = PLL_ENABLE_OVL | (PLL_ENABLE_STATE << PLL_ENABLE_SHIFT);
204 regmap_update_bits(phy->regmap, WIZ_PLL_CTRL, mask, val);
206 return regmap_read_poll_timeout(phy->regmap, WIZ_PLL_CTRL, val,
207 val & PLL_OK, 1000, PLL_LOCK_TIME);
210 static void serdes_am654_disable_pll(struct serdes_am654 *phy)
212 u32 mask = PLL_ENABLE_OVL | PLL_ENABLE_MASK;
214 regmap_update_bits(phy->regmap, WIZ_PLL_CTRL, mask, 0);
217 static int serdes_am654_enable_txrx(struct serdes_am654 *phy)
223 mask = TX0_ENABLE_OVL | TX0_ENABLE_MASK;
224 val = TX0_ENABLE_OVL | (TX0_ENABLE_STATE << TX0_ENABLE_SHIFT);
225 regmap_update_bits(phy->regmap, WIZ_LANEXCTL_STS, mask, val);
228 mask = RX0_ENABLE_OVL | RX0_ENABLE_MASK;
229 val = RX0_ENABLE_OVL | (RX0_ENABLE_STATE << RX0_ENABLE_SHIFT);
230 regmap_update_bits(phy->regmap, WIZ_LANEXCTL_STS, mask, val);
235 static int serdes_am654_disable_txrx(struct serdes_am654 *phy)
240 mask = TX0_ENABLE_OVL | TX0_ENABLE_MASK;
241 regmap_update_bits(phy->regmap, WIZ_LANEXCTL_STS, mask, 0);
244 mask = RX0_ENABLE_OVL | RX0_ENABLE_MASK;
245 regmap_update_bits(phy->regmap, WIZ_LANEXCTL_STS, mask, 0);
250 static int serdes_am654_power_on(struct phy *x)
252 struct serdes_am654 *phy = dev_get_priv(x->dev);
256 ret = serdes_am654_enable_pll(phy);
258 dev_err(x->dev, "Failed to enable PLL\n");
262 ret = serdes_am654_enable_txrx(phy);
264 dev_err(x->dev, "Failed to enable TX RX\n");
268 return regmap_read_poll_timeout(phy->regmap, COMLANE_R194, val,
269 val & CMU_OK_I_0, SLEEP_TIME,
273 static int serdes_am654_power_off(struct phy *x)
275 struct serdes_am654 *phy = dev_get_priv(x->dev);
277 serdes_am654_disable_txrx(phy);
278 serdes_am654_disable_pll(phy);
283 static int serdes_am654_init(struct phy *x)
285 struct serdes_am654 *phy = dev_get_priv(x->dev);
289 mask = CONFIG_VERSION_REG_MASK;
290 val = VERSION << CONFIG_VERSION_REG_SHIFT;
291 regmap_update_bits(phy->regmap, COMLANE_R138, mask, val);
293 val = CMU_MASTER_CDN_O;
294 regmap_update_bits(phy->regmap, CMU_R07C, val, val);
296 val = L1_MASTER_CDN_O;
297 regmap_update_bits(phy->regmap, COMLANE_R190, val, val);
302 static int serdes_am654_reset(struct phy *x)
304 struct serdes_am654 *phy = dev_get_priv(x->dev);
308 regmap_update_bits(phy->regmap, SERDES_CTRL, val, val);
310 regmap_update_bits(phy->regmap, SERDES_CTRL, val, 0);
315 static int serdes_am654_of_xlate(struct phy *x,
316 struct ofnode_phandle_args *args)
318 struct serdes_am654 *phy = dev_get_priv(x->dev);
320 if (args->args_count != 2) {
321 dev_err(x->dev, "Invalid DT PHY argument count: %d\n",
326 if (args->args[0] != PHY_TYPE_PCIE) {
327 dev_err(x->dev, "Unrecognized PHY type: %d\n",
332 x->id = args->args[0] | (args->args[1] << 16);
334 /* Setup mux mode using second argument */
335 regmap_update_bits(phy->serdes_ctl, 0, SERDES_CTL_LANE_FUNC_SEL_MASK,
341 static int serdes_am654_bind(struct udevice *dev)
345 ret = device_bind_driver_to_node(dev->parent,
346 "ti-serdes-am654-mux-clk",
347 dev_read_name(dev), dev->node,
350 dev_err(dev, "%s: not able to bind clock driver\n", __func__);
357 static int serdes_am654_probe(struct udevice *dev)
359 struct serdes_am654 *phy = dev_get_priv(dev);
360 struct power_domain serdes_pwrdmn;
361 struct regmap *serdes_ctl;
365 ret = regmap_init_mem(dev_ofnode(dev), &map);
371 serdes_ctl = syscon_regmap_lookup_by_phandle(dev, "ti,serdes-clk");
372 if (IS_ERR(serdes_ctl)) {
373 dev_err(dev, "unable to find syscon device\n");
374 return PTR_ERR(serdes_ctl);
377 phy->serdes_ctl = serdes_ctl;
379 ret = power_domain_get_by_index(dev, &serdes_pwrdmn, 0);
381 dev_err(dev, "failed to get power domain\n");
385 ret = power_domain_on(&serdes_pwrdmn);
387 dev_err(dev, "Power domain on failed\n");
394 static const struct udevice_id serdes_am654_phy_ids[] = {
396 .compatible = "ti,phy-am654-serdes",
400 static const struct phy_ops serdes_am654_phy_ops = {
401 .reset = serdes_am654_reset,
402 .init = serdes_am654_init,
403 .power_on = serdes_am654_power_on,
404 .power_off = serdes_am654_power_off,
405 .of_xlate = serdes_am654_of_xlate,
408 U_BOOT_DRIVER(am654_serdes_phy) = {
409 .name = "am654_serdes_phy",
411 .of_match = serdes_am654_phy_ids,
412 .bind = serdes_am654_bind,
413 .ops = &serdes_am654_phy_ops,
414 .probe = serdes_am654_probe,
415 .priv_auto_alloc_size = sizeof(struct serdes_am654),