pcie-designware.c 21 KB

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