pcie-designware.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. /*
  2. * Synopsys Designware PCIe host controller driver
  3. *
  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. #include <linux/irq.h>
  14. #include <linux/irqdomain.h>
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/msi.h>
  18. #include <linux/of_address.h>
  19. #include <linux/pci.h>
  20. #include <linux/pci_regs.h>
  21. #include <linux/types.h>
  22. #include "pcie-designware.h"
  23. /* Synopsis specific PCIE configuration registers */
  24. #define PCIE_PORT_LINK_CONTROL 0x710
  25. #define PORT_LINK_MODE_MASK (0x3f << 16)
  26. #define PORT_LINK_MODE_1_LANES (0x1 << 16)
  27. #define PORT_LINK_MODE_2_LANES (0x3 << 16)
  28. #define PORT_LINK_MODE_4_LANES (0x7 << 16)
  29. #define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C
  30. #define PORT_LOGIC_SPEED_CHANGE (0x1 << 17)
  31. #define PORT_LOGIC_LINK_WIDTH_MASK (0x1ff << 8)
  32. #define PORT_LOGIC_LINK_WIDTH_1_LANES (0x1 << 8)
  33. #define PORT_LOGIC_LINK_WIDTH_2_LANES (0x2 << 8)
  34. #define PORT_LOGIC_LINK_WIDTH_4_LANES (0x4 << 8)
  35. #define PCIE_MSI_ADDR_LO 0x820
  36. #define PCIE_MSI_ADDR_HI 0x824
  37. #define PCIE_MSI_INTR0_ENABLE 0x828
  38. #define PCIE_MSI_INTR0_MASK 0x82C
  39. #define PCIE_MSI_INTR0_STATUS 0x830
  40. #define PCIE_ATU_VIEWPORT 0x900
  41. #define PCIE_ATU_REGION_INBOUND (0x1 << 31)
  42. #define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
  43. #define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
  44. #define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
  45. #define PCIE_ATU_CR1 0x904
  46. #define PCIE_ATU_TYPE_MEM (0x0 << 0)
  47. #define PCIE_ATU_TYPE_IO (0x2 << 0)
  48. #define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
  49. #define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
  50. #define PCIE_ATU_CR2 0x908
  51. #define PCIE_ATU_ENABLE (0x1 << 31)
  52. #define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
  53. #define PCIE_ATU_LOWER_BASE 0x90C
  54. #define PCIE_ATU_UPPER_BASE 0x910
  55. #define PCIE_ATU_LIMIT 0x914
  56. #define PCIE_ATU_LOWER_TARGET 0x918
  57. #define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
  58. #define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
  59. #define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
  60. #define PCIE_ATU_UPPER_TARGET 0x91C
  61. static struct hw_pci dw_pci;
  62. static unsigned long global_io_offset;
  63. static inline struct pcie_port *sys_to_pcie(struct pci_sys_data *sys)
  64. {
  65. return sys->private_data;
  66. }
  67. int cfg_read(void __iomem *addr, int where, int size, u32 *val)
  68. {
  69. *val = readl(addr);
  70. if (size == 1)
  71. *val = (*val >> (8 * (where & 3))) & 0xff;
  72. else if (size == 2)
  73. *val = (*val >> (8 * (where & 3))) & 0xffff;
  74. else if (size != 4)
  75. return PCIBIOS_BAD_REGISTER_NUMBER;
  76. return PCIBIOS_SUCCESSFUL;
  77. }
  78. int cfg_write(void __iomem *addr, int where, int size, u32 val)
  79. {
  80. if (size == 4)
  81. writel(val, addr);
  82. else if (size == 2)
  83. writew(val, addr + (where & 2));
  84. else if (size == 1)
  85. writeb(val, addr + (where & 3));
  86. else
  87. return PCIBIOS_BAD_REGISTER_NUMBER;
  88. return PCIBIOS_SUCCESSFUL;
  89. }
  90. static inline void dw_pcie_readl_rc(struct pcie_port *pp, u32 reg, u32 *val)
  91. {
  92. if (pp->ops->readl_rc)
  93. pp->ops->readl_rc(pp, pp->dbi_base + reg, val);
  94. else
  95. *val = readl(pp->dbi_base + reg);
  96. }
  97. static inline void dw_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg)
  98. {
  99. if (pp->ops->writel_rc)
  100. pp->ops->writel_rc(pp, val, pp->dbi_base + reg);
  101. else
  102. writel(val, pp->dbi_base + reg);
  103. }
  104. static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
  105. u32 *val)
  106. {
  107. int ret;
  108. if (pp->ops->rd_own_conf)
  109. ret = pp->ops->rd_own_conf(pp, where, size, val);
  110. else
  111. ret = cfg_read(pp->dbi_base + (where & ~0x3), where, size, val);
  112. return ret;
  113. }
  114. static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
  115. u32 val)
  116. {
  117. int ret;
  118. if (pp->ops->wr_own_conf)
  119. ret = pp->ops->wr_own_conf(pp, where, size, val);
  120. else
  121. ret = cfg_write(pp->dbi_base + (where & ~0x3), where, size,
  122. val);
  123. return ret;
  124. }
  125. static struct irq_chip dw_msi_irq_chip = {
  126. .name = "PCI-MSI",
  127. .irq_enable = unmask_msi_irq,
  128. .irq_disable = mask_msi_irq,
  129. .irq_mask = mask_msi_irq,
  130. .irq_unmask = unmask_msi_irq,
  131. };
  132. /* MSI int handler */
  133. void dw_handle_msi_irq(struct pcie_port *pp)
  134. {
  135. unsigned long val;
  136. int i, pos;
  137. for (i = 0; i < MAX_MSI_CTRLS; i++) {
  138. dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4,
  139. (u32 *)&val);
  140. if (val) {
  141. pos = 0;
  142. while ((pos = find_next_bit(&val, 32, pos)) != 32) {
  143. generic_handle_irq(pp->msi_irq_start
  144. + (i * 32) + pos);
  145. pos++;
  146. }
  147. }
  148. dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4, val);
  149. }
  150. }
  151. void dw_pcie_msi_init(struct pcie_port *pp)
  152. {
  153. pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
  154. /* program the msi_data */
  155. dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
  156. virt_to_phys((void *)pp->msi_data));
  157. dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0);
  158. }
  159. static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
  160. {
  161. int flag = 1;
  162. do {
  163. pos = find_next_zero_bit(pp->msi_irq_in_use,
  164. MAX_MSI_IRQS, pos);
  165. /*if you have reached to the end then get out from here.*/
  166. if (pos == MAX_MSI_IRQS)
  167. return -ENOSPC;
  168. /*
  169. * Check if this position is at correct offset.nvec is always a
  170. * power of two. pos0 must be nvec bit alligned.
  171. */
  172. if (pos % msgvec)
  173. pos += msgvec - (pos % msgvec);
  174. else
  175. flag = 0;
  176. } while (flag);
  177. *pos0 = pos;
  178. return 0;
  179. }
  180. static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
  181. {
  182. int res, bit, irq, pos0, pos1, i;
  183. u32 val;
  184. struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata);
  185. if (!pp) {
  186. BUG();
  187. return -EINVAL;
  188. }
  189. pos0 = find_first_zero_bit(pp->msi_irq_in_use,
  190. MAX_MSI_IRQS);
  191. if (pos0 % no_irqs) {
  192. if (find_valid_pos0(pp, no_irqs, pos0, &pos0))
  193. goto no_valid_irq;
  194. }
  195. if (no_irqs > 1) {
  196. pos1 = find_next_bit(pp->msi_irq_in_use,
  197. MAX_MSI_IRQS, pos0);
  198. /* there must be nvec number of consecutive free bits */
  199. while ((pos1 - pos0) < no_irqs) {
  200. if (find_valid_pos0(pp, no_irqs, pos1, &pos0))
  201. goto no_valid_irq;
  202. pos1 = find_next_bit(pp->msi_irq_in_use,
  203. MAX_MSI_IRQS, pos0);
  204. }
  205. }
  206. irq = (pp->msi_irq_start + pos0);
  207. if ((irq + no_irqs) > (pp->msi_irq_start + MAX_MSI_IRQS-1))
  208. goto no_valid_irq;
  209. i = 0;
  210. while (i < no_irqs) {
  211. set_bit(pos0 + i, pp->msi_irq_in_use);
  212. irq_alloc_descs((irq + i), (irq + i), 1, 0);
  213. irq_set_msi_desc(irq + i, desc);
  214. /*Enable corresponding interrupt in MSI interrupt controller */
  215. res = ((pos0 + i) / 32) * 12;
  216. bit = (pos0 + i) % 32;
  217. dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
  218. val |= 1 << bit;
  219. dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
  220. i++;
  221. }
  222. *pos = pos0;
  223. return irq;
  224. no_valid_irq:
  225. *pos = pos0;
  226. return -ENOSPC;
  227. }
  228. static void clear_irq(unsigned int irq)
  229. {
  230. int res, bit, val, pos;
  231. struct irq_desc *desc;
  232. struct msi_desc *msi;
  233. struct pcie_port *pp;
  234. /* get the port structure */
  235. desc = irq_to_desc(irq);
  236. msi = irq_desc_get_msi_desc(desc);
  237. pp = sys_to_pcie(msi->dev->bus->sysdata);
  238. if (!pp) {
  239. BUG();
  240. return;
  241. }
  242. pos = irq - pp->msi_irq_start;
  243. irq_free_desc(irq);
  244. clear_bit(pos, pp->msi_irq_in_use);
  245. /* Disable corresponding interrupt on MSI interrupt controller */
  246. res = (pos / 32) * 12;
  247. bit = pos % 32;
  248. dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
  249. val &= ~(1 << bit);
  250. dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
  251. }
  252. static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev,
  253. struct msi_desc *desc)
  254. {
  255. int irq, pos, msgvec;
  256. u16 msg_ctr;
  257. struct msi_msg msg;
  258. struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata);
  259. if (!pp) {
  260. BUG();
  261. return -EINVAL;
  262. }
  263. pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS,
  264. &msg_ctr);
  265. msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4;
  266. if (msgvec == 0)
  267. msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1;
  268. if (msgvec > 5)
  269. msgvec = 0;
  270. irq = assign_irq((1 << msgvec), desc, &pos);
  271. if (irq < 0)
  272. return irq;
  273. msg_ctr &= ~PCI_MSI_FLAGS_QSIZE;
  274. msg_ctr |= msgvec << 4;
  275. pci_write_config_word(pdev, desc->msi_attrib.pos + PCI_MSI_FLAGS,
  276. msg_ctr);
  277. desc->msi_attrib.multiple = msgvec;
  278. msg.address_lo = virt_to_phys((void *)pp->msi_data);
  279. msg.address_hi = 0x0;
  280. msg.data = pos;
  281. write_msi_msg(irq, &msg);
  282. return 0;
  283. }
  284. static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq)
  285. {
  286. clear_irq(irq);
  287. }
  288. static struct msi_chip dw_pcie_msi_chip = {
  289. .setup_irq = dw_msi_setup_irq,
  290. .teardown_irq = dw_msi_teardown_irq,
  291. };
  292. int dw_pcie_link_up(struct pcie_port *pp)
  293. {
  294. if (pp->ops->link_up)
  295. return pp->ops->link_up(pp);
  296. else
  297. return 0;
  298. }
  299. static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
  300. irq_hw_number_t hwirq)
  301. {
  302. irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
  303. irq_set_chip_data(irq, domain->host_data);
  304. set_irq_flags(irq, IRQF_VALID);
  305. return 0;
  306. }
  307. static const struct irq_domain_ops msi_domain_ops = {
  308. .map = dw_pcie_msi_map,
  309. };
  310. int __init dw_pcie_host_init(struct pcie_port *pp)
  311. {
  312. struct device_node *np = pp->dev->of_node;
  313. struct of_pci_range range;
  314. struct of_pci_range_parser parser;
  315. u32 val;
  316. struct irq_domain *irq_domain;
  317. if (of_pci_range_parser_init(&parser, np)) {
  318. dev_err(pp->dev, "missing ranges property\n");
  319. return -EINVAL;
  320. }
  321. /* Get the I/O and memory ranges from DT */
  322. for_each_of_pci_range(&parser, &range) {
  323. unsigned long restype = range.flags & IORESOURCE_TYPE_BITS;
  324. if (restype == IORESOURCE_IO) {
  325. of_pci_range_to_resource(&range, np, &pp->io);
  326. pp->io.name = "I/O";
  327. pp->io.start = max_t(resource_size_t,
  328. PCIBIOS_MIN_IO,
  329. range.pci_addr + global_io_offset);
  330. pp->io.end = min_t(resource_size_t,
  331. IO_SPACE_LIMIT,
  332. range.pci_addr + range.size
  333. + global_io_offset);
  334. pp->config.io_size = resource_size(&pp->io);
  335. pp->config.io_bus_addr = range.pci_addr;
  336. }
  337. if (restype == IORESOURCE_MEM) {
  338. of_pci_range_to_resource(&range, np, &pp->mem);
  339. pp->mem.name = "MEM";
  340. pp->config.mem_size = resource_size(&pp->mem);
  341. pp->config.mem_bus_addr = range.pci_addr;
  342. }
  343. if (restype == 0) {
  344. of_pci_range_to_resource(&range, np, &pp->cfg);
  345. pp->config.cfg0_size = resource_size(&pp->cfg)/2;
  346. pp->config.cfg1_size = resource_size(&pp->cfg)/2;
  347. }
  348. }
  349. if (!pp->dbi_base) {
  350. pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start,
  351. resource_size(&pp->cfg));
  352. if (!pp->dbi_base) {
  353. dev_err(pp->dev, "error with ioremap\n");
  354. return -ENOMEM;
  355. }
  356. }
  357. pp->cfg0_base = pp->cfg.start;
  358. pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size;
  359. pp->io_base = pp->io.start;
  360. pp->mem_base = pp->mem.start;
  361. pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
  362. pp->config.cfg0_size);
  363. if (!pp->va_cfg0_base) {
  364. dev_err(pp->dev, "error with ioremap in function\n");
  365. return -ENOMEM;
  366. }
  367. pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
  368. pp->config.cfg1_size);
  369. if (!pp->va_cfg1_base) {
  370. dev_err(pp->dev, "error with ioremap\n");
  371. return -ENOMEM;
  372. }
  373. if (of_property_read_u32(np, "num-lanes", &pp->lanes)) {
  374. dev_err(pp->dev, "Failed to parse the number of lanes\n");
  375. return -EINVAL;
  376. }
  377. if (IS_ENABLED(CONFIG_PCI_MSI)) {
  378. irq_domain = irq_domain_add_linear(pp->dev->of_node,
  379. MAX_MSI_IRQS, &msi_domain_ops,
  380. &dw_pcie_msi_chip);
  381. if (!irq_domain) {
  382. dev_err(pp->dev, "irq domain init failed\n");
  383. return -ENXIO;
  384. }
  385. pp->msi_irq_start = irq_find_mapping(irq_domain, 0);
  386. }
  387. if (pp->ops->host_init)
  388. pp->ops->host_init(pp);
  389. dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
  390. /* program correct class for RC */
  391. dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
  392. dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
  393. val |= PORT_LOGIC_SPEED_CHANGE;
  394. dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
  395. dw_pci.nr_controllers = 1;
  396. dw_pci.private_data = (void **)&pp;
  397. pci_common_init(&dw_pci);
  398. pci_assign_unassigned_resources();
  399. #ifdef CONFIG_PCI_DOMAINS
  400. dw_pci.domain++;
  401. #endif
  402. return 0;
  403. }
  404. static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev)
  405. {
  406. /* Program viewport 0 : OUTBOUND : CFG0 */
  407. dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
  408. PCIE_ATU_VIEWPORT);
  409. dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE);
  410. dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE);
  411. dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_size - 1,
  412. PCIE_ATU_LIMIT);
  413. dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
  414. dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
  415. dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1);
  416. dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
  417. }
  418. static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev)
  419. {
  420. /* Program viewport 1 : OUTBOUND : CFG1 */
  421. dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
  422. PCIE_ATU_VIEWPORT);
  423. dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1);
  424. dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
  425. dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE);
  426. dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE);
  427. dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1,
  428. PCIE_ATU_LIMIT);
  429. dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
  430. dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
  431. }
  432. static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp)
  433. {
  434. /* Program viewport 0 : OUTBOUND : MEM */
  435. dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
  436. PCIE_ATU_VIEWPORT);
  437. dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1);
  438. dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
  439. dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE);
  440. dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE);
  441. dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1,
  442. PCIE_ATU_LIMIT);
  443. dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET);
  444. dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr),
  445. PCIE_ATU_UPPER_TARGET);
  446. }
  447. static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp)
  448. {
  449. /* Program viewport 1 : OUTBOUND : IO */
  450. dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
  451. PCIE_ATU_VIEWPORT);
  452. dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1);
  453. dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
  454. dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE);
  455. dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE);
  456. dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1,
  457. PCIE_ATU_LIMIT);
  458. dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET);
  459. dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr),
  460. PCIE_ATU_UPPER_TARGET);
  461. }
  462. static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
  463. u32 devfn, int where, int size, u32 *val)
  464. {
  465. int ret = PCIBIOS_SUCCESSFUL;
  466. u32 address, busdev;
  467. busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
  468. PCIE_ATU_FUNC(PCI_FUNC(devfn));
  469. address = where & ~0x3;
  470. if (bus->parent->number == pp->root_bus_nr) {
  471. dw_pcie_prog_viewport_cfg0(pp, busdev);
  472. ret = cfg_read(pp->va_cfg0_base + address, where, size, val);
  473. dw_pcie_prog_viewport_mem_outbound(pp);
  474. } else {
  475. dw_pcie_prog_viewport_cfg1(pp, busdev);
  476. ret = cfg_read(pp->va_cfg1_base + address, where, size, val);
  477. dw_pcie_prog_viewport_io_outbound(pp);
  478. }
  479. return ret;
  480. }
  481. static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
  482. u32 devfn, int where, int size, u32 val)
  483. {
  484. int ret = PCIBIOS_SUCCESSFUL;
  485. u32 address, busdev;
  486. busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
  487. PCIE_ATU_FUNC(PCI_FUNC(devfn));
  488. address = where & ~0x3;
  489. if (bus->parent->number == pp->root_bus_nr) {
  490. dw_pcie_prog_viewport_cfg0(pp, busdev);
  491. ret = cfg_write(pp->va_cfg0_base + address, where, size, val);
  492. dw_pcie_prog_viewport_mem_outbound(pp);
  493. } else {
  494. dw_pcie_prog_viewport_cfg1(pp, busdev);
  495. ret = cfg_write(pp->va_cfg1_base + address, where, size, val);
  496. dw_pcie_prog_viewport_io_outbound(pp);
  497. }
  498. return ret;
  499. }
  500. static int dw_pcie_valid_config(struct pcie_port *pp,
  501. struct pci_bus *bus, int dev)
  502. {
  503. /* If there is no link, then there is no device */
  504. if (bus->number != pp->root_bus_nr) {
  505. if (!dw_pcie_link_up(pp))
  506. return 0;
  507. }
  508. /* access only one slot on each root port */
  509. if (bus->number == pp->root_bus_nr && dev > 0)
  510. return 0;
  511. /*
  512. * do not read more than one device on the bus directly attached
  513. * to RC's (Virtual Bridge's) DS side.
  514. */
  515. if (bus->primary == pp->root_bus_nr && dev > 0)
  516. return 0;
  517. return 1;
  518. }
  519. static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
  520. int size, u32 *val)
  521. {
  522. struct pcie_port *pp = sys_to_pcie(bus->sysdata);
  523. unsigned long flags;
  524. int ret;
  525. if (!pp) {
  526. BUG();
  527. return -EINVAL;
  528. }
  529. if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
  530. *val = 0xffffffff;
  531. return PCIBIOS_DEVICE_NOT_FOUND;
  532. }
  533. spin_lock_irqsave(&pp->conf_lock, flags);
  534. if (bus->number != pp->root_bus_nr)
  535. ret = dw_pcie_rd_other_conf(pp, bus, devfn,
  536. where, size, val);
  537. else
  538. ret = dw_pcie_rd_own_conf(pp, where, size, val);
  539. spin_unlock_irqrestore(&pp->conf_lock, flags);
  540. return ret;
  541. }
  542. static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
  543. int where, int size, u32 val)
  544. {
  545. struct pcie_port *pp = sys_to_pcie(bus->sysdata);
  546. unsigned long flags;
  547. int ret;
  548. if (!pp) {
  549. BUG();
  550. return -EINVAL;
  551. }
  552. if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
  553. return PCIBIOS_DEVICE_NOT_FOUND;
  554. spin_lock_irqsave(&pp->conf_lock, flags);
  555. if (bus->number != pp->root_bus_nr)
  556. ret = dw_pcie_wr_other_conf(pp, bus, devfn,
  557. where, size, val);
  558. else
  559. ret = dw_pcie_wr_own_conf(pp, where, size, val);
  560. spin_unlock_irqrestore(&pp->conf_lock, flags);
  561. return ret;
  562. }
  563. static struct pci_ops dw_pcie_ops = {
  564. .read = dw_pcie_rd_conf,
  565. .write = dw_pcie_wr_conf,
  566. };
  567. static int dw_pcie_setup(int nr, struct pci_sys_data *sys)
  568. {
  569. struct pcie_port *pp;
  570. pp = sys_to_pcie(sys);
  571. if (!pp)
  572. return 0;
  573. if (global_io_offset < SZ_1M && pp->config.io_size > 0) {
  574. sys->io_offset = global_io_offset - pp->config.io_bus_addr;
  575. pci_ioremap_io(sys->io_offset, pp->io.start);
  576. global_io_offset += SZ_64K;
  577. pci_add_resource_offset(&sys->resources, &pp->io,
  578. sys->io_offset);
  579. }
  580. sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr;
  581. pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset);
  582. return 1;
  583. }
  584. static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys)
  585. {
  586. struct pci_bus *bus;
  587. struct pcie_port *pp = sys_to_pcie(sys);
  588. if (pp) {
  589. pp->root_bus_nr = sys->busnr;
  590. bus = pci_scan_root_bus(NULL, sys->busnr, &dw_pcie_ops,
  591. sys, &sys->resources);
  592. } else {
  593. bus = NULL;
  594. BUG();
  595. }
  596. return bus;
  597. }
  598. static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  599. {
  600. struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
  601. return pp->irq;
  602. }
  603. static void dw_pcie_add_bus(struct pci_bus *bus)
  604. {
  605. if (IS_ENABLED(CONFIG_PCI_MSI)) {
  606. struct pcie_port *pp = sys_to_pcie(bus->sysdata);
  607. dw_pcie_msi_chip.dev = pp->dev;
  608. bus->msi = &dw_pcie_msi_chip;
  609. }
  610. }
  611. static struct hw_pci dw_pci = {
  612. .setup = dw_pcie_setup,
  613. .scan = dw_pcie_scan_bus,
  614. .map_irq = dw_pcie_map_irq,
  615. .add_bus = dw_pcie_add_bus,
  616. };
  617. void dw_pcie_setup_rc(struct pcie_port *pp)
  618. {
  619. struct pcie_port_info *config = &pp->config;
  620. u32 val;
  621. u32 membase;
  622. u32 memlimit;
  623. /* set the number of lines as 4 */
  624. dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val);
  625. val &= ~PORT_LINK_MODE_MASK;
  626. switch (pp->lanes) {
  627. case 1:
  628. val |= PORT_LINK_MODE_1_LANES;
  629. break;
  630. case 2:
  631. val |= PORT_LINK_MODE_2_LANES;
  632. break;
  633. case 4:
  634. val |= PORT_LINK_MODE_4_LANES;
  635. break;
  636. }
  637. dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
  638. /* set link width speed control register */
  639. dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val);
  640. val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
  641. switch (pp->lanes) {
  642. case 1:
  643. val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
  644. break;
  645. case 2:
  646. val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
  647. break;
  648. case 4:
  649. val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
  650. break;
  651. }
  652. dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
  653. /* setup RC BARs */
  654. dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
  655. dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_1);
  656. /* setup interrupt pins */
  657. dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val);
  658. val &= 0xffff00ff;
  659. val |= 0x00000100;
  660. dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
  661. /* setup bus numbers */
  662. dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val);
  663. val &= 0xff000000;
  664. val |= 0x00010100;
  665. dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
  666. /* setup memory base, memory limit */
  667. membase = ((u32)pp->mem_base & 0xfff00000) >> 16;
  668. memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000;
  669. val = memlimit | membase;
  670. dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE);
  671. /* setup command register */
  672. dw_pcie_readl_rc(pp, PCI_COMMAND, &val);
  673. val &= 0xffff0000;
  674. val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
  675. PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
  676. dw_pcie_writel_rc(pp, val, PCI_COMMAND);
  677. }
  678. MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
  679. MODULE_DESCRIPTION("Designware PCIe host controller driver");
  680. MODULE_LICENSE("GPL v2");