1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe host controller driver for Amlogic MESON SoCs
5 * Copyright (c) 2018 Amlogic, inc.
10 #include <linux/delay.h>
11 #include <linux/of_device.h>
12 #include <linux/of_gpio.h>
13 #include <linux/pci.h>
14 #include <linux/platform_device.h>
15 #include <linux/reset.h>
16 #include <linux/resource.h>
17 #include <linux/types.h>
19 #include "pcie-designware.h"
21 #define to_meson_pcie(x) dev_get_drvdata((x)->dev)
23 /* External local bus interface registers */
24 #define PLR_OFFSET 0x700
25 #define PCIE_PORT_LINK_CTRL_OFF (PLR_OFFSET + 0x10)
26 #define FAST_LINK_MODE BIT(7)
27 #define LINK_CAPABLE_MASK GENMASK(21, 16)
28 #define LINK_CAPABLE_X1 BIT(16)
30 #define PCIE_GEN2_CTRL_OFF (PLR_OFFSET + 0x10c)
31 #define NUM_OF_LANES_MASK GENMASK(12, 8)
32 #define NUM_OF_LANES_X1 BIT(8)
33 #define DIRECT_SPEED_CHANGE BIT(17)
35 #define TYPE1_HDR_OFFSET 0x0
36 #define PCIE_STATUS_COMMAND (TYPE1_HDR_OFFSET + 0x04)
37 #define PCI_IO_EN BIT(0)
38 #define PCI_MEM_SPACE_EN BIT(1)
39 #define PCI_BUS_MASTER_EN BIT(2)
41 #define PCIE_BASE_ADDR0 (TYPE1_HDR_OFFSET + 0x10)
42 #define PCIE_BASE_ADDR1 (TYPE1_HDR_OFFSET + 0x14)
44 #define PCIE_CAP_OFFSET 0x70
45 #define PCIE_DEV_CTRL_DEV_STUS (PCIE_CAP_OFFSET + 0x08)
46 #define PCIE_CAP_MAX_PAYLOAD_MASK GENMASK(7, 5)
47 #define PCIE_CAP_MAX_PAYLOAD_SIZE(x) ((x) << 5)
48 #define PCIE_CAP_MAX_READ_REQ_MASK GENMASK(14, 12)
49 #define PCIE_CAP_MAX_READ_REQ_SIZE(x) ((x) << 12)
51 /* PCIe specific config registers */
53 #define APP_LTSSM_ENABLE BIT(7)
55 #define PCIE_CFG_STATUS12 0x30
56 #define IS_SMLH_LINK_UP(x) ((x) & (1 << 6))
57 #define IS_RDLH_LINK_UP(x) ((x) & (1 << 16))
58 #define IS_LTSSM_UP(x) ((((x) >> 10) & 0x1f) == 0x11)
60 #define PCIE_CFG_STATUS17 0x44
61 #define PM_CURRENT_STATE(x) (((x) >> 7) & 0x1)
63 #define WAIT_LINKUP_TIMEOUT 4000
64 #define PORT_CLK_RATE 100000000UL
65 #define MAX_PAYLOAD_SIZE 256
66 #define MAX_READ_REQ_SIZE 256
67 #define MESON_PCIE_PHY_POWERUP 0x1c
68 #define PCIE_RESET_DELAY 500
69 #define PCIE_SHARED_RESET 1
70 #define PCIE_NORMAL_RESET 0
79 struct meson_pcie_mem_res {
80 void __iomem *elbi_base;
81 void __iomem *cfg_base;
82 void __iomem *phy_base;
85 struct meson_pcie_clk_res {
87 struct clk *mipi_gate;
89 struct clk *general_clk;
92 struct meson_pcie_rc_reset {
93 struct reset_control *phy;
94 struct reset_control *port;
95 struct reset_control *apb;
100 struct meson_pcie_mem_res mem_res;
101 struct meson_pcie_clk_res clk_res;
102 struct meson_pcie_rc_reset mrst;
103 struct gpio_desc *reset_gpio;
106 static struct reset_control *meson_pcie_get_reset(struct meson_pcie *mp,
110 struct device *dev = mp->pci.dev;
111 struct reset_control *reset;
113 if (reset_type == PCIE_SHARED_RESET)
114 reset = devm_reset_control_get_shared(dev, id);
116 reset = devm_reset_control_get(dev, id);
121 static int meson_pcie_get_resets(struct meson_pcie *mp)
123 struct meson_pcie_rc_reset *mrst = &mp->mrst;
125 mrst->phy = meson_pcie_get_reset(mp, "phy", PCIE_SHARED_RESET);
126 if (IS_ERR(mrst->phy))
127 return PTR_ERR(mrst->phy);
128 reset_control_deassert(mrst->phy);
130 mrst->port = meson_pcie_get_reset(mp, "port", PCIE_NORMAL_RESET);
131 if (IS_ERR(mrst->port))
132 return PTR_ERR(mrst->port);
133 reset_control_deassert(mrst->port);
135 mrst->apb = meson_pcie_get_reset(mp, "apb", PCIE_SHARED_RESET);
136 if (IS_ERR(mrst->apb))
137 return PTR_ERR(mrst->apb);
138 reset_control_deassert(mrst->apb);
143 static void __iomem *meson_pcie_get_mem(struct platform_device *pdev,
144 struct meson_pcie *mp,
147 struct device *dev = mp->pci.dev;
148 struct resource *res;
150 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, id);
152 return devm_ioremap_resource(dev, res);
155 static void __iomem *meson_pcie_get_mem_shared(struct platform_device *pdev,
156 struct meson_pcie *mp,
159 struct device *dev = mp->pci.dev;
160 struct resource *res;
162 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, id);
164 dev_err(dev, "No REG resource %s\n", id);
165 return ERR_PTR(-ENXIO);
168 return devm_ioremap(dev, res->start, resource_size(res));
171 static int meson_pcie_get_mems(struct platform_device *pdev,
172 struct meson_pcie *mp)
174 mp->mem_res.elbi_base = meson_pcie_get_mem(pdev, mp, "elbi");
175 if (IS_ERR(mp->mem_res.elbi_base))
176 return PTR_ERR(mp->mem_res.elbi_base);
178 mp->mem_res.cfg_base = meson_pcie_get_mem(pdev, mp, "cfg");
179 if (IS_ERR(mp->mem_res.cfg_base))
180 return PTR_ERR(mp->mem_res.cfg_base);
182 /* Meson SoC has two PCI controllers use same phy register*/
183 mp->mem_res.phy_base = meson_pcie_get_mem_shared(pdev, mp, "phy");
184 if (IS_ERR(mp->mem_res.phy_base))
185 return PTR_ERR(mp->mem_res.phy_base);
190 static void meson_pcie_power_on(struct meson_pcie *mp)
192 writel(MESON_PCIE_PHY_POWERUP, mp->mem_res.phy_base);
195 static void meson_pcie_reset(struct meson_pcie *mp)
197 struct meson_pcie_rc_reset *mrst = &mp->mrst;
199 reset_control_assert(mrst->phy);
200 udelay(PCIE_RESET_DELAY);
201 reset_control_deassert(mrst->phy);
202 udelay(PCIE_RESET_DELAY);
204 reset_control_assert(mrst->port);
205 reset_control_assert(mrst->apb);
206 udelay(PCIE_RESET_DELAY);
207 reset_control_deassert(mrst->port);
208 reset_control_deassert(mrst->apb);
209 udelay(PCIE_RESET_DELAY);
212 static inline struct clk *meson_pcie_probe_clock(struct device *dev,
213 const char *id, u64 rate)
218 clk = devm_clk_get(dev, id);
223 ret = clk_set_rate(clk, rate);
225 dev_err(dev, "set clk rate failed, ret = %d\n", ret);
230 ret = clk_prepare_enable(clk);
232 dev_err(dev, "couldn't enable clk\n");
236 devm_add_action_or_reset(dev,
237 (void (*) (void *))clk_disable_unprepare,
243 static int meson_pcie_probe_clocks(struct meson_pcie *mp)
245 struct device *dev = mp->pci.dev;
246 struct meson_pcie_clk_res *res = &mp->clk_res;
248 res->port_clk = meson_pcie_probe_clock(dev, "port", PORT_CLK_RATE);
249 if (IS_ERR(res->port_clk))
250 return PTR_ERR(res->port_clk);
252 res->mipi_gate = meson_pcie_probe_clock(dev, "pcie_mipi_en", 0);
253 if (IS_ERR(res->mipi_gate))
254 return PTR_ERR(res->mipi_gate);
256 res->general_clk = meson_pcie_probe_clock(dev, "pcie_general", 0);
257 if (IS_ERR(res->general_clk))
258 return PTR_ERR(res->general_clk);
260 res->clk = meson_pcie_probe_clock(dev, "pcie", 0);
261 if (IS_ERR(res->clk))
262 return PTR_ERR(res->clk);
267 static inline void meson_elb_writel(struct meson_pcie *mp, u32 val, u32 reg)
269 writel(val, mp->mem_res.elbi_base + reg);
272 static inline u32 meson_elb_readl(struct meson_pcie *mp, u32 reg)
274 return readl(mp->mem_res.elbi_base + reg);
277 static inline u32 meson_cfg_readl(struct meson_pcie *mp, u32 reg)
279 return readl(mp->mem_res.cfg_base + reg);
282 static inline void meson_cfg_writel(struct meson_pcie *mp, u32 val, u32 reg)
284 writel(val, mp->mem_res.cfg_base + reg);
287 static void meson_pcie_assert_reset(struct meson_pcie *mp)
289 gpiod_set_value_cansleep(mp->reset_gpio, 0);
291 gpiod_set_value_cansleep(mp->reset_gpio, 1);
294 static void meson_pcie_init_dw(struct meson_pcie *mp)
298 val = meson_cfg_readl(mp, PCIE_CFG0);
299 val |= APP_LTSSM_ENABLE;
300 meson_cfg_writel(mp, val, PCIE_CFG0);
302 val = meson_elb_readl(mp, PCIE_PORT_LINK_CTRL_OFF);
303 val &= ~LINK_CAPABLE_MASK;
304 meson_elb_writel(mp, val, PCIE_PORT_LINK_CTRL_OFF);
306 val = meson_elb_readl(mp, PCIE_PORT_LINK_CTRL_OFF);
307 val |= LINK_CAPABLE_X1 | FAST_LINK_MODE;
308 meson_elb_writel(mp, val, PCIE_PORT_LINK_CTRL_OFF);
310 val = meson_elb_readl(mp, PCIE_GEN2_CTRL_OFF);
311 val &= ~NUM_OF_LANES_MASK;
312 meson_elb_writel(mp, val, PCIE_GEN2_CTRL_OFF);
314 val = meson_elb_readl(mp, PCIE_GEN2_CTRL_OFF);
315 val |= NUM_OF_LANES_X1 | DIRECT_SPEED_CHANGE;
316 meson_elb_writel(mp, val, PCIE_GEN2_CTRL_OFF);
318 meson_elb_writel(mp, 0x0, PCIE_BASE_ADDR0);
319 meson_elb_writel(mp, 0x0, PCIE_BASE_ADDR1);
322 static int meson_size_to_payload(struct meson_pcie *mp, int size)
324 struct device *dev = mp->pci.dev;
327 * dwc supports 2^(val+7) payload size, which val is 0~5 default to 1.
328 * So if input size is not 2^order alignment or less than 2^7 or bigger
329 * than 2^12, just set to default size 2^(1+7).
331 if (!is_power_of_2(size) || size < 128 || size > 4096) {
332 dev_warn(dev, "payload size %d, set to default 256\n", size);
336 return fls(size) - 8;
339 static void meson_set_max_payload(struct meson_pcie *mp, int size)
342 int max_payload_size = meson_size_to_payload(mp, size);
344 val = meson_elb_readl(mp, PCIE_DEV_CTRL_DEV_STUS);
345 val &= ~PCIE_CAP_MAX_PAYLOAD_MASK;
346 meson_elb_writel(mp, val, PCIE_DEV_CTRL_DEV_STUS);
348 val = meson_elb_readl(mp, PCIE_DEV_CTRL_DEV_STUS);
349 val |= PCIE_CAP_MAX_PAYLOAD_SIZE(max_payload_size);
350 meson_elb_writel(mp, val, PCIE_DEV_CTRL_DEV_STUS);
353 static void meson_set_max_rd_req_size(struct meson_pcie *mp, int size)
356 int max_rd_req_size = meson_size_to_payload(mp, size);
358 val = meson_elb_readl(mp, PCIE_DEV_CTRL_DEV_STUS);
359 val &= ~PCIE_CAP_MAX_READ_REQ_MASK;
360 meson_elb_writel(mp, val, PCIE_DEV_CTRL_DEV_STUS);
362 val = meson_elb_readl(mp, PCIE_DEV_CTRL_DEV_STUS);
363 val |= PCIE_CAP_MAX_READ_REQ_SIZE(max_rd_req_size);
364 meson_elb_writel(mp, val, PCIE_DEV_CTRL_DEV_STUS);
367 static inline void meson_enable_memory_space(struct meson_pcie *mp)
369 /* Set the RC Bus Master, Memory Space and I/O Space enables */
370 meson_elb_writel(mp, PCI_IO_EN | PCI_MEM_SPACE_EN | PCI_BUS_MASTER_EN,
371 PCIE_STATUS_COMMAND);
374 static int meson_pcie_establish_link(struct meson_pcie *mp)
376 struct dw_pcie *pci = &mp->pci;
377 struct pcie_port *pp = &pci->pp;
379 meson_pcie_init_dw(mp);
380 meson_set_max_payload(mp, MAX_PAYLOAD_SIZE);
381 meson_set_max_rd_req_size(mp, MAX_READ_REQ_SIZE);
383 dw_pcie_setup_rc(pp);
384 meson_enable_memory_space(mp);
386 meson_pcie_assert_reset(mp);
388 return dw_pcie_wait_for_link(pci);
391 static void meson_pcie_enable_interrupts(struct meson_pcie *mp)
393 if (IS_ENABLED(CONFIG_PCI_MSI))
394 dw_pcie_msi_init(&mp->pci.pp);
397 static int meson_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
400 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
403 ret = dw_pcie_read(pci->dbi_base + where, size, val);
404 if (ret != PCIBIOS_SUCCESSFUL)
408 * There is a bug in the MESON AXG PCIe controller whereby software
409 * cannot program the PCI_CLASS_DEVICE register, so we must fabricate
410 * the return value in the config accessors.
412 if (where == PCI_CLASS_REVISION && size == 4)
413 *val = (PCI_CLASS_BRIDGE_PCI << 16) | (*val & 0xffff);
414 else if (where == PCI_CLASS_DEVICE && size == 2)
415 *val = PCI_CLASS_BRIDGE_PCI;
416 else if (where == PCI_CLASS_DEVICE && size == 1)
417 *val = PCI_CLASS_BRIDGE_PCI & 0xff;
418 else if (where == PCI_CLASS_DEVICE + 1 && size == 1)
419 *val = (PCI_CLASS_BRIDGE_PCI >> 8) & 0xff;
421 return PCIBIOS_SUCCESSFUL;
424 static int meson_pcie_wr_own_conf(struct pcie_port *pp, int where,
427 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
429 return dw_pcie_write(pci->dbi_base + where, size, val);
432 static int meson_pcie_link_up(struct dw_pcie *pci)
434 struct meson_pcie *mp = to_meson_pcie(pci);
435 struct device *dev = pci->dev;
438 u32 state12, state17, smlh_up, ltssm_up, rdlh_up;
441 state12 = meson_cfg_readl(mp, PCIE_CFG_STATUS12);
442 state17 = meson_cfg_readl(mp, PCIE_CFG_STATUS17);
443 smlh_up = IS_SMLH_LINK_UP(state12);
444 rdlh_up = IS_RDLH_LINK_UP(state12);
445 ltssm_up = IS_LTSSM_UP(state12);
447 if (PM_CURRENT_STATE(state17) < PCIE_GEN3)
451 dev_dbg(dev, "smlh_link_up is on\n");
453 dev_dbg(dev, "rdlh_link_up is on\n");
455 dev_dbg(dev, "ltssm_up is on\n");
457 dev_dbg(dev, "speed_okay\n");
459 if (smlh_up && rdlh_up && ltssm_up && speed_okay)
465 } while (cnt < WAIT_LINKUP_TIMEOUT);
467 dev_err(dev, "error: wait linkup timeout\n");
471 static int meson_pcie_host_init(struct pcie_port *pp)
473 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
474 struct meson_pcie *mp = to_meson_pcie(pci);
477 ret = meson_pcie_establish_link(mp);
481 meson_pcie_enable_interrupts(mp);
486 static const struct dw_pcie_host_ops meson_pcie_host_ops = {
487 .rd_own_conf = meson_pcie_rd_own_conf,
488 .wr_own_conf = meson_pcie_wr_own_conf,
489 .host_init = meson_pcie_host_init,
492 static int meson_add_pcie_port(struct meson_pcie *mp,
493 struct platform_device *pdev)
495 struct dw_pcie *pci = &mp->pci;
496 struct pcie_port *pp = &pci->pp;
497 struct device *dev = &pdev->dev;
500 if (IS_ENABLED(CONFIG_PCI_MSI)) {
501 pp->msi_irq = platform_get_irq(pdev, 0);
502 if (pp->msi_irq < 0) {
503 dev_err(dev, "failed to get MSI IRQ\n");
508 pp->ops = &meson_pcie_host_ops;
509 pci->dbi_base = mp->mem_res.elbi_base;
511 ret = dw_pcie_host_init(pp);
513 dev_err(dev, "failed to initialize host\n");
520 static const struct dw_pcie_ops dw_pcie_ops = {
521 .link_up = meson_pcie_link_up,
524 static int meson_pcie_probe(struct platform_device *pdev)
526 struct device *dev = &pdev->dev;
528 struct meson_pcie *mp;
531 mp = devm_kzalloc(dev, sizeof(*mp), GFP_KERNEL);
537 pci->ops = &dw_pcie_ops;
539 mp->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW);
540 if (IS_ERR(mp->reset_gpio)) {
541 dev_err(dev, "get reset gpio failed\n");
542 return PTR_ERR(mp->reset_gpio);
545 ret = meson_pcie_get_resets(mp);
547 dev_err(dev, "get reset resource failed, %d\n", ret);
551 ret = meson_pcie_get_mems(pdev, mp);
553 dev_err(dev, "get memory resource failed, %d\n", ret);
557 meson_pcie_power_on(mp);
558 meson_pcie_reset(mp);
560 ret = meson_pcie_probe_clocks(mp);
562 dev_err(dev, "init clock resources failed, %d\n", ret);
566 platform_set_drvdata(pdev, mp);
568 ret = meson_add_pcie_port(mp, pdev);
570 dev_err(dev, "Add PCIe port failed, %d\n", ret);
577 static const struct of_device_id meson_pcie_of_match[] = {
579 .compatible = "amlogic,axg-pcie",
584 static struct platform_driver meson_pcie_driver = {
585 .probe = meson_pcie_probe,
587 .name = "meson-pcie",
588 .of_match_table = meson_pcie_of_match,
592 builtin_platform_driver(meson_pcie_driver);