pci-octeon.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2005-2009 Cavium Networks
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/init.h>
  10. #include <linux/pci.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/time.h>
  13. #include <linux/delay.h>
  14. #include <asm/time.h>
  15. #include <asm/octeon/octeon.h>
  16. #include <asm/octeon/cvmx-npi-defs.h>
  17. #include <asm/octeon/cvmx-pci-defs.h>
  18. #include <asm/octeon/pci-octeon.h>
  19. #define USE_OCTEON_INTERNAL_ARBITER
  20. /*
  21. * Octeon's PCI controller uses did=3, subdid=2 for PCI IO
  22. * addresses. Use PCI endian swapping 1 so no address swapping is
  23. * necessary. The Linux io routines will endian swap the data.
  24. */
  25. #define OCTEON_PCI_IOSPACE_BASE 0x80011a0400000000ull
  26. #define OCTEON_PCI_IOSPACE_SIZE (1ull<<32)
  27. /* Octeon't PCI controller uses did=3, subdid=3 for PCI memory. */
  28. #define OCTEON_PCI_MEMSPACE_OFFSET (0x00011b0000000000ull)
  29. /**
  30. * This is the bit decoding used for the Octeon PCI controller addresses
  31. */
  32. union octeon_pci_address {
  33. uint64_t u64;
  34. struct {
  35. uint64_t upper:2;
  36. uint64_t reserved:13;
  37. uint64_t io:1;
  38. uint64_t did:5;
  39. uint64_t subdid:3;
  40. uint64_t reserved2:4;
  41. uint64_t endian_swap:2;
  42. uint64_t reserved3:10;
  43. uint64_t bus:8;
  44. uint64_t dev:5;
  45. uint64_t func:3;
  46. uint64_t reg:8;
  47. } s;
  48. };
  49. int __initdata (*octeon_pcibios_map_irq)(const struct pci_dev *dev,
  50. u8 slot, u8 pin);
  51. enum octeon_dma_bar_type octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_INVALID;
  52. /**
  53. * Map a PCI device to the appropriate interrupt line
  54. *
  55. * @dev: The Linux PCI device structure for the device to map
  56. * @slot: The slot number for this device on __BUS 0__. Linux
  57. * enumerates through all the bridges and figures out the
  58. * slot on Bus 0 where this device eventually hooks to.
  59. * @pin: The PCI interrupt pin read from the device, then swizzled
  60. * as it goes through each bridge.
  61. * Returns Interrupt number for the device
  62. */
  63. int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  64. {
  65. if (octeon_pcibios_map_irq)
  66. return octeon_pcibios_map_irq(dev, slot, pin);
  67. else
  68. panic("octeon_pcibios_map_irq not set.");
  69. }
  70. /*
  71. * Called to perform platform specific PCI setup
  72. */
  73. int pcibios_plat_dev_init(struct pci_dev *dev)
  74. {
  75. uint16_t config;
  76. uint32_t dconfig;
  77. int pos;
  78. /*
  79. * Force the Cache line setting to 64 bytes. The standard
  80. * Linux bus scan doesn't seem to set it. Octeon really has
  81. * 128 byte lines, but Intel bridges get really upset if you
  82. * try and set values above 64 bytes. Value is specified in
  83. * 32bit words.
  84. */
  85. pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, 64 / 4);
  86. /* Set latency timers for all devices */
  87. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 48);
  88. /* Enable reporting System errors and parity errors on all devices */
  89. /* Enable parity checking and error reporting */
  90. pci_read_config_word(dev, PCI_COMMAND, &config);
  91. config |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
  92. pci_write_config_word(dev, PCI_COMMAND, config);
  93. if (dev->subordinate) {
  94. /* Set latency timers on sub bridges */
  95. pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER, 48);
  96. /* More bridge error detection */
  97. pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &config);
  98. config |= PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR;
  99. pci_write_config_word(dev, PCI_BRIDGE_CONTROL, config);
  100. }
  101. /* Enable the PCIe normal error reporting */
  102. pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
  103. if (pos) {
  104. /* Update Device Control */
  105. pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &config);
  106. /* Correctable Error Reporting */
  107. config |= PCI_EXP_DEVCTL_CERE;
  108. /* Non-Fatal Error Reporting */
  109. config |= PCI_EXP_DEVCTL_NFERE;
  110. /* Fatal Error Reporting */
  111. config |= PCI_EXP_DEVCTL_FERE;
  112. /* Unsupported Request */
  113. config |= PCI_EXP_DEVCTL_URRE;
  114. pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, config);
  115. }
  116. /* Find the Advanced Error Reporting capability */
  117. pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
  118. if (pos) {
  119. /* Clear Uncorrectable Error Status */
  120. pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS,
  121. &dconfig);
  122. pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS,
  123. dconfig);
  124. /* Enable reporting of all uncorrectable errors */
  125. /* Uncorrectable Error Mask - turned on bits disable errors */
  126. pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, 0);
  127. /*
  128. * Leave severity at HW default. This only controls if
  129. * errors are reported as uncorrectable or
  130. * correctable, not if the error is reported.
  131. */
  132. /* PCI_ERR_UNCOR_SEVER - Uncorrectable Error Severity */
  133. /* Clear Correctable Error Status */
  134. pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &dconfig);
  135. pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS, dconfig);
  136. /* Enable reporting of all correctable errors */
  137. /* Correctable Error Mask - turned on bits disable errors */
  138. pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, 0);
  139. /* Advanced Error Capabilities */
  140. pci_read_config_dword(dev, pos + PCI_ERR_CAP, &dconfig);
  141. /* ECRC Generation Enable */
  142. if (config & PCI_ERR_CAP_ECRC_GENC)
  143. config |= PCI_ERR_CAP_ECRC_GENE;
  144. /* ECRC Check Enable */
  145. if (config & PCI_ERR_CAP_ECRC_CHKC)
  146. config |= PCI_ERR_CAP_ECRC_CHKE;
  147. pci_write_config_dword(dev, pos + PCI_ERR_CAP, dconfig);
  148. /* PCI_ERR_HEADER_LOG - Header Log Register (16 bytes) */
  149. /* Report all errors to the root complex */
  150. pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND,
  151. PCI_ERR_ROOT_CMD_COR_EN |
  152. PCI_ERR_ROOT_CMD_NONFATAL_EN |
  153. PCI_ERR_ROOT_CMD_FATAL_EN);
  154. /* Clear the Root status register */
  155. pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &dconfig);
  156. pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, dconfig);
  157. }
  158. return 0;
  159. }
  160. /**
  161. * Return the mapping of PCI device number to IRQ line. Each
  162. * character in the return string represents the interrupt
  163. * line for the device at that position. Device 1 maps to the
  164. * first character, etc. The characters A-D are used for PCI
  165. * interrupts.
  166. *
  167. * Returns PCI interrupt mapping
  168. */
  169. const char *octeon_get_pci_interrupts(void)
  170. {
  171. /*
  172. * Returning an empty string causes the interrupts to be
  173. * routed based on the PCI specification. From the PCI spec:
  174. *
  175. * INTA# of Device Number 0 is connected to IRQW on the system
  176. * board. (Device Number has no significance regarding being
  177. * located on the system board or in a connector.) INTA# of
  178. * Device Number 1 is connected to IRQX on the system
  179. * board. INTA# of Device Number 2 is connected to IRQY on the
  180. * system board. INTA# of Device Number 3 is connected to IRQZ
  181. * on the system board. The table below describes how each
  182. * agent's INTx# lines are connected to the system board
  183. * interrupt lines. The following equation can be used to
  184. * determine to which INTx# signal on the system board a given
  185. * device's INTx# line(s) is connected.
  186. *
  187. * MB = (D + I) MOD 4 MB = System board Interrupt (IRQW = 0,
  188. * IRQX = 1, IRQY = 2, and IRQZ = 3) D = Device Number I =
  189. * Interrupt Number (INTA# = 0, INTB# = 1, INTC# = 2, and
  190. * INTD# = 3)
  191. */
  192. switch (octeon_bootinfo->board_type) {
  193. case CVMX_BOARD_TYPE_NAO38:
  194. /* This is really the NAC38 */
  195. return "AAAAADABAAAAAAAAAAAAAAAAAAAAAAAA";
  196. case CVMX_BOARD_TYPE_THUNDER:
  197. return "";
  198. case CVMX_BOARD_TYPE_EBH3000:
  199. return "";
  200. case CVMX_BOARD_TYPE_EBH3100:
  201. case CVMX_BOARD_TYPE_CN3010_EVB_HS5:
  202. case CVMX_BOARD_TYPE_CN3005_EVB_HS5:
  203. return "AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
  204. case CVMX_BOARD_TYPE_BBGW_REF:
  205. return "AABCD";
  206. default:
  207. return "";
  208. }
  209. }
  210. /**
  211. * Map a PCI device to the appropriate interrupt line
  212. *
  213. * @dev: The Linux PCI device structure for the device to map
  214. * @slot: The slot number for this device on __BUS 0__. Linux
  215. * enumerates through all the bridges and figures out the
  216. * slot on Bus 0 where this device eventually hooks to.
  217. * @pin: The PCI interrupt pin read from the device, then swizzled
  218. * as it goes through each bridge.
  219. * Returns Interrupt number for the device
  220. */
  221. int __init octeon_pci_pcibios_map_irq(const struct pci_dev *dev,
  222. u8 slot, u8 pin)
  223. {
  224. int irq_num;
  225. const char *interrupts;
  226. int dev_num;
  227. /* Get the board specific interrupt mapping */
  228. interrupts = octeon_get_pci_interrupts();
  229. dev_num = dev->devfn >> 3;
  230. if (dev_num < strlen(interrupts))
  231. irq_num = ((interrupts[dev_num] - 'A' + pin - 1) & 3) +
  232. OCTEON_IRQ_PCI_INT0;
  233. else
  234. irq_num = ((slot + pin - 3) & 3) + OCTEON_IRQ_PCI_INT0;
  235. return irq_num;
  236. }
  237. /*
  238. * Read a value from configuration space
  239. */
  240. static int octeon_read_config(struct pci_bus *bus, unsigned int devfn,
  241. int reg, int size, u32 *val)
  242. {
  243. union octeon_pci_address pci_addr;
  244. pci_addr.u64 = 0;
  245. pci_addr.s.upper = 2;
  246. pci_addr.s.io = 1;
  247. pci_addr.s.did = 3;
  248. pci_addr.s.subdid = 1;
  249. pci_addr.s.endian_swap = 1;
  250. pci_addr.s.bus = bus->number;
  251. pci_addr.s.dev = devfn >> 3;
  252. pci_addr.s.func = devfn & 0x7;
  253. pci_addr.s.reg = reg;
  254. #if PCI_CONFIG_SPACE_DELAY
  255. udelay(PCI_CONFIG_SPACE_DELAY);
  256. #endif
  257. switch (size) {
  258. case 4:
  259. *val = le32_to_cpu(cvmx_read64_uint32(pci_addr.u64));
  260. return PCIBIOS_SUCCESSFUL;
  261. case 2:
  262. *val = le16_to_cpu(cvmx_read64_uint16(pci_addr.u64));
  263. return PCIBIOS_SUCCESSFUL;
  264. case 1:
  265. *val = cvmx_read64_uint8(pci_addr.u64);
  266. return PCIBIOS_SUCCESSFUL;
  267. }
  268. return PCIBIOS_FUNC_NOT_SUPPORTED;
  269. }
  270. /*
  271. * Write a value to PCI configuration space
  272. */
  273. static int octeon_write_config(struct pci_bus *bus, unsigned int devfn,
  274. int reg, int size, u32 val)
  275. {
  276. union octeon_pci_address pci_addr;
  277. pci_addr.u64 = 0;
  278. pci_addr.s.upper = 2;
  279. pci_addr.s.io = 1;
  280. pci_addr.s.did = 3;
  281. pci_addr.s.subdid = 1;
  282. pci_addr.s.endian_swap = 1;
  283. pci_addr.s.bus = bus->number;
  284. pci_addr.s.dev = devfn >> 3;
  285. pci_addr.s.func = devfn & 0x7;
  286. pci_addr.s.reg = reg;
  287. #if PCI_CONFIG_SPACE_DELAY
  288. udelay(PCI_CONFIG_SPACE_DELAY);
  289. #endif
  290. switch (size) {
  291. case 4:
  292. cvmx_write64_uint32(pci_addr.u64, cpu_to_le32(val));
  293. return PCIBIOS_SUCCESSFUL;
  294. case 2:
  295. cvmx_write64_uint16(pci_addr.u64, cpu_to_le16(val));
  296. return PCIBIOS_SUCCESSFUL;
  297. case 1:
  298. cvmx_write64_uint8(pci_addr.u64, val);
  299. return PCIBIOS_SUCCESSFUL;
  300. }
  301. return PCIBIOS_FUNC_NOT_SUPPORTED;
  302. }
  303. static struct pci_ops octeon_pci_ops = {
  304. octeon_read_config,
  305. octeon_write_config,
  306. };
  307. static struct resource octeon_pci_mem_resource = {
  308. .start = 0,
  309. .end = 0,
  310. .name = "Octeon PCI MEM",
  311. .flags = IORESOURCE_MEM,
  312. };
  313. /*
  314. * PCI ports must be above 16KB so the ISA bus filtering in the PCI-X to PCI
  315. * bridge
  316. */
  317. static struct resource octeon_pci_io_resource = {
  318. .start = 0x4000,
  319. .end = OCTEON_PCI_IOSPACE_SIZE - 1,
  320. .name = "Octeon PCI IO",
  321. .flags = IORESOURCE_IO,
  322. };
  323. static struct pci_controller octeon_pci_controller = {
  324. .pci_ops = &octeon_pci_ops,
  325. .mem_resource = &octeon_pci_mem_resource,
  326. .mem_offset = OCTEON_PCI_MEMSPACE_OFFSET,
  327. .io_resource = &octeon_pci_io_resource,
  328. .io_offset = 0,
  329. .io_map_base = OCTEON_PCI_IOSPACE_BASE,
  330. };
  331. /*
  332. * Low level initialize the Octeon PCI controller
  333. */
  334. static void octeon_pci_initialize(void)
  335. {
  336. union cvmx_pci_cfg01 cfg01;
  337. union cvmx_npi_ctl_status ctl_status;
  338. union cvmx_pci_ctl_status_2 ctl_status_2;
  339. union cvmx_pci_cfg19 cfg19;
  340. union cvmx_pci_cfg16 cfg16;
  341. union cvmx_pci_cfg22 cfg22;
  342. union cvmx_pci_cfg56 cfg56;
  343. /* Reset the PCI Bus */
  344. cvmx_write_csr(CVMX_CIU_SOFT_PRST, 0x1);
  345. cvmx_read_csr(CVMX_CIU_SOFT_PRST);
  346. udelay(2000); /* Hold PCI reset for 2 ms */
  347. ctl_status.u64 = 0; /* cvmx_read_csr(CVMX_NPI_CTL_STATUS); */
  348. ctl_status.s.max_word = 1;
  349. ctl_status.s.timer = 1;
  350. cvmx_write_csr(CVMX_NPI_CTL_STATUS, ctl_status.u64);
  351. /* Deassert PCI reset and advertize PCX Host Mode Device Capability
  352. (64b) */
  353. cvmx_write_csr(CVMX_CIU_SOFT_PRST, 0x4);
  354. cvmx_read_csr(CVMX_CIU_SOFT_PRST);
  355. udelay(2000); /* Wait 2 ms after deasserting PCI reset */
  356. ctl_status_2.u32 = 0;
  357. ctl_status_2.s.tsr_hwm = 1; /* Initializes to 0. Must be set
  358. before any PCI reads. */
  359. ctl_status_2.s.bar2pres = 1; /* Enable BAR2 */
  360. ctl_status_2.s.bar2_enb = 1;
  361. ctl_status_2.s.bar2_cax = 1; /* Don't use L2 */
  362. ctl_status_2.s.bar2_esx = 1;
  363. ctl_status_2.s.pmo_amod = 1; /* Round robin priority */
  364. if (octeon_dma_bar_type == OCTEON_DMA_BAR_TYPE_BIG) {
  365. /* BAR1 hole */
  366. ctl_status_2.s.bb1_hole = OCTEON_PCI_BAR1_HOLE_BITS;
  367. ctl_status_2.s.bb1_siz = 1; /* BAR1 is 2GB */
  368. ctl_status_2.s.bb_ca = 1; /* Don't use L2 with big bars */
  369. ctl_status_2.s.bb_es = 1; /* Big bar in byte swap mode */
  370. ctl_status_2.s.bb1 = 1; /* BAR1 is big */
  371. ctl_status_2.s.bb0 = 1; /* BAR0 is big */
  372. }
  373. octeon_npi_write32(CVMX_NPI_PCI_CTL_STATUS_2, ctl_status_2.u32);
  374. udelay(2000); /* Wait 2 ms before doing PCI reads */
  375. ctl_status_2.u32 = octeon_npi_read32(CVMX_NPI_PCI_CTL_STATUS_2);
  376. pr_notice("PCI Status: %s %s-bit\n",
  377. ctl_status_2.s.ap_pcix ? "PCI-X" : "PCI",
  378. ctl_status_2.s.ap_64ad ? "64" : "32");
  379. if (OCTEON_IS_MODEL(OCTEON_CN58XX) || OCTEON_IS_MODEL(OCTEON_CN50XX)) {
  380. union cvmx_pci_cnt_reg cnt_reg_start;
  381. union cvmx_pci_cnt_reg cnt_reg_end;
  382. unsigned long cycles, pci_clock;
  383. cnt_reg_start.u64 = cvmx_read_csr(CVMX_NPI_PCI_CNT_REG);
  384. cycles = read_c0_cvmcount();
  385. udelay(1000);
  386. cnt_reg_end.u64 = cvmx_read_csr(CVMX_NPI_PCI_CNT_REG);
  387. cycles = read_c0_cvmcount() - cycles;
  388. pci_clock = (cnt_reg_end.s.pcicnt - cnt_reg_start.s.pcicnt) /
  389. (cycles / (mips_hpt_frequency / 1000000));
  390. pr_notice("PCI Clock: %lu MHz\n", pci_clock);
  391. }
  392. /*
  393. * TDOMC must be set to one in PCI mode. TDOMC should be set to 4
  394. * in PCI-X mode to allow four oustanding splits. Otherwise,
  395. * should not change from its reset value. Don't write PCI_CFG19
  396. * in PCI mode (0x82000001 reset value), write it to 0x82000004
  397. * after PCI-X mode is known. MRBCI,MDWE,MDRE -> must be zero.
  398. * MRBCM -> must be one.
  399. */
  400. if (ctl_status_2.s.ap_pcix) {
  401. cfg19.u32 = 0;
  402. /*
  403. * Target Delayed/Split request outstanding maximum
  404. * count. [1..31] and 0=32. NOTE: If the user
  405. * programs these bits beyond the Designed Maximum
  406. * outstanding count, then the designed maximum table
  407. * depth will be used instead. No additional
  408. * Deferred/Split transactions will be accepted if
  409. * this outstanding maximum count is
  410. * reached. Furthermore, no additional deferred/split
  411. * transactions will be accepted if the I/O delay/ I/O
  412. * Split Request outstanding maximum is reached.
  413. */
  414. cfg19.s.tdomc = 4;
  415. /*
  416. * Master Deferred Read Request Outstanding Max Count
  417. * (PCI only). CR4C[26:24] Max SAC cycles MAX DAC
  418. * cycles 000 8 4 001 1 0 010 2 1 011 3 1 100 4 2 101
  419. * 5 2 110 6 3 111 7 3 For example, if these bits are
  420. * programmed to 100, the core can support 2 DAC
  421. * cycles, 4 SAC cycles or a combination of 1 DAC and
  422. * 2 SAC cycles. NOTE: For the PCI-X maximum
  423. * outstanding split transactions, refer to
  424. * CRE0[22:20].
  425. */
  426. cfg19.s.mdrrmc = 2;
  427. /*
  428. * Master Request (Memory Read) Byte Count/Byte Enable
  429. * select. 0 = Byte Enables valid. In PCI mode, a
  430. * burst transaction cannot be performed using Memory
  431. * Read command=4?h6. 1 = DWORD Byte Count valid
  432. * (default). In PCI Mode, the memory read byte
  433. * enables are automatically generated by the
  434. * core. Note: N3 Master Request transaction sizes are
  435. * always determined through the
  436. * am_attr[<35:32>|<7:0>] field.
  437. */
  438. cfg19.s.mrbcm = 1;
  439. octeon_npi_write32(CVMX_NPI_PCI_CFG19, cfg19.u32);
  440. }
  441. cfg01.u32 = 0;
  442. cfg01.s.msae = 1; /* Memory Space Access Enable */
  443. cfg01.s.me = 1; /* Master Enable */
  444. cfg01.s.pee = 1; /* PERR# Enable */
  445. cfg01.s.see = 1; /* System Error Enable */
  446. cfg01.s.fbbe = 1; /* Fast Back to Back Transaction Enable */
  447. octeon_npi_write32(CVMX_NPI_PCI_CFG01, cfg01.u32);
  448. #ifdef USE_OCTEON_INTERNAL_ARBITER
  449. /*
  450. * When OCTEON is a PCI host, most systems will use OCTEON's
  451. * internal arbiter, so must enable it before any PCI/PCI-X
  452. * traffic can occur.
  453. */
  454. {
  455. union cvmx_npi_pci_int_arb_cfg pci_int_arb_cfg;
  456. pci_int_arb_cfg.u64 = 0;
  457. pci_int_arb_cfg.s.en = 1; /* Internal arbiter enable */
  458. cvmx_write_csr(CVMX_NPI_PCI_INT_ARB_CFG, pci_int_arb_cfg.u64);
  459. }
  460. #endif /* USE_OCTEON_INTERNAL_ARBITER */
  461. /*
  462. * Preferrably written to 1 to set MLTD. [RDSATI,TRTAE,
  463. * TWTAE,TMAE,DPPMR -> must be zero. TILT -> must not be set to
  464. * 1..7.
  465. */
  466. cfg16.u32 = 0;
  467. cfg16.s.mltd = 1; /* Master Latency Timer Disable */
  468. octeon_npi_write32(CVMX_NPI_PCI_CFG16, cfg16.u32);
  469. /*
  470. * Should be written to 0x4ff00. MTTV -> must be zero.
  471. * FLUSH -> must be 1. MRV -> should be 0xFF.
  472. */
  473. cfg22.u32 = 0;
  474. /* Master Retry Value [1..255] and 0=infinite */
  475. cfg22.s.mrv = 0xff;
  476. /*
  477. * AM_DO_FLUSH_I control NOTE: This bit MUST BE ONE for proper
  478. * N3K operation.
  479. */
  480. cfg22.s.flush = 1;
  481. octeon_npi_write32(CVMX_NPI_PCI_CFG22, cfg22.u32);
  482. /*
  483. * MOST Indicates the maximum number of outstanding splits (in -1
  484. * notation) when OCTEON is in PCI-X mode. PCI-X performance is
  485. * affected by the MOST selection. Should generally be written
  486. * with one of 0x3be807, 0x2be807, 0x1be807, or 0x0be807,
  487. * depending on the desired MOST of 3, 2, 1, or 0, respectively.
  488. */
  489. cfg56.u32 = 0;
  490. cfg56.s.pxcid = 7; /* RO - PCI-X Capability ID */
  491. cfg56.s.ncp = 0xe8; /* RO - Next Capability Pointer */
  492. cfg56.s.dpere = 1; /* Data Parity Error Recovery Enable */
  493. cfg56.s.roe = 1; /* Relaxed Ordering Enable */
  494. cfg56.s.mmbc = 1; /* Maximum Memory Byte Count
  495. [0=512B,1=1024B,2=2048B,3=4096B] */
  496. cfg56.s.most = 3; /* Maximum outstanding Split transactions [0=1
  497. .. 7=32] */
  498. octeon_npi_write32(CVMX_NPI_PCI_CFG56, cfg56.u32);
  499. /*
  500. * Affects PCI performance when OCTEON services reads to its
  501. * BAR1/BAR2. Refer to Section 10.6.1. The recommended values are
  502. * 0x22, 0x33, and 0x33 for PCI_READ_CMD_6, PCI_READ_CMD_C, and
  503. * PCI_READ_CMD_E, respectively. Unfortunately due to errata DDR-700,
  504. * these values need to be changed so they won't possibly prefetch off
  505. * of the end of memory if PCI is DMAing a buffer at the end of
  506. * memory. Note that these values differ from their reset values.
  507. */
  508. octeon_npi_write32(CVMX_NPI_PCI_READ_CMD_6, 0x21);
  509. octeon_npi_write32(CVMX_NPI_PCI_READ_CMD_C, 0x31);
  510. octeon_npi_write32(CVMX_NPI_PCI_READ_CMD_E, 0x31);
  511. }
  512. /*
  513. * Initialize the Octeon PCI controller
  514. */
  515. static int __init octeon_pci_setup(void)
  516. {
  517. union cvmx_npi_mem_access_subidx mem_access;
  518. int index;
  519. /* Only these chips have PCI */
  520. if (octeon_has_feature(OCTEON_FEATURE_PCIE))
  521. return 0;
  522. /* Point pcibios_map_irq() to the PCI version of it */
  523. octeon_pcibios_map_irq = octeon_pci_pcibios_map_irq;
  524. /* Only use the big bars on chips that support it */
  525. if (OCTEON_IS_MODEL(OCTEON_CN31XX) ||
  526. OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2) ||
  527. OCTEON_IS_MODEL(OCTEON_CN38XX_PASS1))
  528. octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_SMALL;
  529. else
  530. octeon_dma_bar_type = OCTEON_DMA_BAR_TYPE_BIG;
  531. /* PCI I/O and PCI MEM values */
  532. set_io_port_base(OCTEON_PCI_IOSPACE_BASE);
  533. ioport_resource.start = 0;
  534. ioport_resource.end = OCTEON_PCI_IOSPACE_SIZE - 1;
  535. if (!octeon_is_pci_host()) {
  536. pr_notice("Not in host mode, PCI Controller not initialized\n");
  537. return 0;
  538. }
  539. pr_notice("%s Octeon big bar support\n",
  540. (octeon_dma_bar_type ==
  541. OCTEON_DMA_BAR_TYPE_BIG) ? "Enabling" : "Disabling");
  542. octeon_pci_initialize();
  543. mem_access.u64 = 0;
  544. mem_access.s.esr = 1; /* Endian-Swap on read. */
  545. mem_access.s.esw = 1; /* Endian-Swap on write. */
  546. mem_access.s.nsr = 0; /* No-Snoop on read. */
  547. mem_access.s.nsw = 0; /* No-Snoop on write. */
  548. mem_access.s.ror = 0; /* Relax Read on read. */
  549. mem_access.s.row = 0; /* Relax Order on write. */
  550. mem_access.s.ba = 0; /* PCI Address bits [63:36]. */
  551. cvmx_write_csr(CVMX_NPI_MEM_ACCESS_SUBID3, mem_access.u64);
  552. /*
  553. * Remap the Octeon BAR 2 above all 32 bit devices
  554. * (0x8000000000ul). This is done here so it is remapped
  555. * before the readl()'s below. We don't want BAR2 overlapping
  556. * with BAR0/BAR1 during these reads.
  557. */
  558. octeon_npi_write32(CVMX_NPI_PCI_CFG08, 0);
  559. octeon_npi_write32(CVMX_NPI_PCI_CFG09, 0x80);
  560. /* Disable the BAR1 movable mappings */
  561. for (index = 0; index < 32; index++)
  562. octeon_npi_write32(CVMX_NPI_PCI_BAR1_INDEXX(index), 0);
  563. if (octeon_dma_bar_type == OCTEON_DMA_BAR_TYPE_BIG) {
  564. /* Remap the Octeon BAR 0 to 0-2GB */
  565. octeon_npi_write32(CVMX_NPI_PCI_CFG04, 0);
  566. octeon_npi_write32(CVMX_NPI_PCI_CFG05, 0);
  567. /*
  568. * Remap the Octeon BAR 1 to map 2GB-4GB (minus the
  569. * BAR 1 hole).
  570. */
  571. octeon_npi_write32(CVMX_NPI_PCI_CFG06, 2ul << 30);
  572. octeon_npi_write32(CVMX_NPI_PCI_CFG07, 0);
  573. /* Devices go after BAR1 */
  574. octeon_pci_mem_resource.start =
  575. OCTEON_PCI_MEMSPACE_OFFSET + (4ul << 30) -
  576. (OCTEON_PCI_BAR1_HOLE_SIZE << 20);
  577. octeon_pci_mem_resource.end =
  578. octeon_pci_mem_resource.start + (1ul << 30);
  579. } else {
  580. /* Remap the Octeon BAR 0 to map 128MB-(128MB+4KB) */
  581. octeon_npi_write32(CVMX_NPI_PCI_CFG04, 128ul << 20);
  582. octeon_npi_write32(CVMX_NPI_PCI_CFG05, 0);
  583. /* Remap the Octeon BAR 1 to map 0-128MB */
  584. octeon_npi_write32(CVMX_NPI_PCI_CFG06, 0);
  585. octeon_npi_write32(CVMX_NPI_PCI_CFG07, 0);
  586. /* Devices go after BAR0 */
  587. octeon_pci_mem_resource.start =
  588. OCTEON_PCI_MEMSPACE_OFFSET + (128ul << 20) +
  589. (4ul << 10);
  590. octeon_pci_mem_resource.end =
  591. octeon_pci_mem_resource.start + (1ul << 30);
  592. }
  593. register_pci_controller(&octeon_pci_controller);
  594. /*
  595. * Clear any errors that might be pending from before the bus
  596. * was setup properly.
  597. */
  598. cvmx_write_csr(CVMX_NPI_PCI_INT_SUM2, -1);
  599. return 0;
  600. }
  601. arch_initcall(octeon_pci_setup);