2 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 #include <linux/delay.h>
16 #include <linux/module.h>
18 #include <linux/phy/phy.h>
19 #include <linux/pinctrl/pinctrl.h>
20 #include <linux/pinctrl/pinmux.h>
21 #include <linux/platform_device.h>
22 #include <linux/reset.h>
23 #include <linux/slab.h>
25 #include <dt-bindings/pinctrl/pinctrl-tegra-xusb.h>
28 #include "pinctrl-utils.h"
30 #define XUSB_PADCTL_ELPG_PROGRAM 0x01c
31 #define XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_VCORE_DOWN (1 << 26)
32 #define XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_CLAMP_EN_EARLY (1 << 25)
33 #define XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_CLAMP_EN (1 << 24)
35 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL1 0x040
36 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL1_PLL0_LOCKDET (1 << 19)
37 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL1_REFCLK_SEL_MASK (0xf << 12)
38 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL1_PLL_RST (1 << 1)
40 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL2 0x044
41 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL2_REFCLKBUF_EN (1 << 6)
42 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL2_TXCLKREF_EN (1 << 5)
43 #define XUSB_PADCTL_IOPHY_PLL_P0_CTL2_TXCLKREF_SEL (1 << 4)
45 #define XUSB_PADCTL_IOPHY_PLL_S0_CTL1 0x138
46 #define XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL1_LOCKDET (1 << 27)
47 #define XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL1_MODE (1 << 24)
48 #define XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_PWR_OVRD (1 << 3)
49 #define XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_RST (1 << 1)
50 #define XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_IDDQ (1 << 0)
52 #define XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1 0x148
53 #define XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1_IDDQ_OVRD (1 << 1)
54 #define XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1_IDDQ (1 << 0)
56 struct tegra_xusb_padctl_function
{
58 const char * const *groups
;
59 unsigned int num_groups
;
62 struct tegra_xusb_padctl_soc
{
63 const struct pinctrl_pin_desc
*pins
;
64 unsigned int num_pins
;
66 const struct tegra_xusb_padctl_function
*functions
;
67 unsigned int num_functions
;
69 const struct tegra_xusb_padctl_lane
*lanes
;
70 unsigned int num_lanes
;
73 struct tegra_xusb_padctl_lane
{
81 const unsigned int *funcs
;
82 unsigned int num_funcs
;
85 struct tegra_xusb_padctl
{
89 struct reset_control
*rst
;
91 const struct tegra_xusb_padctl_soc
*soc
;
92 struct pinctrl_dev
*pinctrl
;
93 struct pinctrl_desc desc
;
95 struct phy_provider
*provider
;
101 static inline void padctl_writel(struct tegra_xusb_padctl
*padctl
, u32 value
,
102 unsigned long offset
)
104 writel(value
, padctl
->regs
+ offset
);
107 static inline u32
padctl_readl(struct tegra_xusb_padctl
*padctl
,
108 unsigned long offset
)
110 return readl(padctl
->regs
+ offset
);
113 static int tegra_xusb_padctl_get_groups_count(struct pinctrl_dev
*pinctrl
)
115 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
117 return padctl
->soc
->num_pins
;
120 static const char *tegra_xusb_padctl_get_group_name(struct pinctrl_dev
*pinctrl
,
123 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
125 return padctl
->soc
->pins
[group
].name
;
128 static int tegra_xusb_padctl_get_group_pins(struct pinctrl_dev
*pinctrl
,
130 const unsigned **pins
,
134 * For the tegra-xusb pad controller groups are synonomous
135 * with lanes/pins and there is always one lane/pin per group.
137 *pins
= &pinctrl
->desc
->pins
[group
].number
;
143 enum tegra_xusb_padctl_param
{
144 TEGRA_XUSB_PADCTL_IDDQ
,
147 static const struct tegra_xusb_padctl_property
{
149 enum tegra_xusb_padctl_param param
;
151 { "nvidia,iddq", TEGRA_XUSB_PADCTL_IDDQ
},
154 #define TEGRA_XUSB_PADCTL_PACK(param, value) ((param) << 16 | (value))
155 #define TEGRA_XUSB_PADCTL_UNPACK_PARAM(config) ((config) >> 16)
156 #define TEGRA_XUSB_PADCTL_UNPACK_VALUE(config) ((config) & 0xffff)
158 static int tegra_xusb_padctl_parse_subnode(struct tegra_xusb_padctl
*padctl
,
159 struct device_node
*np
,
160 struct pinctrl_map
**maps
,
161 unsigned int *reserved_maps
,
162 unsigned int *num_maps
)
164 unsigned int i
, reserve
= 0, num_configs
= 0;
165 unsigned long config
, *configs
= NULL
;
166 const char *function
, *group
;
167 struct property
*prop
;
171 err
= of_property_read_string(np
, "nvidia,function", &function
);
179 for (i
= 0; i
< ARRAY_SIZE(properties
); i
++) {
180 err
= of_property_read_u32(np
, properties
[i
].name
, &value
);
188 config
= TEGRA_XUSB_PADCTL_PACK(properties
[i
].param
, value
);
190 err
= pinctrl_utils_add_config(padctl
->pinctrl
, &configs
,
191 &num_configs
, config
);
202 err
= of_property_count_strings(np
, "nvidia,lanes");
208 err
= pinctrl_utils_reserve_map(padctl
->pinctrl
, maps
, reserved_maps
,
213 of_property_for_each_string(np
, "nvidia,lanes", prop
, group
) {
215 err
= pinctrl_utils_add_map_mux(padctl
->pinctrl
, maps
,
216 reserved_maps
, num_maps
, group
,
223 err
= pinctrl_utils_add_map_configs(padctl
->pinctrl
,
224 maps
, reserved_maps
, num_maps
, group
,
225 configs
, num_configs
,
226 PIN_MAP_TYPE_CONFIGS_GROUP
);
239 static int tegra_xusb_padctl_dt_node_to_map(struct pinctrl_dev
*pinctrl
,
240 struct device_node
*parent
,
241 struct pinctrl_map
**maps
,
242 unsigned int *num_maps
)
244 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
245 unsigned int reserved_maps
= 0;
246 struct device_node
*np
;
252 for_each_child_of_node(parent
, np
) {
253 err
= tegra_xusb_padctl_parse_subnode(padctl
, np
, maps
,
263 static const struct pinctrl_ops tegra_xusb_padctl_pinctrl_ops
= {
264 .get_groups_count
= tegra_xusb_padctl_get_groups_count
,
265 .get_group_name
= tegra_xusb_padctl_get_group_name
,
266 .get_group_pins
= tegra_xusb_padctl_get_group_pins
,
267 .dt_node_to_map
= tegra_xusb_padctl_dt_node_to_map
,
268 .dt_free_map
= pinctrl_utils_dt_free_map
,
271 static int tegra_xusb_padctl_get_functions_count(struct pinctrl_dev
*pinctrl
)
273 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
275 return padctl
->soc
->num_functions
;
279 tegra_xusb_padctl_get_function_name(struct pinctrl_dev
*pinctrl
,
280 unsigned int function
)
282 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
284 return padctl
->soc
->functions
[function
].name
;
287 static int tegra_xusb_padctl_get_function_groups(struct pinctrl_dev
*pinctrl
,
288 unsigned int function
,
289 const char * const **groups
,
290 unsigned * const num_groups
)
292 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
294 *num_groups
= padctl
->soc
->functions
[function
].num_groups
;
295 *groups
= padctl
->soc
->functions
[function
].groups
;
300 static int tegra_xusb_padctl_pinmux_set(struct pinctrl_dev
*pinctrl
,
301 unsigned int function
,
304 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
305 const struct tegra_xusb_padctl_lane
*lane
;
309 lane
= &padctl
->soc
->lanes
[group
];
311 for (i
= 0; i
< lane
->num_funcs
; i
++)
312 if (lane
->funcs
[i
] == function
)
315 if (i
>= lane
->num_funcs
)
318 value
= padctl_readl(padctl
, lane
->offset
);
319 value
&= ~(lane
->mask
<< lane
->shift
);
320 value
|= i
<< lane
->shift
;
321 padctl_writel(padctl
, value
, lane
->offset
);
326 static const struct pinmux_ops tegra_xusb_padctl_pinmux_ops
= {
327 .get_functions_count
= tegra_xusb_padctl_get_functions_count
,
328 .get_function_name
= tegra_xusb_padctl_get_function_name
,
329 .get_function_groups
= tegra_xusb_padctl_get_function_groups
,
330 .set_mux
= tegra_xusb_padctl_pinmux_set
,
333 static int tegra_xusb_padctl_pinconf_group_get(struct pinctrl_dev
*pinctrl
,
335 unsigned long *config
)
337 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
338 const struct tegra_xusb_padctl_lane
*lane
;
339 enum tegra_xusb_padctl_param param
;
342 param
= TEGRA_XUSB_PADCTL_UNPACK_PARAM(*config
);
343 lane
= &padctl
->soc
->lanes
[group
];
346 case TEGRA_XUSB_PADCTL_IDDQ
:
347 /* lanes with iddq == 0 don't support this parameter */
351 value
= padctl_readl(padctl
, lane
->offset
);
353 if (value
& BIT(lane
->iddq
))
358 *config
= TEGRA_XUSB_PADCTL_PACK(param
, value
);
362 dev_err(padctl
->dev
, "invalid configuration parameter: %04x\n",
370 static int tegra_xusb_padctl_pinconf_group_set(struct pinctrl_dev
*pinctrl
,
372 unsigned long *configs
,
373 unsigned int num_configs
)
375 struct tegra_xusb_padctl
*padctl
= pinctrl_dev_get_drvdata(pinctrl
);
376 const struct tegra_xusb_padctl_lane
*lane
;
377 enum tegra_xusb_padctl_param param
;
382 lane
= &padctl
->soc
->lanes
[group
];
384 for (i
= 0; i
< num_configs
; i
++) {
385 param
= TEGRA_XUSB_PADCTL_UNPACK_PARAM(configs
[i
]);
386 value
= TEGRA_XUSB_PADCTL_UNPACK_VALUE(configs
[i
]);
389 case TEGRA_XUSB_PADCTL_IDDQ
:
390 /* lanes with iddq == 0 don't support this parameter */
394 regval
= padctl_readl(padctl
, lane
->offset
);
397 regval
&= ~BIT(lane
->iddq
);
399 regval
|= BIT(lane
->iddq
);
401 padctl_writel(padctl
, regval
, lane
->offset
);
406 "invalid configuration parameter: %04x\n",
415 #ifdef CONFIG_DEBUG_FS
416 static const char *strip_prefix(const char *s
)
418 const char *comma
= strchr(s
, ',');
426 tegra_xusb_padctl_pinconf_group_dbg_show(struct pinctrl_dev
*pinctrl
,
432 for (i
= 0; i
< ARRAY_SIZE(properties
); i
++) {
433 unsigned long config
, value
;
436 config
= TEGRA_XUSB_PADCTL_PACK(properties
[i
].param
, 0);
438 err
= tegra_xusb_padctl_pinconf_group_get(pinctrl
, group
,
443 value
= TEGRA_XUSB_PADCTL_UNPACK_VALUE(config
);
445 seq_printf(s
, "\n\t%s=%lu\n", strip_prefix(properties
[i
].name
),
451 tegra_xusb_padctl_pinconf_config_dbg_show(struct pinctrl_dev
*pinctrl
,
453 unsigned long config
)
455 enum tegra_xusb_padctl_param param
;
456 const char *name
= "unknown";
460 param
= TEGRA_XUSB_PADCTL_UNPACK_PARAM(config
);
461 value
= TEGRA_XUSB_PADCTL_UNPACK_VALUE(config
);
463 for (i
= 0; i
< ARRAY_SIZE(properties
); i
++) {
464 if (properties
[i
].param
== param
) {
465 name
= properties
[i
].name
;
470 seq_printf(s
, "%s=%lu", strip_prefix(name
), value
);
474 static const struct pinconf_ops tegra_xusb_padctl_pinconf_ops
= {
475 .pin_config_group_get
= tegra_xusb_padctl_pinconf_group_get
,
476 .pin_config_group_set
= tegra_xusb_padctl_pinconf_group_set
,
477 #ifdef CONFIG_DEBUG_FS
478 .pin_config_group_dbg_show
= tegra_xusb_padctl_pinconf_group_dbg_show
,
479 .pin_config_config_dbg_show
= tegra_xusb_padctl_pinconf_config_dbg_show
,
483 static int tegra_xusb_padctl_enable(struct tegra_xusb_padctl
*padctl
)
487 mutex_lock(&padctl
->lock
);
489 if (padctl
->enable
++ > 0)
492 value
= padctl_readl(padctl
, XUSB_PADCTL_ELPG_PROGRAM
);
493 value
&= ~XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_CLAMP_EN
;
494 padctl_writel(padctl
, value
, XUSB_PADCTL_ELPG_PROGRAM
);
496 usleep_range(100, 200);
498 value
= padctl_readl(padctl
, XUSB_PADCTL_ELPG_PROGRAM
);
499 value
&= ~XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_CLAMP_EN_EARLY
;
500 padctl_writel(padctl
, value
, XUSB_PADCTL_ELPG_PROGRAM
);
502 usleep_range(100, 200);
504 value
= padctl_readl(padctl
, XUSB_PADCTL_ELPG_PROGRAM
);
505 value
&= ~XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_VCORE_DOWN
;
506 padctl_writel(padctl
, value
, XUSB_PADCTL_ELPG_PROGRAM
);
509 mutex_unlock(&padctl
->lock
);
513 static int tegra_xusb_padctl_disable(struct tegra_xusb_padctl
*padctl
)
517 mutex_lock(&padctl
->lock
);
519 if (WARN_ON(padctl
->enable
== 0))
522 if (--padctl
->enable
> 0)
525 value
= padctl_readl(padctl
, XUSB_PADCTL_ELPG_PROGRAM
);
526 value
|= XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_VCORE_DOWN
;
527 padctl_writel(padctl
, value
, XUSB_PADCTL_ELPG_PROGRAM
);
529 usleep_range(100, 200);
531 value
= padctl_readl(padctl
, XUSB_PADCTL_ELPG_PROGRAM
);
532 value
|= XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_CLAMP_EN_EARLY
;
533 padctl_writel(padctl
, value
, XUSB_PADCTL_ELPG_PROGRAM
);
535 usleep_range(100, 200);
537 value
= padctl_readl(padctl
, XUSB_PADCTL_ELPG_PROGRAM
);
538 value
|= XUSB_PADCTL_ELPG_PROGRAM_AUX_MUX_LP0_CLAMP_EN
;
539 padctl_writel(padctl
, value
, XUSB_PADCTL_ELPG_PROGRAM
);
542 mutex_unlock(&padctl
->lock
);
546 static int tegra_xusb_phy_init(struct phy
*phy
)
548 struct tegra_xusb_padctl
*padctl
= phy_get_drvdata(phy
);
550 return tegra_xusb_padctl_enable(padctl
);
553 static int tegra_xusb_phy_exit(struct phy
*phy
)
555 struct tegra_xusb_padctl
*padctl
= phy_get_drvdata(phy
);
557 return tegra_xusb_padctl_disable(padctl
);
560 static int pcie_phy_power_on(struct phy
*phy
)
562 struct tegra_xusb_padctl
*padctl
= phy_get_drvdata(phy
);
563 unsigned long timeout
;
564 int err
= -ETIMEDOUT
;
567 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
568 value
&= ~XUSB_PADCTL_IOPHY_PLL_P0_CTL1_REFCLK_SEL_MASK
;
569 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
571 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_P0_CTL2
);
572 value
|= XUSB_PADCTL_IOPHY_PLL_P0_CTL2_REFCLKBUF_EN
|
573 XUSB_PADCTL_IOPHY_PLL_P0_CTL2_TXCLKREF_EN
|
574 XUSB_PADCTL_IOPHY_PLL_P0_CTL2_TXCLKREF_SEL
;
575 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_P0_CTL2
);
577 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
578 value
|= XUSB_PADCTL_IOPHY_PLL_P0_CTL1_PLL_RST
;
579 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
581 timeout
= jiffies
+ msecs_to_jiffies(50);
583 while (time_before(jiffies
, timeout
)) {
584 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
585 if (value
& XUSB_PADCTL_IOPHY_PLL_P0_CTL1_PLL0_LOCKDET
) {
590 usleep_range(100, 200);
596 static int pcie_phy_power_off(struct phy
*phy
)
598 struct tegra_xusb_padctl
*padctl
= phy_get_drvdata(phy
);
601 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
602 value
&= ~XUSB_PADCTL_IOPHY_PLL_P0_CTL1_PLL_RST
;
603 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_P0_CTL1
);
608 static const struct phy_ops pcie_phy_ops
= {
609 .init
= tegra_xusb_phy_init
,
610 .exit
= tegra_xusb_phy_exit
,
611 .power_on
= pcie_phy_power_on
,
612 .power_off
= pcie_phy_power_off
,
613 .owner
= THIS_MODULE
,
616 static int sata_phy_power_on(struct phy
*phy
)
618 struct tegra_xusb_padctl
*padctl
= phy_get_drvdata(phy
);
619 unsigned long timeout
;
620 int err
= -ETIMEDOUT
;
623 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1
);
624 value
&= ~XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1_IDDQ_OVRD
;
625 value
&= ~XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1_IDDQ
;
626 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1
);
628 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
629 value
&= ~XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_PWR_OVRD
;
630 value
&= ~XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_IDDQ
;
631 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
633 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
634 value
|= XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL1_MODE
;
635 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
637 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
638 value
|= XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_RST
;
639 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
641 timeout
= jiffies
+ msecs_to_jiffies(50);
643 while (time_before(jiffies
, timeout
)) {
644 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
645 if (value
& XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL1_LOCKDET
) {
650 usleep_range(100, 200);
656 static int sata_phy_power_off(struct phy
*phy
)
658 struct tegra_xusb_padctl
*padctl
= phy_get_drvdata(phy
);
661 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
662 value
&= ~XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_RST
;
663 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
665 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
666 value
&= ~XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL1_MODE
;
667 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
669 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
670 value
|= XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_PWR_OVRD
;
671 value
|= XUSB_PADCTL_IOPHY_PLL_S0_CTL1_PLL_IDDQ
;
672 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_PLL_S0_CTL1
);
674 value
= padctl_readl(padctl
, XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1
);
675 value
|= ~XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1_IDDQ_OVRD
;
676 value
|= ~XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1_IDDQ
;
677 padctl_writel(padctl
, value
, XUSB_PADCTL_IOPHY_MISC_PAD_S0_CTL1
);
682 static const struct phy_ops sata_phy_ops
= {
683 .init
= tegra_xusb_phy_init
,
684 .exit
= tegra_xusb_phy_exit
,
685 .power_on
= sata_phy_power_on
,
686 .power_off
= sata_phy_power_off
,
687 .owner
= THIS_MODULE
,
690 static struct phy
*tegra_xusb_padctl_xlate(struct device
*dev
,
691 struct of_phandle_args
*args
)
693 struct tegra_xusb_padctl
*padctl
= dev_get_drvdata(dev
);
694 unsigned int index
= args
->args
[0];
696 if (args
->args_count
<= 0)
697 return ERR_PTR(-EINVAL
);
699 if (index
>= ARRAY_SIZE(padctl
->phys
))
700 return ERR_PTR(-EINVAL
);
702 return padctl
->phys
[index
];
715 #define PIN_PCIE_4 10
716 #define PIN_SATA_0 11
718 static const struct pinctrl_pin_desc tegra124_pins
[] = {
719 PINCTRL_PIN(PIN_OTG_0
, "otg-0"),
720 PINCTRL_PIN(PIN_OTG_1
, "otg-1"),
721 PINCTRL_PIN(PIN_OTG_2
, "otg-2"),
722 PINCTRL_PIN(PIN_ULPI_0
, "ulpi-0"),
723 PINCTRL_PIN(PIN_HSIC_0
, "hsic-0"),
724 PINCTRL_PIN(PIN_HSIC_1
, "hsic-1"),
725 PINCTRL_PIN(PIN_PCIE_0
, "pcie-0"),
726 PINCTRL_PIN(PIN_PCIE_1
, "pcie-1"),
727 PINCTRL_PIN(PIN_PCIE_2
, "pcie-2"),
728 PINCTRL_PIN(PIN_PCIE_3
, "pcie-3"),
729 PINCTRL_PIN(PIN_PCIE_4
, "pcie-4"),
730 PINCTRL_PIN(PIN_SATA_0
, "sata-0"),
733 static const char * const tegra124_snps_groups
[] = {
742 static const char * const tegra124_xusb_groups
[] = {
751 static const char * const tegra124_uart_groups
[] = {
757 static const char * const tegra124_pcie_groups
[] = {
765 static const char * const tegra124_usb3_groups
[] = {
771 static const char * const tegra124_sata_groups
[] = {
775 static const char * const tegra124_rsvd_groups
[] = {
787 #define TEGRA124_FUNCTION(_name) \
790 .num_groups = ARRAY_SIZE(tegra124_##_name##_groups), \
791 .groups = tegra124_##_name##_groups, \
794 static struct tegra_xusb_padctl_function tegra124_functions
[] = {
795 TEGRA124_FUNCTION(snps
),
796 TEGRA124_FUNCTION(xusb
),
797 TEGRA124_FUNCTION(uart
),
798 TEGRA124_FUNCTION(pcie
),
799 TEGRA124_FUNCTION(usb3
),
800 TEGRA124_FUNCTION(sata
),
801 TEGRA124_FUNCTION(rsvd
),
804 enum tegra124_function
{
814 static const unsigned int tegra124_otg_functions
[] = {
821 static const unsigned int tegra124_usb_functions
[] = {
826 static const unsigned int tegra124_pci_functions
[] = {
833 #define TEGRA124_LANE(_name, _offset, _shift, _mask, _iddq, _funcs) \
840 .num_funcs = ARRAY_SIZE(tegra124_##_funcs##_functions), \
841 .funcs = tegra124_##_funcs##_functions, \
844 static const struct tegra_xusb_padctl_lane tegra124_lanes
[] = {
845 TEGRA124_LANE("otg-0", 0x004, 0, 0x3, 0, otg
),
846 TEGRA124_LANE("otg-1", 0x004, 2, 0x3, 0, otg
),
847 TEGRA124_LANE("otg-2", 0x004, 4, 0x3, 0, otg
),
848 TEGRA124_LANE("ulpi-0", 0x004, 12, 0x1, 0, usb
),
849 TEGRA124_LANE("hsic-0", 0x004, 14, 0x1, 0, usb
),
850 TEGRA124_LANE("hsic-1", 0x004, 15, 0x1, 0, usb
),
851 TEGRA124_LANE("pcie-0", 0x134, 16, 0x3, 1, pci
),
852 TEGRA124_LANE("pcie-1", 0x134, 18, 0x3, 2, pci
),
853 TEGRA124_LANE("pcie-2", 0x134, 20, 0x3, 3, pci
),
854 TEGRA124_LANE("pcie-3", 0x134, 22, 0x3, 4, pci
),
855 TEGRA124_LANE("pcie-4", 0x134, 24, 0x3, 5, pci
),
856 TEGRA124_LANE("sata-0", 0x134, 26, 0x3, 6, pci
),
859 static const struct tegra_xusb_padctl_soc tegra124_soc
= {
860 .num_pins
= ARRAY_SIZE(tegra124_pins
),
861 .pins
= tegra124_pins
,
862 .num_functions
= ARRAY_SIZE(tegra124_functions
),
863 .functions
= tegra124_functions
,
864 .num_lanes
= ARRAY_SIZE(tegra124_lanes
),
865 .lanes
= tegra124_lanes
,
868 static const struct of_device_id tegra_xusb_padctl_of_match
[] = {
869 { .compatible
= "nvidia,tegra124-xusb-padctl", .data
= &tegra124_soc
},
872 MODULE_DEVICE_TABLE(of
, tegra_xusb_padctl_of_match
);
874 static int tegra_xusb_padctl_probe(struct platform_device
*pdev
)
876 struct tegra_xusb_padctl
*padctl
;
877 const struct of_device_id
*match
;
878 struct resource
*res
;
882 padctl
= devm_kzalloc(&pdev
->dev
, sizeof(*padctl
), GFP_KERNEL
);
886 platform_set_drvdata(pdev
, padctl
);
887 mutex_init(&padctl
->lock
);
888 padctl
->dev
= &pdev
->dev
;
890 match
= of_match_node(tegra_xusb_padctl_of_match
, pdev
->dev
.of_node
);
891 padctl
->soc
= match
->data
;
893 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
894 padctl
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
895 if (IS_ERR(padctl
->regs
))
896 return PTR_ERR(padctl
->regs
);
898 padctl
->rst
= devm_reset_control_get(&pdev
->dev
, NULL
);
899 if (IS_ERR(padctl
->rst
))
900 return PTR_ERR(padctl
->rst
);
902 err
= reset_control_deassert(padctl
->rst
);
906 memset(&padctl
->desc
, 0, sizeof(padctl
->desc
));
907 padctl
->desc
.name
= dev_name(padctl
->dev
);
908 padctl
->desc
.pins
= tegra124_pins
;
909 padctl
->desc
.npins
= ARRAY_SIZE(tegra124_pins
);
910 padctl
->desc
.pctlops
= &tegra_xusb_padctl_pinctrl_ops
;
911 padctl
->desc
.pmxops
= &tegra_xusb_padctl_pinmux_ops
;
912 padctl
->desc
.confops
= &tegra_xusb_padctl_pinconf_ops
;
913 padctl
->desc
.owner
= THIS_MODULE
;
915 padctl
->pinctrl
= pinctrl_register(&padctl
->desc
, &pdev
->dev
, padctl
);
916 if (IS_ERR(padctl
->pinctrl
)) {
917 dev_err(&pdev
->dev
, "failed to register pincontrol\n");
918 err
= PTR_ERR(padctl
->pinctrl
);
922 phy
= devm_phy_create(&pdev
->dev
, NULL
, &pcie_phy_ops
);
928 padctl
->phys
[TEGRA_XUSB_PADCTL_PCIE
] = phy
;
929 phy_set_drvdata(phy
, padctl
);
931 phy
= devm_phy_create(&pdev
->dev
, NULL
, &sata_phy_ops
);
937 padctl
->phys
[TEGRA_XUSB_PADCTL_SATA
] = phy
;
938 phy_set_drvdata(phy
, padctl
);
940 padctl
->provider
= devm_of_phy_provider_register(&pdev
->dev
,
941 tegra_xusb_padctl_xlate
);
942 if (IS_ERR(padctl
->provider
)) {
943 err
= PTR_ERR(padctl
->provider
);
944 dev_err(&pdev
->dev
, "failed to register PHYs: %d\n", err
);
951 pinctrl_unregister(padctl
->pinctrl
);
953 reset_control_assert(padctl
->rst
);
957 static int tegra_xusb_padctl_remove(struct platform_device
*pdev
)
959 struct tegra_xusb_padctl
*padctl
= platform_get_drvdata(pdev
);
962 pinctrl_unregister(padctl
->pinctrl
);
964 err
= reset_control_assert(padctl
->rst
);
966 dev_err(&pdev
->dev
, "failed to assert reset: %d\n", err
);
971 static struct platform_driver tegra_xusb_padctl_driver
= {
973 .name
= "tegra-xusb-padctl",
974 .of_match_table
= tegra_xusb_padctl_of_match
,
976 .probe
= tegra_xusb_padctl_probe
,
977 .remove
= tegra_xusb_padctl_remove
,
979 module_platform_driver(tegra_xusb_padctl_driver
);
981 MODULE_AUTHOR("Thierry Reding <treding@nvidia.com>");
982 MODULE_DESCRIPTION("Tegra 124 XUSB Pad Control driver");
983 MODULE_LICENSE("GPL v2");