blob: 8cdf516d9fad554ed5d2258612bbfd67f7e7eb31 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Hou Zhiqianga7294ab2016-12-13 14:54:16 +08002/*
Xiaowei Bao118e58e2020-07-09 23:31:33 +08003 * Copyright 2017-2020 NXP
Hou Zhiqianga7294ab2016-12-13 14:54:16 +08004 * Copyright 2014-2015 Freescale Semiconductor, Inc.
5 * Layerscape PCIe driver
Hou Zhiqianga7294ab2016-12-13 14:54:16 +08006 */
7
8#ifndef _PCIE_LAYERSCAPE_H_
9#define _PCIE_LAYERSCAPE_H_
10#include <pci.h>
Simon Glass51a4a852020-07-19 10:15:49 -060011
Xiaowei Baoc5174a52020-07-09 23:31:36 +080012#include <linux/sizes.h>
Hou Zhiqiang58410732021-01-29 12:47:05 +080013#include <asm/arch-fsl-layerscape/svr.h>
14#include <asm/arch-ls102xa/svr.h>
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080015
16#ifndef CONFIG_SYS_PCI_MEMORY_BUS
17#define CONFIG_SYS_PCI_MEMORY_BUS CONFIG_SYS_SDRAM_BASE
18#endif
19
20#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
21#define CONFIG_SYS_PCI_MEMORY_PHYS CONFIG_SYS_SDRAM_BASE
22#endif
23
24#ifndef CONFIG_SYS_PCI_MEMORY_SIZE
Xiaowei Bao83bf32e2020-07-09 23:31:39 +080025#define CONFIG_SYS_PCI_MEMORY_SIZE SZ_4G
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080026#endif
27
28#ifndef CONFIG_SYS_PCI_EP_MEMORY_BASE
29#define CONFIG_SYS_PCI_EP_MEMORY_BASE CONFIG_SYS_LOAD_ADDR
30#endif
31
Hou Zhiqiang3d8553f2017-03-03 12:35:09 +080032#define PCIE_PHYS_SIZE 0x200000000
33#define LS2088A_PCIE_PHYS_SIZE 0x800000000
34#define LS2088A_PCIE1_PHYS_ADDR 0x2000000000
35
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080036/* iATU registers */
37#define PCIE_ATU_VIEWPORT 0x900
38#define PCIE_ATU_REGION_INBOUND (0x1 << 31)
39#define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
40#define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
41#define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
42#define PCIE_ATU_REGION_INDEX2 (0x2 << 0)
43#define PCIE_ATU_REGION_INDEX3 (0x3 << 0)
44#define PCIE_ATU_REGION_NUM 6
Xiaowei Bao83bf32e2020-07-09 23:31:39 +080045#define PCIE_ATU_REGION_NUM_SRIOV 24
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080046#define PCIE_ATU_CR1 0x904
47#define PCIE_ATU_TYPE_MEM (0x0 << 0)
48#define PCIE_ATU_TYPE_IO (0x2 << 0)
49#define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
50#define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
Xiaowei Baoc5174a52020-07-09 23:31:36 +080051#define PCIE_ATU_FUNC_NUM(pf) ((pf) << 20)
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080052#define PCIE_ATU_CR2 0x908
53#define PCIE_ATU_ENABLE (0x1 << 31)
54#define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
Xiaowei Bao83bf32e2020-07-09 23:31:39 +080055#define PCIE_ATU_FUNC_NUM_MATCH_EN BIT(19)
56#define PCIE_ATU_VFBAR_MATCH_MODE_EN BIT(26)
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080057#define PCIE_ATU_BAR_NUM(bar) ((bar) << 8)
58#define PCIE_ATU_LOWER_BASE 0x90C
59#define PCIE_ATU_UPPER_BASE 0x910
60#define PCIE_ATU_LIMIT 0x914
61#define PCIE_ATU_LOWER_TARGET 0x918
62#define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
63#define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
64#define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
65#define PCIE_ATU_UPPER_TARGET 0x91C
66
67/* DBI registers */
68#define PCIE_SRIOV 0x178
69#define PCIE_STRFMR1 0x71c /* Symbol Timer & Filter Mask Register1 */
Xiaowei Bao118e58e2020-07-09 23:31:33 +080070#define PCIE_DBI_RO_WR_EN BIT(0)
71#define PCIE_MISC_CONTROL_1_OFF 0x8BC
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080072
73#define PCIE_LINK_CAP 0x7c
74#define PCIE_LINK_SPEED_MASK 0xf
75#define PCIE_LINK_WIDTH_MASK 0x3f0
76#define PCIE_LINK_STA 0x82
77
78#define LTSSM_STATE_MASK 0x3f
79#define LTSSM_PCIE_L0 0x11 /* L0 state */
80
81#define PCIE_DBI_SIZE 0x100000 /* 1M */
82
83#define PCIE_LCTRL0_CFG2_ENABLE (1 << 31)
84#define PCIE_LCTRL0_VF(vf) ((vf) << 22)
85#define PCIE_LCTRL0_PF(pf) ((pf) << 16)
86#define PCIE_LCTRL0_VF_ACTIVE (1 << 21)
87#define PCIE_LCTRL0_VAL(pf, vf) (PCIE_LCTRL0_PF(pf) | \
88 PCIE_LCTRL0_VF(vf) | \
89 ((vf) == 0 ? 0 : PCIE_LCTRL0_VF_ACTIVE) | \
90 PCIE_LCTRL0_CFG2_ENABLE)
91
92#define PCIE_NO_SRIOV_BAR_BASE 0x1000
Xiaowei Bao118e58e2020-07-09 23:31:33 +080093#define FSL_PCIE_EP_MIN_APERTURE 4096 /* 4 Kbytes */
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080094#define PCIE_PF_NUM 2
95#define PCIE_VF_NUM 64
Xiaowei Bao83bf32e2020-07-09 23:31:39 +080096#define BAR_NUM 8
Hou Zhiqianga7294ab2016-12-13 14:54:16 +080097
Xiaowei Baoc5174a52020-07-09 23:31:36 +080098#define PCIE_BAR0_SIZE SZ_4K
99#define PCIE_BAR1_SIZE SZ_8K
100#define PCIE_BAR2_SIZE SZ_4K
101#define PCIE_BAR4_SIZE SZ_1M
102
103#define PCIE_SRIOV_VFBAR0 0x19C
104
Xiaowei Bao4085e3a2020-07-09 23:31:41 +0800105#define PCIE_MASK_OFFSET(flag, pf, off) ((flag) ? 0 : (0x1000 + (off) * (pf)))
Hou Zhiqianga7294ab2016-12-13 14:54:16 +0800106
Minghuan Lian80afc632016-12-13 14:54:17 +0800107/* LUT registers */
108#define PCIE_LUT_UDR(n) (0x800 + (n) * 8)
109#define PCIE_LUT_LDR(n) (0x804 + (n) * 8)
110#define PCIE_LUT_ENABLE (1 << 31)
111#define PCIE_LUT_ENTRY_COUNT 32
112
113/* PF Controll registers */
Hou Zhiqiangd170aca2017-02-10 15:42:11 +0800114#define PCIE_PF_CONFIG 0x14
Minghuan Lian80afc632016-12-13 14:54:17 +0800115#define PCIE_PF_VF_CTRL 0x7F8
116#define PCIE_PF_DBG 0x7FC
Hou Zhiqiangd170aca2017-02-10 15:42:11 +0800117#define PCIE_CONFIG_READY (1 << 0)
Minghuan Lian80afc632016-12-13 14:54:17 +0800118
119#define PCIE_SRDS_PRTCL(idx) (PCIE1 + (idx))
120#define PCIE_SYS_BASE_ADDR 0x3400000
121#define PCIE_CCSR_SIZE 0x0100000
122
123/* CS2 */
124#define PCIE_CS2_OFFSET 0x1000 /* For PCIe without SR-IOV */
125
Minghuan Lian80afc632016-12-13 14:54:17 +0800126/* LS1021a PCIE space */
127#define LS1021_PCIE_SPACE_OFFSET 0x4000000000ULL
128#define LS1021_PCIE_SPACE_SIZE 0x0800000000ULL
129
130/* LS1021a PEX1/2 Misc Ports Status Register */
131#define LS1021_PEXMSCPORTSR(pex_idx) (0x94 + (pex_idx) * 4)
132#define LS1021_LTSSM_STATE_SHIFT 20
133
Xiaowei Bao4085e3a2020-07-09 23:31:41 +0800134/* LX2160a PF1 offset */
135#define LX2160_PCIE_PF1_OFFSET 0x8000
136
137/* layerscape PF1 offset */
138#define LS_PCIE_PF1_OFFSET 0x20000
139
Minghuan Lian80afc632016-12-13 14:54:17 +0800140struct ls_pcie {
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800141 void __iomem *dbi;
142 void __iomem *lut;
143 void __iomem *ctrl;
Minghuan Lian80afc632016-12-13 14:54:17 +0800144 int idx;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800145 bool big_endian;
146 int mode;
147};
148
149struct ls_pcie_rc {
150 struct ls_pcie *pcie;
Minghuan Lian80afc632016-12-13 14:54:17 +0800151 struct list_head list;
152 struct udevice *bus;
153 struct fdt_resource dbi_res;
154 struct fdt_resource lut_res;
155 struct fdt_resource ctrl_res;
156 struct fdt_resource cfg_res;
Minghuan Lian80afc632016-12-13 14:54:17 +0800157 void __iomem *cfg0;
158 void __iomem *cfg1;
Minghuan Lian80afc632016-12-13 14:54:17 +0800159 bool enabled;
160 int next_lut_index;
Wasim Khanc81b1ea2019-11-15 09:23:34 +0000161 int stream_id_cur;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800162};
163
164struct ls_pcie_ep {
165 struct fdt_resource addr_res;
166 struct ls_pcie *pcie;
167 struct udevice *bus;
168 void __iomem *addr;
Xiaowei Baoc5174a52020-07-09 23:31:36 +0800169 u32 cfg2_flag;
170 u32 sriov_flag;
Xiaowei Bao4085e3a2020-07-09 23:31:41 +0800171 u32 pf1_offset;
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800172 u32 num_ib_wins;
173 u32 num_ob_wins;
174 u8 max_functions;
Minghuan Lian80afc632016-12-13 14:54:17 +0800175};
176
177extern struct list_head ls_pcie_list;
178
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800179unsigned int dbi_readl(struct ls_pcie *pcie, unsigned int offset);
180void dbi_writel(struct ls_pcie *pcie, unsigned int value, unsigned int offset);
181unsigned int ctrl_readl(struct ls_pcie *pcie, unsigned int offset);
182void ctrl_writel(struct ls_pcie *pcie, unsigned int value, unsigned int offset);
183void ls_pcie_atu_outbound_set(struct ls_pcie *pcie, int idx, int type,
Xiaowei Bao83bf32e2020-07-09 23:31:39 +0800184 u64 phys, u64 bus_addr, u64 size);
185void ls_pcie_atu_inbound_set(struct ls_pcie *pcie, u32 pf, u32 vf_flag,
186 int type, int idx, int bar, u64 phys);
Xiaowei Bao80b5a662020-07-09 23:31:40 +0800187void ls_pcie_dump_atu(struct ls_pcie *pcie, u32 win_num, u32 type);
Xiaowei Bao118e58e2020-07-09 23:31:33 +0800188int ls_pcie_link_up(struct ls_pcie *pcie);
189void ls_pcie_dbi_ro_wr_en(struct ls_pcie *pcie);
190void ls_pcie_dbi_ro_wr_dis(struct ls_pcie *pcie);
191
Hou Zhiqianga7294ab2016-12-13 14:54:16 +0800192#endif /* _PCIE_LAYERSCAPE_H_ */