blob: 1c92833a4ed3fe2ab452d4de9b1dfcec72ff522e [file] [log] [blame]
Jingoo Han340cba62013-06-21 16:24:54 +09001/*
Jingoo Han4b1ced82013-07-31 17:14:10 +09002 * Synopsys Designware PCIe host controller driver
Jingoo Han340cba62013-06-21 16:24:54 +09003 *
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 *
7 * Author: Jingoo Han <jg1.han@samsung.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Jingoo Hanf342d942013-09-06 15:54:59 +090014#include <linux/irq.h>
15#include <linux/irqdomain.h>
Jingoo Han340cba62013-06-21 16:24:54 +090016#include <linux/kernel.h>
Jingoo Han340cba62013-06-21 16:24:54 +090017#include <linux/module.h>
Jingoo Hanf342d942013-09-06 15:54:59 +090018#include <linux/msi.h>
Jingoo Han340cba62013-06-21 16:24:54 +090019#include <linux/of_address.h>
Jingoo Han340cba62013-06-21 16:24:54 +090020#include <linux/pci.h>
21#include <linux/pci_regs.h>
Jingoo Han340cba62013-06-21 16:24:54 +090022#include <linux/types.h>
23
Jingoo Han4b1ced82013-07-31 17:14:10 +090024#include "pcie-designware.h"
Jingoo Han340cba62013-06-21 16:24:54 +090025
26/* Synopsis specific PCIE configuration registers */
27#define PCIE_PORT_LINK_CONTROL 0x710
28#define PORT_LINK_MODE_MASK (0x3f << 16)
Jingoo Han4b1ced82013-07-31 17:14:10 +090029#define PORT_LINK_MODE_1_LANES (0x1 << 16)
30#define PORT_LINK_MODE_2_LANES (0x3 << 16)
Jingoo Han340cba62013-06-21 16:24:54 +090031#define PORT_LINK_MODE_4_LANES (0x7 << 16)
32
33#define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C
34#define PORT_LOGIC_SPEED_CHANGE (0x1 << 17)
35#define PORT_LOGIC_LINK_WIDTH_MASK (0x1ff << 8)
Jingoo Han4b1ced82013-07-31 17:14:10 +090036#define PORT_LOGIC_LINK_WIDTH_1_LANES (0x1 << 8)
37#define PORT_LOGIC_LINK_WIDTH_2_LANES (0x2 << 8)
38#define PORT_LOGIC_LINK_WIDTH_4_LANES (0x4 << 8)
Jingoo Han340cba62013-06-21 16:24:54 +090039
40#define PCIE_MSI_ADDR_LO 0x820
41#define PCIE_MSI_ADDR_HI 0x824
42#define PCIE_MSI_INTR0_ENABLE 0x828
43#define PCIE_MSI_INTR0_MASK 0x82C
44#define PCIE_MSI_INTR0_STATUS 0x830
45
46#define PCIE_ATU_VIEWPORT 0x900
47#define PCIE_ATU_REGION_INBOUND (0x1 << 31)
48#define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
49#define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
50#define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
51#define PCIE_ATU_CR1 0x904
52#define PCIE_ATU_TYPE_MEM (0x0 << 0)
53#define PCIE_ATU_TYPE_IO (0x2 << 0)
54#define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
55#define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
56#define PCIE_ATU_CR2 0x908
57#define PCIE_ATU_ENABLE (0x1 << 31)
58#define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
59#define PCIE_ATU_LOWER_BASE 0x90C
60#define PCIE_ATU_UPPER_BASE 0x910
61#define PCIE_ATU_LIMIT 0x914
62#define PCIE_ATU_LOWER_TARGET 0x918
63#define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
64#define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
65#define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
66#define PCIE_ATU_UPPER_TARGET 0x91C
67
Jingoo Han4b1ced82013-07-31 17:14:10 +090068static struct hw_pci dw_pci;
Jingoo Han340cba62013-06-21 16:24:54 +090069
Bjorn Helgaas73e40852013-10-09 09:12:37 -060070static unsigned long global_io_offset;
Jingoo Han340cba62013-06-21 16:24:54 +090071
72static inline struct pcie_port *sys_to_pcie(struct pci_sys_data *sys)
73{
74 return sys->private_data;
75}
76
Jingoo Han4b1ced82013-07-31 17:14:10 +090077int cfg_read(void __iomem *addr, int where, int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +090078{
79 *val = readl(addr);
80
81 if (size == 1)
82 *val = (*val >> (8 * (where & 3))) & 0xff;
83 else if (size == 2)
84 *val = (*val >> (8 * (where & 3))) & 0xffff;
85 else if (size != 4)
86 return PCIBIOS_BAD_REGISTER_NUMBER;
87
88 return PCIBIOS_SUCCESSFUL;
89}
90
Jingoo Han4b1ced82013-07-31 17:14:10 +090091int cfg_write(void __iomem *addr, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +090092{
93 if (size == 4)
94 writel(val, addr);
95 else if (size == 2)
96 writew(val, addr + (where & 2));
97 else if (size == 1)
98 writeb(val, addr + (where & 3));
99 else
100 return PCIBIOS_BAD_REGISTER_NUMBER;
101
102 return PCIBIOS_SUCCESSFUL;
103}
104
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900105static inline void dw_pcie_readl_rc(struct pcie_port *pp, u32 reg, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900106{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900107 if (pp->ops->readl_rc)
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900108 pp->ops->readl_rc(pp, pp->dbi_base + reg, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900109 else
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900110 *val = readl(pp->dbi_base + reg);
Jingoo Han340cba62013-06-21 16:24:54 +0900111}
112
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900113static inline void dw_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg)
Jingoo Han340cba62013-06-21 16:24:54 +0900114{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900115 if (pp->ops->writel_rc)
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900116 pp->ops->writel_rc(pp, val, pp->dbi_base + reg);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900117 else
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900118 writel(val, pp->dbi_base + reg);
Jingoo Han340cba62013-06-21 16:24:54 +0900119}
120
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600121static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
122 u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900123{
124 int ret;
125
Jingoo Han4b1ced82013-07-31 17:14:10 +0900126 if (pp->ops->rd_own_conf)
127 ret = pp->ops->rd_own_conf(pp, where, size, val);
128 else
129 ret = cfg_read(pp->dbi_base + (where & ~0x3), where, size, val);
130
Jingoo Han340cba62013-06-21 16:24:54 +0900131 return ret;
132}
133
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600134static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
135 u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900136{
137 int ret;
138
Jingoo Han4b1ced82013-07-31 17:14:10 +0900139 if (pp->ops->wr_own_conf)
140 ret = pp->ops->wr_own_conf(pp, where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900141 else
Jingoo Han4b1ced82013-07-31 17:14:10 +0900142 ret = cfg_write(pp->dbi_base + (where & ~0x3), where, size,
143 val);
Jingoo Han340cba62013-06-21 16:24:54 +0900144
145 return ret;
146}
147
Jingoo Hanf342d942013-09-06 15:54:59 +0900148static struct irq_chip dw_msi_irq_chip = {
149 .name = "PCI-MSI",
150 .irq_enable = unmask_msi_irq,
151 .irq_disable = mask_msi_irq,
152 .irq_mask = mask_msi_irq,
153 .irq_unmask = unmask_msi_irq,
154};
155
156/* MSI int handler */
157void dw_handle_msi_irq(struct pcie_port *pp)
158{
159 unsigned long val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900160 int i, pos, irq;
Jingoo Hanf342d942013-09-06 15:54:59 +0900161
162 for (i = 0; i < MAX_MSI_CTRLS; i++) {
163 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4,
164 (u32 *)&val);
165 if (val) {
166 pos = 0;
167 while ((pos = find_next_bit(&val, 32, pos)) != 32) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900168 irq = irq_find_mapping(pp->irq_domain,
169 i * 32 + pos);
170 generic_handle_irq(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900171 pos++;
172 }
173 }
174 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4, val);
175 }
176}
177
178void dw_pcie_msi_init(struct pcie_port *pp)
179{
180 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
181
182 /* program the msi_data */
183 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
184 virt_to_phys((void *)pp->msi_data));
185 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0);
186}
187
188static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
189{
190 int flag = 1;
191
192 do {
193 pos = find_next_zero_bit(pp->msi_irq_in_use,
194 MAX_MSI_IRQS, pos);
195 /*if you have reached to the end then get out from here.*/
196 if (pos == MAX_MSI_IRQS)
197 return -ENOSPC;
198 /*
199 * Check if this position is at correct offset.nvec is always a
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700200 * power of two. pos0 must be nvec bit aligned.
Jingoo Hanf342d942013-09-06 15:54:59 +0900201 */
202 if (pos % msgvec)
203 pos += msgvec - (pos % msgvec);
204 else
205 flag = 0;
206 } while (flag);
207
208 *pos0 = pos;
209 return 0;
210}
211
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100212static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
213 unsigned int nvec, unsigned int pos)
214{
215 unsigned int i, res, bit, val;
216
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700217 for (i = 0; i < nvec; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100218 irq_set_msi_desc_off(irq_base, i, NULL);
219 clear_bit(pos + i, pp->msi_irq_in_use);
220 /* Disable corresponding interrupt on MSI interrupt controller */
221 res = ((pos + i) / 32) * 12;
222 bit = (pos + i) % 32;
223 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
224 val &= ~(1 << bit);
225 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100226 }
227}
228
Jingoo Hanf342d942013-09-06 15:54:59 +0900229static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
230{
231 int res, bit, irq, pos0, pos1, i;
232 u32 val;
233 struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata);
234
235 if (!pp) {
236 BUG();
237 return -EINVAL;
238 }
239
240 pos0 = find_first_zero_bit(pp->msi_irq_in_use,
241 MAX_MSI_IRQS);
242 if (pos0 % no_irqs) {
243 if (find_valid_pos0(pp, no_irqs, pos0, &pos0))
244 goto no_valid_irq;
245 }
246 if (no_irqs > 1) {
247 pos1 = find_next_bit(pp->msi_irq_in_use,
248 MAX_MSI_IRQS, pos0);
249 /* there must be nvec number of consecutive free bits */
250 while ((pos1 - pos0) < no_irqs) {
251 if (find_valid_pos0(pp, no_irqs, pos1, &pos0))
252 goto no_valid_irq;
253 pos1 = find_next_bit(pp->msi_irq_in_use,
254 MAX_MSI_IRQS, pos0);
255 }
256 }
257
Pratyush Anand904d0e72013-10-09 21:32:12 +0900258 irq = irq_find_mapping(pp->irq_domain, pos0);
259 if (!irq)
Jingoo Hanf342d942013-09-06 15:54:59 +0900260 goto no_valid_irq;
261
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100262 /*
263 * irq_create_mapping (called from dw_pcie_host_init) pre-allocates
264 * descs so there is no need to allocate descs here. We can therefore
265 * assume that if irq_find_mapping above returns non-zero, then the
266 * descs are also successfully allocated.
267 */
268
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700269 for (i = 0; i < no_irqs; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100270 if (irq_set_msi_desc_off(irq, i, desc) != 0) {
271 clear_irq_range(pp, irq, i, pos0);
272 goto no_valid_irq;
273 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900274 set_bit(pos0 + i, pp->msi_irq_in_use);
Jingoo Hanf342d942013-09-06 15:54:59 +0900275 /*Enable corresponding interrupt in MSI interrupt controller */
276 res = ((pos0 + i) / 32) * 12;
277 bit = (pos0 + i) % 32;
278 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
279 val |= 1 << bit;
280 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Jingoo Hanf342d942013-09-06 15:54:59 +0900281 }
282
283 *pos = pos0;
284 return irq;
285
286no_valid_irq:
287 *pos = pos0;
288 return -ENOSPC;
289}
290
291static void clear_irq(unsigned int irq)
292{
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100293 unsigned int pos, nvec;
Jingoo Hanf342d942013-09-06 15:54:59 +0900294 struct irq_desc *desc;
295 struct msi_desc *msi;
296 struct pcie_port *pp;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900297 struct irq_data *data = irq_get_irq_data(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900298
299 /* get the port structure */
300 desc = irq_to_desc(irq);
301 msi = irq_desc_get_msi_desc(desc);
302 pp = sys_to_pcie(msi->dev->bus->sysdata);
303 if (!pp) {
304 BUG();
305 return;
306 }
307
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100308 /* undo what was done in assign_irq */
Pratyush Anand904d0e72013-10-09 21:32:12 +0900309 pos = data->hwirq;
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100310 nvec = 1 << msi->msi_attrib.multiple;
Jingoo Hanf342d942013-09-06 15:54:59 +0900311
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100312 clear_irq_range(pp, irq, nvec, pos);
Jingoo Hanf342d942013-09-06 15:54:59 +0900313
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100314 /* all irqs cleared; reset attributes */
315 msi->irq = 0;
316 msi->msi_attrib.multiple = 0;
Jingoo Hanf342d942013-09-06 15:54:59 +0900317}
318
319static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev,
320 struct msi_desc *desc)
321{
322 int irq, pos, msgvec;
323 u16 msg_ctr;
324 struct msi_msg msg;
325 struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata);
326
327 if (!pp) {
328 BUG();
329 return -EINVAL;
330 }
331
332 pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS,
333 &msg_ctr);
334 msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4;
335 if (msgvec == 0)
336 msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1;
337 if (msgvec > 5)
338 msgvec = 0;
339
340 irq = assign_irq((1 << msgvec), desc, &pos);
341 if (irq < 0)
342 return irq;
343
Bjørn Erik Nilsen64989e72013-11-29 14:35:25 +0100344 /*
345 * write_msi_msg() will update PCI_MSI_FLAGS so there is
346 * no need to explicitly call pci_write_config_word().
347 */
Jingoo Hanf342d942013-09-06 15:54:59 +0900348 desc->msi_attrib.multiple = msgvec;
349
350 msg.address_lo = virt_to_phys((void *)pp->msi_data);
351 msg.address_hi = 0x0;
352 msg.data = pos;
353 write_msi_msg(irq, &msg);
354
355 return 0;
356}
357
358static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq)
359{
360 clear_irq(irq);
361}
362
363static struct msi_chip dw_pcie_msi_chip = {
364 .setup_irq = dw_msi_setup_irq,
365 .teardown_irq = dw_msi_teardown_irq,
366};
367
Jingoo Han4b1ced82013-07-31 17:14:10 +0900368int dw_pcie_link_up(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900369{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900370 if (pp->ops->link_up)
371 return pp->ops->link_up(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900372 else
Jingoo Han340cba62013-06-21 16:24:54 +0900373 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900374}
375
Jingoo Hanf342d942013-09-06 15:54:59 +0900376static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
377 irq_hw_number_t hwirq)
378{
379 irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
380 irq_set_chip_data(irq, domain->host_data);
381 set_irq_flags(irq, IRQF_VALID);
382
383 return 0;
384}
385
386static const struct irq_domain_ops msi_domain_ops = {
387 .map = dw_pcie_msi_map,
388};
389
Jingoo Han4b1ced82013-07-31 17:14:10 +0900390int __init dw_pcie_host_init(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900391{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900392 struct device_node *np = pp->dev->of_node;
Jingoo Han340cba62013-06-21 16:24:54 +0900393 struct of_pci_range range;
394 struct of_pci_range_parser parser;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900395 u32 val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900396 int i;
Jingoo Hanf342d942013-09-06 15:54:59 +0900397
Jingoo Han340cba62013-06-21 16:24:54 +0900398 if (of_pci_range_parser_init(&parser, np)) {
Jingoo Han4b1ced82013-07-31 17:14:10 +0900399 dev_err(pp->dev, "missing ranges property\n");
Jingoo Han340cba62013-06-21 16:24:54 +0900400 return -EINVAL;
401 }
402
403 /* Get the I/O and memory ranges from DT */
404 for_each_of_pci_range(&parser, &range) {
405 unsigned long restype = range.flags & IORESOURCE_TYPE_BITS;
406 if (restype == IORESOURCE_IO) {
407 of_pci_range_to_resource(&range, np, &pp->io);
408 pp->io.name = "I/O";
409 pp->io.start = max_t(resource_size_t,
410 PCIBIOS_MIN_IO,
411 range.pci_addr + global_io_offset);
412 pp->io.end = min_t(resource_size_t,
413 IO_SPACE_LIMIT,
414 range.pci_addr + range.size
415 + global_io_offset);
416 pp->config.io_size = resource_size(&pp->io);
417 pp->config.io_bus_addr = range.pci_addr;
418 }
419 if (restype == IORESOURCE_MEM) {
420 of_pci_range_to_resource(&range, np, &pp->mem);
421 pp->mem.name = "MEM";
422 pp->config.mem_size = resource_size(&pp->mem);
423 pp->config.mem_bus_addr = range.pci_addr;
424 }
425 if (restype == 0) {
426 of_pci_range_to_resource(&range, np, &pp->cfg);
427 pp->config.cfg0_size = resource_size(&pp->cfg)/2;
428 pp->config.cfg1_size = resource_size(&pp->cfg)/2;
429 }
430 }
431
Jingoo Han4b1ced82013-07-31 17:14:10 +0900432 if (!pp->dbi_base) {
433 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start,
434 resource_size(&pp->cfg));
435 if (!pp->dbi_base) {
436 dev_err(pp->dev, "error with ioremap\n");
437 return -ENOMEM;
438 }
Jingoo Han340cba62013-06-21 16:24:54 +0900439 }
Jingoo Han340cba62013-06-21 16:24:54 +0900440
Jingoo Han4b1ced82013-07-31 17:14:10 +0900441 pp->cfg0_base = pp->cfg.start;
442 pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size;
443 pp->io_base = pp->io.start;
444 pp->mem_base = pp->mem.start;
445
446 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
447 pp->config.cfg0_size);
448 if (!pp->va_cfg0_base) {
449 dev_err(pp->dev, "error with ioremap in function\n");
450 return -ENOMEM;
Jingoo Han340cba62013-06-21 16:24:54 +0900451 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900452 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
453 pp->config.cfg1_size);
454 if (!pp->va_cfg1_base) {
455 dev_err(pp->dev, "error with ioremap\n");
456 return -ENOMEM;
457 }
Jingoo Han340cba62013-06-21 16:24:54 +0900458
Jingoo Han4b1ced82013-07-31 17:14:10 +0900459 if (of_property_read_u32(np, "num-lanes", &pp->lanes)) {
460 dev_err(pp->dev, "Failed to parse the number of lanes\n");
461 return -EINVAL;
462 }
Jingoo Han340cba62013-06-21 16:24:54 +0900463
Jingoo Hanf342d942013-09-06 15:54:59 +0900464 if (IS_ENABLED(CONFIG_PCI_MSI)) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900465 pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
Jingoo Hanf342d942013-09-06 15:54:59 +0900466 MAX_MSI_IRQS, &msi_domain_ops,
467 &dw_pcie_msi_chip);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900468 if (!pp->irq_domain) {
Jingoo Hanf342d942013-09-06 15:54:59 +0900469 dev_err(pp->dev, "irq domain init failed\n");
470 return -ENXIO;
471 }
472
Pratyush Anand904d0e72013-10-09 21:32:12 +0900473 for (i = 0; i < MAX_MSI_IRQS; i++)
474 irq_create_mapping(pp->irq_domain, i);
Jingoo Hanf342d942013-09-06 15:54:59 +0900475 }
476
Jingoo Han4b1ced82013-07-31 17:14:10 +0900477 if (pp->ops->host_init)
478 pp->ops->host_init(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900479
Jingoo Han4b1ced82013-07-31 17:14:10 +0900480 dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
481
482 /* program correct class for RC */
483 dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
484
485 dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
486 val |= PORT_LOGIC_SPEED_CHANGE;
487 dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
488
489 dw_pci.nr_controllers = 1;
490 dw_pci.private_data = (void **)&pp;
491
492 pci_common_init(&dw_pci);
Jingoo Han340cba62013-06-21 16:24:54 +0900493 pci_assign_unassigned_resources();
494#ifdef CONFIG_PCI_DOMAINS
Jingoo Han4b1ced82013-07-31 17:14:10 +0900495 dw_pci.domain++;
Jingoo Han340cba62013-06-21 16:24:54 +0900496#endif
497
Jingoo Han340cba62013-06-21 16:24:54 +0900498 return 0;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900499}
Jingoo Han340cba62013-06-21 16:24:54 +0900500
Jingoo Han4b1ced82013-07-31 17:14:10 +0900501static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev)
502{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900503 /* Program viewport 0 : OUTBOUND : CFG0 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900504 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
505 PCIE_ATU_VIEWPORT);
506 dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE);
507 dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900508 dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900509 PCIE_ATU_LIMIT);
510 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
511 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
512 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1);
513 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900514}
515
516static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev)
517{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900518 /* Program viewport 1 : OUTBOUND : CFG1 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900519 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
520 PCIE_ATU_VIEWPORT);
521 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1);
522 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
523 dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE);
524 dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900525 dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900526 PCIE_ATU_LIMIT);
527 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
528 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900529}
530
531static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp)
532{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900533 /* Program viewport 0 : OUTBOUND : MEM */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900534 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
535 PCIE_ATU_VIEWPORT);
536 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1);
537 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
538 dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE);
539 dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900540 dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900541 PCIE_ATU_LIMIT);
542 dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900543 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900544 PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900545}
546
547static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp)
548{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900549 /* Program viewport 1 : OUTBOUND : IO */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900550 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
551 PCIE_ATU_VIEWPORT);
552 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1);
553 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
554 dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE);
555 dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900556 dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900557 PCIE_ATU_LIMIT);
558 dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900559 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900560 PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900561}
562
563static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
564 u32 devfn, int where, int size, u32 *val)
565{
566 int ret = PCIBIOS_SUCCESSFUL;
567 u32 address, busdev;
568
569 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
570 PCIE_ATU_FUNC(PCI_FUNC(devfn));
571 address = where & ~0x3;
572
573 if (bus->parent->number == pp->root_bus_nr) {
574 dw_pcie_prog_viewport_cfg0(pp, busdev);
575 ret = cfg_read(pp->va_cfg0_base + address, where, size, val);
576 dw_pcie_prog_viewport_mem_outbound(pp);
577 } else {
578 dw_pcie_prog_viewport_cfg1(pp, busdev);
579 ret = cfg_read(pp->va_cfg1_base + address, where, size, val);
580 dw_pcie_prog_viewport_io_outbound(pp);
581 }
582
Jingoo Han340cba62013-06-21 16:24:54 +0900583 return ret;
584}
585
Jingoo Han4b1ced82013-07-31 17:14:10 +0900586static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
587 u32 devfn, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900588{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900589 int ret = PCIBIOS_SUCCESSFUL;
590 u32 address, busdev;
Jingoo Han340cba62013-06-21 16:24:54 +0900591
Jingoo Han4b1ced82013-07-31 17:14:10 +0900592 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
593 PCIE_ATU_FUNC(PCI_FUNC(devfn));
594 address = where & ~0x3;
Jingoo Han340cba62013-06-21 16:24:54 +0900595
Jingoo Han4b1ced82013-07-31 17:14:10 +0900596 if (bus->parent->number == pp->root_bus_nr) {
597 dw_pcie_prog_viewport_cfg0(pp, busdev);
598 ret = cfg_write(pp->va_cfg0_base + address, where, size, val);
599 dw_pcie_prog_viewport_mem_outbound(pp);
600 } else {
601 dw_pcie_prog_viewport_cfg1(pp, busdev);
602 ret = cfg_write(pp->va_cfg1_base + address, where, size, val);
603 dw_pcie_prog_viewport_io_outbound(pp);
604 }
605
606 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900607}
608
Jingoo Han340cba62013-06-21 16:24:54 +0900609
Jingoo Han4b1ced82013-07-31 17:14:10 +0900610static int dw_pcie_valid_config(struct pcie_port *pp,
611 struct pci_bus *bus, int dev)
Jingoo Han340cba62013-06-21 16:24:54 +0900612{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900613 /* If there is no link, then there is no device */
614 if (bus->number != pp->root_bus_nr) {
615 if (!dw_pcie_link_up(pp))
616 return 0;
617 }
Jingoo Han340cba62013-06-21 16:24:54 +0900618
Jingoo Han4b1ced82013-07-31 17:14:10 +0900619 /* access only one slot on each root port */
620 if (bus->number == pp->root_bus_nr && dev > 0)
621 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900622
623 /*
Jingoo Han4b1ced82013-07-31 17:14:10 +0900624 * do not read more than one device on the bus directly attached
625 * to RC's (Virtual Bridge's) DS side.
Jingoo Han340cba62013-06-21 16:24:54 +0900626 */
Jingoo Han4b1ced82013-07-31 17:14:10 +0900627 if (bus->primary == pp->root_bus_nr && dev > 0)
Jingoo Han340cba62013-06-21 16:24:54 +0900628 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900629
630 return 1;
631}
632
Jingoo Han4b1ced82013-07-31 17:14:10 +0900633static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
634 int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900635{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900636 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
637 unsigned long flags;
638 int ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900639
Jingoo Han4b1ced82013-07-31 17:14:10 +0900640 if (!pp) {
641 BUG();
642 return -EINVAL;
643 }
Jingoo Han340cba62013-06-21 16:24:54 +0900644
Jingoo Han4b1ced82013-07-31 17:14:10 +0900645 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
646 *val = 0xffffffff;
647 return PCIBIOS_DEVICE_NOT_FOUND;
648 }
649
650 spin_lock_irqsave(&pp->conf_lock, flags);
651 if (bus->number != pp->root_bus_nr)
652 ret = dw_pcie_rd_other_conf(pp, bus, devfn,
653 where, size, val);
654 else
655 ret = dw_pcie_rd_own_conf(pp, where, size, val);
656 spin_unlock_irqrestore(&pp->conf_lock, flags);
657
658 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900659}
Jingoo Han4b1ced82013-07-31 17:14:10 +0900660
661static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
662 int where, int size, u32 val)
663{
664 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
665 unsigned long flags;
666 int ret;
667
668 if (!pp) {
669 BUG();
670 return -EINVAL;
671 }
672
673 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
674 return PCIBIOS_DEVICE_NOT_FOUND;
675
676 spin_lock_irqsave(&pp->conf_lock, flags);
677 if (bus->number != pp->root_bus_nr)
678 ret = dw_pcie_wr_other_conf(pp, bus, devfn,
679 where, size, val);
680 else
681 ret = dw_pcie_wr_own_conf(pp, where, size, val);
682 spin_unlock_irqrestore(&pp->conf_lock, flags);
683
684 return ret;
685}
686
687static struct pci_ops dw_pcie_ops = {
688 .read = dw_pcie_rd_conf,
689 .write = dw_pcie_wr_conf,
690};
691
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600692static int dw_pcie_setup(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900693{
694 struct pcie_port *pp;
695
696 pp = sys_to_pcie(sys);
697
698 if (!pp)
699 return 0;
700
701 if (global_io_offset < SZ_1M && pp->config.io_size > 0) {
702 sys->io_offset = global_io_offset - pp->config.io_bus_addr;
703 pci_ioremap_io(sys->io_offset, pp->io.start);
704 global_io_offset += SZ_64K;
705 pci_add_resource_offset(&sys->resources, &pp->io,
706 sys->io_offset);
707 }
708
709 sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr;
710 pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset);
711
712 return 1;
713}
714
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600715static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900716{
717 struct pci_bus *bus;
718 struct pcie_port *pp = sys_to_pcie(sys);
719
720 if (pp) {
721 pp->root_bus_nr = sys->busnr;
722 bus = pci_scan_root_bus(NULL, sys->busnr, &dw_pcie_ops,
723 sys, &sys->resources);
724 } else {
725 bus = NULL;
726 BUG();
727 }
728
729 return bus;
730}
731
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600732static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900733{
734 struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
735
736 return pp->irq;
737}
738
Jingoo Hanf342d942013-09-06 15:54:59 +0900739static void dw_pcie_add_bus(struct pci_bus *bus)
740{
741 if (IS_ENABLED(CONFIG_PCI_MSI)) {
742 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
743
744 dw_pcie_msi_chip.dev = pp->dev;
745 bus->msi = &dw_pcie_msi_chip;
746 }
747}
748
Jingoo Han4b1ced82013-07-31 17:14:10 +0900749static struct hw_pci dw_pci = {
750 .setup = dw_pcie_setup,
751 .scan = dw_pcie_scan_bus,
752 .map_irq = dw_pcie_map_irq,
Jingoo Hanf342d942013-09-06 15:54:59 +0900753 .add_bus = dw_pcie_add_bus,
Jingoo Han4b1ced82013-07-31 17:14:10 +0900754};
755
756void dw_pcie_setup_rc(struct pcie_port *pp)
757{
758 struct pcie_port_info *config = &pp->config;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900759 u32 val;
760 u32 membase;
761 u32 memlimit;
762
763 /* set the number of lines as 4 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900764 dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900765 val &= ~PORT_LINK_MODE_MASK;
766 switch (pp->lanes) {
767 case 1:
768 val |= PORT_LINK_MODE_1_LANES;
769 break;
770 case 2:
771 val |= PORT_LINK_MODE_2_LANES;
772 break;
773 case 4:
774 val |= PORT_LINK_MODE_4_LANES;
775 break;
776 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900777 dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900778
779 /* set link width speed control register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900780 dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900781 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
782 switch (pp->lanes) {
783 case 1:
784 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
785 break;
786 case 2:
787 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
788 break;
789 case 4:
790 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
791 break;
792 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900793 dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900794
795 /* setup RC BARs */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900796 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
797 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_1);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900798
799 /* setup interrupt pins */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900800 dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900801 val &= 0xffff00ff;
802 val |= 0x00000100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900803 dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900804
805 /* setup bus numbers */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900806 dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900807 val &= 0xff000000;
808 val |= 0x00010100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900809 dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900810
811 /* setup memory base, memory limit */
812 membase = ((u32)pp->mem_base & 0xfff00000) >> 16;
813 memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000;
814 val = memlimit | membase;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900815 dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900816
817 /* setup command register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900818 dw_pcie_readl_rc(pp, PCI_COMMAND, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900819 val &= 0xffff0000;
820 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
821 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900822 dw_pcie_writel_rc(pp, val, PCI_COMMAND);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900823}
Jingoo Han340cba62013-06-21 16:24:54 +0900824
825MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
Jingoo Han4b1ced82013-07-31 17:14:10 +0900826MODULE_DESCRIPTION("Designware PCIe host controller driver");
Jingoo Han340cba62013-06-21 16:24:54 +0900827MODULE_LICENSE("GPL v2");