blob: c85cac0095835d7590464425b996d27f61c8279b [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);
Harro Haanca165892013-12-12 19:29:03 +0100170 dw_pcie_wr_own_conf(pp,
171 PCIE_MSI_INTR0_STATUS + i * 12,
172 4, 1 << pos);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900173 generic_handle_irq(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900174 pos++;
175 }
176 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900177 }
178}
179
180void dw_pcie_msi_init(struct pcie_port *pp)
181{
182 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
183
184 /* program the msi_data */
185 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
186 virt_to_phys((void *)pp->msi_data));
187 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0);
188}
189
190static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
191{
192 int flag = 1;
193
194 do {
195 pos = find_next_zero_bit(pp->msi_irq_in_use,
196 MAX_MSI_IRQS, pos);
197 /*if you have reached to the end then get out from here.*/
198 if (pos == MAX_MSI_IRQS)
199 return -ENOSPC;
200 /*
201 * Check if this position is at correct offset.nvec is always a
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700202 * power of two. pos0 must be nvec bit aligned.
Jingoo Hanf342d942013-09-06 15:54:59 +0900203 */
204 if (pos % msgvec)
205 pos += msgvec - (pos % msgvec);
206 else
207 flag = 0;
208 } while (flag);
209
210 *pos0 = pos;
211 return 0;
212}
213
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100214static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
215 unsigned int nvec, unsigned int pos)
216{
217 unsigned int i, res, bit, val;
218
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700219 for (i = 0; i < nvec; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100220 irq_set_msi_desc_off(irq_base, i, NULL);
221 clear_bit(pos + i, pp->msi_irq_in_use);
222 /* Disable corresponding interrupt on MSI interrupt controller */
223 res = ((pos + i) / 32) * 12;
224 bit = (pos + i) % 32;
225 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
226 val &= ~(1 << bit);
227 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100228 }
229}
230
Jingoo Hanf342d942013-09-06 15:54:59 +0900231static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
232{
233 int res, bit, irq, pos0, pos1, i;
234 u32 val;
235 struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata);
236
237 if (!pp) {
238 BUG();
239 return -EINVAL;
240 }
241
242 pos0 = find_first_zero_bit(pp->msi_irq_in_use,
243 MAX_MSI_IRQS);
244 if (pos0 % no_irqs) {
245 if (find_valid_pos0(pp, no_irqs, pos0, &pos0))
246 goto no_valid_irq;
247 }
248 if (no_irqs > 1) {
249 pos1 = find_next_bit(pp->msi_irq_in_use,
250 MAX_MSI_IRQS, pos0);
251 /* there must be nvec number of consecutive free bits */
252 while ((pos1 - pos0) < no_irqs) {
253 if (find_valid_pos0(pp, no_irqs, pos1, &pos0))
254 goto no_valid_irq;
255 pos1 = find_next_bit(pp->msi_irq_in_use,
256 MAX_MSI_IRQS, pos0);
257 }
258 }
259
Pratyush Anand904d0e72013-10-09 21:32:12 +0900260 irq = irq_find_mapping(pp->irq_domain, pos0);
261 if (!irq)
Jingoo Hanf342d942013-09-06 15:54:59 +0900262 goto no_valid_irq;
263
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100264 /*
265 * irq_create_mapping (called from dw_pcie_host_init) pre-allocates
266 * descs so there is no need to allocate descs here. We can therefore
267 * assume that if irq_find_mapping above returns non-zero, then the
268 * descs are also successfully allocated.
269 */
270
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700271 for (i = 0; i < no_irqs; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100272 if (irq_set_msi_desc_off(irq, i, desc) != 0) {
273 clear_irq_range(pp, irq, i, pos0);
274 goto no_valid_irq;
275 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900276 set_bit(pos0 + i, pp->msi_irq_in_use);
Jingoo Hanf342d942013-09-06 15:54:59 +0900277 /*Enable corresponding interrupt in MSI interrupt controller */
278 res = ((pos0 + i) / 32) * 12;
279 bit = (pos0 + i) % 32;
280 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
281 val |= 1 << bit;
282 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Jingoo Hanf342d942013-09-06 15:54:59 +0900283 }
284
285 *pos = pos0;
286 return irq;
287
288no_valid_irq:
289 *pos = pos0;
290 return -ENOSPC;
291}
292
293static void clear_irq(unsigned int irq)
294{
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100295 unsigned int pos, nvec;
Jingoo Hanf342d942013-09-06 15:54:59 +0900296 struct irq_desc *desc;
297 struct msi_desc *msi;
298 struct pcie_port *pp;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900299 struct irq_data *data = irq_get_irq_data(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900300
301 /* get the port structure */
302 desc = irq_to_desc(irq);
303 msi = irq_desc_get_msi_desc(desc);
304 pp = sys_to_pcie(msi->dev->bus->sysdata);
305 if (!pp) {
306 BUG();
307 return;
308 }
309
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100310 /* undo what was done in assign_irq */
Pratyush Anand904d0e72013-10-09 21:32:12 +0900311 pos = data->hwirq;
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100312 nvec = 1 << msi->msi_attrib.multiple;
Jingoo Hanf342d942013-09-06 15:54:59 +0900313
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100314 clear_irq_range(pp, irq, nvec, pos);
Jingoo Hanf342d942013-09-06 15:54:59 +0900315
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100316 /* all irqs cleared; reset attributes */
317 msi->irq = 0;
318 msi->msi_attrib.multiple = 0;
Jingoo Hanf342d942013-09-06 15:54:59 +0900319}
320
321static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev,
322 struct msi_desc *desc)
323{
324 int irq, pos, msgvec;
325 u16 msg_ctr;
326 struct msi_msg msg;
327 struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata);
328
329 if (!pp) {
330 BUG();
331 return -EINVAL;
332 }
333
334 pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS,
335 &msg_ctr);
336 msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4;
337 if (msgvec == 0)
338 msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1;
339 if (msgvec > 5)
340 msgvec = 0;
341
342 irq = assign_irq((1 << msgvec), desc, &pos);
343 if (irq < 0)
344 return irq;
345
Bjørn Erik Nilsen64989e72013-11-29 14:35:25 +0100346 /*
347 * write_msi_msg() will update PCI_MSI_FLAGS so there is
348 * no need to explicitly call pci_write_config_word().
349 */
Jingoo Hanf342d942013-09-06 15:54:59 +0900350 desc->msi_attrib.multiple = msgvec;
351
352 msg.address_lo = virt_to_phys((void *)pp->msi_data);
353 msg.address_hi = 0x0;
354 msg.data = pos;
355 write_msi_msg(irq, &msg);
356
357 return 0;
358}
359
360static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq)
361{
362 clear_irq(irq);
363}
364
365static struct msi_chip dw_pcie_msi_chip = {
366 .setup_irq = dw_msi_setup_irq,
367 .teardown_irq = dw_msi_teardown_irq,
368};
369
Jingoo Han4b1ced82013-07-31 17:14:10 +0900370int dw_pcie_link_up(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900371{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900372 if (pp->ops->link_up)
373 return pp->ops->link_up(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900374 else
Jingoo Han340cba62013-06-21 16:24:54 +0900375 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900376}
377
Jingoo Hanf342d942013-09-06 15:54:59 +0900378static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
379 irq_hw_number_t hwirq)
380{
381 irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
382 irq_set_chip_data(irq, domain->host_data);
383 set_irq_flags(irq, IRQF_VALID);
384
385 return 0;
386}
387
388static const struct irq_domain_ops msi_domain_ops = {
389 .map = dw_pcie_msi_map,
390};
391
Jingoo Han4b1ced82013-07-31 17:14:10 +0900392int __init dw_pcie_host_init(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900393{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900394 struct device_node *np = pp->dev->of_node;
Jingoo Han340cba62013-06-21 16:24:54 +0900395 struct of_pci_range range;
396 struct of_pci_range_parser parser;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900397 u32 val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900398 int i;
Jingoo Hanf342d942013-09-06 15:54:59 +0900399
Jingoo Han340cba62013-06-21 16:24:54 +0900400 if (of_pci_range_parser_init(&parser, np)) {
Jingoo Han4b1ced82013-07-31 17:14:10 +0900401 dev_err(pp->dev, "missing ranges property\n");
Jingoo Han340cba62013-06-21 16:24:54 +0900402 return -EINVAL;
403 }
404
405 /* Get the I/O and memory ranges from DT */
406 for_each_of_pci_range(&parser, &range) {
407 unsigned long restype = range.flags & IORESOURCE_TYPE_BITS;
408 if (restype == IORESOURCE_IO) {
409 of_pci_range_to_resource(&range, np, &pp->io);
410 pp->io.name = "I/O";
411 pp->io.start = max_t(resource_size_t,
412 PCIBIOS_MIN_IO,
413 range.pci_addr + global_io_offset);
414 pp->io.end = min_t(resource_size_t,
415 IO_SPACE_LIMIT,
416 range.pci_addr + range.size
417 + global_io_offset);
418 pp->config.io_size = resource_size(&pp->io);
419 pp->config.io_bus_addr = range.pci_addr;
420 }
421 if (restype == IORESOURCE_MEM) {
422 of_pci_range_to_resource(&range, np, &pp->mem);
423 pp->mem.name = "MEM";
424 pp->config.mem_size = resource_size(&pp->mem);
425 pp->config.mem_bus_addr = range.pci_addr;
426 }
427 if (restype == 0) {
428 of_pci_range_to_resource(&range, np, &pp->cfg);
429 pp->config.cfg0_size = resource_size(&pp->cfg)/2;
430 pp->config.cfg1_size = resource_size(&pp->cfg)/2;
431 }
432 }
433
Jingoo Han4b1ced82013-07-31 17:14:10 +0900434 if (!pp->dbi_base) {
435 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start,
436 resource_size(&pp->cfg));
437 if (!pp->dbi_base) {
438 dev_err(pp->dev, "error with ioremap\n");
439 return -ENOMEM;
440 }
Jingoo Han340cba62013-06-21 16:24:54 +0900441 }
Jingoo Han340cba62013-06-21 16:24:54 +0900442
Jingoo Han4b1ced82013-07-31 17:14:10 +0900443 pp->cfg0_base = pp->cfg.start;
444 pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size;
445 pp->io_base = pp->io.start;
446 pp->mem_base = pp->mem.start;
447
448 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
449 pp->config.cfg0_size);
450 if (!pp->va_cfg0_base) {
451 dev_err(pp->dev, "error with ioremap in function\n");
452 return -ENOMEM;
Jingoo Han340cba62013-06-21 16:24:54 +0900453 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900454 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
455 pp->config.cfg1_size);
456 if (!pp->va_cfg1_base) {
457 dev_err(pp->dev, "error with ioremap\n");
458 return -ENOMEM;
459 }
Jingoo Han340cba62013-06-21 16:24:54 +0900460
Jingoo Han4b1ced82013-07-31 17:14:10 +0900461 if (of_property_read_u32(np, "num-lanes", &pp->lanes)) {
462 dev_err(pp->dev, "Failed to parse the number of lanes\n");
463 return -EINVAL;
464 }
Jingoo Han340cba62013-06-21 16:24:54 +0900465
Jingoo Hanf342d942013-09-06 15:54:59 +0900466 if (IS_ENABLED(CONFIG_PCI_MSI)) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900467 pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
Jingoo Hanf342d942013-09-06 15:54:59 +0900468 MAX_MSI_IRQS, &msi_domain_ops,
469 &dw_pcie_msi_chip);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900470 if (!pp->irq_domain) {
Jingoo Hanf342d942013-09-06 15:54:59 +0900471 dev_err(pp->dev, "irq domain init failed\n");
472 return -ENXIO;
473 }
474
Pratyush Anand904d0e72013-10-09 21:32:12 +0900475 for (i = 0; i < MAX_MSI_IRQS; i++)
476 irq_create_mapping(pp->irq_domain, i);
Jingoo Hanf342d942013-09-06 15:54:59 +0900477 }
478
Jingoo Han4b1ced82013-07-31 17:14:10 +0900479 if (pp->ops->host_init)
480 pp->ops->host_init(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900481
Jingoo Han4b1ced82013-07-31 17:14:10 +0900482 dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
483
484 /* program correct class for RC */
485 dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
486
487 dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
488 val |= PORT_LOGIC_SPEED_CHANGE;
489 dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
490
491 dw_pci.nr_controllers = 1;
492 dw_pci.private_data = (void **)&pp;
493
494 pci_common_init(&dw_pci);
Jingoo Han340cba62013-06-21 16:24:54 +0900495 pci_assign_unassigned_resources();
496#ifdef CONFIG_PCI_DOMAINS
Jingoo Han4b1ced82013-07-31 17:14:10 +0900497 dw_pci.domain++;
Jingoo Han340cba62013-06-21 16:24:54 +0900498#endif
499
Jingoo Han340cba62013-06-21 16:24:54 +0900500 return 0;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900501}
Jingoo Han340cba62013-06-21 16:24:54 +0900502
Jingoo Han4b1ced82013-07-31 17:14:10 +0900503static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev)
504{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900505 /* Program viewport 0 : OUTBOUND : CFG0 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900506 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
507 PCIE_ATU_VIEWPORT);
508 dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE);
509 dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900510 dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900511 PCIE_ATU_LIMIT);
512 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
513 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
514 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1);
515 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900516}
517
518static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev)
519{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900520 /* Program viewport 1 : OUTBOUND : CFG1 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900521 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
522 PCIE_ATU_VIEWPORT);
523 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1);
524 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
525 dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE);
526 dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900527 dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900528 PCIE_ATU_LIMIT);
529 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
530 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900531}
532
533static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp)
534{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900535 /* Program viewport 0 : OUTBOUND : MEM */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900536 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
537 PCIE_ATU_VIEWPORT);
538 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1);
539 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
540 dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE);
541 dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900542 dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900543 PCIE_ATU_LIMIT);
544 dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900545 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900546 PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900547}
548
549static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp)
550{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900551 /* Program viewport 1 : OUTBOUND : IO */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900552 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
553 PCIE_ATU_VIEWPORT);
554 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1);
555 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
556 dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE);
557 dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900558 dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900559 PCIE_ATU_LIMIT);
560 dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900561 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900562 PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900563}
564
565static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
566 u32 devfn, int where, int size, u32 *val)
567{
568 int ret = PCIBIOS_SUCCESSFUL;
569 u32 address, busdev;
570
571 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
572 PCIE_ATU_FUNC(PCI_FUNC(devfn));
573 address = where & ~0x3;
574
575 if (bus->parent->number == pp->root_bus_nr) {
576 dw_pcie_prog_viewport_cfg0(pp, busdev);
577 ret = cfg_read(pp->va_cfg0_base + address, where, size, val);
578 dw_pcie_prog_viewport_mem_outbound(pp);
579 } else {
580 dw_pcie_prog_viewport_cfg1(pp, busdev);
581 ret = cfg_read(pp->va_cfg1_base + address, where, size, val);
582 dw_pcie_prog_viewport_io_outbound(pp);
583 }
584
Jingoo Han340cba62013-06-21 16:24:54 +0900585 return ret;
586}
587
Jingoo Han4b1ced82013-07-31 17:14:10 +0900588static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
589 u32 devfn, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900590{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900591 int ret = PCIBIOS_SUCCESSFUL;
592 u32 address, busdev;
Jingoo Han340cba62013-06-21 16:24:54 +0900593
Jingoo Han4b1ced82013-07-31 17:14:10 +0900594 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
595 PCIE_ATU_FUNC(PCI_FUNC(devfn));
596 address = where & ~0x3;
Jingoo Han340cba62013-06-21 16:24:54 +0900597
Jingoo Han4b1ced82013-07-31 17:14:10 +0900598 if (bus->parent->number == pp->root_bus_nr) {
599 dw_pcie_prog_viewport_cfg0(pp, busdev);
600 ret = cfg_write(pp->va_cfg0_base + address, where, size, val);
601 dw_pcie_prog_viewport_mem_outbound(pp);
602 } else {
603 dw_pcie_prog_viewport_cfg1(pp, busdev);
604 ret = cfg_write(pp->va_cfg1_base + address, where, size, val);
605 dw_pcie_prog_viewport_io_outbound(pp);
606 }
607
608 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900609}
610
Jingoo Han340cba62013-06-21 16:24:54 +0900611
Jingoo Han4b1ced82013-07-31 17:14:10 +0900612static int dw_pcie_valid_config(struct pcie_port *pp,
613 struct pci_bus *bus, int dev)
Jingoo Han340cba62013-06-21 16:24:54 +0900614{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900615 /* If there is no link, then there is no device */
616 if (bus->number != pp->root_bus_nr) {
617 if (!dw_pcie_link_up(pp))
618 return 0;
619 }
Jingoo Han340cba62013-06-21 16:24:54 +0900620
Jingoo Han4b1ced82013-07-31 17:14:10 +0900621 /* access only one slot on each root port */
622 if (bus->number == pp->root_bus_nr && dev > 0)
623 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900624
625 /*
Jingoo Han4b1ced82013-07-31 17:14:10 +0900626 * do not read more than one device on the bus directly attached
627 * to RC's (Virtual Bridge's) DS side.
Jingoo Han340cba62013-06-21 16:24:54 +0900628 */
Jingoo Han4b1ced82013-07-31 17:14:10 +0900629 if (bus->primary == pp->root_bus_nr && dev > 0)
Jingoo Han340cba62013-06-21 16:24:54 +0900630 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900631
632 return 1;
633}
634
Jingoo Han4b1ced82013-07-31 17:14:10 +0900635static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
636 int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900637{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900638 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
639 unsigned long flags;
640 int ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900641
Jingoo Han4b1ced82013-07-31 17:14:10 +0900642 if (!pp) {
643 BUG();
644 return -EINVAL;
645 }
Jingoo Han340cba62013-06-21 16:24:54 +0900646
Jingoo Han4b1ced82013-07-31 17:14:10 +0900647 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
648 *val = 0xffffffff;
649 return PCIBIOS_DEVICE_NOT_FOUND;
650 }
651
652 spin_lock_irqsave(&pp->conf_lock, flags);
653 if (bus->number != pp->root_bus_nr)
654 ret = dw_pcie_rd_other_conf(pp, bus, devfn,
655 where, size, val);
656 else
657 ret = dw_pcie_rd_own_conf(pp, where, size, val);
658 spin_unlock_irqrestore(&pp->conf_lock, flags);
659
660 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900661}
Jingoo Han4b1ced82013-07-31 17:14:10 +0900662
663static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
664 int where, int size, u32 val)
665{
666 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
667 unsigned long flags;
668 int ret;
669
670 if (!pp) {
671 BUG();
672 return -EINVAL;
673 }
674
675 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
676 return PCIBIOS_DEVICE_NOT_FOUND;
677
678 spin_lock_irqsave(&pp->conf_lock, flags);
679 if (bus->number != pp->root_bus_nr)
680 ret = dw_pcie_wr_other_conf(pp, bus, devfn,
681 where, size, val);
682 else
683 ret = dw_pcie_wr_own_conf(pp, where, size, val);
684 spin_unlock_irqrestore(&pp->conf_lock, flags);
685
686 return ret;
687}
688
689static struct pci_ops dw_pcie_ops = {
690 .read = dw_pcie_rd_conf,
691 .write = dw_pcie_wr_conf,
692};
693
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600694static int dw_pcie_setup(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900695{
696 struct pcie_port *pp;
697
698 pp = sys_to_pcie(sys);
699
700 if (!pp)
701 return 0;
702
703 if (global_io_offset < SZ_1M && pp->config.io_size > 0) {
704 sys->io_offset = global_io_offset - pp->config.io_bus_addr;
705 pci_ioremap_io(sys->io_offset, pp->io.start);
706 global_io_offset += SZ_64K;
707 pci_add_resource_offset(&sys->resources, &pp->io,
708 sys->io_offset);
709 }
710
711 sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr;
712 pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset);
713
714 return 1;
715}
716
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600717static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900718{
719 struct pci_bus *bus;
720 struct pcie_port *pp = sys_to_pcie(sys);
721
722 if (pp) {
723 pp->root_bus_nr = sys->busnr;
724 bus = pci_scan_root_bus(NULL, sys->busnr, &dw_pcie_ops,
725 sys, &sys->resources);
726 } else {
727 bus = NULL;
728 BUG();
729 }
730
731 return bus;
732}
733
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600734static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900735{
736 struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
737
738 return pp->irq;
739}
740
Jingoo Hanf342d942013-09-06 15:54:59 +0900741static void dw_pcie_add_bus(struct pci_bus *bus)
742{
743 if (IS_ENABLED(CONFIG_PCI_MSI)) {
744 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
745
746 dw_pcie_msi_chip.dev = pp->dev;
747 bus->msi = &dw_pcie_msi_chip;
748 }
749}
750
Jingoo Han4b1ced82013-07-31 17:14:10 +0900751static struct hw_pci dw_pci = {
752 .setup = dw_pcie_setup,
753 .scan = dw_pcie_scan_bus,
754 .map_irq = dw_pcie_map_irq,
Jingoo Hanf342d942013-09-06 15:54:59 +0900755 .add_bus = dw_pcie_add_bus,
Jingoo Han4b1ced82013-07-31 17:14:10 +0900756};
757
758void dw_pcie_setup_rc(struct pcie_port *pp)
759{
760 struct pcie_port_info *config = &pp->config;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900761 u32 val;
762 u32 membase;
763 u32 memlimit;
764
765 /* set the number of lines as 4 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900766 dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900767 val &= ~PORT_LINK_MODE_MASK;
768 switch (pp->lanes) {
769 case 1:
770 val |= PORT_LINK_MODE_1_LANES;
771 break;
772 case 2:
773 val |= PORT_LINK_MODE_2_LANES;
774 break;
775 case 4:
776 val |= PORT_LINK_MODE_4_LANES;
777 break;
778 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900779 dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900780
781 /* set link width speed control register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900782 dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900783 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
784 switch (pp->lanes) {
785 case 1:
786 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
787 break;
788 case 2:
789 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
790 break;
791 case 4:
792 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
793 break;
794 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900795 dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900796
797 /* setup RC BARs */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900798 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
799 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_1);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900800
801 /* setup interrupt pins */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900802 dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900803 val &= 0xffff00ff;
804 val |= 0x00000100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900805 dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900806
807 /* setup bus numbers */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900808 dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900809 val &= 0xff000000;
810 val |= 0x00010100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900811 dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900812
813 /* setup memory base, memory limit */
814 membase = ((u32)pp->mem_base & 0xfff00000) >> 16;
815 memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000;
816 val = memlimit | membase;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900817 dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900818
819 /* setup command register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900820 dw_pcie_readl_rc(pp, PCI_COMMAND, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900821 val &= 0xffff0000;
822 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
823 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900824 dw_pcie_writel_rc(pp, val, PCI_COMMAND);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900825}
Jingoo Han340cba62013-06-21 16:24:54 +0900826
827MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
Jingoo Han4b1ced82013-07-31 17:14:10 +0900828MODULE_DESCRIPTION("Designware PCIe host controller driver");
Jingoo Han340cba62013-06-21 16:24:54 +0900829MODULE_LICENSE("GPL v2");