1 // SPDX-License-Identifier: GPL-2.0
3 * NVIDIA Tegra xHCI host controller driver
5 * Copyright (C) 2014 NVIDIA Corporation
6 * Copyright (C) 2014 Google, Inc.
10 #include <linux/delay.h>
11 #include <linux/dma-mapping.h>
12 #include <linux/firmware.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/of_device.h>
17 #include <linux/phy/phy.h>
18 #include <linux/phy/tegra/xusb.h>
19 #include <linux/platform_device.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/regulator/consumer.h>
23 #include <linux/reset.h>
24 #include <linux/slab.h>
25 #include <soc/tegra/pmc.h>
29 #define TEGRA_XHCI_SS_HIGH_SPEED 120000000
30 #define TEGRA_XHCI_SS_LOW_SPEED 12000000
32 /* FPCI CFG registers */
33 #define XUSB_CFG_1 0x004
34 #define XUSB_IO_SPACE_EN BIT(0)
35 #define XUSB_MEM_SPACE_EN BIT(1)
36 #define XUSB_BUS_MASTER_EN BIT(2)
37 #define XUSB_CFG_4 0x010
38 #define XUSB_BASE_ADDR_SHIFT 15
39 #define XUSB_BASE_ADDR_MASK 0x1ffff
40 #define XUSB_CFG_ARU_C11_CSBRANGE 0x41c
41 #define XUSB_CFG_CSB_BASE_ADDR 0x800
43 /* FPCI mailbox registers */
44 #define XUSB_CFG_ARU_MBOX_CMD 0x0e4
45 #define MBOX_DEST_FALC BIT(27)
46 #define MBOX_DEST_PME BIT(28)
47 #define MBOX_DEST_SMI BIT(29)
48 #define MBOX_DEST_XHCI BIT(30)
49 #define MBOX_INT_EN BIT(31)
50 #define XUSB_CFG_ARU_MBOX_DATA_IN 0x0e8
51 #define CMD_DATA_SHIFT 0
52 #define CMD_DATA_MASK 0xffffff
53 #define CMD_TYPE_SHIFT 24
54 #define CMD_TYPE_MASK 0xff
55 #define XUSB_CFG_ARU_MBOX_DATA_OUT 0x0ec
56 #define XUSB_CFG_ARU_MBOX_OWNER 0x0f0
57 #define MBOX_OWNER_NONE 0
58 #define MBOX_OWNER_FW 1
59 #define MBOX_OWNER_SW 2
60 #define XUSB_CFG_ARU_SMI_INTR 0x428
61 #define MBOX_SMI_INTR_FW_HANG BIT(1)
62 #define MBOX_SMI_INTR_EN BIT(3)
65 #define IPFS_XUSB_HOST_CONFIGURATION_0 0x180
66 #define IPFS_EN_FPCI BIT(0)
67 #define IPFS_XUSB_HOST_INTR_MASK_0 0x188
68 #define IPFS_IP_INT_MASK BIT(16)
69 #define IPFS_XUSB_HOST_CLKGATE_HYSTERESIS_0 0x1bc
71 #define CSB_PAGE_SELECT_MASK 0x7fffff
72 #define CSB_PAGE_SELECT_SHIFT 9
73 #define CSB_PAGE_OFFSET_MASK 0x1ff
74 #define CSB_PAGE_SELECT(addr) ((addr) >> (CSB_PAGE_SELECT_SHIFT) & \
76 #define CSB_PAGE_OFFSET(addr) ((addr) & CSB_PAGE_OFFSET_MASK)
78 /* Falcon CSB registers */
79 #define XUSB_FALC_CPUCTL 0x100
80 #define CPUCTL_STARTCPU BIT(1)
81 #define CPUCTL_STATE_HALTED BIT(4)
82 #define CPUCTL_STATE_STOPPED BIT(5)
83 #define XUSB_FALC_BOOTVEC 0x104
84 #define XUSB_FALC_DMACTL 0x10c
85 #define XUSB_FALC_IMFILLRNG1 0x154
86 #define IMFILLRNG1_TAG_MASK 0xffff
87 #define IMFILLRNG1_TAG_LO_SHIFT 0
88 #define IMFILLRNG1_TAG_HI_SHIFT 16
89 #define XUSB_FALC_IMFILLCTL 0x158
91 /* MP CSB registers */
92 #define XUSB_CSB_MP_ILOAD_ATTR 0x101a00
93 #define XUSB_CSB_MP_ILOAD_BASE_LO 0x101a04
94 #define XUSB_CSB_MP_ILOAD_BASE_HI 0x101a08
95 #define XUSB_CSB_MP_L2IMEMOP_SIZE 0x101a10
96 #define L2IMEMOP_SIZE_SRC_OFFSET_SHIFT 8
97 #define L2IMEMOP_SIZE_SRC_OFFSET_MASK 0x3ff
98 #define L2IMEMOP_SIZE_SRC_COUNT_SHIFT 24
99 #define L2IMEMOP_SIZE_SRC_COUNT_MASK 0xff
100 #define XUSB_CSB_MP_L2IMEMOP_TRIG 0x101a14
101 #define L2IMEMOP_ACTION_SHIFT 24
102 #define L2IMEMOP_INVALIDATE_ALL (0x40 << L2IMEMOP_ACTION_SHIFT)
103 #define L2IMEMOP_LOAD_LOCKED_RESULT (0x11 << L2IMEMOP_ACTION_SHIFT)
104 #define XUSB_CSB_MP_APMAP 0x10181c
105 #define APMAP_BOOTPATH BIT(31)
107 #define IMEM_BLOCK_SIZE 256
109 struct tegra_xusb_fw_header
{
110 u32 boot_loadaddr_in_imem
;
111 u32 boot_codedfi_offset
;
116 u16 alloc_phys_memsize
;
117 u32 rodata_img_offset
;
118 u32 rodata_section_start
;
119 u32 rodata_section_end
;
122 u32 fwimg_created_time
;
123 u32 imem_resident_start
;
124 u32 imem_resident_end
;
132 u32 phys_addr_log_buffer
;
133 u32 total_log_entries
;
138 u32 ss_low_power_entry_timeout
;
140 u8 padding
[139]; /* Pad to 256 bytes */
143 struct tegra_xusb_phy_type
{
148 struct tegra_xusb_soc
{
149 const char *firmware
;
150 const char * const *supply_names
;
151 unsigned int num_supplies
;
152 const struct tegra_xusb_phy_type
*phy_types
;
153 unsigned int num_types
;
159 } usb2
, ulpi
, hsic
, usb3
;
175 void __iomem
*ipfs_base
;
176 void __iomem
*fpci_base
;
178 const struct tegra_xusb_soc
*soc
;
180 struct regulator_bulk_data
*supplies
;
182 struct tegra_xusb_padctl
*padctl
;
184 struct clk
*host_clk
;
185 struct clk
*falcon_clk
;
187 struct clk
*ss_src_clk
;
188 struct clk
*hs_src_clk
;
189 struct clk
*fs_src_clk
;
190 struct clk
*pll_u_480m
;
194 struct reset_control
*host_rst
;
195 struct reset_control
*ss_rst
;
198 unsigned int num_phys
;
200 /* Firmware loading related */
208 static struct hc_driver __read_mostly tegra_xhci_hc_driver
;
210 static inline u32
fpci_readl(struct tegra_xusb
*tegra
, unsigned int offset
)
212 return readl(tegra
->fpci_base
+ offset
);
215 static inline void fpci_writel(struct tegra_xusb
*tegra
, u32 value
,
218 writel(value
, tegra
->fpci_base
+ offset
);
221 static inline u32
ipfs_readl(struct tegra_xusb
*tegra
, unsigned int offset
)
223 return readl(tegra
->ipfs_base
+ offset
);
226 static inline void ipfs_writel(struct tegra_xusb
*tegra
, u32 value
,
229 writel(value
, tegra
->ipfs_base
+ offset
);
232 static u32
csb_readl(struct tegra_xusb
*tegra
, unsigned int offset
)
234 u32 page
= CSB_PAGE_SELECT(offset
);
235 u32 ofs
= CSB_PAGE_OFFSET(offset
);
237 fpci_writel(tegra
, page
, XUSB_CFG_ARU_C11_CSBRANGE
);
239 return fpci_readl(tegra
, XUSB_CFG_CSB_BASE_ADDR
+ ofs
);
242 static void csb_writel(struct tegra_xusb
*tegra
, u32 value
,
245 u32 page
= CSB_PAGE_SELECT(offset
);
246 u32 ofs
= CSB_PAGE_OFFSET(offset
);
248 fpci_writel(tegra
, page
, XUSB_CFG_ARU_C11_CSBRANGE
);
249 fpci_writel(tegra
, value
, XUSB_CFG_CSB_BASE_ADDR
+ ofs
);
252 static int tegra_xusb_set_ss_clk(struct tegra_xusb
*tegra
,
255 unsigned long new_parent_rate
, old_parent_rate
;
256 struct clk
*clk
= tegra
->ss_src_clk
;
260 if (clk_get_rate(clk
) == rate
)
264 case TEGRA_XHCI_SS_HIGH_SPEED
:
266 * Reparent to PLLU_480M. Set divider first to avoid
269 old_parent_rate
= clk_get_rate(clk_get_parent(clk
));
270 new_parent_rate
= clk_get_rate(tegra
->pll_u_480m
);
271 div
= new_parent_rate
/ rate
;
273 err
= clk_set_rate(clk
, old_parent_rate
/ div
);
277 err
= clk_set_parent(clk
, tegra
->pll_u_480m
);
282 * The rate should already be correct, but set it again just
285 err
= clk_set_rate(clk
, rate
);
291 case TEGRA_XHCI_SS_LOW_SPEED
:
292 /* Reparent to CLK_M */
293 err
= clk_set_parent(clk
, tegra
->clk_m
);
297 err
= clk_set_rate(clk
, rate
);
304 dev_err(tegra
->dev
, "Invalid SS rate: %lu Hz\n", rate
);
308 if (clk_get_rate(clk
) != rate
) {
309 dev_err(tegra
->dev
, "SS clock doesn't match requested rate\n");
316 static unsigned long extract_field(u32 value
, unsigned int start
,
319 return (value
>> start
) & ((1 << count
) - 1);
322 /* Command requests from the firmware */
323 enum tegra_xusb_mbox_cmd
{
324 MBOX_CMD_MSG_ENABLED
= 1,
325 MBOX_CMD_INC_FALC_CLOCK
,
326 MBOX_CMD_DEC_FALC_CLOCK
,
327 MBOX_CMD_INC_SSPI_CLOCK
,
328 MBOX_CMD_DEC_SSPI_CLOCK
,
329 MBOX_CMD_SET_BW
, /* no ACK/NAK required */
330 MBOX_CMD_SET_SS_PWR_GATING
,
331 MBOX_CMD_SET_SS_PWR_UNGATING
,
332 MBOX_CMD_SAVE_DFE_CTLE_CTX
,
333 MBOX_CMD_AIRPLANE_MODE_ENABLED
, /* unused */
334 MBOX_CMD_AIRPLANE_MODE_DISABLED
, /* unused */
335 MBOX_CMD_START_HSIC_IDLE
,
336 MBOX_CMD_STOP_HSIC_IDLE
,
337 MBOX_CMD_DBC_WAKE_STACK
, /* unused */
338 MBOX_CMD_HSIC_PRETEND_CONNECT
,
340 MBOX_CMD_DISABLE_SS_LFPS_DETECTION
,
341 MBOX_CMD_ENABLE_SS_LFPS_DETECTION
,
345 /* Response message to above commands */
350 static const char * const mbox_cmd_name
[] = {
352 [ 2] = "INC_FALCON_CLOCK",
353 [ 3] = "DEC_FALCON_CLOCK",
354 [ 4] = "INC_SSPI_CLOCK",
355 [ 5] = "DEC_SSPI_CLOCK",
357 [ 7] = "SET_SS_PWR_GATING",
358 [ 8] = "SET_SS_PWR_UNGATING",
359 [ 9] = "SAVE_DFE_CTLE_CTX",
360 [ 10] = "AIRPLANE_MODE_ENABLED",
361 [ 11] = "AIRPLANE_MODE_DISABLED",
362 [ 12] = "START_HSIC_IDLE",
363 [ 13] = "STOP_HSIC_IDLE",
364 [ 14] = "DBC_WAKE_STACK",
365 [ 15] = "HSIC_PRETEND_CONNECT",
366 [ 16] = "RESET_SSPI",
367 [ 17] = "DISABLE_SS_LFPS_DETECTION",
368 [ 18] = "ENABLE_SS_LFPS_DETECTION",
373 struct tegra_xusb_mbox_msg
{
378 static inline u32
tegra_xusb_mbox_pack(const struct tegra_xusb_mbox_msg
*msg
)
380 return (msg
->cmd
& CMD_TYPE_MASK
) << CMD_TYPE_SHIFT
|
381 (msg
->data
& CMD_DATA_MASK
) << CMD_DATA_SHIFT
;
383 static inline void tegra_xusb_mbox_unpack(struct tegra_xusb_mbox_msg
*msg
,
386 msg
->cmd
= (value
>> CMD_TYPE_SHIFT
) & CMD_TYPE_MASK
;
387 msg
->data
= (value
>> CMD_DATA_SHIFT
) & CMD_DATA_MASK
;
390 static bool tegra_xusb_mbox_cmd_requires_ack(enum tegra_xusb_mbox_cmd cmd
)
393 case MBOX_CMD_SET_BW
:
403 static int tegra_xusb_mbox_send(struct tegra_xusb
*tegra
,
404 const struct tegra_xusb_mbox_msg
*msg
)
406 bool wait_for_idle
= false;
410 * Acquire the mailbox. The firmware still owns the mailbox for
413 if (!(msg
->cmd
== MBOX_CMD_ACK
|| msg
->cmd
== MBOX_CMD_NAK
)) {
414 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_OWNER
);
415 if (value
!= MBOX_OWNER_NONE
) {
416 dev_err(tegra
->dev
, "mailbox is busy\n");
420 fpci_writel(tegra
, MBOX_OWNER_SW
, XUSB_CFG_ARU_MBOX_OWNER
);
422 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_OWNER
);
423 if (value
!= MBOX_OWNER_SW
) {
424 dev_err(tegra
->dev
, "failed to acquire mailbox\n");
428 wait_for_idle
= true;
431 value
= tegra_xusb_mbox_pack(msg
);
432 fpci_writel(tegra
, value
, XUSB_CFG_ARU_MBOX_DATA_IN
);
434 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_CMD
);
435 value
|= MBOX_INT_EN
| MBOX_DEST_FALC
;
436 fpci_writel(tegra
, value
, XUSB_CFG_ARU_MBOX_CMD
);
439 unsigned long timeout
= jiffies
+ msecs_to_jiffies(250);
441 while (time_before(jiffies
, timeout
)) {
442 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_OWNER
);
443 if (value
== MBOX_OWNER_NONE
)
446 usleep_range(10, 20);
449 if (time_after(jiffies
, timeout
))
450 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_OWNER
);
452 if (value
!= MBOX_OWNER_NONE
)
459 static irqreturn_t
tegra_xusb_mbox_irq(int irq
, void *data
)
461 struct tegra_xusb
*tegra
= data
;
464 /* clear mailbox interrupts */
465 value
= fpci_readl(tegra
, XUSB_CFG_ARU_SMI_INTR
);
466 fpci_writel(tegra
, value
, XUSB_CFG_ARU_SMI_INTR
);
468 if (value
& MBOX_SMI_INTR_FW_HANG
)
469 dev_err(tegra
->dev
, "controller firmware hang\n");
471 return IRQ_WAKE_THREAD
;
474 static void tegra_xusb_mbox_handle(struct tegra_xusb
*tegra
,
475 const struct tegra_xusb_mbox_msg
*msg
)
477 struct tegra_xusb_padctl
*padctl
= tegra
->padctl
;
478 const struct tegra_xusb_soc
*soc
= tegra
->soc
;
479 struct device
*dev
= tegra
->dev
;
480 struct tegra_xusb_mbox_msg rsp
;
486 memset(&rsp
, 0, sizeof(rsp
));
489 case MBOX_CMD_INC_FALC_CLOCK
:
490 case MBOX_CMD_DEC_FALC_CLOCK
:
491 rsp
.data
= clk_get_rate(tegra
->falcon_clk
) / 1000;
492 if (rsp
.data
!= msg
->data
)
493 rsp
.cmd
= MBOX_CMD_NAK
;
495 rsp
.cmd
= MBOX_CMD_ACK
;
499 case MBOX_CMD_INC_SSPI_CLOCK
:
500 case MBOX_CMD_DEC_SSPI_CLOCK
:
501 if (tegra
->soc
->scale_ss_clock
) {
502 err
= tegra_xusb_set_ss_clk(tegra
, msg
->data
* 1000);
504 rsp
.cmd
= MBOX_CMD_NAK
;
506 rsp
.cmd
= MBOX_CMD_ACK
;
508 rsp
.data
= clk_get_rate(tegra
->ss_src_clk
) / 1000;
510 rsp
.cmd
= MBOX_CMD_ACK
;
511 rsp
.data
= msg
->data
;
516 case MBOX_CMD_SET_BW
:
518 * TODO: Request bandwidth once EMC scaling is supported.
519 * Ignore for now since ACK/NAK is not required for SET_BW
524 case MBOX_CMD_SAVE_DFE_CTLE_CTX
:
525 err
= tegra_xusb_padctl_usb3_save_context(padctl
, msg
->data
);
527 dev_err(dev
, "failed to save context for USB3#%u: %d\n",
529 rsp
.cmd
= MBOX_CMD_NAK
;
531 rsp
.cmd
= MBOX_CMD_ACK
;
534 rsp
.data
= msg
->data
;
537 case MBOX_CMD_START_HSIC_IDLE
:
538 case MBOX_CMD_STOP_HSIC_IDLE
:
539 if (msg
->cmd
== MBOX_CMD_STOP_HSIC_IDLE
)
544 mask
= extract_field(msg
->data
, 1 + soc
->ports
.hsic
.offset
,
545 soc
->ports
.hsic
.count
);
547 for_each_set_bit(port
, &mask
, 32) {
548 err
= tegra_xusb_padctl_hsic_set_idle(padctl
, port
,
555 dev_err(dev
, "failed to set HSIC#%u %s: %d\n", port
,
556 idle
? "idle" : "busy", err
);
557 rsp
.cmd
= MBOX_CMD_NAK
;
559 rsp
.cmd
= MBOX_CMD_ACK
;
562 rsp
.data
= msg
->data
;
565 case MBOX_CMD_DISABLE_SS_LFPS_DETECTION
:
566 case MBOX_CMD_ENABLE_SS_LFPS_DETECTION
:
567 if (msg
->cmd
== MBOX_CMD_DISABLE_SS_LFPS_DETECTION
)
572 mask
= extract_field(msg
->data
, 1 + soc
->ports
.usb3
.offset
,
573 soc
->ports
.usb3
.count
);
575 for_each_set_bit(port
, &mask
, soc
->ports
.usb3
.count
) {
576 err
= tegra_xusb_padctl_usb3_set_lfps_detect(padctl
,
585 "failed to %s LFPS detection on USB3#%u: %d\n",
586 enable
? "enable" : "disable", port
, err
);
587 rsp
.cmd
= MBOX_CMD_NAK
;
589 rsp
.cmd
= MBOX_CMD_ACK
;
592 rsp
.data
= msg
->data
;
596 dev_warn(dev
, "unknown message: %#x\n", msg
->cmd
);
601 const char *cmd
= (rsp
.cmd
== MBOX_CMD_ACK
) ? "ACK" : "NAK";
603 err
= tegra_xusb_mbox_send(tegra
, &rsp
);
605 dev_err(dev
, "failed to send %s: %d\n", cmd
, err
);
609 static irqreturn_t
tegra_xusb_mbox_thread(int irq
, void *data
)
611 struct tegra_xusb
*tegra
= data
;
612 struct tegra_xusb_mbox_msg msg
;
615 mutex_lock(&tegra
->lock
);
617 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_DATA_OUT
);
618 tegra_xusb_mbox_unpack(&msg
, value
);
620 value
= fpci_readl(tegra
, XUSB_CFG_ARU_MBOX_CMD
);
621 value
&= ~MBOX_DEST_SMI
;
622 fpci_writel(tegra
, value
, XUSB_CFG_ARU_MBOX_CMD
);
624 /* clear mailbox owner if no ACK/NAK is required */
625 if (!tegra_xusb_mbox_cmd_requires_ack(msg
.cmd
))
626 fpci_writel(tegra
, MBOX_OWNER_NONE
, XUSB_CFG_ARU_MBOX_OWNER
);
628 tegra_xusb_mbox_handle(tegra
, &msg
);
630 mutex_unlock(&tegra
->lock
);
634 static void tegra_xusb_ipfs_config(struct tegra_xusb
*tegra
,
635 struct resource
*regs
)
639 value
= ipfs_readl(tegra
, IPFS_XUSB_HOST_CONFIGURATION_0
);
640 value
|= IPFS_EN_FPCI
;
641 ipfs_writel(tegra
, value
, IPFS_XUSB_HOST_CONFIGURATION_0
);
643 usleep_range(10, 20);
645 /* Program BAR0 space */
646 value
= fpci_readl(tegra
, XUSB_CFG_4
);
647 value
&= ~(XUSB_BASE_ADDR_MASK
<< XUSB_BASE_ADDR_SHIFT
);
648 value
|= regs
->start
& (XUSB_BASE_ADDR_MASK
<< XUSB_BASE_ADDR_SHIFT
);
649 fpci_writel(tegra
, value
, XUSB_CFG_4
);
651 usleep_range(100, 200);
653 /* Enable bus master */
654 value
= fpci_readl(tegra
, XUSB_CFG_1
);
655 value
|= XUSB_IO_SPACE_EN
| XUSB_MEM_SPACE_EN
| XUSB_BUS_MASTER_EN
;
656 fpci_writel(tegra
, value
, XUSB_CFG_1
);
658 /* Enable interrupt assertion */
659 value
= ipfs_readl(tegra
, IPFS_XUSB_HOST_INTR_MASK_0
);
660 value
|= IPFS_IP_INT_MASK
;
661 ipfs_writel(tegra
, value
, IPFS_XUSB_HOST_INTR_MASK_0
);
664 ipfs_writel(tegra
, 0x80, IPFS_XUSB_HOST_CLKGATE_HYSTERESIS_0
);
667 static int tegra_xusb_clk_enable(struct tegra_xusb
*tegra
)
671 err
= clk_prepare_enable(tegra
->pll_e
);
675 err
= clk_prepare_enable(tegra
->host_clk
);
679 err
= clk_prepare_enable(tegra
->ss_clk
);
683 err
= clk_prepare_enable(tegra
->falcon_clk
);
687 err
= clk_prepare_enable(tegra
->fs_src_clk
);
691 err
= clk_prepare_enable(tegra
->hs_src_clk
);
695 if (tegra
->soc
->scale_ss_clock
) {
696 err
= tegra_xusb_set_ss_clk(tegra
, TEGRA_XHCI_SS_HIGH_SPEED
);
704 clk_disable_unprepare(tegra
->hs_src_clk
);
706 clk_disable_unprepare(tegra
->fs_src_clk
);
708 clk_disable_unprepare(tegra
->falcon_clk
);
710 clk_disable_unprepare(tegra
->ss_clk
);
712 clk_disable_unprepare(tegra
->host_clk
);
714 clk_disable_unprepare(tegra
->pll_e
);
718 static void tegra_xusb_clk_disable(struct tegra_xusb
*tegra
)
720 clk_disable_unprepare(tegra
->pll_e
);
721 clk_disable_unprepare(tegra
->host_clk
);
722 clk_disable_unprepare(tegra
->ss_clk
);
723 clk_disable_unprepare(tegra
->falcon_clk
);
724 clk_disable_unprepare(tegra
->fs_src_clk
);
725 clk_disable_unprepare(tegra
->hs_src_clk
);
728 static int tegra_xusb_phy_enable(struct tegra_xusb
*tegra
)
733 for (i
= 0; i
< tegra
->num_phys
; i
++) {
734 err
= phy_init(tegra
->phys
[i
]);
738 err
= phy_power_on(tegra
->phys
[i
]);
740 phy_exit(tegra
->phys
[i
]);
749 phy_power_off(tegra
->phys
[i
]);
750 phy_exit(tegra
->phys
[i
]);
756 static void tegra_xusb_phy_disable(struct tegra_xusb
*tegra
)
760 for (i
= 0; i
< tegra
->num_phys
; i
++) {
761 phy_power_off(tegra
->phys
[i
]);
762 phy_exit(tegra
->phys
[i
]);
766 static int tegra_xusb_runtime_suspend(struct device
*dev
)
768 struct tegra_xusb
*tegra
= dev_get_drvdata(dev
);
770 tegra_xusb_phy_disable(tegra
);
771 regulator_bulk_disable(tegra
->soc
->num_supplies
, tegra
->supplies
);
772 tegra_xusb_clk_disable(tegra
);
777 static int tegra_xusb_runtime_resume(struct device
*dev
)
779 struct tegra_xusb
*tegra
= dev_get_drvdata(dev
);
782 err
= tegra_xusb_clk_enable(tegra
);
784 dev_err(dev
, "failed to enable clocks: %d\n", err
);
788 err
= regulator_bulk_enable(tegra
->soc
->num_supplies
, tegra
->supplies
);
790 dev_err(dev
, "failed to enable regulators: %d\n", err
);
794 err
= tegra_xusb_phy_enable(tegra
);
796 dev_err(dev
, "failed to enable PHYs: %d\n", err
);
797 goto disable_regulator
;
803 regulator_bulk_disable(tegra
->soc
->num_supplies
, tegra
->supplies
);
805 tegra_xusb_clk_disable(tegra
);
809 static int tegra_xusb_load_firmware(struct tegra_xusb
*tegra
)
811 unsigned int code_tag_blocks
, code_size_blocks
, code_blocks
;
812 struct tegra_xusb_fw_header
*header
;
813 struct device
*dev
= tegra
->dev
;
814 const struct firmware
*fw
;
815 unsigned long timeout
;
822 err
= request_firmware(&fw
, tegra
->soc
->firmware
, tegra
->dev
);
824 dev_err(tegra
->dev
, "failed to request firmware: %d\n", err
);
828 /* Load Falcon controller with its firmware. */
829 header
= (struct tegra_xusb_fw_header
*)fw
->data
;
830 tegra
->fw
.size
= le32_to_cpu(header
->fwimg_len
);
832 tegra
->fw
.virt
= dma_alloc_coherent(tegra
->dev
, tegra
->fw
.size
,
833 &tegra
->fw
.phys
, GFP_KERNEL
);
834 if (!tegra
->fw
.virt
) {
835 dev_err(tegra
->dev
, "failed to allocate memory for firmware\n");
836 release_firmware(fw
);
840 header
= (struct tegra_xusb_fw_header
*)tegra
->fw
.virt
;
841 memcpy(tegra
->fw
.virt
, fw
->data
, tegra
->fw
.size
);
842 release_firmware(fw
);
844 if (csb_readl(tegra
, XUSB_CSB_MP_ILOAD_BASE_LO
) != 0) {
845 dev_info(dev
, "Firmware already loaded, Falcon state %#x\n",
846 csb_readl(tegra
, XUSB_FALC_CPUCTL
));
850 /* Program the size of DFI into ILOAD_ATTR. */
851 csb_writel(tegra
, tegra
->fw
.size
, XUSB_CSB_MP_ILOAD_ATTR
);
854 * Boot code of the firmware reads the ILOAD_BASE registers
855 * to get to the start of the DFI in system memory.
857 address
= tegra
->fw
.phys
+ sizeof(*header
);
858 csb_writel(tegra
, address
>> 32, XUSB_CSB_MP_ILOAD_BASE_HI
);
859 csb_writel(tegra
, address
, XUSB_CSB_MP_ILOAD_BASE_LO
);
861 /* Set BOOTPATH to 1 in APMAP. */
862 csb_writel(tegra
, APMAP_BOOTPATH
, XUSB_CSB_MP_APMAP
);
864 /* Invalidate L2IMEM. */
865 csb_writel(tegra
, L2IMEMOP_INVALIDATE_ALL
, XUSB_CSB_MP_L2IMEMOP_TRIG
);
868 * Initiate fetch of bootcode from system memory into L2IMEM.
869 * Program bootcode location and size in system memory.
871 code_tag_blocks
= DIV_ROUND_UP(le32_to_cpu(header
->boot_codetag
),
873 code_size_blocks
= DIV_ROUND_UP(le32_to_cpu(header
->boot_codesize
),
875 code_blocks
= code_tag_blocks
+ code_size_blocks
;
877 value
= ((code_tag_blocks
& L2IMEMOP_SIZE_SRC_OFFSET_MASK
) <<
878 L2IMEMOP_SIZE_SRC_OFFSET_SHIFT
) |
879 ((code_size_blocks
& L2IMEMOP_SIZE_SRC_COUNT_MASK
) <<
880 L2IMEMOP_SIZE_SRC_COUNT_SHIFT
);
881 csb_writel(tegra
, value
, XUSB_CSB_MP_L2IMEMOP_SIZE
);
883 /* Trigger L2IMEM load operation. */
884 csb_writel(tegra
, L2IMEMOP_LOAD_LOCKED_RESULT
,
885 XUSB_CSB_MP_L2IMEMOP_TRIG
);
887 /* Setup Falcon auto-fill. */
888 csb_writel(tegra
, code_size_blocks
, XUSB_FALC_IMFILLCTL
);
890 value
= ((code_tag_blocks
& IMFILLRNG1_TAG_MASK
) <<
891 IMFILLRNG1_TAG_LO_SHIFT
) |
892 ((code_blocks
& IMFILLRNG1_TAG_MASK
) <<
893 IMFILLRNG1_TAG_HI_SHIFT
);
894 csb_writel(tegra
, value
, XUSB_FALC_IMFILLRNG1
);
896 csb_writel(tegra
, 0, XUSB_FALC_DMACTL
);
900 csb_writel(tegra
, le32_to_cpu(header
->boot_codetag
),
903 /* Boot Falcon CPU and wait for it to enter the STOPPED (idle) state. */
904 timeout
= jiffies
+ msecs_to_jiffies(5);
906 csb_writel(tegra
, CPUCTL_STARTCPU
, XUSB_FALC_CPUCTL
);
908 while (time_before(jiffies
, timeout
)) {
909 if (csb_readl(tegra
, XUSB_FALC_CPUCTL
) == CPUCTL_STATE_STOPPED
)
912 usleep_range(100, 200);
915 if (csb_readl(tegra
, XUSB_FALC_CPUCTL
) != CPUCTL_STATE_STOPPED
) {
916 dev_err(dev
, "Falcon failed to start, state: %#x\n",
917 csb_readl(tegra
, XUSB_FALC_CPUCTL
));
921 timestamp
= le32_to_cpu(header
->fwimg_created_time
);
922 time64_to_tm(timestamp
, 0, &time
);
924 dev_info(dev
, "Firmware timestamp: %ld-%02d-%02d %02d:%02d:%02d UTC\n",
925 time
.tm_year
+ 1900, time
.tm_mon
+ 1, time
.tm_mday
,
926 time
.tm_hour
, time
.tm_min
, time
.tm_sec
);
931 static int tegra_xusb_probe(struct platform_device
*pdev
)
933 struct tegra_xusb_mbox_msg msg
;
934 struct resource
*res
, *regs
;
935 struct tegra_xusb
*tegra
;
936 struct xhci_hcd
*xhci
;
937 unsigned int i
, j
, k
;
941 BUILD_BUG_ON(sizeof(struct tegra_xusb_fw_header
) != 256);
943 tegra
= devm_kzalloc(&pdev
->dev
, sizeof(*tegra
), GFP_KERNEL
);
947 tegra
->soc
= of_device_get_match_data(&pdev
->dev
);
948 mutex_init(&tegra
->lock
);
949 tegra
->dev
= &pdev
->dev
;
951 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
952 tegra
->regs
= devm_ioremap_resource(&pdev
->dev
, regs
);
953 if (IS_ERR(tegra
->regs
))
954 return PTR_ERR(tegra
->regs
);
956 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
957 tegra
->fpci_base
= devm_ioremap_resource(&pdev
->dev
, res
);
958 if (IS_ERR(tegra
->fpci_base
))
959 return PTR_ERR(tegra
->fpci_base
);
961 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 2);
962 tegra
->ipfs_base
= devm_ioremap_resource(&pdev
->dev
, res
);
963 if (IS_ERR(tegra
->ipfs_base
))
964 return PTR_ERR(tegra
->ipfs_base
);
966 tegra
->xhci_irq
= platform_get_irq(pdev
, 0);
967 if (tegra
->xhci_irq
< 0)
968 return tegra
->xhci_irq
;
970 tegra
->mbox_irq
= platform_get_irq(pdev
, 1);
971 if (tegra
->mbox_irq
< 0)
972 return tegra
->mbox_irq
;
974 tegra
->padctl
= tegra_xusb_padctl_get(&pdev
->dev
);
975 if (IS_ERR(tegra
->padctl
))
976 return PTR_ERR(tegra
->padctl
);
978 tegra
->host_clk
= devm_clk_get(&pdev
->dev
, "xusb_host");
979 if (IS_ERR(tegra
->host_clk
)) {
980 err
= PTR_ERR(tegra
->host_clk
);
981 dev_err(&pdev
->dev
, "failed to get xusb_host: %d\n", err
);
985 tegra
->falcon_clk
= devm_clk_get(&pdev
->dev
, "xusb_falcon_src");
986 if (IS_ERR(tegra
->falcon_clk
)) {
987 err
= PTR_ERR(tegra
->falcon_clk
);
988 dev_err(&pdev
->dev
, "failed to get xusb_falcon_src: %d\n", err
);
992 tegra
->ss_clk
= devm_clk_get(&pdev
->dev
, "xusb_ss");
993 if (IS_ERR(tegra
->ss_clk
)) {
994 err
= PTR_ERR(tegra
->ss_clk
);
995 dev_err(&pdev
->dev
, "failed to get xusb_ss: %d\n", err
);
999 tegra
->ss_src_clk
= devm_clk_get(&pdev
->dev
, "xusb_ss_src");
1000 if (IS_ERR(tegra
->ss_src_clk
)) {
1001 err
= PTR_ERR(tegra
->ss_src_clk
);
1002 dev_err(&pdev
->dev
, "failed to get xusb_ss_src: %d\n", err
);
1006 tegra
->hs_src_clk
= devm_clk_get(&pdev
->dev
, "xusb_hs_src");
1007 if (IS_ERR(tegra
->hs_src_clk
)) {
1008 err
= PTR_ERR(tegra
->hs_src_clk
);
1009 dev_err(&pdev
->dev
, "failed to get xusb_hs_src: %d\n", err
);
1013 tegra
->fs_src_clk
= devm_clk_get(&pdev
->dev
, "xusb_fs_src");
1014 if (IS_ERR(tegra
->fs_src_clk
)) {
1015 err
= PTR_ERR(tegra
->fs_src_clk
);
1016 dev_err(&pdev
->dev
, "failed to get xusb_fs_src: %d\n", err
);
1020 tegra
->pll_u_480m
= devm_clk_get(&pdev
->dev
, "pll_u_480m");
1021 if (IS_ERR(tegra
->pll_u_480m
)) {
1022 err
= PTR_ERR(tegra
->pll_u_480m
);
1023 dev_err(&pdev
->dev
, "failed to get pll_u_480m: %d\n", err
);
1027 tegra
->clk_m
= devm_clk_get(&pdev
->dev
, "clk_m");
1028 if (IS_ERR(tegra
->clk_m
)) {
1029 err
= PTR_ERR(tegra
->clk_m
);
1030 dev_err(&pdev
->dev
, "failed to get clk_m: %d\n", err
);
1034 tegra
->pll_e
= devm_clk_get(&pdev
->dev
, "pll_e");
1035 if (IS_ERR(tegra
->pll_e
)) {
1036 err
= PTR_ERR(tegra
->pll_e
);
1037 dev_err(&pdev
->dev
, "failed to get pll_e: %d\n", err
);
1041 if (!pdev
->dev
.pm_domain
) {
1042 tegra
->host_rst
= devm_reset_control_get(&pdev
->dev
,
1044 if (IS_ERR(tegra
->host_rst
)) {
1045 err
= PTR_ERR(tegra
->host_rst
);
1047 "failed to get xusb_host reset: %d\n", err
);
1051 tegra
->ss_rst
= devm_reset_control_get(&pdev
->dev
, "xusb_ss");
1052 if (IS_ERR(tegra
->ss_rst
)) {
1053 err
= PTR_ERR(tegra
->ss_rst
);
1054 dev_err(&pdev
->dev
, "failed to get xusb_ss reset: %d\n",
1059 err
= tegra_powergate_sequence_power_up(TEGRA_POWERGATE_XUSBA
,
1064 "failed to enable XUSBA domain: %d\n", err
);
1068 err
= tegra_powergate_sequence_power_up(TEGRA_POWERGATE_XUSBC
,
1073 "failed to enable XUSBC domain: %d\n", err
);
1078 tegra
->supplies
= devm_kcalloc(&pdev
->dev
, tegra
->soc
->num_supplies
,
1079 sizeof(*tegra
->supplies
), GFP_KERNEL
);
1080 if (!tegra
->supplies
) {
1085 for (i
= 0; i
< tegra
->soc
->num_supplies
; i
++)
1086 tegra
->supplies
[i
].supply
= tegra
->soc
->supply_names
[i
];
1088 err
= devm_regulator_bulk_get(&pdev
->dev
, tegra
->soc
->num_supplies
,
1091 dev_err(&pdev
->dev
, "failed to get regulators: %d\n", err
);
1095 for (i
= 0; i
< tegra
->soc
->num_types
; i
++)
1096 tegra
->num_phys
+= tegra
->soc
->phy_types
[i
].num
;
1098 tegra
->phys
= devm_kcalloc(&pdev
->dev
, tegra
->num_phys
,
1099 sizeof(*tegra
->phys
), GFP_KERNEL
);
1105 for (i
= 0, k
= 0; i
< tegra
->soc
->num_types
; i
++) {
1108 for (j
= 0; j
< tegra
->soc
->phy_types
[i
].num
; j
++) {
1109 snprintf(prop
, sizeof(prop
), "%s-%d",
1110 tegra
->soc
->phy_types
[i
].name
, j
);
1112 phy
= devm_phy_optional_get(&pdev
->dev
, prop
);
1115 "failed to get PHY %s: %ld\n", prop
,
1121 tegra
->phys
[k
++] = phy
;
1125 tegra
->hcd
= usb_create_hcd(&tegra_xhci_hc_driver
, &pdev
->dev
,
1126 dev_name(&pdev
->dev
));
1133 * This must happen after usb_create_hcd(), because usb_create_hcd()
1134 * will overwrite the drvdata of the device with the hcd it creates.
1136 platform_set_drvdata(pdev
, tegra
);
1138 pm_runtime_enable(&pdev
->dev
);
1139 if (pm_runtime_enabled(&pdev
->dev
))
1140 err
= pm_runtime_get_sync(&pdev
->dev
);
1142 err
= tegra_xusb_runtime_resume(&pdev
->dev
);
1145 dev_err(&pdev
->dev
, "failed to enable device: %d\n", err
);
1149 tegra_xusb_ipfs_config(tegra
, regs
);
1151 err
= tegra_xusb_load_firmware(tegra
);
1153 dev_err(&pdev
->dev
, "failed to load firmware: %d\n", err
);
1157 tegra
->hcd
->regs
= tegra
->regs
;
1158 tegra
->hcd
->rsrc_start
= regs
->start
;
1159 tegra
->hcd
->rsrc_len
= resource_size(regs
);
1161 err
= usb_add_hcd(tegra
->hcd
, tegra
->xhci_irq
, IRQF_SHARED
);
1163 dev_err(&pdev
->dev
, "failed to add USB HCD: %d\n", err
);
1167 device_wakeup_enable(tegra
->hcd
->self
.controller
);
1169 xhci
= hcd_to_xhci(tegra
->hcd
);
1171 xhci
->shared_hcd
= usb_create_shared_hcd(&tegra_xhci_hc_driver
,
1173 dev_name(&pdev
->dev
),
1175 if (!xhci
->shared_hcd
) {
1176 dev_err(&pdev
->dev
, "failed to create shared HCD\n");
1181 err
= usb_add_hcd(xhci
->shared_hcd
, tegra
->xhci_irq
, IRQF_SHARED
);
1183 dev_err(&pdev
->dev
, "failed to add shared HCD: %d\n", err
);
1187 mutex_lock(&tegra
->lock
);
1189 /* Enable firmware messages from controller. */
1190 msg
.cmd
= MBOX_CMD_MSG_ENABLED
;
1193 err
= tegra_xusb_mbox_send(tegra
, &msg
);
1195 dev_err(&pdev
->dev
, "failed to enable messages: %d\n", err
);
1196 mutex_unlock(&tegra
->lock
);
1200 mutex_unlock(&tegra
->lock
);
1202 err
= devm_request_threaded_irq(&pdev
->dev
, tegra
->mbox_irq
,
1203 tegra_xusb_mbox_irq
,
1204 tegra_xusb_mbox_thread
, 0,
1205 dev_name(&pdev
->dev
), tegra
);
1207 dev_err(&pdev
->dev
, "failed to request IRQ: %d\n", err
);
1214 usb_remove_hcd(xhci
->shared_hcd
);
1216 usb_put_hcd(xhci
->shared_hcd
);
1218 usb_remove_hcd(tegra
->hcd
);
1220 if (!pm_runtime_status_suspended(&pdev
->dev
))
1221 tegra_xusb_runtime_suspend(&pdev
->dev
);
1223 pm_runtime_disable(&pdev
->dev
);
1224 usb_put_hcd(tegra
->hcd
);
1226 if (!pdev
->dev
.pm_domain
)
1227 tegra_powergate_power_off(TEGRA_POWERGATE_XUSBC
);
1229 if (!pdev
->dev
.pm_domain
)
1230 tegra_powergate_power_off(TEGRA_POWERGATE_XUSBA
);
1232 tegra_xusb_padctl_put(tegra
->padctl
);
1236 static int tegra_xusb_remove(struct platform_device
*pdev
)
1238 struct tegra_xusb
*tegra
= platform_get_drvdata(pdev
);
1239 struct xhci_hcd
*xhci
= hcd_to_xhci(tegra
->hcd
);
1241 usb_remove_hcd(xhci
->shared_hcd
);
1242 usb_put_hcd(xhci
->shared_hcd
);
1243 usb_remove_hcd(tegra
->hcd
);
1244 usb_put_hcd(tegra
->hcd
);
1246 dma_free_coherent(&pdev
->dev
, tegra
->fw
.size
, tegra
->fw
.virt
,
1249 pm_runtime_put_sync(&pdev
->dev
);
1250 pm_runtime_disable(&pdev
->dev
);
1252 tegra_xusb_padctl_put(tegra
->padctl
);
1257 #ifdef CONFIG_PM_SLEEP
1258 static int tegra_xusb_suspend(struct device
*dev
)
1260 struct tegra_xusb
*tegra
= dev_get_drvdata(dev
);
1261 struct xhci_hcd
*xhci
= hcd_to_xhci(tegra
->hcd
);
1262 bool wakeup
= device_may_wakeup(dev
);
1264 /* TODO: Powergate controller across suspend/resume. */
1265 return xhci_suspend(xhci
, wakeup
);
1268 static int tegra_xusb_resume(struct device
*dev
)
1270 struct tegra_xusb
*tegra
= dev_get_drvdata(dev
);
1271 struct xhci_hcd
*xhci
= hcd_to_xhci(tegra
->hcd
);
1273 return xhci_resume(xhci
, 0);
1277 static const struct dev_pm_ops tegra_xusb_pm_ops
= {
1278 SET_RUNTIME_PM_OPS(tegra_xusb_runtime_suspend
,
1279 tegra_xusb_runtime_resume
, NULL
)
1280 SET_SYSTEM_SLEEP_PM_OPS(tegra_xusb_suspend
, tegra_xusb_resume
)
1283 static const char * const tegra124_supply_names
[] = {
1291 "hvdd-usb-ss-pll-e",
1294 static const struct tegra_xusb_phy_type tegra124_phy_types
[] = {
1295 { .name
= "usb3", .num
= 2, },
1296 { .name
= "usb2", .num
= 3, },
1297 { .name
= "hsic", .num
= 2, },
1300 static const struct tegra_xusb_soc tegra124_soc
= {
1301 .firmware
= "nvidia/tegra124/xusb.bin",
1302 .supply_names
= tegra124_supply_names
,
1303 .num_supplies
= ARRAY_SIZE(tegra124_supply_names
),
1304 .phy_types
= tegra124_phy_types
,
1305 .num_types
= ARRAY_SIZE(tegra124_phy_types
),
1307 .usb2
= { .offset
= 4, .count
= 4, },
1308 .hsic
= { .offset
= 6, .count
= 2, },
1309 .usb3
= { .offset
= 0, .count
= 2, },
1311 .scale_ss_clock
= true,
1313 MODULE_FIRMWARE("nvidia/tegra124/xusb.bin");
1315 static const char * const tegra210_supply_names
[] = {
1325 static const struct tegra_xusb_phy_type tegra210_phy_types
[] = {
1326 { .name
= "usb3", .num
= 4, },
1327 { .name
= "usb2", .num
= 4, },
1328 { .name
= "hsic", .num
= 1, },
1331 static const struct tegra_xusb_soc tegra210_soc
= {
1332 .firmware
= "nvidia/tegra210/xusb.bin",
1333 .supply_names
= tegra210_supply_names
,
1334 .num_supplies
= ARRAY_SIZE(tegra210_supply_names
),
1335 .phy_types
= tegra210_phy_types
,
1336 .num_types
= ARRAY_SIZE(tegra210_phy_types
),
1338 .usb2
= { .offset
= 4, .count
= 4, },
1339 .hsic
= { .offset
= 8, .count
= 1, },
1340 .usb3
= { .offset
= 0, .count
= 4, },
1342 .scale_ss_clock
= false,
1344 MODULE_FIRMWARE("nvidia/tegra210/xusb.bin");
1346 static const struct of_device_id tegra_xusb_of_match
[] = {
1347 { .compatible
= "nvidia,tegra124-xusb", .data
= &tegra124_soc
},
1348 { .compatible
= "nvidia,tegra210-xusb", .data
= &tegra210_soc
},
1351 MODULE_DEVICE_TABLE(of
, tegra_xusb_of_match
);
1353 static struct platform_driver tegra_xusb_driver
= {
1354 .probe
= tegra_xusb_probe
,
1355 .remove
= tegra_xusb_remove
,
1357 .name
= "tegra-xusb",
1358 .pm
= &tegra_xusb_pm_ops
,
1359 .of_match_table
= tegra_xusb_of_match
,
1363 static void tegra_xhci_quirks(struct device
*dev
, struct xhci_hcd
*xhci
)
1365 xhci
->quirks
|= XHCI_PLAT
;
1368 static int tegra_xhci_setup(struct usb_hcd
*hcd
)
1370 return xhci_gen_setup(hcd
, tegra_xhci_quirks
);
1373 static const struct xhci_driver_overrides tegra_xhci_overrides __initconst
= {
1374 .reset
= tegra_xhci_setup
,
1377 static int __init
tegra_xusb_init(void)
1379 xhci_init_driver(&tegra_xhci_hc_driver
, &tegra_xhci_overrides
);
1381 return platform_driver_register(&tegra_xusb_driver
);
1383 module_init(tegra_xusb_init
);
1385 static void __exit
tegra_xusb_exit(void)
1387 platform_driver_unregister(&tegra_xusb_driver
);
1389 module_exit(tegra_xusb_exit
);
1391 MODULE_AUTHOR("Andrew Bresticker <abrestic@chromium.org>");
1392 MODULE_DESCRIPTION("NVIDIA Tegra XUSB xHCI host-controller driver");
1393 MODULE_LICENSE("GPL v2");