blob: 0b7b4558bcfdde263276d4473a46db5efd3c1709 [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>
Lucas Stach804f57b2014-03-05 14:25:51 +010020#include <linux/of_pci.h>
Jingoo Han340cba62013-06-21 16:24:54 +090021#include <linux/pci.h>
22#include <linux/pci_regs.h>
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +053023#include <linux/platform_device.h>
Jingoo Han340cba62013-06-21 16:24:54 +090024#include <linux/types.h>
25
Jingoo Han4b1ced82013-07-31 17:14:10 +090026#include "pcie-designware.h"
Jingoo Han340cba62013-06-21 16:24:54 +090027
28/* Synopsis specific PCIE configuration registers */
29#define PCIE_PORT_LINK_CONTROL 0x710
30#define PORT_LINK_MODE_MASK (0x3f << 16)
Jingoo Han4b1ced82013-07-31 17:14:10 +090031#define PORT_LINK_MODE_1_LANES (0x1 << 16)
32#define PORT_LINK_MODE_2_LANES (0x3 << 16)
Jingoo Han340cba62013-06-21 16:24:54 +090033#define PORT_LINK_MODE_4_LANES (0x7 << 16)
34
35#define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C
36#define PORT_LOGIC_SPEED_CHANGE (0x1 << 17)
37#define PORT_LOGIC_LINK_WIDTH_MASK (0x1ff << 8)
Jingoo Han4b1ced82013-07-31 17:14:10 +090038#define PORT_LOGIC_LINK_WIDTH_1_LANES (0x1 << 8)
39#define PORT_LOGIC_LINK_WIDTH_2_LANES (0x2 << 8)
40#define PORT_LOGIC_LINK_WIDTH_4_LANES (0x4 << 8)
Jingoo Han340cba62013-06-21 16:24:54 +090041
42#define PCIE_MSI_ADDR_LO 0x820
43#define PCIE_MSI_ADDR_HI 0x824
44#define PCIE_MSI_INTR0_ENABLE 0x828
45#define PCIE_MSI_INTR0_MASK 0x82C
46#define PCIE_MSI_INTR0_STATUS 0x830
47
48#define PCIE_ATU_VIEWPORT 0x900
49#define PCIE_ATU_REGION_INBOUND (0x1 << 31)
50#define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
51#define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
52#define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
53#define PCIE_ATU_CR1 0x904
54#define PCIE_ATU_TYPE_MEM (0x0 << 0)
55#define PCIE_ATU_TYPE_IO (0x2 << 0)
56#define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
57#define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
58#define PCIE_ATU_CR2 0x908
59#define PCIE_ATU_ENABLE (0x1 << 31)
60#define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
61#define PCIE_ATU_LOWER_BASE 0x90C
62#define PCIE_ATU_UPPER_BASE 0x910
63#define PCIE_ATU_LIMIT 0x914
64#define PCIE_ATU_LOWER_TARGET 0x918
65#define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
66#define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
67#define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
68#define PCIE_ATU_UPPER_TARGET 0x91C
69
Jingoo Han4b1ced82013-07-31 17:14:10 +090070static struct hw_pci dw_pci;
Jingoo Han340cba62013-06-21 16:24:54 +090071
Bjorn Helgaas73e40852013-10-09 09:12:37 -060072static unsigned long global_io_offset;
Jingoo Han340cba62013-06-21 16:24:54 +090073
74static inline struct pcie_port *sys_to_pcie(struct pci_sys_data *sys)
75{
76 return sys->private_data;
77}
78
Pratyush Ananda01ef592013-12-11 15:08:32 +053079int dw_pcie_cfg_read(void __iomem *addr, int where, int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +090080{
81 *val = readl(addr);
82
83 if (size == 1)
84 *val = (*val >> (8 * (where & 3))) & 0xff;
85 else if (size == 2)
86 *val = (*val >> (8 * (where & 3))) & 0xffff;
87 else if (size != 4)
88 return PCIBIOS_BAD_REGISTER_NUMBER;
89
90 return PCIBIOS_SUCCESSFUL;
91}
92
Pratyush Ananda01ef592013-12-11 15:08:32 +053093int dw_pcie_cfg_write(void __iomem *addr, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +090094{
95 if (size == 4)
96 writel(val, addr);
97 else if (size == 2)
98 writew(val, addr + (where & 2));
99 else if (size == 1)
100 writeb(val, addr + (where & 3));
101 else
102 return PCIBIOS_BAD_REGISTER_NUMBER;
103
104 return PCIBIOS_SUCCESSFUL;
105}
106
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900107static inline void dw_pcie_readl_rc(struct pcie_port *pp, u32 reg, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900108{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900109 if (pp->ops->readl_rc)
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900110 pp->ops->readl_rc(pp, pp->dbi_base + reg, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900111 else
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900112 *val = readl(pp->dbi_base + reg);
Jingoo Han340cba62013-06-21 16:24:54 +0900113}
114
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900115static inline void dw_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg)
Jingoo Han340cba62013-06-21 16:24:54 +0900116{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900117 if (pp->ops->writel_rc)
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900118 pp->ops->writel_rc(pp, val, pp->dbi_base + reg);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900119 else
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900120 writel(val, pp->dbi_base + reg);
Jingoo Han340cba62013-06-21 16:24:54 +0900121}
122
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600123static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
124 u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900125{
126 int ret;
127
Jingoo Han4b1ced82013-07-31 17:14:10 +0900128 if (pp->ops->rd_own_conf)
129 ret = pp->ops->rd_own_conf(pp, where, size, val);
130 else
Pratyush Ananda01ef592013-12-11 15:08:32 +0530131 ret = dw_pcie_cfg_read(pp->dbi_base + (where & ~0x3), where,
132 size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900133
Jingoo Han340cba62013-06-21 16:24:54 +0900134 return ret;
135}
136
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600137static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
138 u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900139{
140 int ret;
141
Jingoo Han4b1ced82013-07-31 17:14:10 +0900142 if (pp->ops->wr_own_conf)
143 ret = pp->ops->wr_own_conf(pp, where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900144 else
Pratyush Ananda01ef592013-12-11 15:08:32 +0530145 ret = dw_pcie_cfg_write(pp->dbi_base + (where & ~0x3), where,
146 size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900147
148 return ret;
149}
150
Jingoo Hanf342d942013-09-06 15:54:59 +0900151static struct irq_chip dw_msi_irq_chip = {
152 .name = "PCI-MSI",
153 .irq_enable = unmask_msi_irq,
154 .irq_disable = mask_msi_irq,
155 .irq_mask = mask_msi_irq,
156 .irq_unmask = unmask_msi_irq,
157};
158
159/* MSI int handler */
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100160irqreturn_t dw_handle_msi_irq(struct pcie_port *pp)
Jingoo Hanf342d942013-09-06 15:54:59 +0900161{
162 unsigned long val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900163 int i, pos, irq;
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100164 irqreturn_t ret = IRQ_NONE;
Jingoo Hanf342d942013-09-06 15:54:59 +0900165
166 for (i = 0; i < MAX_MSI_CTRLS; i++) {
167 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4,
168 (u32 *)&val);
169 if (val) {
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100170 ret = IRQ_HANDLED;
Jingoo Hanf342d942013-09-06 15:54:59 +0900171 pos = 0;
172 while ((pos = find_next_bit(&val, 32, pos)) != 32) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900173 irq = irq_find_mapping(pp->irq_domain,
174 i * 32 + pos);
Harro Haanca165892013-12-12 19:29:03 +0100175 dw_pcie_wr_own_conf(pp,
176 PCIE_MSI_INTR0_STATUS + i * 12,
177 4, 1 << pos);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900178 generic_handle_irq(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900179 pos++;
180 }
181 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900182 }
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100183
184 return ret;
Jingoo Hanf342d942013-09-06 15:54:59 +0900185}
186
187void dw_pcie_msi_init(struct pcie_port *pp)
188{
189 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
190
191 /* program the msi_data */
192 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
193 virt_to_phys((void *)pp->msi_data));
194 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0);
195}
196
197static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
198{
199 int flag = 1;
200
201 do {
202 pos = find_next_zero_bit(pp->msi_irq_in_use,
203 MAX_MSI_IRQS, pos);
204 /*if you have reached to the end then get out from here.*/
205 if (pos == MAX_MSI_IRQS)
206 return -ENOSPC;
207 /*
208 * Check if this position is at correct offset.nvec is always a
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700209 * power of two. pos0 must be nvec bit aligned.
Jingoo Hanf342d942013-09-06 15:54:59 +0900210 */
211 if (pos % msgvec)
212 pos += msgvec - (pos % msgvec);
213 else
214 flag = 0;
215 } while (flag);
216
217 *pos0 = pos;
218 return 0;
219}
220
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100221static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
Jingoo Han58275f2f2013-12-27 09:30:25 +0900222 unsigned int nvec, unsigned int pos)
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100223{
224 unsigned int i, res, bit, val;
225
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700226 for (i = 0; i < nvec; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100227 irq_set_msi_desc_off(irq_base, i, NULL);
228 clear_bit(pos + i, pp->msi_irq_in_use);
Jingoo Han58275f2f2013-12-27 09:30:25 +0900229 /* Disable corresponding interrupt on MSI controller */
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100230 res = ((pos + i) / 32) * 12;
231 bit = (pos + i) % 32;
232 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
233 val &= ~(1 << bit);
234 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100235 }
236}
237
Jingoo Hanf342d942013-09-06 15:54:59 +0900238static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
239{
240 int res, bit, irq, pos0, pos1, i;
241 u32 val;
242 struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata);
243
244 if (!pp) {
245 BUG();
246 return -EINVAL;
247 }
248
249 pos0 = find_first_zero_bit(pp->msi_irq_in_use,
250 MAX_MSI_IRQS);
251 if (pos0 % no_irqs) {
252 if (find_valid_pos0(pp, no_irqs, pos0, &pos0))
253 goto no_valid_irq;
254 }
255 if (no_irqs > 1) {
256 pos1 = find_next_bit(pp->msi_irq_in_use,
257 MAX_MSI_IRQS, pos0);
258 /* there must be nvec number of consecutive free bits */
259 while ((pos1 - pos0) < no_irqs) {
260 if (find_valid_pos0(pp, no_irqs, pos1, &pos0))
261 goto no_valid_irq;
262 pos1 = find_next_bit(pp->msi_irq_in_use,
263 MAX_MSI_IRQS, pos0);
264 }
265 }
266
Pratyush Anand904d0e72013-10-09 21:32:12 +0900267 irq = irq_find_mapping(pp->irq_domain, pos0);
268 if (!irq)
Jingoo Hanf342d942013-09-06 15:54:59 +0900269 goto no_valid_irq;
270
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100271 /*
272 * irq_create_mapping (called from dw_pcie_host_init) pre-allocates
273 * descs so there is no need to allocate descs here. We can therefore
274 * assume that if irq_find_mapping above returns non-zero, then the
275 * descs are also successfully allocated.
276 */
277
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700278 for (i = 0; i < no_irqs; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100279 if (irq_set_msi_desc_off(irq, i, desc) != 0) {
280 clear_irq_range(pp, irq, i, pos0);
281 goto no_valid_irq;
282 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900283 set_bit(pos0 + i, pp->msi_irq_in_use);
Jingoo Hanf342d942013-09-06 15:54:59 +0900284 /*Enable corresponding interrupt in MSI interrupt controller */
285 res = ((pos0 + i) / 32) * 12;
286 bit = (pos0 + i) % 32;
287 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
288 val |= 1 << bit;
289 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Jingoo Hanf342d942013-09-06 15:54:59 +0900290 }
291
292 *pos = pos0;
293 return irq;
294
295no_valid_irq:
296 *pos = pos0;
297 return -ENOSPC;
298}
299
300static void clear_irq(unsigned int irq)
301{
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100302 unsigned int pos, nvec;
Jingoo Hanf342d942013-09-06 15:54:59 +0900303 struct msi_desc *msi;
304 struct pcie_port *pp;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900305 struct irq_data *data = irq_get_irq_data(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900306
307 /* get the port structure */
Thomas Gleixnerf7bfca62014-02-23 21:40:11 +0000308 msi = irq_data_get_msi(data);
Jingoo Hanf342d942013-09-06 15:54:59 +0900309 pp = sys_to_pcie(msi->dev->bus->sysdata);
310 if (!pp) {
311 BUG();
312 return;
313 }
314
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100315 /* undo what was done in assign_irq */
Pratyush Anand904d0e72013-10-09 21:32:12 +0900316 pos = data->hwirq;
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100317 nvec = 1 << msi->msi_attrib.multiple;
Jingoo Hanf342d942013-09-06 15:54:59 +0900318
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100319 clear_irq_range(pp, irq, nvec, pos);
Jingoo Hanf342d942013-09-06 15:54:59 +0900320
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100321 /* all irqs cleared; reset attributes */
322 msi->irq = 0;
323 msi->msi_attrib.multiple = 0;
Jingoo Hanf342d942013-09-06 15:54:59 +0900324}
325
326static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev,
327 struct msi_desc *desc)
328{
329 int irq, pos, msgvec;
330 u16 msg_ctr;
331 struct msi_msg msg;
332 struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata);
333
334 if (!pp) {
335 BUG();
336 return -EINVAL;
337 }
338
339 pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS,
340 &msg_ctr);
341 msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4;
342 if (msgvec == 0)
343 msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1;
344 if (msgvec > 5)
345 msgvec = 0;
346
347 irq = assign_irq((1 << msgvec), desc, &pos);
348 if (irq < 0)
349 return irq;
350
Bjørn Erik Nilsen64989e72013-11-29 14:35:25 +0100351 /*
352 * write_msi_msg() will update PCI_MSI_FLAGS so there is
353 * no need to explicitly call pci_write_config_word().
354 */
Jingoo Hanf342d942013-09-06 15:54:59 +0900355 desc->msi_attrib.multiple = msgvec;
356
357 msg.address_lo = virt_to_phys((void *)pp->msi_data);
358 msg.address_hi = 0x0;
359 msg.data = pos;
360 write_msi_msg(irq, &msg);
361
362 return 0;
363}
364
365static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq)
366{
367 clear_irq(irq);
368}
369
370static struct msi_chip dw_pcie_msi_chip = {
371 .setup_irq = dw_msi_setup_irq,
372 .teardown_irq = dw_msi_teardown_irq,
373};
374
Jingoo Han4b1ced82013-07-31 17:14:10 +0900375int dw_pcie_link_up(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900376{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900377 if (pp->ops->link_up)
378 return pp->ops->link_up(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900379 else
Jingoo Han340cba62013-06-21 16:24:54 +0900380 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900381}
382
Jingoo Hanf342d942013-09-06 15:54:59 +0900383static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
384 irq_hw_number_t hwirq)
385{
386 irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
387 irq_set_chip_data(irq, domain->host_data);
388 set_irq_flags(irq, IRQF_VALID);
389
390 return 0;
391}
392
393static const struct irq_domain_ops msi_domain_ops = {
394 .map = dw_pcie_msi_map,
395};
396
Jingoo Han4b1ced82013-07-31 17:14:10 +0900397int __init dw_pcie_host_init(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900398{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900399 struct device_node *np = pp->dev->of_node;
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530400 struct platform_device *pdev = to_platform_device(pp->dev);
Jingoo Han340cba62013-06-21 16:24:54 +0900401 struct of_pci_range range;
402 struct of_pci_range_parser parser;
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530403 struct resource *cfg_res;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900404 u32 val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900405 int i;
Jingoo Hanf342d942013-09-06 15:54:59 +0900406
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530407 cfg_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config");
408 if (cfg_res) {
409 pp->config.cfg0_size = resource_size(cfg_res)/2;
410 pp->config.cfg1_size = resource_size(cfg_res)/2;
411 pp->cfg0_base = cfg_res->start;
412 pp->cfg1_base = cfg_res->start + pp->config.cfg0_size;
413 } else {
414 dev_err(pp->dev, "missing *config* reg space\n");
415 }
416
Jingoo Han340cba62013-06-21 16:24:54 +0900417 if (of_pci_range_parser_init(&parser, np)) {
Jingoo Han4b1ced82013-07-31 17:14:10 +0900418 dev_err(pp->dev, "missing ranges property\n");
Jingoo Han340cba62013-06-21 16:24:54 +0900419 return -EINVAL;
420 }
421
422 /* Get the I/O and memory ranges from DT */
423 for_each_of_pci_range(&parser, &range) {
424 unsigned long restype = range.flags & IORESOURCE_TYPE_BITS;
425 if (restype == IORESOURCE_IO) {
426 of_pci_range_to_resource(&range, np, &pp->io);
427 pp->io.name = "I/O";
428 pp->io.start = max_t(resource_size_t,
429 PCIBIOS_MIN_IO,
430 range.pci_addr + global_io_offset);
431 pp->io.end = min_t(resource_size_t,
432 IO_SPACE_LIMIT,
433 range.pci_addr + range.size
434 + global_io_offset);
435 pp->config.io_size = resource_size(&pp->io);
436 pp->config.io_bus_addr = range.pci_addr;
Pratyush Anandfce85912013-12-11 15:08:33 +0530437 pp->io_base = range.cpu_addr;
Jingoo Han340cba62013-06-21 16:24:54 +0900438 }
439 if (restype == IORESOURCE_MEM) {
440 of_pci_range_to_resource(&range, np, &pp->mem);
441 pp->mem.name = "MEM";
442 pp->config.mem_size = resource_size(&pp->mem);
443 pp->config.mem_bus_addr = range.pci_addr;
444 }
445 if (restype == 0) {
446 of_pci_range_to_resource(&range, np, &pp->cfg);
447 pp->config.cfg0_size = resource_size(&pp->cfg)/2;
448 pp->config.cfg1_size = resource_size(&pp->cfg)/2;
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530449 pp->cfg0_base = pp->cfg.start;
450 pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size;
Jingoo Han340cba62013-06-21 16:24:54 +0900451 }
452 }
453
Jingoo Han4b1ced82013-07-31 17:14:10 +0900454 if (!pp->dbi_base) {
455 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start,
456 resource_size(&pp->cfg));
457 if (!pp->dbi_base) {
458 dev_err(pp->dev, "error with ioremap\n");
459 return -ENOMEM;
460 }
Jingoo Han340cba62013-06-21 16:24:54 +0900461 }
Jingoo Han340cba62013-06-21 16:24:54 +0900462
Jingoo Han4b1ced82013-07-31 17:14:10 +0900463 pp->mem_base = pp->mem.start;
464
465 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
466 pp->config.cfg0_size);
467 if (!pp->va_cfg0_base) {
468 dev_err(pp->dev, "error with ioremap in function\n");
469 return -ENOMEM;
Jingoo Han340cba62013-06-21 16:24:54 +0900470 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900471 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
472 pp->config.cfg1_size);
473 if (!pp->va_cfg1_base) {
474 dev_err(pp->dev, "error with ioremap\n");
475 return -ENOMEM;
476 }
Jingoo Han340cba62013-06-21 16:24:54 +0900477
Jingoo Han4b1ced82013-07-31 17:14:10 +0900478 if (of_property_read_u32(np, "num-lanes", &pp->lanes)) {
479 dev_err(pp->dev, "Failed to parse the number of lanes\n");
480 return -EINVAL;
481 }
Jingoo Han340cba62013-06-21 16:24:54 +0900482
Jingoo Hanf342d942013-09-06 15:54:59 +0900483 if (IS_ENABLED(CONFIG_PCI_MSI)) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900484 pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
Jingoo Hanf342d942013-09-06 15:54:59 +0900485 MAX_MSI_IRQS, &msi_domain_ops,
486 &dw_pcie_msi_chip);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900487 if (!pp->irq_domain) {
Jingoo Hanf342d942013-09-06 15:54:59 +0900488 dev_err(pp->dev, "irq domain init failed\n");
489 return -ENXIO;
490 }
491
Pratyush Anand904d0e72013-10-09 21:32:12 +0900492 for (i = 0; i < MAX_MSI_IRQS; i++)
493 irq_create_mapping(pp->irq_domain, i);
Jingoo Hanf342d942013-09-06 15:54:59 +0900494 }
495
Jingoo Han4b1ced82013-07-31 17:14:10 +0900496 if (pp->ops->host_init)
497 pp->ops->host_init(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900498
Jingoo Han4b1ced82013-07-31 17:14:10 +0900499 dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
500
501 /* program correct class for RC */
502 dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
503
504 dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
505 val |= PORT_LOGIC_SPEED_CHANGE;
506 dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
507
508 dw_pci.nr_controllers = 1;
509 dw_pci.private_data = (void **)&pp;
510
Lucas Stach804f57b2014-03-05 14:25:51 +0100511 pci_common_init_dev(pp->dev, &dw_pci);
Jingoo Han340cba62013-06-21 16:24:54 +0900512 pci_assign_unassigned_resources();
513#ifdef CONFIG_PCI_DOMAINS
Jingoo Han4b1ced82013-07-31 17:14:10 +0900514 dw_pci.domain++;
Jingoo Han340cba62013-06-21 16:24:54 +0900515#endif
516
Jingoo Han340cba62013-06-21 16:24:54 +0900517 return 0;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900518}
Jingoo Han340cba62013-06-21 16:24:54 +0900519
Jingoo Han4b1ced82013-07-31 17:14:10 +0900520static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev)
521{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900522 /* Program viewport 0 : OUTBOUND : CFG0 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900523 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
524 PCIE_ATU_VIEWPORT);
525 dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE);
526 dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900527 dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_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);
531 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1);
532 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900533}
534
535static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev)
536{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900537 /* Program viewport 1 : OUTBOUND : CFG1 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900538 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
539 PCIE_ATU_VIEWPORT);
540 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1);
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900541 dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE);
542 dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900543 dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900544 PCIE_ATU_LIMIT);
545 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
546 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
Mohit Kumara19f88b2014-04-14 14:22:55 -0600547 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900548}
549
550static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp)
551{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900552 /* Program viewport 0 : OUTBOUND : MEM */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900553 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
554 PCIE_ATU_VIEWPORT);
555 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1);
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900556 dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE);
557 dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900558 dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900559 PCIE_ATU_LIMIT);
560 dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900561 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900562 PCIE_ATU_UPPER_TARGET);
Mohit Kumara19f88b2014-04-14 14:22:55 -0600563 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900564}
565
566static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp)
567{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900568 /* Program viewport 1 : OUTBOUND : IO */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900569 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
570 PCIE_ATU_VIEWPORT);
571 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1);
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900572 dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE);
573 dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900574 dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900575 PCIE_ATU_LIMIT);
576 dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900577 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900578 PCIE_ATU_UPPER_TARGET);
Mohit Kumara19f88b2014-04-14 14:22:55 -0600579 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900580}
581
582static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
583 u32 devfn, int where, int size, u32 *val)
584{
585 int ret = PCIBIOS_SUCCESSFUL;
586 u32 address, busdev;
587
588 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
589 PCIE_ATU_FUNC(PCI_FUNC(devfn));
590 address = where & ~0x3;
591
592 if (bus->parent->number == pp->root_bus_nr) {
593 dw_pcie_prog_viewport_cfg0(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530594 ret = dw_pcie_cfg_read(pp->va_cfg0_base + address, where, size,
595 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900596 dw_pcie_prog_viewport_mem_outbound(pp);
597 } else {
598 dw_pcie_prog_viewport_cfg1(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530599 ret = dw_pcie_cfg_read(pp->va_cfg1_base + address, where, size,
600 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900601 dw_pcie_prog_viewport_io_outbound(pp);
602 }
603
Jingoo Han340cba62013-06-21 16:24:54 +0900604 return ret;
605}
606
Jingoo Han4b1ced82013-07-31 17:14:10 +0900607static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
608 u32 devfn, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900609{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900610 int ret = PCIBIOS_SUCCESSFUL;
611 u32 address, busdev;
Jingoo Han340cba62013-06-21 16:24:54 +0900612
Jingoo Han4b1ced82013-07-31 17:14:10 +0900613 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
614 PCIE_ATU_FUNC(PCI_FUNC(devfn));
615 address = where & ~0x3;
Jingoo Han340cba62013-06-21 16:24:54 +0900616
Jingoo Han4b1ced82013-07-31 17:14:10 +0900617 if (bus->parent->number == pp->root_bus_nr) {
618 dw_pcie_prog_viewport_cfg0(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530619 ret = dw_pcie_cfg_write(pp->va_cfg0_base + address, where, size,
620 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900621 dw_pcie_prog_viewport_mem_outbound(pp);
622 } else {
623 dw_pcie_prog_viewport_cfg1(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530624 ret = dw_pcie_cfg_write(pp->va_cfg1_base + address, where, size,
625 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900626 dw_pcie_prog_viewport_io_outbound(pp);
627 }
628
629 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900630}
631
Jingoo Han4b1ced82013-07-31 17:14:10 +0900632static int dw_pcie_valid_config(struct pcie_port *pp,
633 struct pci_bus *bus, int dev)
Jingoo Han340cba62013-06-21 16:24:54 +0900634{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900635 /* If there is no link, then there is no device */
636 if (bus->number != pp->root_bus_nr) {
637 if (!dw_pcie_link_up(pp))
638 return 0;
639 }
Jingoo Han340cba62013-06-21 16:24:54 +0900640
Jingoo Han4b1ced82013-07-31 17:14:10 +0900641 /* access only one slot on each root port */
642 if (bus->number == pp->root_bus_nr && dev > 0)
643 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900644
645 /*
Jingoo Han4b1ced82013-07-31 17:14:10 +0900646 * do not read more than one device on the bus directly attached
647 * to RC's (Virtual Bridge's) DS side.
Jingoo Han340cba62013-06-21 16:24:54 +0900648 */
Jingoo Han4b1ced82013-07-31 17:14:10 +0900649 if (bus->primary == pp->root_bus_nr && dev > 0)
Jingoo Han340cba62013-06-21 16:24:54 +0900650 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900651
652 return 1;
653}
654
Jingoo Han4b1ced82013-07-31 17:14:10 +0900655static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
656 int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900657{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900658 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900659 int ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900660
Jingoo Han4b1ced82013-07-31 17:14:10 +0900661 if (!pp) {
662 BUG();
663 return -EINVAL;
664 }
Jingoo Han340cba62013-06-21 16:24:54 +0900665
Jingoo Han4b1ced82013-07-31 17:14:10 +0900666 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
667 *val = 0xffffffff;
668 return PCIBIOS_DEVICE_NOT_FOUND;
669 }
670
Jingoo Han4b1ced82013-07-31 17:14:10 +0900671 if (bus->number != pp->root_bus_nr)
672 ret = dw_pcie_rd_other_conf(pp, bus, devfn,
673 where, size, val);
674 else
675 ret = dw_pcie_rd_own_conf(pp, where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900676
677 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900678}
Jingoo Han4b1ced82013-07-31 17:14:10 +0900679
680static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
681 int where, int size, u32 val)
682{
683 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900684 int ret;
685
686 if (!pp) {
687 BUG();
688 return -EINVAL;
689 }
690
691 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
692 return PCIBIOS_DEVICE_NOT_FOUND;
693
Jingoo Han4b1ced82013-07-31 17:14:10 +0900694 if (bus->number != pp->root_bus_nr)
695 ret = dw_pcie_wr_other_conf(pp, bus, devfn,
696 where, size, val);
697 else
698 ret = dw_pcie_wr_own_conf(pp, where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900699
700 return ret;
701}
702
703static struct pci_ops dw_pcie_ops = {
704 .read = dw_pcie_rd_conf,
705 .write = dw_pcie_wr_conf,
706};
707
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600708static int dw_pcie_setup(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900709{
710 struct pcie_port *pp;
711
712 pp = sys_to_pcie(sys);
713
714 if (!pp)
715 return 0;
716
717 if (global_io_offset < SZ_1M && pp->config.io_size > 0) {
718 sys->io_offset = global_io_offset - pp->config.io_bus_addr;
Pratyush Anandfce85912013-12-11 15:08:33 +0530719 pci_ioremap_io(global_io_offset, pp->io_base);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900720 global_io_offset += SZ_64K;
721 pci_add_resource_offset(&sys->resources, &pp->io,
722 sys->io_offset);
723 }
724
725 sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr;
726 pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset);
727
728 return 1;
729}
730
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600731static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900732{
733 struct pci_bus *bus;
734 struct pcie_port *pp = sys_to_pcie(sys);
735
736 if (pp) {
737 pp->root_bus_nr = sys->busnr;
Lucas Stach804f57b2014-03-05 14:25:51 +0100738 bus = pci_scan_root_bus(pp->dev, sys->busnr, &dw_pcie_ops,
Jingoo Han4b1ced82013-07-31 17:14:10 +0900739 sys, &sys->resources);
740 } else {
741 bus = NULL;
742 BUG();
743 }
744
745 return bus;
746}
747
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600748static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900749{
750 struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
Lucas Stach804f57b2014-03-05 14:25:51 +0100751 int irq;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900752
Lucas Stach804f57b2014-03-05 14:25:51 +0100753 irq = of_irq_parse_and_map_pci(dev, slot, pin);
754 if (!irq)
755 irq = pp->irq;
756
757 return irq;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900758}
759
Jingoo Hanf342d942013-09-06 15:54:59 +0900760static void dw_pcie_add_bus(struct pci_bus *bus)
761{
762 if (IS_ENABLED(CONFIG_PCI_MSI)) {
763 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
764
765 dw_pcie_msi_chip.dev = pp->dev;
766 bus->msi = &dw_pcie_msi_chip;
767 }
768}
769
Jingoo Han4b1ced82013-07-31 17:14:10 +0900770static struct hw_pci dw_pci = {
771 .setup = dw_pcie_setup,
772 .scan = dw_pcie_scan_bus,
773 .map_irq = dw_pcie_map_irq,
Jingoo Hanf342d942013-09-06 15:54:59 +0900774 .add_bus = dw_pcie_add_bus,
Jingoo Han4b1ced82013-07-31 17:14:10 +0900775};
776
777void dw_pcie_setup_rc(struct pcie_port *pp)
778{
779 struct pcie_port_info *config = &pp->config;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900780 u32 val;
781 u32 membase;
782 u32 memlimit;
783
Mohit Kumar66c5c342014-04-14 14:22:54 -0600784 /* set the number of lanes */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900785 dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900786 val &= ~PORT_LINK_MODE_MASK;
787 switch (pp->lanes) {
788 case 1:
789 val |= PORT_LINK_MODE_1_LANES;
790 break;
791 case 2:
792 val |= PORT_LINK_MODE_2_LANES;
793 break;
794 case 4:
795 val |= PORT_LINK_MODE_4_LANES;
796 break;
797 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900798 dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900799
800 /* set link width speed control register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900801 dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900802 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
803 switch (pp->lanes) {
804 case 1:
805 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
806 break;
807 case 2:
808 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
809 break;
810 case 4:
811 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
812 break;
813 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900814 dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900815
816 /* setup RC BARs */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900817 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
Mohit Kumardbffdd62014-02-19 17:34:35 +0530818 dw_pcie_writel_rc(pp, 0x00000000, PCI_BASE_ADDRESS_1);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900819
820 /* setup interrupt pins */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900821 dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900822 val &= 0xffff00ff;
823 val |= 0x00000100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900824 dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900825
826 /* setup bus numbers */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900827 dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900828 val &= 0xff000000;
829 val |= 0x00010100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900830 dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900831
832 /* setup memory base, memory limit */
833 membase = ((u32)pp->mem_base & 0xfff00000) >> 16;
834 memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000;
835 val = memlimit | membase;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900836 dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900837
838 /* setup command register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900839 dw_pcie_readl_rc(pp, PCI_COMMAND, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900840 val &= 0xffff0000;
841 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
842 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900843 dw_pcie_writel_rc(pp, val, PCI_COMMAND);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900844}
Jingoo Han340cba62013-06-21 16:24:54 +0900845
846MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
Jingoo Han4b1ced82013-07-31 17:14:10 +0900847MODULE_DESCRIPTION("Designware PCIe host controller driver");
Jingoo Han340cba62013-06-21 16:24:54 +0900848MODULE_LICENSE("GPL v2");