1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
|
/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
/*
* MSM PCIe controller driver.
*/
#define pr_fmt(fmt) "%s: " fmt, __func__
#include <linux/module.h>
#include <linux/bitops.h>
#include <linux/clk.h>
#include <linux/debugfs.h>
#include <linux/delay.h>
#include <linux/gpio.h>
#include <linux/iopoll.h>
#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/platform_device.h>
#include <linux/regulator/consumer.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <asm/mach/pci.h>
#include <mach/gpiomux.h>
#include <mach/hardware.h>
#include <mach/msm_iomap.h>
#include "pcie.h"
/* Root Complex Port vendor/device IDs */
#define PCIE_VENDOR_ID_RCP 0x17cb
#define PCIE_DEVICE_ID_RCP 0x0101
#define PCIE20_PARF_PCS_DEEMPH 0x34
#define PCIE20_PARF_PCS_SWING 0x38
#define PCIE20_PARF_PHY_CTRL 0x40
#define PCIE20_PARF_PHY_REFCLK 0x4C
#define PCIE20_PARF_CONFIG_BITS 0x50
#define PCIE20_ELBI_SYS_CTRL 0x04
#define PCIE20_CAP 0x70
#define PCIE20_CAP_LINKCTRLSTATUS (PCIE20_CAP + 0x10)
#define PCIE20_COMMAND_STATUS 0x04
#define PCIE20_BUSNUMBERS 0x18
#define PCIE20_MEMORY_BASE_LIMIT 0x20
#define PCIE20_PLR_IATU_VIEWPORT 0x900
#define PCIE20_PLR_IATU_CTRL1 0x904
#define PCIE20_PLR_IATU_CTRL2 0x908
#define PCIE20_PLR_IATU_LBAR 0x90C
#define PCIE20_PLR_IATU_UBAR 0x910
#define PCIE20_PLR_IATU_LAR 0x914
#define PCIE20_PLR_IATU_LTAR 0x918
#define PCIE20_PLR_IATU_UTAR 0x91c
#define PCIE_RESET (MSM_CLK_CTL_BASE + 0x22dc)
#define PCIE_SFAB_AXI_S5_FCLK_CTL (MSM_CLK_CTL_BASE + 0x2154)
#define MSM_PCIE_DEV_BAR_ADDR PCIBIOS_MIN_MEM
#define MSM_PCIE_DEV_CFG_ADDR 0x01000000
#define RD 0
#define WR 1
/* PCIE AXI address space */
#define PCIE_AXI_CONF_SIZE SZ_1M
/* debug mask sys interface */
static int msm_pcie_debug_mask;
module_param_named(debug_mask, msm_pcie_debug_mask,
int, S_IRUGO | S_IWUSR | S_IWGRP);
/* resources from device file */
enum msm_pcie_res {
/* platform defined resources */
MSM_PCIE_RES_PARF,
MSM_PCIE_RES_ELBI,
MSM_PCIE_RES_PCIE20,
MSM_PCIE_MAX_PLATFORM_RES,
/* other resources */
MSM_PCIE_RES_AXI_CONF = MSM_PCIE_MAX_PLATFORM_RES,
MSM_PCIE_MAX_RES,
};
/* msm pcie device data */
static struct msm_pcie_dev_t msm_pcie_dev;
/* regulators */
static struct msm_pcie_vreg_info_t msm_pcie_vreg_info[MSM_PCIE_MAX_VREG] = {
{NULL, "vp_pcie", 1050000, 1050000, 40900},
{NULL, "vptx_pcie", 1050000, 1050000, 18200},
{NULL, "vdd_pcie_vph", 0, 0, 0},
{NULL, "pcie_ext_3p3v", 0, 0, 0}
};
/* clocks */
static struct msm_pcie_clk_info_t msm_pcie_clk_info[MSM_PCIE_MAX_CLK] = {
{NULL, "bus_clk"},
{NULL, "iface_clk"},
{NULL, "ref_clk"}
};
/* resources */
static struct msm_pcie_res_info_t msm_pcie_res_info[MSM_PCIE_MAX_RES] = {
{"pcie_parf", 0, 0},
{"pcie_elbi", 0, 0},
{"pcie20", 0, 0},
{"pcie_axi_conf", 0, 0},
};
int msm_pcie_get_debug_mask(void)
{
return msm_pcie_debug_mask;
}
static void msm_pcie_write_mask(void __iomem *addr,
uint32_t clear_mask, uint32_t set_mask)
{
uint32_t val;
val = (readl_relaxed(addr) & ~clear_mask) | set_mask;
writel_relaxed(val, addr);
wmb(); /* ensure data is written to hardware register */
}
static int msm_pcie_is_link_up(void)
{
return readl_relaxed(msm_pcie_dev.pcie20 + PCIE20_CAP_LINKCTRLSTATUS) &
BIT(29);
}
static inline int msm_pcie_oper_conf(struct pci_bus *bus, u32 devfn, int oper,
int where, int size, u32 *val)
{
uint32_t word_offset, byte_offset, mask;
uint32_t rd_val, wr_val;
struct msm_pcie_dev_t *dev = &msm_pcie_dev;
void __iomem *config_base;
/*
* Only buses 0 and 1 are supported. RC port on bus 0 and EP in bus 1.
* For downstream bus (1), make sure link is up
*/
if ((bus->number > 1) || (devfn != 0)) {
PCIE_DBG("invalid %s - bus %d devfn %d\n",
(oper == RD) ? "rd" : "wr", bus->number, devfn);
*val = ~0;
return PCIBIOS_DEVICE_NOT_FOUND;
} else if ((bus->number != 0) && !msm_pcie_is_link_up()) {
PCIE_DBG("%s fail, link down - bus %d devfn %d\n",
(oper == RD) ? "rd" : "wr", bus->number, devfn);
*val = ~0;
return PCIBIOS_DEVICE_NOT_FOUND;
}
word_offset = where & ~0x3;
byte_offset = where & 0x3;
mask = (~0 >> (8 * (4 - size))) << (8 * byte_offset);
config_base = (bus->number == 0) ? dev->pcie20 : dev->axi_conf;
rd_val = readl_relaxed(config_base + word_offset);
if (oper == RD) {
*val = ((rd_val & mask) >> (8 * byte_offset));
PCIE_DBG("%d:0x%02x + 0x%04x[%d] -> 0x%08x; rd 0x%08x\n",
bus->number, devfn, where, size, *val, rd_val);
} else {
wr_val = (rd_val & ~mask) |
((*val << (8 * byte_offset)) & mask);
writel_relaxed(wr_val, config_base + word_offset);
wmb(); /* ensure config data is written to hardware register */
PCIE_DBG("%d:0x%02x + 0x%04x[%d] <- 0x%08x;"
" rd 0x%08x val 0x%08x\n", bus->number,
devfn, where, size, wr_val, rd_val, *val);
}
return 0;
}
static int msm_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
int size, u32 *val)
{
return msm_pcie_oper_conf(bus, devfn, RD, where, size, val);
}
static int msm_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
int where, int size, u32 val)
{
/*
*Attempt to reset secondary bus is causing PCIE core to reset.
*Disable secondary bus reset functionality.
*/
if ((bus->number == 0) && (where == PCI_BRIDGE_CONTROL) &&
(val & PCI_BRIDGE_CTL_BUS_RESET)) {
pr_info("PCIE secondary bus reset not supported\n");
val &= ~PCI_BRIDGE_CTL_BUS_RESET;
}
return msm_pcie_oper_conf(bus, devfn, WR, where, size, &val);
}
static struct pci_ops msm_pcie_ops = {
.read = msm_pcie_rd_conf,
.write = msm_pcie_wr_conf,
};
static int __init msm_pcie_gpio_init(void)
{
int rc, i;
struct msm_pcie_gpio_info_t *info;
for (i = 0; i < MSM_PCIE_MAX_GPIO; i++) {
info = &msm_pcie_dev.gpio[i];
rc = gpio_request(info->num, info->name);
if (rc) {
pr_err("can't get gpio %s; %d\n", info->name, rc);
break;
}
rc = gpio_direction_output(info->num, 0);
if (rc) {
pr_err("can't set gpio direction %s; %d\n",
info->name, rc);
gpio_free(info->num);
break;
}
}
if (rc)
while (i--)
gpio_free(msm_pcie_dev.gpio[i].num);
return rc;
}
static void msm_pcie_gpio_deinit(void)
{
int i;
for (i = 0; i < MSM_PCIE_MAX_GPIO; i++)
gpio_free(msm_pcie_dev.gpio[i].num);
}
static int __init msm_pcie_vreg_init(struct device *dev)
{
int i, rc = 0;
struct regulator *vreg;
struct msm_pcie_vreg_info_t *info;
for (i = 0; i < MSM_PCIE_MAX_VREG; i++) {
info = &msm_pcie_dev.vreg[i];
vreg = regulator_get(dev, info->name);
if (!vreg || IS_ERR(vreg)) {
rc = (PTR_ERR(vreg)) ? PTR_ERR(vreg) : -ENODEV;
pr_err("can't get %s; %d\n", info->name, rc);
break;
}
if (info->max_v) {
rc = regulator_set_voltage(vreg,
info->min_v, info->max_v);
if (rc) {
pr_err("can't set voltage %s; %d\n",
info->name, rc);
regulator_put(vreg);
break;
}
}
if (info->opt_mode) {
rc = regulator_set_optimum_mode(vreg, info->opt_mode);
if (rc < 0) {
pr_err("can't set mode %s; %d\n",
info->name, rc);
regulator_put(vreg);
break;
}
}
rc = regulator_enable(vreg);
if (rc) {
pr_err("can't enable %s, %d\n", info->name, rc);
regulator_put(vreg);
break;
}
info->hdl = vreg;
}
if (rc)
while (i--) {
regulator_disable(msm_pcie_dev.vreg[i].hdl);
regulator_put(msm_pcie_dev.vreg[i].hdl);
msm_pcie_dev.vreg[i].hdl = NULL;
}
return rc;
}
static void msm_pcie_vreg_deinit(void)
{
int i;
for (i = 0; i < MSM_PCIE_MAX_VREG; i++) {
regulator_disable(msm_pcie_dev.vreg[i].hdl);
regulator_put(msm_pcie_dev.vreg[i].hdl);
msm_pcie_dev.vreg[i].hdl = NULL;
}
}
static int __init msm_pcie_clk_init(struct device *dev)
{
int i, rc = 0;
struct clk *clk_hdl;
struct msm_pcie_clk_info_t *info;
for (i = 0; i < MSM_PCIE_MAX_CLK; i++) {
info = &msm_pcie_dev.clk[i];
clk_hdl = clk_get(dev, info->name);
if (!clk_hdl || IS_ERR(clk_hdl)) {
rc = (PTR_ERR(clk_hdl)) ? PTR_ERR(clk_hdl) : -ENODEV;
pr_err("can't get clk %s; %d\n", info->name, rc);
break;
}
clk_prepare_enable(clk_hdl);
info->hdl = clk_hdl;
}
if (rc)
while (i--) {
clk_disable_unprepare(msm_pcie_dev.clk[i].hdl);
clk_put(msm_pcie_dev.clk[i].hdl);
msm_pcie_dev.clk[i].hdl = NULL;
}
return rc;
}
static void msm_pcie_clk_deinit(void)
{
int i;
for (i = 0; i < MSM_PCIE_MAX_CLK; i++) {
clk_disable_unprepare(msm_pcie_dev.clk[i].hdl);
clk_put(msm_pcie_dev.clk[i].hdl);
msm_pcie_dev.clk[i].hdl = NULL;
}
}
static void __init msm_pcie_config_controller(void)
{
struct msm_pcie_dev_t *dev = &msm_pcie_dev;
struct resource *axi_conf = dev->res[MSM_PCIE_RES_AXI_CONF].resource;
/*
* program and enable address translation region 0 (device config
* address space); region type config;
* axi config address range to device config address range
*/
writel_relaxed(0, dev->pcie20 + PCIE20_PLR_IATU_VIEWPORT);
/* ensure that hardware locks the region before programming it */
wmb();
writel_relaxed(4, dev->pcie20 + PCIE20_PLR_IATU_CTRL1);
writel_relaxed(BIT(31), dev->pcie20 + PCIE20_PLR_IATU_CTRL2);
writel_relaxed(axi_conf->start, dev->pcie20 + PCIE20_PLR_IATU_LBAR);
writel_relaxed(0, dev->pcie20 + PCIE20_PLR_IATU_UBAR);
writel_relaxed(axi_conf->end, dev->pcie20 + PCIE20_PLR_IATU_LAR);
writel_relaxed(MSM_PCIE_DEV_CFG_ADDR,
dev->pcie20 + PCIE20_PLR_IATU_LTAR);
writel_relaxed(0, dev->pcie20 + PCIE20_PLR_IATU_UTAR);
/* ensure that hardware registers the configuration */
wmb();
/*
* program and enable address translation region 2 (device resource
* address space); region type memory;
* axi device bar address range to device bar address range
*/
writel_relaxed(2, dev->pcie20 + PCIE20_PLR_IATU_VIEWPORT);
/* ensure that hardware locks the region before programming it */
wmb();
writel_relaxed(0, dev->pcie20 + PCIE20_PLR_IATU_CTRL1);
writel_relaxed(BIT(31), dev->pcie20 + PCIE20_PLR_IATU_CTRL2);
writel_relaxed(dev->axi_bar_start, dev->pcie20 + PCIE20_PLR_IATU_LBAR);
writel_relaxed(0, dev->pcie20 + PCIE20_PLR_IATU_UBAR);
writel_relaxed(dev->axi_bar_end, dev->pcie20 + PCIE20_PLR_IATU_LAR);
writel_relaxed(MSM_PCIE_DEV_BAR_ADDR,
dev->pcie20 + PCIE20_PLR_IATU_LTAR);
writel_relaxed(0, dev->pcie20 + PCIE20_PLR_IATU_UTAR);
/* ensure that hardware registers the configuration */
wmb();
}
static int __init msm_pcie_get_resources(struct platform_device *pdev)
{
int i, rc = 0;
struct resource *res;
struct msm_pcie_res_info_t *info;
struct msm_pcie_dev_t *dev = &msm_pcie_dev;
for (i = 0; i < MSM_PCIE_MAX_RES; i++) {
info = &dev->res[i];
if (i < MSM_PCIE_MAX_PLATFORM_RES) {
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
info->name);
} else {
res = dev->res[i].resource;
if (request_resource(&iomem_resource, res))
res = NULL;
}
if (!res) {
pr_err("can't get %s resource\n", info->name);
rc = -ENOMEM;
break;
}
info->base = ioremap(res->start, resource_size(res));
if (!info->base) {
pr_err("can't remap %s\n", info->name);
rc = -ENOMEM;
break;
}
info->resource = res;
}
if (rc) {
while (i--) {
iounmap(dev->res[i].base);
dev->res[i].base = NULL;
if (i >= MSM_PCIE_MAX_PLATFORM_RES)
release_resource(dev->res[i].resource);
}
} else {
dev->parf = dev->res[MSM_PCIE_RES_PARF].base;
dev->elbi = dev->res[MSM_PCIE_RES_ELBI].base;
dev->pcie20 = dev->res[MSM_PCIE_RES_PCIE20].base;
dev->axi_conf = dev->res[MSM_PCIE_RES_AXI_CONF].base;
}
return rc;
}
static void msm_pcie_release_resources(void)
{
int i;
for (i = 0; i < MSM_PCIE_MAX_RES; i++) {
iounmap(msm_pcie_dev.res[i].base);
msm_pcie_dev.res[i].base = NULL;
if (i >= MSM_PCIE_MAX_PLATFORM_RES)
release_resource(msm_pcie_dev.res[i].resource);
}
msm_pcie_dev.parf = NULL;
msm_pcie_dev.elbi = NULL;
msm_pcie_dev.pcie20 = NULL;
msm_pcie_dev.axi_conf = NULL;
}
static int __init msm_pcie_setup(int nr, struct pci_sys_data *sys)
{
int rc;
struct msm_pcie_dev_t *dev = &msm_pcie_dev;
uint32_t val;
PCIE_DBG("bus %d\n", nr);
if (nr != 0)
return 0;
/*
* specify linux PCI framework to allocate device memory (BARs)
* from msm_pcie_dev.dev_mem_res resource.
*/
sys->mem_offset = 0;
pci_add_resource(&sys->resources, &msm_pcie_dev.dev_mem_res);
/* assert PCIe reset link to keep EP in reset */
gpio_set_value_cansleep(dev->gpio[MSM_PCIE_GPIO_RST_N].num,
dev->gpio[MSM_PCIE_GPIO_RST_N].on);
/* enable power */
rc = msm_pcie_vreg_init(&dev->pdev->dev);
if (rc)
goto out;
/* assert PCIe PARF reset while powering the core */
msm_pcie_write_mask(PCIE_RESET, 0, BIT(2));
/* enable clocks */
rc = msm_pcie_clk_init(&dev->pdev->dev);
if (rc)
goto clk_fail;
/* enable pcie power; wait 3ms for clock to stabilize */
gpio_set_value_cansleep(dev->gpio[MSM_PCIE_GPIO_PWR_EN].num,
dev->gpio[MSM_PCIE_GPIO_PWR_EN].on);
usleep(3000);
/*
* de-assert PCIe PARF reset;
* wait 1us before accessing PARF registers
*/
msm_pcie_write_mask(PCIE_RESET, BIT(2), 0);
udelay(1);
/* enable PCIe clocks and resets */
msm_pcie_write_mask(dev->parf + PCIE20_PARF_PHY_CTRL, BIT(0), 0);
/* PARF programming */
writel_relaxed(0x282828, dev->parf + PCIE20_PARF_PCS_DEEMPH);
writel_relaxed(0x7F7F, dev->parf + PCIE20_PARF_PCS_SWING);
writel_relaxed((4<<24), dev->parf + PCIE20_PARF_CONFIG_BITS);
/* ensure that hardware registers the PARF configuration */
wmb();
/* enable reference clock */
msm_pcie_write_mask(dev->parf + PCIE20_PARF_PHY_REFCLK, 0, BIT(16));
/* enable access to PCIe slave port on system fabric */
writel_relaxed(BIT(4), PCIE_SFAB_AXI_S5_FCLK_CTL);
/* ensure that access is enabled before proceeding */
wmb();
/* de-assert PICe PHY, Core, POR and AXI clk domain resets */
msm_pcie_write_mask(PCIE_RESET, BIT(5), 0);
msm_pcie_write_mask(PCIE_RESET, BIT(4), 0);
msm_pcie_write_mask(PCIE_RESET, BIT(3), 0);
msm_pcie_write_mask(PCIE_RESET, BIT(0), 0);
/* wait 150ms for clock acquisition */
udelay(150);
/* de-assert PCIe reset link to bring EP out of reset */
gpio_set_value_cansleep(dev->gpio[MSM_PCIE_GPIO_RST_N].num,
!dev->gpio[MSM_PCIE_GPIO_RST_N].on);
/* enable link training */
msm_pcie_write_mask(dev->elbi + PCIE20_ELBI_SYS_CTRL, 0, BIT(0));
/* poll for link to come up for upto 100ms */
rc = readl_poll_timeout(
(msm_pcie_dev.pcie20 + PCIE20_CAP_LINKCTRLSTATUS),
val, (val & BIT(29)), 10000, 100000);
if (rc) {
pr_err("link initialization failed\n");
goto link_fail;
} else
pr_info("link initialized\n");
msm_pcie_config_controller();
rc = msm_pcie_irq_init(dev);
if (!rc)
goto out;
link_fail:
msm_pcie_clk_deinit();
clk_fail:
msm_pcie_vreg_deinit();
out:
return (rc) ? 0 : 1;
}
static struct pci_bus __init *msm_pcie_scan_bus(int nr,
struct pci_sys_data *sys)
{
struct pci_bus *bus = NULL;
PCIE_DBG("bus %d\n", nr);
if (nr == 0)
bus = pci_scan_root_bus(NULL, sys->busnr, &msm_pcie_ops, sys,
&sys->resources);
return bus;
}
static int __init msm_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
{
PCIE_DBG("slot %d pin %d\n", slot, pin);
return (pin <= 4) ? (PCIE20_INTA + pin - 1) : 0;
}
static struct hw_pci msm_pci __initdata = {
.nr_controllers = 1,
.swizzle = pci_std_swizzle,
.setup = msm_pcie_setup,
.scan = msm_pcie_scan_bus,
.map_irq = msm_pcie_map_irq,
};
static int __init msm_pcie_probe(struct platform_device *pdev)
{
const struct msm_pcie_platform *pdata;
struct resource *res;
int rc;
PCIE_DBG("\n");
msm_pcie_dev.pdev = pdev;
pdata = pdev->dev.platform_data;
msm_pcie_dev.gpio = pdata->gpio;
msm_pcie_dev.wake_n = pdata->wake_n;
msm_pcie_dev.vreg = msm_pcie_vreg_info;
msm_pcie_dev.clk = msm_pcie_clk_info;
msm_pcie_dev.res = msm_pcie_res_info;
/* device memory resource */
res = &msm_pcie_dev.dev_mem_res;
res->name = "pcie_dev_mem";
res->start = MSM_PCIE_DEV_BAR_ADDR;
res->end = res->start + pdata->axi_size - 1;
res->flags = IORESOURCE_MEM;
/* axi address space = axi bar space + axi config space */
msm_pcie_dev.axi_bar_start = pdata->axi_addr;
msm_pcie_dev.axi_bar_end = pdata->axi_addr + pdata->axi_size -
PCIE_AXI_CONF_SIZE - 1;
/* axi config space resource */
res = kzalloc(sizeof(*res), GFP_KERNEL);
if (!res) {
pr_err("can't allocate memory\n");
return -ENOMEM;
}
msm_pcie_dev.res[MSM_PCIE_RES_AXI_CONF].resource = res;
res->name = msm_pcie_dev.res[MSM_PCIE_RES_AXI_CONF].name;
res->start = msm_pcie_dev.axi_bar_end + 1;
res->end = res->start + PCIE_AXI_CONF_SIZE - 1;
res->flags = IORESOURCE_MEM;
rc = msm_pcie_get_resources(msm_pcie_dev.pdev);
if (rc)
return rc;
rc = msm_pcie_gpio_init();
if (rc) {
msm_pcie_release_resources();
return rc;
}
/* kick start ARM PCI configuration framework */
pci_common_init(&msm_pci);
return 0;
}
static int __exit msm_pcie_remove(struct platform_device *pdev)
{
PCIE_DBG("\n");
msm_pcie_irq_deinit(&msm_pcie_dev);
msm_pcie_vreg_deinit();
msm_pcie_clk_deinit();
msm_pcie_gpio_deinit();
msm_pcie_release_resources();
msm_pcie_dev.pdev = NULL;
msm_pcie_dev.vreg = NULL;
msm_pcie_dev.clk = NULL;
msm_pcie_dev.gpio = NULL;
return 0;
}
static struct platform_driver msm_pcie_driver = {
.remove = __exit_p(msm_pcie_remove),
.driver = {
.name = "msm_pcie",
.owner = THIS_MODULE,
},
};
static int __init msm_pcie_init(void)
{
PCIE_DBG("\n");
pcibios_min_mem = 0x10000000;
return platform_driver_probe(&msm_pcie_driver, msm_pcie_probe);
}
subsys_initcall(msm_pcie_init);
/* RC do not represent the right class; set it to PCI_CLASS_BRIDGE_PCI */
static void __devinit msm_pcie_fixup_early(struct pci_dev *dev)
{
PCIE_DBG("hdr_type %d\n", dev->hdr_type);
if (dev->hdr_type == 1)
dev->class = (dev->class & 0xff) | (PCI_CLASS_BRIDGE_PCI << 8);
}
DECLARE_PCI_FIXUP_EARLY(PCIE_VENDOR_ID_RCP, PCIE_DEVICE_ID_RCP,
msm_pcie_fixup_early);
/* enable wake_n interrupt during suspend */
static void msm_pcie_fixup_suspend(struct pci_dev *dev)
{
PCIE_DBG("enabling wake_n\n");
if (dev->pcie_type == PCI_EXP_TYPE_ROOT_PORT)
enable_irq(msm_pcie_dev.wake_n);
}
DECLARE_PCI_FIXUP_SUSPEND(PCIE_VENDOR_ID_RCP, PCIE_DEVICE_ID_RCP,
msm_pcie_fixup_suspend);
/* disable wake_n interrupt when system is not in suspend */
static void msm_pcie_fixup_resume(struct pci_dev *dev)
{
PCIE_DBG("disabling wake_n\n");
if (dev->pcie_type == PCI_EXP_TYPE_ROOT_PORT)
disable_irq(msm_pcie_dev.wake_n);
}
DECLARE_PCI_FIXUP_RESUME(PCIE_VENDOR_ID_RCP, PCIE_DEVICE_ID_RCP,
msm_pcie_fixup_resume);
/*
* actual physical (BAR) address of the device resources starts from
* MSM_PCIE_DEV_BAR_ADDR; the system axi address for the device resources starts
* from msm_pcie_dev.axi_bar_start; correct the device resource structure here;
* address translation unit handles the required translations
*/
static void __devinit msm_pcie_fixup_final(struct pci_dev *dev)
{
int i;
struct resource *res;
PCIE_DBG("vendor 0x%x 0x%x\n", dev->vendor, dev->device);
for (i = 0; i < PCI_NUM_RESOURCES; i++) {
res = &dev->resource[i];
if (res->start & MSM_PCIE_DEV_BAR_ADDR) {
res->start -= MSM_PCIE_DEV_BAR_ADDR;
res->start += msm_pcie_dev.axi_bar_start;
res->end -= MSM_PCIE_DEV_BAR_ADDR;
res->end += msm_pcie_dev.axi_bar_start;
/* If Root Port, request for the changed resource */
if ((dev->vendor == PCIE_VENDOR_ID_RCP) &&
(dev->device == PCIE_DEVICE_ID_RCP)) {
insert_resource(&iomem_resource, res);
}
}
}
}
DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, msm_pcie_fixup_final);
|