blob: 4a08d30548ce68adc04fe0ad8061945dc59798ec [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
Pratyush Ananda01ef592013-12-11 15:08:32 +053077int dw_pcie_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
Pratyush Ananda01ef592013-12-11 15:08:32 +053091int dw_pcie_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
Pratyush Ananda01ef592013-12-11 15:08:32 +0530129 ret = dw_pcie_cfg_read(pp->dbi_base + (where & ~0x3), where,
130 size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900131
Jingoo Han340cba62013-06-21 16:24:54 +0900132 return ret;
133}
134
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600135static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
136 u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900137{
138 int ret;
139
Jingoo Han4b1ced82013-07-31 17:14:10 +0900140 if (pp->ops->wr_own_conf)
141 ret = pp->ops->wr_own_conf(pp, where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900142 else
Pratyush Ananda01ef592013-12-11 15:08:32 +0530143 ret = dw_pcie_cfg_write(pp->dbi_base + (where & ~0x3), where,
144 size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900145
146 return ret;
147}
148
Jingoo Hanf342d942013-09-06 15:54:59 +0900149static struct irq_chip dw_msi_irq_chip = {
150 .name = "PCI-MSI",
151 .irq_enable = unmask_msi_irq,
152 .irq_disable = mask_msi_irq,
153 .irq_mask = mask_msi_irq,
154 .irq_unmask = unmask_msi_irq,
155};
156
157/* MSI int handler */
158void dw_handle_msi_irq(struct pcie_port *pp)
159{
160 unsigned long val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900161 int i, pos, irq;
Jingoo Hanf342d942013-09-06 15:54:59 +0900162
163 for (i = 0; i < MAX_MSI_CTRLS; i++) {
164 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4,
165 (u32 *)&val);
166 if (val) {
167 pos = 0;
168 while ((pos = find_next_bit(&val, 32, pos)) != 32) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900169 irq = irq_find_mapping(pp->irq_domain,
170 i * 32 + pos);
Harro Haanca165892013-12-12 19:29:03 +0100171 dw_pcie_wr_own_conf(pp,
172 PCIE_MSI_INTR0_STATUS + i * 12,
173 4, 1 << pos);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900174 generic_handle_irq(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900175 pos++;
176 }
177 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900178 }
179}
180
181void dw_pcie_msi_init(struct pcie_port *pp)
182{
183 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
184
185 /* program the msi_data */
186 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
187 virt_to_phys((void *)pp->msi_data));
188 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0);
189}
190
191static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
192{
193 int flag = 1;
194
195 do {
196 pos = find_next_zero_bit(pp->msi_irq_in_use,
197 MAX_MSI_IRQS, pos);
198 /*if you have reached to the end then get out from here.*/
199 if (pos == MAX_MSI_IRQS)
200 return -ENOSPC;
201 /*
202 * Check if this position is at correct offset.nvec is always a
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700203 * power of two. pos0 must be nvec bit aligned.
Jingoo Hanf342d942013-09-06 15:54:59 +0900204 */
205 if (pos % msgvec)
206 pos += msgvec - (pos % msgvec);
207 else
208 flag = 0;
209 } while (flag);
210
211 *pos0 = pos;
212 return 0;
213}
214
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100215static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
216 unsigned int nvec, unsigned int pos)
217{
218 unsigned int i, res, bit, val;
219
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700220 for (i = 0; i < nvec; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100221 irq_set_msi_desc_off(irq_base, i, NULL);
222 clear_bit(pos + i, pp->msi_irq_in_use);
223 /* Disable corresponding interrupt on MSI interrupt controller */
224 res = ((pos + i) / 32) * 12;
225 bit = (pos + i) % 32;
226 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
227 val &= ~(1 << bit);
228 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100229 }
230}
231
Jingoo Hanf342d942013-09-06 15:54:59 +0900232static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
233{
234 int res, bit, irq, pos0, pos1, i;
235 u32 val;
236 struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata);
237
238 if (!pp) {
239 BUG();
240 return -EINVAL;
241 }
242
243 pos0 = find_first_zero_bit(pp->msi_irq_in_use,
244 MAX_MSI_IRQS);
245 if (pos0 % no_irqs) {
246 if (find_valid_pos0(pp, no_irqs, pos0, &pos0))
247 goto no_valid_irq;
248 }
249 if (no_irqs > 1) {
250 pos1 = find_next_bit(pp->msi_irq_in_use,
251 MAX_MSI_IRQS, pos0);
252 /* there must be nvec number of consecutive free bits */
253 while ((pos1 - pos0) < no_irqs) {
254 if (find_valid_pos0(pp, no_irqs, pos1, &pos0))
255 goto no_valid_irq;
256 pos1 = find_next_bit(pp->msi_irq_in_use,
257 MAX_MSI_IRQS, pos0);
258 }
259 }
260
Pratyush Anand904d0e72013-10-09 21:32:12 +0900261 irq = irq_find_mapping(pp->irq_domain, pos0);
262 if (!irq)
Jingoo Hanf342d942013-09-06 15:54:59 +0900263 goto no_valid_irq;
264
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100265 /*
266 * irq_create_mapping (called from dw_pcie_host_init) pre-allocates
267 * descs so there is no need to allocate descs here. We can therefore
268 * assume that if irq_find_mapping above returns non-zero, then the
269 * descs are also successfully allocated.
270 */
271
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700272 for (i = 0; i < no_irqs; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100273 if (irq_set_msi_desc_off(irq, i, desc) != 0) {
274 clear_irq_range(pp, irq, i, pos0);
275 goto no_valid_irq;
276 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900277 set_bit(pos0 + i, pp->msi_irq_in_use);
Jingoo Hanf342d942013-09-06 15:54:59 +0900278 /*Enable corresponding interrupt in MSI interrupt controller */
279 res = ((pos0 + i) / 32) * 12;
280 bit = (pos0 + i) % 32;
281 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
282 val |= 1 << bit;
283 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
Jingoo Hanf342d942013-09-06 15:54:59 +0900284 }
285
286 *pos = pos0;
287 return irq;
288
289no_valid_irq:
290 *pos = pos0;
291 return -ENOSPC;
292}
293
294static void clear_irq(unsigned int irq)
295{
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100296 unsigned int pos, nvec;
Jingoo Hanf342d942013-09-06 15:54:59 +0900297 struct irq_desc *desc;
298 struct msi_desc *msi;
299 struct pcie_port *pp;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900300 struct irq_data *data = irq_get_irq_data(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900301
302 /* get the port structure */
303 desc = irq_to_desc(irq);
304 msi = irq_desc_get_msi_desc(desc);
305 pp = sys_to_pcie(msi->dev->bus->sysdata);
306 if (!pp) {
307 BUG();
308 return;
309 }
310
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100311 /* undo what was done in assign_irq */
Pratyush Anand904d0e72013-10-09 21:32:12 +0900312 pos = data->hwirq;
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100313 nvec = 1 << msi->msi_attrib.multiple;
Jingoo Hanf342d942013-09-06 15:54:59 +0900314
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100315 clear_irq_range(pp, irq, nvec, pos);
Jingoo Hanf342d942013-09-06 15:54:59 +0900316
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100317 /* all irqs cleared; reset attributes */
318 msi->irq = 0;
319 msi->msi_attrib.multiple = 0;
Jingoo Hanf342d942013-09-06 15:54:59 +0900320}
321
322static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev,
323 struct msi_desc *desc)
324{
325 int irq, pos, msgvec;
326 u16 msg_ctr;
327 struct msi_msg msg;
328 struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata);
329
330 if (!pp) {
331 BUG();
332 return -EINVAL;
333 }
334
335 pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS,
336 &msg_ctr);
337 msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4;
338 if (msgvec == 0)
339 msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1;
340 if (msgvec > 5)
341 msgvec = 0;
342
343 irq = assign_irq((1 << msgvec), desc, &pos);
344 if (irq < 0)
345 return irq;
346
Bjørn Erik Nilsen64989e72013-11-29 14:35:25 +0100347 /*
348 * write_msi_msg() will update PCI_MSI_FLAGS so there is
349 * no need to explicitly call pci_write_config_word().
350 */
Jingoo Hanf342d942013-09-06 15:54:59 +0900351 desc->msi_attrib.multiple = msgvec;
352
353 msg.address_lo = virt_to_phys((void *)pp->msi_data);
354 msg.address_hi = 0x0;
355 msg.data = pos;
356 write_msi_msg(irq, &msg);
357
358 return 0;
359}
360
361static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq)
362{
363 clear_irq(irq);
364}
365
366static struct msi_chip dw_pcie_msi_chip = {
367 .setup_irq = dw_msi_setup_irq,
368 .teardown_irq = dw_msi_teardown_irq,
369};
370
Jingoo Han4b1ced82013-07-31 17:14:10 +0900371int dw_pcie_link_up(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900372{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900373 if (pp->ops->link_up)
374 return pp->ops->link_up(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900375 else
Jingoo Han340cba62013-06-21 16:24:54 +0900376 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900377}
378
Jingoo Hanf342d942013-09-06 15:54:59 +0900379static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
380 irq_hw_number_t hwirq)
381{
382 irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
383 irq_set_chip_data(irq, domain->host_data);
384 set_irq_flags(irq, IRQF_VALID);
385
386 return 0;
387}
388
389static const struct irq_domain_ops msi_domain_ops = {
390 .map = dw_pcie_msi_map,
391};
392
Jingoo Han4b1ced82013-07-31 17:14:10 +0900393int __init dw_pcie_host_init(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900394{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900395 struct device_node *np = pp->dev->of_node;
Jingoo Han340cba62013-06-21 16:24:54 +0900396 struct of_pci_range range;
397 struct of_pci_range_parser parser;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900398 u32 val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900399 int i;
Jingoo Hanf342d942013-09-06 15:54:59 +0900400
Jingoo Han340cba62013-06-21 16:24:54 +0900401 if (of_pci_range_parser_init(&parser, np)) {
Jingoo Han4b1ced82013-07-31 17:14:10 +0900402 dev_err(pp->dev, "missing ranges property\n");
Jingoo Han340cba62013-06-21 16:24:54 +0900403 return -EINVAL;
404 }
405
406 /* Get the I/O and memory ranges from DT */
407 for_each_of_pci_range(&parser, &range) {
408 unsigned long restype = range.flags & IORESOURCE_TYPE_BITS;
409 if (restype == IORESOURCE_IO) {
410 of_pci_range_to_resource(&range, np, &pp->io);
411 pp->io.name = "I/O";
412 pp->io.start = max_t(resource_size_t,
413 PCIBIOS_MIN_IO,
414 range.pci_addr + global_io_offset);
415 pp->io.end = min_t(resource_size_t,
416 IO_SPACE_LIMIT,
417 range.pci_addr + range.size
418 + global_io_offset);
419 pp->config.io_size = resource_size(&pp->io);
420 pp->config.io_bus_addr = range.pci_addr;
Pratyush Anandfce85912013-12-11 15:08:33 +0530421 pp->io_base = range.cpu_addr;
Jingoo Han340cba62013-06-21 16:24:54 +0900422 }
423 if (restype == IORESOURCE_MEM) {
424 of_pci_range_to_resource(&range, np, &pp->mem);
425 pp->mem.name = "MEM";
426 pp->config.mem_size = resource_size(&pp->mem);
427 pp->config.mem_bus_addr = range.pci_addr;
428 }
429 if (restype == 0) {
430 of_pci_range_to_resource(&range, np, &pp->cfg);
431 pp->config.cfg0_size = resource_size(&pp->cfg)/2;
432 pp->config.cfg1_size = resource_size(&pp->cfg)/2;
433 }
434 }
435
Jingoo Han4b1ced82013-07-31 17:14:10 +0900436 if (!pp->dbi_base) {
437 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start,
438 resource_size(&pp->cfg));
439 if (!pp->dbi_base) {
440 dev_err(pp->dev, "error with ioremap\n");
441 return -ENOMEM;
442 }
Jingoo Han340cba62013-06-21 16:24:54 +0900443 }
Jingoo Han340cba62013-06-21 16:24:54 +0900444
Jingoo Han4b1ced82013-07-31 17:14:10 +0900445 pp->cfg0_base = pp->cfg.start;
446 pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900447 pp->mem_base = pp->mem.start;
448
449 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
450 pp->config.cfg0_size);
451 if (!pp->va_cfg0_base) {
452 dev_err(pp->dev, "error with ioremap in function\n");
453 return -ENOMEM;
Jingoo Han340cba62013-06-21 16:24:54 +0900454 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900455 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
456 pp->config.cfg1_size);
457 if (!pp->va_cfg1_base) {
458 dev_err(pp->dev, "error with ioremap\n");
459 return -ENOMEM;
460 }
Jingoo Han340cba62013-06-21 16:24:54 +0900461
Jingoo Han4b1ced82013-07-31 17:14:10 +0900462 if (of_property_read_u32(np, "num-lanes", &pp->lanes)) {
463 dev_err(pp->dev, "Failed to parse the number of lanes\n");
464 return -EINVAL;
465 }
Jingoo Han340cba62013-06-21 16:24:54 +0900466
Jingoo Hanf342d942013-09-06 15:54:59 +0900467 if (IS_ENABLED(CONFIG_PCI_MSI)) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900468 pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
Jingoo Hanf342d942013-09-06 15:54:59 +0900469 MAX_MSI_IRQS, &msi_domain_ops,
470 &dw_pcie_msi_chip);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900471 if (!pp->irq_domain) {
Jingoo Hanf342d942013-09-06 15:54:59 +0900472 dev_err(pp->dev, "irq domain init failed\n");
473 return -ENXIO;
474 }
475
Pratyush Anand904d0e72013-10-09 21:32:12 +0900476 for (i = 0; i < MAX_MSI_IRQS; i++)
477 irq_create_mapping(pp->irq_domain, i);
Jingoo Hanf342d942013-09-06 15:54:59 +0900478 }
479
Jingoo Han4b1ced82013-07-31 17:14:10 +0900480 if (pp->ops->host_init)
481 pp->ops->host_init(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900482
Jingoo Han4b1ced82013-07-31 17:14:10 +0900483 dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
484
485 /* program correct class for RC */
486 dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
487
488 dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
489 val |= PORT_LOGIC_SPEED_CHANGE;
490 dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
491
492 dw_pci.nr_controllers = 1;
493 dw_pci.private_data = (void **)&pp;
494
495 pci_common_init(&dw_pci);
Jingoo Han340cba62013-06-21 16:24:54 +0900496 pci_assign_unassigned_resources();
497#ifdef CONFIG_PCI_DOMAINS
Jingoo Han4b1ced82013-07-31 17:14:10 +0900498 dw_pci.domain++;
Jingoo Han340cba62013-06-21 16:24:54 +0900499#endif
500
Jingoo Han340cba62013-06-21 16:24:54 +0900501 return 0;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900502}
Jingoo Han340cba62013-06-21 16:24:54 +0900503
Jingoo Han4b1ced82013-07-31 17:14:10 +0900504static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev)
505{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900506 /* Program viewport 0 : OUTBOUND : CFG0 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900507 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
508 PCIE_ATU_VIEWPORT);
509 dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE);
510 dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900511 dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900512 PCIE_ATU_LIMIT);
513 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
514 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
515 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1);
516 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900517}
518
519static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev)
520{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900521 /* Program viewport 1 : OUTBOUND : CFG1 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900522 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
523 PCIE_ATU_VIEWPORT);
524 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1);
525 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
526 dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE);
527 dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900528 dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900529 PCIE_ATU_LIMIT);
530 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
531 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900532}
533
534static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp)
535{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900536 /* Program viewport 0 : OUTBOUND : MEM */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900537 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
538 PCIE_ATU_VIEWPORT);
539 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1);
540 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
541 dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE);
542 dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900543 dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900544 PCIE_ATU_LIMIT);
545 dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900546 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900547 PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900548}
549
550static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp)
551{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900552 /* Program viewport 1 : OUTBOUND : IO */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900553 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
554 PCIE_ATU_VIEWPORT);
555 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1);
556 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
557 dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE);
558 dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900559 dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1,
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900560 PCIE_ATU_LIMIT);
561 dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900562 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr),
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900563 PCIE_ATU_UPPER_TARGET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900564}
565
566static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
567 u32 devfn, int where, int size, u32 *val)
568{
569 int ret = PCIBIOS_SUCCESSFUL;
570 u32 address, busdev;
571
572 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
573 PCIE_ATU_FUNC(PCI_FUNC(devfn));
574 address = where & ~0x3;
575
576 if (bus->parent->number == pp->root_bus_nr) {
577 dw_pcie_prog_viewport_cfg0(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530578 ret = dw_pcie_cfg_read(pp->va_cfg0_base + address, where, size,
579 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900580 dw_pcie_prog_viewport_mem_outbound(pp);
581 } else {
582 dw_pcie_prog_viewport_cfg1(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530583 ret = dw_pcie_cfg_read(pp->va_cfg1_base + address, where, size,
584 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900585 dw_pcie_prog_viewport_io_outbound(pp);
586 }
587
Jingoo Han340cba62013-06-21 16:24:54 +0900588 return ret;
589}
590
Jingoo Han4b1ced82013-07-31 17:14:10 +0900591static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
592 u32 devfn, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900593{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900594 int ret = PCIBIOS_SUCCESSFUL;
595 u32 address, busdev;
Jingoo Han340cba62013-06-21 16:24:54 +0900596
Jingoo Han4b1ced82013-07-31 17:14:10 +0900597 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
598 PCIE_ATU_FUNC(PCI_FUNC(devfn));
599 address = where & ~0x3;
Jingoo Han340cba62013-06-21 16:24:54 +0900600
Jingoo Han4b1ced82013-07-31 17:14:10 +0900601 if (bus->parent->number == pp->root_bus_nr) {
602 dw_pcie_prog_viewport_cfg0(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530603 ret = dw_pcie_cfg_write(pp->va_cfg0_base + address, where, size,
604 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900605 dw_pcie_prog_viewport_mem_outbound(pp);
606 } else {
607 dw_pcie_prog_viewport_cfg1(pp, busdev);
Pratyush Ananda01ef592013-12-11 15:08:32 +0530608 ret = dw_pcie_cfg_write(pp->va_cfg1_base + address, where, size,
609 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900610 dw_pcie_prog_viewport_io_outbound(pp);
611 }
612
613 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900614}
615
Jingoo Han4b1ced82013-07-31 17:14:10 +0900616static int dw_pcie_valid_config(struct pcie_port *pp,
617 struct pci_bus *bus, int dev)
Jingoo Han340cba62013-06-21 16:24:54 +0900618{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900619 /* If there is no link, then there is no device */
620 if (bus->number != pp->root_bus_nr) {
621 if (!dw_pcie_link_up(pp))
622 return 0;
623 }
Jingoo Han340cba62013-06-21 16:24:54 +0900624
Jingoo Han4b1ced82013-07-31 17:14:10 +0900625 /* access only one slot on each root port */
626 if (bus->number == pp->root_bus_nr && dev > 0)
627 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900628
629 /*
Jingoo Han4b1ced82013-07-31 17:14:10 +0900630 * do not read more than one device on the bus directly attached
631 * to RC's (Virtual Bridge's) DS side.
Jingoo Han340cba62013-06-21 16:24:54 +0900632 */
Jingoo Han4b1ced82013-07-31 17:14:10 +0900633 if (bus->primary == pp->root_bus_nr && dev > 0)
Jingoo Han340cba62013-06-21 16:24:54 +0900634 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900635
636 return 1;
637}
638
Jingoo Han4b1ced82013-07-31 17:14:10 +0900639static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
640 int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900641{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900642 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
643 unsigned long flags;
644 int ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900645
Jingoo Han4b1ced82013-07-31 17:14:10 +0900646 if (!pp) {
647 BUG();
648 return -EINVAL;
649 }
Jingoo Han340cba62013-06-21 16:24:54 +0900650
Jingoo Han4b1ced82013-07-31 17:14:10 +0900651 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
652 *val = 0xffffffff;
653 return PCIBIOS_DEVICE_NOT_FOUND;
654 }
655
656 spin_lock_irqsave(&pp->conf_lock, flags);
657 if (bus->number != pp->root_bus_nr)
658 ret = dw_pcie_rd_other_conf(pp, bus, devfn,
659 where, size, val);
660 else
661 ret = dw_pcie_rd_own_conf(pp, where, size, val);
662 spin_unlock_irqrestore(&pp->conf_lock, flags);
663
664 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900665}
Jingoo Han4b1ced82013-07-31 17:14:10 +0900666
667static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
668 int where, int size, u32 val)
669{
670 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
671 unsigned long flags;
672 int ret;
673
674 if (!pp) {
675 BUG();
676 return -EINVAL;
677 }
678
679 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
680 return PCIBIOS_DEVICE_NOT_FOUND;
681
682 spin_lock_irqsave(&pp->conf_lock, flags);
683 if (bus->number != pp->root_bus_nr)
684 ret = dw_pcie_wr_other_conf(pp, bus, devfn,
685 where, size, val);
686 else
687 ret = dw_pcie_wr_own_conf(pp, where, size, val);
688 spin_unlock_irqrestore(&pp->conf_lock, flags);
689
690 return ret;
691}
692
693static struct pci_ops dw_pcie_ops = {
694 .read = dw_pcie_rd_conf,
695 .write = dw_pcie_wr_conf,
696};
697
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600698static int dw_pcie_setup(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900699{
700 struct pcie_port *pp;
701
702 pp = sys_to_pcie(sys);
703
704 if (!pp)
705 return 0;
706
707 if (global_io_offset < SZ_1M && pp->config.io_size > 0) {
708 sys->io_offset = global_io_offset - pp->config.io_bus_addr;
Pratyush Anandfce85912013-12-11 15:08:33 +0530709 pci_ioremap_io(global_io_offset, pp->io_base);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900710 global_io_offset += SZ_64K;
711 pci_add_resource_offset(&sys->resources, &pp->io,
712 sys->io_offset);
713 }
714
715 sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr;
716 pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset);
717
718 return 1;
719}
720
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600721static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900722{
723 struct pci_bus *bus;
724 struct pcie_port *pp = sys_to_pcie(sys);
725
726 if (pp) {
727 pp->root_bus_nr = sys->busnr;
728 bus = pci_scan_root_bus(NULL, sys->busnr, &dw_pcie_ops,
729 sys, &sys->resources);
730 } else {
731 bus = NULL;
732 BUG();
733 }
734
735 return bus;
736}
737
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600738static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900739{
740 struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
741
742 return pp->irq;
743}
744
Jingoo Hanf342d942013-09-06 15:54:59 +0900745static void dw_pcie_add_bus(struct pci_bus *bus)
746{
747 if (IS_ENABLED(CONFIG_PCI_MSI)) {
748 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
749
750 dw_pcie_msi_chip.dev = pp->dev;
751 bus->msi = &dw_pcie_msi_chip;
752 }
753}
754
Jingoo Han4b1ced82013-07-31 17:14:10 +0900755static struct hw_pci dw_pci = {
756 .setup = dw_pcie_setup,
757 .scan = dw_pcie_scan_bus,
758 .map_irq = dw_pcie_map_irq,
Jingoo Hanf342d942013-09-06 15:54:59 +0900759 .add_bus = dw_pcie_add_bus,
Jingoo Han4b1ced82013-07-31 17:14:10 +0900760};
761
762void dw_pcie_setup_rc(struct pcie_port *pp)
763{
764 struct pcie_port_info *config = &pp->config;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900765 u32 val;
766 u32 membase;
767 u32 memlimit;
768
769 /* set the number of lines as 4 */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900770 dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900771 val &= ~PORT_LINK_MODE_MASK;
772 switch (pp->lanes) {
773 case 1:
774 val |= PORT_LINK_MODE_1_LANES;
775 break;
776 case 2:
777 val |= PORT_LINK_MODE_2_LANES;
778 break;
779 case 4:
780 val |= PORT_LINK_MODE_4_LANES;
781 break;
782 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900783 dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900784
785 /* set link width speed control register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900786 dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900787 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
788 switch (pp->lanes) {
789 case 1:
790 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
791 break;
792 case 2:
793 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
794 break;
795 case 4:
796 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
797 break;
798 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900799 dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900800
801 /* setup RC BARs */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900802 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
803 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_1);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900804
805 /* setup interrupt pins */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900806 dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900807 val &= 0xffff00ff;
808 val |= 0x00000100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900809 dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900810
811 /* setup bus numbers */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900812 dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900813 val &= 0xff000000;
814 val |= 0x00010100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900815 dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900816
817 /* setup memory base, memory limit */
818 membase = ((u32)pp->mem_base & 0xfff00000) >> 16;
819 memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000;
820 val = memlimit | membase;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900821 dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900822
823 /* setup command register */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900824 dw_pcie_readl_rc(pp, PCI_COMMAND, &val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900825 val &= 0xffff0000;
826 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
827 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900828 dw_pcie_writel_rc(pp, val, PCI_COMMAND);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900829}
Jingoo Han340cba62013-06-21 16:24:54 +0900830
831MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
Jingoo Han4b1ced82013-07-31 17:14:10 +0900832MODULE_DESCRIPTION("Designware PCIe host controller driver");
Jingoo Han340cba62013-06-21 16:24:54 +0900833MODULE_LICENSE("GPL v2");