blob: 473e74f8574900800d2a0772f33eb075e47746c0 [file] [log] [blame]
Shawn Lin956cd992018-05-09 09:11:49 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Rockchip AXI PCIe controller driver
4 *
5 * Copyright (c) 2018 Rockchip, Inc.
6 *
7 * Author: Shawn Lin <shawn.lin@rock-chips.com>
8 *
9 */
10
11#ifndef _PCIE_ROCKCHIP_H
12#define _PCIE_ROCKCHIP_H
13
14#include <linux/kernel.h>
15#include <linux/pci.h>
16
17/*
18 * The upper 16 bits of PCIE_CLIENT_CONFIG are a write mask for the lower 16
19 * bits. This allows atomic updates of the register without locking.
20 */
21#define HIWORD_UPDATE(mask, val) (((mask) << 16) | (val))
22#define HIWORD_UPDATE_BIT(val) HIWORD_UPDATE(val, val)
23
24#define ENCODE_LANES(x) ((((x) >> 1) & 3) << 4)
25#define MAX_LANE_NUM 4
26
27#define PCIE_CLIENT_BASE 0x0
28#define PCIE_CLIENT_CONFIG (PCIE_CLIENT_BASE + 0x00)
29#define PCIE_CLIENT_CONF_ENABLE HIWORD_UPDATE_BIT(0x0001)
30#define PCIE_CLIENT_LINK_TRAIN_ENABLE HIWORD_UPDATE_BIT(0x0002)
31#define PCIE_CLIENT_ARI_ENABLE HIWORD_UPDATE_BIT(0x0008)
32#define PCIE_CLIENT_CONF_LANE_NUM(x) HIWORD_UPDATE(0x0030, ENCODE_LANES(x))
33#define PCIE_CLIENT_MODE_RC HIWORD_UPDATE_BIT(0x0040)
34#define PCIE_CLIENT_GEN_SEL_1 HIWORD_UPDATE(0x0080, 0)
35#define PCIE_CLIENT_GEN_SEL_2 HIWORD_UPDATE_BIT(0x0080)
36#define PCIE_CLIENT_DEBUG_OUT_0 (PCIE_CLIENT_BASE + 0x3c)
37#define PCIE_CLIENT_DEBUG_LTSSM_MASK GENMASK(5, 0)
38#define PCIE_CLIENT_DEBUG_LTSSM_L1 0x18
39#define PCIE_CLIENT_DEBUG_LTSSM_L2 0x19
40#define PCIE_CLIENT_BASIC_STATUS1 (PCIE_CLIENT_BASE + 0x48)
41#define PCIE_CLIENT_LINK_STATUS_UP 0x00300000
42#define PCIE_CLIENT_LINK_STATUS_MASK 0x00300000
43#define PCIE_CLIENT_INT_MASK (PCIE_CLIENT_BASE + 0x4c)
44#define PCIE_CLIENT_INT_STATUS (PCIE_CLIENT_BASE + 0x50)
45#define PCIE_CLIENT_INTR_MASK GENMASK(8, 5)
46#define PCIE_CLIENT_INTR_SHIFT 5
47#define PCIE_CLIENT_INT_LEGACY_DONE BIT(15)
48#define PCIE_CLIENT_INT_MSG BIT(14)
49#define PCIE_CLIENT_INT_HOT_RST BIT(13)
50#define PCIE_CLIENT_INT_DPA BIT(12)
51#define PCIE_CLIENT_INT_FATAL_ERR BIT(11)
52#define PCIE_CLIENT_INT_NFATAL_ERR BIT(10)
53#define PCIE_CLIENT_INT_CORR_ERR BIT(9)
54#define PCIE_CLIENT_INT_INTD BIT(8)
55#define PCIE_CLIENT_INT_INTC BIT(7)
56#define PCIE_CLIENT_INT_INTB BIT(6)
57#define PCIE_CLIENT_INT_INTA BIT(5)
58#define PCIE_CLIENT_INT_LOCAL BIT(4)
59#define PCIE_CLIENT_INT_UDMA BIT(3)
60#define PCIE_CLIENT_INT_PHY BIT(2)
61#define PCIE_CLIENT_INT_HOT_PLUG BIT(1)
62#define PCIE_CLIENT_INT_PWR_STCG BIT(0)
63
64#define PCIE_CLIENT_INT_LEGACY \
65 (PCIE_CLIENT_INT_INTA | PCIE_CLIENT_INT_INTB | \
66 PCIE_CLIENT_INT_INTC | PCIE_CLIENT_INT_INTD)
67
68#define PCIE_CLIENT_INT_CLI \
69 (PCIE_CLIENT_INT_CORR_ERR | PCIE_CLIENT_INT_NFATAL_ERR | \
70 PCIE_CLIENT_INT_FATAL_ERR | PCIE_CLIENT_INT_DPA | \
71 PCIE_CLIENT_INT_HOT_RST | PCIE_CLIENT_INT_MSG | \
72 PCIE_CLIENT_INT_LEGACY_DONE | PCIE_CLIENT_INT_LEGACY | \
73 PCIE_CLIENT_INT_PHY)
74
75#define PCIE_CORE_CTRL_MGMT_BASE 0x900000
76#define PCIE_CORE_CTRL (PCIE_CORE_CTRL_MGMT_BASE + 0x000)
77#define PCIE_CORE_PL_CONF_SPEED_5G 0x00000008
78#define PCIE_CORE_PL_CONF_SPEED_MASK 0x00000018
79#define PCIE_CORE_PL_CONF_LANE_MASK 0x00000006
80#define PCIE_CORE_PL_CONF_LANE_SHIFT 1
81#define PCIE_CORE_CTRL_PLC1 (PCIE_CORE_CTRL_MGMT_BASE + 0x004)
82#define PCIE_CORE_CTRL_PLC1_FTS_MASK GENMASK(23, 8)
83#define PCIE_CORE_CTRL_PLC1_FTS_SHIFT 8
84#define PCIE_CORE_CTRL_PLC1_FTS_CNT 0xffff
85#define PCIE_CORE_TXCREDIT_CFG1 (PCIE_CORE_CTRL_MGMT_BASE + 0x020)
86#define PCIE_CORE_TXCREDIT_CFG1_MUI_MASK 0xFFFF0000
87#define PCIE_CORE_TXCREDIT_CFG1_MUI_SHIFT 16
88#define PCIE_CORE_TXCREDIT_CFG1_MUI_ENCODE(x) \
89 (((x) >> 3) << PCIE_CORE_TXCREDIT_CFG1_MUI_SHIFT)
90#define PCIE_CORE_LANE_MAP (PCIE_CORE_CTRL_MGMT_BASE + 0x200)
91#define PCIE_CORE_LANE_MAP_MASK 0x0000000f
92#define PCIE_CORE_LANE_MAP_REVERSE BIT(16)
93#define PCIE_CORE_INT_STATUS (PCIE_CORE_CTRL_MGMT_BASE + 0x20c)
94#define PCIE_CORE_INT_PRFPE BIT(0)
95#define PCIE_CORE_INT_CRFPE BIT(1)
96#define PCIE_CORE_INT_RRPE BIT(2)
97#define PCIE_CORE_INT_PRFO BIT(3)
98#define PCIE_CORE_INT_CRFO BIT(4)
99#define PCIE_CORE_INT_RT BIT(5)
100#define PCIE_CORE_INT_RTR BIT(6)
101#define PCIE_CORE_INT_PE BIT(7)
102#define PCIE_CORE_INT_MTR BIT(8)
103#define PCIE_CORE_INT_UCR BIT(9)
104#define PCIE_CORE_INT_FCE BIT(10)
105#define PCIE_CORE_INT_CT BIT(11)
106#define PCIE_CORE_INT_UTC BIT(18)
107#define PCIE_CORE_INT_MMVC BIT(19)
108#define PCIE_CORE_CONFIG_VENDOR (PCIE_CORE_CTRL_MGMT_BASE + 0x44)
109#define PCIE_CORE_INT_MASK (PCIE_CORE_CTRL_MGMT_BASE + 0x210)
110#define PCIE_RC_BAR_CONF (PCIE_CORE_CTRL_MGMT_BASE + 0x300)
111
112#define PCIE_CORE_INT \
113 (PCIE_CORE_INT_PRFPE | PCIE_CORE_INT_CRFPE | \
114 PCIE_CORE_INT_RRPE | PCIE_CORE_INT_CRFO | \
115 PCIE_CORE_INT_RT | PCIE_CORE_INT_RTR | \
116 PCIE_CORE_INT_PE | PCIE_CORE_INT_MTR | \
117 PCIE_CORE_INT_UCR | PCIE_CORE_INT_FCE | \
118 PCIE_CORE_INT_CT | PCIE_CORE_INT_UTC | \
119 PCIE_CORE_INT_MMVC)
120
121#define PCIE_RC_CONFIG_NORMAL_BASE 0x800000
122#define PCIE_RC_CONFIG_BASE 0xa00000
123#define PCIE_RC_CONFIG_RID_CCR (PCIE_RC_CONFIG_BASE + 0x08)
124#define PCIE_RC_CONFIG_SCC_SHIFT 16
125#define PCIE_RC_CONFIG_DCR (PCIE_RC_CONFIG_BASE + 0xc4)
126#define PCIE_RC_CONFIG_DCR_CSPL_SHIFT 18
127#define PCIE_RC_CONFIG_DCR_CSPL_LIMIT 0xff
128#define PCIE_RC_CONFIG_DCR_CPLS_SHIFT 26
129#define PCIE_RC_CONFIG_DCSR (PCIE_RC_CONFIG_BASE + 0xc8)
130#define PCIE_RC_CONFIG_DCSR_MPS_MASK GENMASK(7, 5)
131#define PCIE_RC_CONFIG_DCSR_MPS_256 (0x1 << 5)
132#define PCIE_RC_CONFIG_LINK_CAP (PCIE_RC_CONFIG_BASE + 0xcc)
133#define PCIE_RC_CONFIG_LINK_CAP_L0S BIT(10)
134#define PCIE_RC_CONFIG_LCS (PCIE_RC_CONFIG_BASE + 0xd0)
135#define PCIE_RC_CONFIG_L1_SUBSTATE_CTRL2 (PCIE_RC_CONFIG_BASE + 0x90c)
136#define PCIE_RC_CONFIG_THP_CAP (PCIE_RC_CONFIG_BASE + 0x274)
137#define PCIE_RC_CONFIG_THP_CAP_NEXT_MASK GENMASK(31, 20)
138
139#define PCIE_CORE_AXI_CONF_BASE 0xc00000
140#define PCIE_CORE_OB_REGION_ADDR0 (PCIE_CORE_AXI_CONF_BASE + 0x0)
141#define PCIE_CORE_OB_REGION_ADDR0_NUM_BITS 0x3f
142#define PCIE_CORE_OB_REGION_ADDR0_LO_ADDR 0xffffff00
143#define PCIE_CORE_OB_REGION_ADDR1 (PCIE_CORE_AXI_CONF_BASE + 0x4)
144#define PCIE_CORE_OB_REGION_DESC0 (PCIE_CORE_AXI_CONF_BASE + 0x8)
145#define PCIE_CORE_OB_REGION_DESC1 (PCIE_CORE_AXI_CONF_BASE + 0xc)
146
147#define PCIE_CORE_AXI_INBOUND_BASE 0xc00800
148#define PCIE_RP_IB_ADDR0 (PCIE_CORE_AXI_INBOUND_BASE + 0x0)
149#define PCIE_CORE_IB_REGION_ADDR0_NUM_BITS 0x3f
150#define PCIE_CORE_IB_REGION_ADDR0_LO_ADDR 0xffffff00
151#define PCIE_RP_IB_ADDR1 (PCIE_CORE_AXI_INBOUND_BASE + 0x4)
152
153/* Size of one AXI Region (not Region 0) */
154#define AXI_REGION_SIZE BIT(20)
155/* Size of Region 0, equal to sum of sizes of other regions */
156#define AXI_REGION_0_SIZE (32 * (0x1 << 20))
157#define OB_REG_SIZE_SHIFT 5
158#define IB_ROOT_PORT_REG_SIZE_SHIFT 3
159#define AXI_WRAPPER_IO_WRITE 0x6
160#define AXI_WRAPPER_MEM_WRITE 0x2
161#define AXI_WRAPPER_TYPE0_CFG 0xa
162#define AXI_WRAPPER_TYPE1_CFG 0xb
163#define AXI_WRAPPER_NOR_MSG 0xc
164
165#define MAX_AXI_IB_ROOTPORT_REGION_NUM 3
166#define MIN_AXI_ADDR_BITS_PASSED 8
167#define PCIE_RC_SEND_PME_OFF 0x11960
168#define ROCKCHIP_VENDOR_ID 0x1d87
169#define PCIE_ECAM_BUS(x) (((x) & 0xff) << 20)
170#define PCIE_ECAM_DEV(x) (((x) & 0x1f) << 15)
171#define PCIE_ECAM_FUNC(x) (((x) & 0x7) << 12)
172#define PCIE_ECAM_REG(x) (((x) & 0xfff) << 0)
173#define PCIE_ECAM_ADDR(bus, dev, func, reg) \
174 (PCIE_ECAM_BUS(bus) | PCIE_ECAM_DEV(dev) | \
175 PCIE_ECAM_FUNC(func) | PCIE_ECAM_REG(reg))
176#define PCIE_LINK_IS_L2(x) \
177 (((x) & PCIE_CLIENT_DEBUG_LTSSM_MASK) == PCIE_CLIENT_DEBUG_LTSSM_L2)
178#define PCIE_LINK_UP(x) \
179 (((x) & PCIE_CLIENT_LINK_STATUS_MASK) == PCIE_CLIENT_LINK_STATUS_UP)
180#define PCIE_LINK_IS_GEN2(x) \
181 (((x) & PCIE_CORE_PL_CONF_SPEED_MASK) == PCIE_CORE_PL_CONF_SPEED_5G)
182
183#define RC_REGION_0_ADDR_TRANS_H 0x00000000
184#define RC_REGION_0_ADDR_TRANS_L 0x00000000
185#define RC_REGION_0_PASS_BITS (25 - 1)
186#define RC_REGION_0_TYPE_MASK GENMASK(3, 0)
187#define MAX_AXI_WRAPPER_REGION_NUM 33
188
189struct rockchip_pcie {
190 void __iomem *reg_base; /* DT axi-base */
191 void __iomem *apb_base; /* DT apb-base */
192 bool legacy_phy;
193 struct phy *phys[MAX_LANE_NUM];
194 struct reset_control *core_rst;
195 struct reset_control *mgmt_rst;
196 struct reset_control *mgmt_sticky_rst;
197 struct reset_control *pipe_rst;
198 struct reset_control *pm_rst;
199 struct reset_control *aclk_rst;
200 struct reset_control *pclk_rst;
201 struct clk *aclk_pcie;
202 struct clk *aclk_perf_pcie;
203 struct clk *hclk_pcie;
204 struct clk *clk_pcie_pm;
205 struct regulator *vpcie12v; /* 12V power supply */
206 struct regulator *vpcie3v3; /* 3.3V power supply */
207 struct regulator *vpcie1v8; /* 1.8V power supply */
208 struct regulator *vpcie0v9; /* 0.9V power supply */
209 struct gpio_desc *ep_gpio;
210 u32 lanes;
211 u8 lanes_map;
212 u8 root_bus_nr;
213 int link_gen;
214 struct device *dev;
215 struct irq_domain *irq_domain;
216 int offset;
217 struct pci_bus *root_bus;
218 struct resource *io;
219 phys_addr_t io_bus_addr;
220 u32 io_size;
221 void __iomem *msg_region;
222 u32 mem_size;
223 phys_addr_t msg_bus_addr;
224 phys_addr_t mem_bus_addr;
Shawn Lin964bac92018-05-09 09:12:05 +0800225 bool is_rc;
Shawn Lin956cd992018-05-09 09:11:49 +0800226};
227
228static u32 rockchip_pcie_read(struct rockchip_pcie *rockchip, u32 reg)
229{
230 return readl(rockchip->apb_base + reg);
231}
232
233static void rockchip_pcie_write(struct rockchip_pcie *rockchip, u32 val,
234 u32 reg)
235{
236 writel(val, rockchip->apb_base + reg);
237}
238
Shawn Lin964bac92018-05-09 09:12:05 +0800239int rockchip_pcie_parse_dt(struct rockchip_pcie *rockchip);
Shawn Lin956cd992018-05-09 09:11:49 +0800240int rockchip_pcie_get_phys(struct rockchip_pcie *rockchip);
241void rockchip_pcie_deinit_phys(struct rockchip_pcie *rockchip);
242int rockchip_pcie_enable_clocks(struct rockchip_pcie *rockchip);
243void rockchip_pcie_disable_clocks(void *data);
244void rockchip_pcie_cfg_configuration_accesses(
245 struct rockchip_pcie *rockchip, u32 type);
246
247#endif /* _PCIE_ROCKCHIP_H */