blob: ace432356c41299c40deb1a205348e2d0c3d7e03 [file] [log] [blame]
Nishad Kamdar3e45ed32020-04-04 14:51:40 +05301/* SPDX-License-Identifier: GPL-2.0 */
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02002/*
3 * Copyright (c) 2015 MediaTek Inc.
4 * Author:
5 * Zhigang.Wei <zhigang.wei@mediatek.com>
6 * Chunfeng.Yun <chunfeng.yun@mediatek.com>
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02007 */
8
9#ifndef _XHCI_MTK_H_
10#define _XHCI_MTK_H_
11
Chunfeng Yun7fed6362021-04-10 13:10:05 +080012#include <linux/clk.h>
13
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020014#include "xhci.h"
15
Chunfeng Yun7fed6362021-04-10 13:10:05 +080016#define BULK_CLKS_NUM 5
17
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020018/**
19 * To simplify scheduler algorithm, set a upper limit for ESIT,
20 * if a synchromous ep's ESIT is larger than @XHCI_MTK_MAX_ESIT,
21 * round down to the limit value, that means allocating more
22 * bandwidth to it.
23 */
24#define XHCI_MTK_MAX_ESIT 64
25
26/**
Chunfeng Yune19ee442021-03-08 10:51:51 +080027 * @fs_bus_bw: array to keep track of bandwidth already used for FS
Chunfeng Yun08e469d2018-09-20 19:13:34 +030028 * @ep_list: Endpoints using this TT
Chunfeng Yun08e469d2018-09-20 19:13:34 +030029 */
30struct mu3h_sch_tt {
Chunfeng Yune19ee442021-03-08 10:51:51 +080031 u32 fs_bus_bw[XHCI_MTK_MAX_ESIT];
Chunfeng Yun08e469d2018-09-20 19:13:34 +030032 struct list_head ep_list;
Chunfeng Yun08e469d2018-09-20 19:13:34 +030033};
34
35/**
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020036 * struct mu3h_sch_bw_info: schedule information for bandwidth domain
37 *
38 * @bus_bw: array to keep track of bandwidth already used at each uframes
39 * @bw_ep_list: eps in the bandwidth domain
40 *
41 * treat a HS root port as a bandwidth domain, but treat a SS root port as
42 * two bandwidth domains, one for IN eps and another for OUT eps.
43 */
44struct mu3h_sch_bw_info {
45 u32 bus_bw[XHCI_MTK_MAX_ESIT];
46 struct list_head bw_ep_list;
47};
48
49/**
50 * struct mu3h_sch_ep_info: schedule information for endpoint
51 *
52 * @esit: unit is 125us, equal to 2 << Interval field in ep-context
53 * @num_budget_microframes: number of continuous uframes
54 * (@repeat==1) scheduled within the interval
55 * @bw_cost_per_microframe: bandwidth cost per microframe
56 * @endpoint: linked into bandwidth domain which it belongs to
Chunfeng Yun08e469d2018-09-20 19:13:34 +030057 * @tt_endpoint: linked into mu3h_sch_tt's list which it belongs to
58 * @sch_tt: mu3h_sch_tt linked into
59 * @ep_type: endpoint type
60 * @maxpkt: max packet size of endpoint
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020061 * @ep: address of usb_host_endpoint struct
Chunfeng Yun54f6a8a2021-02-01 13:57:44 +080062 * @allocated: the bandwidth is aready allocated from bus_bw
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020063 * @offset: which uframe of the interval that transfer should be
64 * scheduled first time within the interval
65 * @repeat: the time gap between two uframes that transfers are
66 * scheduled within a interval. in the simple algorithm, only
67 * assign 0 or 1 to it; 0 means using only one uframe in a
68 * interval, and 1 means using @num_budget_microframes
69 * continuous uframes
70 * @pkts: number of packets to be transferred in the scheduled uframes
71 * @cs_count: number of CS that host will trigger
72 * @burst_mode: burst mode for scheduling. 0: normal burst mode,
73 * distribute the bMaxBurst+1 packets for a single burst
74 * according to @pkts and @repeat, repeate the burst multiple
75 * times; 1: distribute the (bMaxBurst+1)*(Mult+1) packets
76 * according to @pkts and @repeat. normal mode is used by
77 * default
Chunfeng Yun95b516c2018-09-20 19:13:33 +030078 * @bw_budget_table: table to record bandwidth budget per microframe
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020079 */
80struct mu3h_sch_ep_info {
81 u32 esit;
82 u32 num_budget_microframes;
83 u32 bw_cost_per_microframe;
84 struct list_head endpoint;
Chunfeng Yun08e469d2018-09-20 19:13:34 +030085 struct list_head tt_endpoint;
86 struct mu3h_sch_tt *sch_tt;
87 u32 ep_type;
88 u32 maxpkt;
Chunfeng Yun91327992021-03-08 10:51:58 +080089 struct usb_host_endpoint *ep;
Chunfeng Yun6009bea2021-03-08 10:51:59 +080090 enum usb_device_speed speed;
Chunfeng Yun54f6a8a2021-02-01 13:57:44 +080091 bool allocated;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020092 /*
93 * mtk xHCI scheduling information put into reserved DWs
94 * in ep context
95 */
96 u32 offset;
97 u32 repeat;
98 u32 pkts;
99 u32 cs_count;
100 u32 burst_mode;
Gustavo A. R. Silva6bc3f392020-02-20 07:20:17 -0600101 u32 bw_budget_table[];
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200102};
103
104#define MU3C_U3_PORT_MAX 4
105#define MU3C_U2_PORT_MAX 5
106
107/**
108 * struct mu3c_ippc_regs: MTK ssusb ip port control registers
109 * @ip_pw_ctr0~3: ip power and clock control registers
110 * @ip_pw_sts1~2: ip power and clock status registers
111 * @ip_xhci_cap: ip xHCI capability register
112 * @u3_ctrl_p[x]: ip usb3 port x control register, only low 4bytes are used
113 * @u2_ctrl_p[x]: ip usb2 port x control register, only low 4bytes are used
114 * @u2_phy_pll: usb2 phy pll control register
115 */
116struct mu3c_ippc_regs {
117 __le32 ip_pw_ctr0;
118 __le32 ip_pw_ctr1;
119 __le32 ip_pw_ctr2;
120 __le32 ip_pw_ctr3;
121 __le32 ip_pw_sts1;
122 __le32 ip_pw_sts2;
123 __le32 reserved0[3];
124 __le32 ip_xhci_cap;
125 __le32 reserved1[2];
126 __le64 u3_ctrl_p[MU3C_U3_PORT_MAX];
127 __le64 u2_ctrl_p[MU3C_U2_PORT_MAX];
128 __le32 reserved2;
129 __le32 u2_phy_pll;
130 __le32 reserved3[33]; /* 0x80 ~ 0xff */
131};
132
133struct xhci_hcd_mtk {
134 struct device *dev;
135 struct usb_hcd *hcd;
136 struct mu3h_sch_bw_info *sch_array;
Chunfeng Yun54f6a8a2021-02-01 13:57:44 +0800137 struct list_head bw_ep_chk_list;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200138 struct mu3c_ippc_regs __iomem *ippc_regs;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200139 int num_u2_ports;
140 int num_u3_ports;
Chunfeng Yun55ba6e92017-10-13 16:26:36 +0800141 int u3p_dis_msk;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200142 struct regulator *vusb33;
143 struct regulator *vbus;
Chunfeng Yun7fed6362021-04-10 13:10:05 +0800144 struct clk_bulk_data clks[BULK_CLKS_NUM];
Chunfeng Yun40ddb762021-05-07 10:11:24 +0800145 unsigned int has_ippc:1;
146 unsigned int lpm_support:1;
147 unsigned int u2_lpm_disable:1;
Chunfeng Yuna2ecc4d2018-01-03 16:53:20 +0800148 /* usb remote wakeup */
Chunfeng Yun40ddb762021-05-07 10:11:24 +0800149 unsigned int uwk_en:1;
Chunfeng Yuna2ecc4d2018-01-03 16:53:20 +0800150 struct regmap *uwk;
151 u32 uwk_reg_base;
152 u32 uwk_vers;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200153};
154
155static inline struct xhci_hcd_mtk *hcd_to_mtk(struct usb_hcd *hcd)
156{
157 return dev_get_drvdata(hcd->self.controller);
158}
159
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200160int xhci_mtk_sch_init(struct xhci_hcd_mtk *mtk);
161void xhci_mtk_sch_exit(struct xhci_hcd_mtk *mtk);
Chunfeng Yun14295a1502021-03-08 10:52:04 +0800162int xhci_mtk_add_ep(struct usb_hcd *hcd, struct usb_device *udev,
163 struct usb_host_endpoint *ep);
164int xhci_mtk_drop_ep(struct usb_hcd *hcd, struct usb_device *udev,
165 struct usb_host_endpoint *ep);
Ikjoon Jang1d69f9d2021-01-13 18:05:11 +0800166int xhci_mtk_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev);
167void xhci_mtk_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev);
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200168
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200169#endif /* _XHCI_MTK_H_ */