pcie-hisi.c 5.9 KB
Newer Older
1
/*
2
 * PCIe host controller driver for HiSilicon SoCs
3 4 5
 *
 * Copyright (C) 2015 HiSilicon Co., Ltd. http://www.hisilicon.com
 *
6 7 8
 * Authors: Zhou Wang <wangzhou1@hisilicon.com>
 *          Dacai Zhu <zhudacai@hisilicon.com>
 *          Gabriele Paoloni <gabriele.paoloni@huawei.com>
9 10 11 12 13 14
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/interrupt.h>
15
#include <linux/init.h>
16 17 18 19
#include <linux/mfd/syscon.h>
#include <linux/of_address.h>
#include <linux/of_pci.h>
#include <linux/platform_device.h>
20
#include <linux/of_device.h>
21 22 23 24
#include <linux/regmap.h>

#include "pcie-designware.h"

25 26 27 28 29
#define PCIE_LTSSM_LINKUP_STATE				0x11
#define PCIE_LTSSM_STATE_MASK				0x3F
#define PCIE_SUBCTRL_SYS_STATE4_REG			0x6818
#define PCIE_SYS_STATE4						0x31c
#define PCIE_HIP06_CTRL_OFF					0x1000
30 31 32

#define to_hisi_pcie(x)	container_of(x, struct hisi_pcie, pp)

33 34 35
struct hisi_pcie;

struct pcie_soc_ops {
36
	int (*hisi_pcie_link_up)(struct hisi_pcie *hisi_pcie);
37 38
};

39 40 41 42 43
struct hisi_pcie {
	struct regmap *subctrl;
	void __iomem *reg_base;
	u32 port_id;
	struct pcie_port pp;
44
	struct pcie_soc_ops *soc_ops;
45 46
};

47
static inline void hisi_pcie_apb_writel(struct hisi_pcie *hisi_pcie,
48 49
					u32 val, u32 reg)
{
50
	writel(val, hisi_pcie->reg_base + reg);
51 52
}

53
static inline u32 hisi_pcie_apb_readl(struct hisi_pcie *hisi_pcie, u32 reg)
54
{
55
	return readl(hisi_pcie->reg_base + reg);
56 57
}

58
/* HipXX PCIe host only supports 32-bit config access */
59 60 61 62 63
static int hisi_pcie_cfg_read(struct pcie_port *pp, int where, int size,
			      u32 *val)
{
	u32 reg;
	u32 reg_val;
64
	struct hisi_pcie *hisi_pcie = to_hisi_pcie(pp);
65 66 67 68
	void *walker = &reg_val;

	walker += (where & 0x3);
	reg = where & ~0x3;
69
	reg_val = hisi_pcie_apb_readl(hisi_pcie, reg);
70 71 72 73 74

	if (size == 1)
		*val = *(u8 __force *) walker;
	else if (size == 2)
		*val = *(u16 __force *) walker;
75 76 77
	else if (size == 4)
		*val = reg_val;
	else
78 79 80 81 82
		return PCIBIOS_BAD_REGISTER_NUMBER;

	return PCIBIOS_SUCCESSFUL;
}

83
/* HipXX PCIe host only supports 32-bit config access */
84 85 86 87 88
static int hisi_pcie_cfg_write(struct pcie_port *pp, int where, int  size,
				u32 val)
{
	u32 reg_val;
	u32 reg;
89
	struct hisi_pcie *hisi_pcie = to_hisi_pcie(pp);
90 91 92 93 94
	void *walker = &reg_val;

	walker += (where & 0x3);
	reg = where & ~0x3;
	if (size == 4)
95
		hisi_pcie_apb_writel(hisi_pcie, val, reg);
96
	else if (size == 2) {
97
		reg_val = hisi_pcie_apb_readl(hisi_pcie, reg);
98
		*(u16 __force *) walker = val;
99
		hisi_pcie_apb_writel(hisi_pcie, reg_val, reg);
100
	} else if (size == 1) {
101
		reg_val = hisi_pcie_apb_readl(hisi_pcie, reg);
102
		*(u8 __force *) walker = val;
103
		hisi_pcie_apb_writel(hisi_pcie, reg_val, reg);
104 105 106 107 108 109
	} else
		return PCIBIOS_BAD_REGISTER_NUMBER;

	return PCIBIOS_SUCCESSFUL;
}

110
static int hisi_pcie_link_up_hip05(struct hisi_pcie *hisi_pcie)
111 112 113 114 115 116 117 118 119
{
	u32 val;

	regmap_read(hisi_pcie->subctrl, PCIE_SUBCTRL_SYS_STATE4_REG +
		    0x100 * hisi_pcie->port_id, &val);

	return ((val & PCIE_LTSSM_STATE_MASK) == PCIE_LTSSM_LINKUP_STATE);
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
static int hisi_pcie_link_up_hip06(struct hisi_pcie *hisi_pcie)
{
	u32 val;

	val = hisi_pcie_apb_readl(hisi_pcie, PCIE_HIP06_CTRL_OFF +
			PCIE_SYS_STATE4);

	return ((val & PCIE_LTSSM_STATE_MASK) == PCIE_LTSSM_LINKUP_STATE);
}

static int hisi_pcie_link_up(struct pcie_port *pp)
{
	struct hisi_pcie *hisi_pcie = to_hisi_pcie(pp);

	return hisi_pcie->soc_ops->hisi_pcie_link_up(hisi_pcie);
}

137 138 139 140 141 142
static struct pcie_host_ops hisi_pcie_host_ops = {
	.rd_own_conf = hisi_pcie_cfg_read,
	.wr_own_conf = hisi_pcie_cfg_write,
	.link_up = hisi_pcie_link_up,
};

A
Arnd Bergmann 已提交
143
static int hisi_add_pcie_port(struct pcie_port *pp,
144 145
				     struct platform_device *pdev)
{
146
	struct device *dev = pp->dev;
147 148 149 150
	int ret;
	u32 port_id;
	struct hisi_pcie *hisi_pcie = to_hisi_pcie(pp);

151 152
	if (of_property_read_u32(dev->of_node, "port-id", &port_id)) {
		dev_err(dev, "failed to read port-id\n");
153 154 155
		return -EINVAL;
	}
	if (port_id > 3) {
156
		dev_err(dev, "Invalid port-id: %d\n", port_id);
157 158 159 160 161 162 163 164
		return -EINVAL;
	}
	hisi_pcie->port_id = port_id;

	pp->ops = &hisi_pcie_host_ops;

	ret = dw_pcie_host_init(pp);
	if (ret) {
165
		dev_err(dev, "failed to initialize host\n");
166 167 168 169 170 171
		return ret;
	}

	return 0;
}

A
Arnd Bergmann 已提交
172
static int hisi_pcie_probe(struct platform_device *pdev)
173
{
174
	struct device *dev = &pdev->dev;
175 176
	struct hisi_pcie *hisi_pcie;
	struct pcie_port *pp;
177
	const struct of_device_id *match;
178
	struct resource *reg;
179
	struct device_driver *driver;
180 181
	int ret;

182
	hisi_pcie = devm_kzalloc(dev, sizeof(*hisi_pcie), GFP_KERNEL);
183 184 185 186
	if (!hisi_pcie)
		return -ENOMEM;

	pp = &hisi_pcie->pp;
187 188
	pp->dev = dev;
	driver = dev->driver;
189

190
	match = of_match_device(driver->of_match_table, dev);
191
	hisi_pcie->soc_ops = (struct pcie_soc_ops *) match->data;
192 193 194 195

	hisi_pcie->subctrl =
	syscon_regmap_lookup_by_compatible("hisilicon,pcie-sas-subctrl");
	if (IS_ERR(hisi_pcie->subctrl)) {
196
		dev_err(dev, "cannot get subctrl base\n");
197 198 199 200
		return PTR_ERR(hisi_pcie->subctrl);
	}

	reg = platform_get_resource_byname(pdev, IORESOURCE_MEM, "rc_dbi");
201
	hisi_pcie->reg_base = devm_ioremap_resource(dev, reg);
202
	if (IS_ERR(hisi_pcie->reg_base)) {
203
		dev_err(dev, "cannot get rc_dbi base\n");
204 205 206 207 208 209 210 211 212
		return PTR_ERR(hisi_pcie->reg_base);
	}

	hisi_pcie->pp.dbi_base = hisi_pcie->reg_base;

	ret = hisi_add_pcie_port(pp, pdev);
	if (ret)
		return ret;

213
	dev_warn(dev, "only 32-bit config accesses supported; smaller writes may corrupt adjacent RW1C fields\n");
214 215 216 217

	return 0;
}

218 219 220 221 222 223 224 225
static struct pcie_soc_ops hip05_ops = {
		&hisi_pcie_link_up_hip05
};

static struct pcie_soc_ops hip06_ops = {
		&hisi_pcie_link_up_hip06
};

226
static const struct of_device_id hisi_pcie_of_match[] = {
227 228 229 230 231 232 233 234
	{
			.compatible = "hisilicon,hip05-pcie",
			.data	    = (void *) &hip05_ops,
	},
	{
			.compatible = "hisilicon,hip06-pcie",
			.data	    = (void *) &hip06_ops,
	},
235 236 237 238 239 240 241 242 243 244
	{},
};

static struct platform_driver hisi_pcie_driver = {
	.probe  = hisi_pcie_probe,
	.driver = {
		   .name = "hisi-pcie",
		   .of_match_table = hisi_pcie_of_match,
	},
};
245
builtin_platform_driver(hisi_pcie_driver);