405gp_pci.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. /*-----------------------------------------------------------------------------+
  2. *
  3. * This source code has been made available to you by IBM on an AS-IS
  4. * basis. Anyone receiving this source is licensed under IBM
  5. * copyrights to use it in any way he or she deems fit, including
  6. * copying it, modifying it, compiling it, and redistributing it either
  7. * with or without modifications. No license under IBM patents or
  8. * patent applications is to be implied by the copyright license.
  9. *
  10. * Any user of this software should understand that IBM cannot provide
  11. * technical support for this software and will not be responsible for
  12. * any consequences resulting from the use of this software.
  13. *
  14. * Any person who transfers this source code or any derivative work
  15. * must include the IBM copyright notice, this paragraph, and the
  16. * preceding two paragraphs in the transferred software.
  17. *
  18. * COPYRIGHT I B M CORPORATION 1995
  19. * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
  20. *-----------------------------------------------------------------------------*/
  21. /*----------------------------------------------------------------------------+
  22. *
  23. * File Name: 405gp_pci.c
  24. *
  25. * Function: Initialization code for the 405GP PCI Configuration regs.
  26. *
  27. * Author: Mark Game
  28. *
  29. * Change Activity-
  30. *
  31. * Date Description of Change BY
  32. * --------- --------------------- ---
  33. * 09-Sep-98 Created MCG
  34. * 02-Nov-98 Removed External arbiter selected message JWB
  35. * 27-Nov-98 Zero out PTMBAR2 and disable in PTM2MS JWB
  36. * 04-Jan-99 Zero out other unused PMM and PTM regs. Change bus scan MCG
  37. * from (0 to n) to (1 to n).
  38. * 17-May-99 Port to Walnut JWB
  39. * 17-Jun-99 Updated for VGA support JWB
  40. * 21-Jun-99 Updated to allow SRAM region to be a target from PCI bus JWB
  41. * 19-Jul-99 Updated for 405GP pass 1 errata #26 (Low PCI subsequent MCG
  42. * target latency timer values are not supported).
  43. * Should be fixed in pass 2.
  44. * 09-Sep-99 Removed use of PTM2 since the SRAM region no longer needs JWB
  45. * to be a PCI target. Zero out PTMBAR2 and disable in PTM2MS.
  46. * 10-Dec-99 Updated PCI_Write_CFG_Reg for pass2 errata #6 JWB
  47. * 11-Jan-00 Ensure PMMxMAs disabled before setting PMMxLAs. This is not
  48. * really required after a reset since PMMxMAs are already
  49. * disabled but is a good practice nonetheless. JWB
  50. * 12-Jun-01 stefan.roese@esd-electronics.com
  51. * - PCI host/adapter handling reworked
  52. * 09-Jul-01 stefan.roese@esd-electronics.com
  53. * - PCI host now configures from device 0 (not 1) to max_dev,
  54. * (host configures itself)
  55. * - On CPCI-405 pci base address and size is generated from
  56. * SDRAM and FLASH size (CFG regs not used anymore)
  57. * - Some minor changes for CPCI-405-A (adapter version)
  58. * 14-Sep-01 stefan.roese@esd-electronics.com
  59. * - CONFIG_PCI_SCAN_SHOW added to print pci devices upon startup
  60. * 28-Sep-01 stefan.roese@esd-electronics.com
  61. * - Changed pci master configuration for linux compatibility
  62. * (no need for bios_fixup() anymore)
  63. * 26-Feb-02 stefan.roese@esd-electronics.com
  64. * - Bug fixed in pci configuration (Andrew May)
  65. * - Removed pci class code init for CPCI405 board
  66. * 15-May-02 stefan.roese@esd-electronics.com
  67. * - New vga device handling
  68. * 29-May-02 stefan.roese@esd-electronics.com
  69. * - PCI class code init added (if defined)
  70. *----------------------------------------------------------------------------*/
  71. #include <common.h>
  72. #include <command.h>
  73. #if !defined(CONFIG_440)
  74. #include <405gp_pci.h>
  75. #endif
  76. #include <asm/processor.h>
  77. #include <pci.h>
  78. #if defined(CONFIG_405GP) || defined(CONFIG_405EP)
  79. #ifdef CONFIG_PCI
  80. /*#define DEBUG*/
  81. /*-----------------------------------------------------------------------------+
  82. * pci_init. Initializes the 405GP PCI Configuration regs.
  83. *-----------------------------------------------------------------------------*/
  84. void pci_405gp_init(struct pci_controller *hose)
  85. {
  86. DECLARE_GLOBAL_DATA_PTR;
  87. int i, reg_num = 0;
  88. bd_t *bd = gd->bd;
  89. unsigned short temp_short;
  90. unsigned long ptmpcila[2] = {CFG_PCI_PTM1PCI, CFG_PCI_PTM2PCI};
  91. #if defined(CONFIG_CPCI405)
  92. unsigned long ptmla[2] = {bd->bi_memstart, bd->bi_flashstart};
  93. unsigned long ptmms[2] = {~(bd->bi_memsize - 1) | 1, ~(bd->bi_flashsize - 1) | 1};
  94. #else
  95. unsigned long ptmla[2] = {CFG_PCI_PTM1LA, CFG_PCI_PTM2LA};
  96. unsigned long ptmms[2] = {CFG_PCI_PTM1MS, CFG_PCI_PTM2MS};
  97. #endif
  98. #if defined(CONFIG_PIP405) || defined (CONFIG_MIP405)
  99. unsigned long pmmla[3] = {0x80000000, 0xA0000000, 0};
  100. unsigned long pmmma[3] = {0xE0000001, 0xE0000001, 0};
  101. unsigned long pmmpcila[3] = {0x80000000, 0x00000000, 0};
  102. unsigned long pmmpciha[3] = {0x00000000, 0x00000000, 0};
  103. #else
  104. unsigned long pmmla[3] = {0x80000000, 0,0};
  105. unsigned long pmmma[3] = {0xC0000001, 0,0};
  106. unsigned long pmmpcila[3] = {0x80000000, 0,0};
  107. unsigned long pmmpciha[3] = {0x00000000, 0,0};
  108. #endif
  109. /*
  110. * Register the hose
  111. */
  112. hose->first_busno = 0;
  113. hose->last_busno = 0xff;
  114. /* ISA/PCI I/O space */
  115. pci_set_region(hose->regions + reg_num++,
  116. MIN_PCI_PCI_IOADDR,
  117. MIN_PLB_PCI_IOADDR,
  118. 0x10000,
  119. PCI_REGION_IO);
  120. /* PCI I/O space */
  121. pci_set_region(hose->regions + reg_num++,
  122. 0x00800000,
  123. 0xe8800000,
  124. 0x03800000,
  125. PCI_REGION_IO);
  126. reg_num = 2;
  127. /* Memory spaces */
  128. for (i=0; i<2; i++)
  129. if (ptmms[i] & 1)
  130. {
  131. if (!i) hose->pci_fb = hose->regions + reg_num;
  132. pci_set_region(hose->regions + reg_num++,
  133. ptmpcila[i], ptmla[i],
  134. ~(ptmms[i] & 0xfffff000) + 1,
  135. PCI_REGION_MEM |
  136. PCI_REGION_MEMORY);
  137. }
  138. /* PCI memory spaces */
  139. for (i=0; i<3; i++)
  140. if (pmmma[i] & 1)
  141. {
  142. pci_set_region(hose->regions + reg_num++,
  143. pmmpcila[i], pmmla[i],
  144. ~(pmmma[i] & 0xfffff000) + 1,
  145. PCI_REGION_MEM);
  146. }
  147. hose->region_count = reg_num;
  148. pci_setup_indirect(hose,
  149. PCICFGADR,
  150. PCICFGDATA);
  151. if (hose->pci_fb)
  152. pciauto_region_init(hose->pci_fb);
  153. pci_register_hose(hose);
  154. /*--------------------------------------------------------------------------+
  155. * 405GP PCI Master configuration.
  156. * Map one 512 MB range of PLB/processor addresses to PCI memory space.
  157. * PLB address 0x80000000-0xBFFFFFFF ==> PCI address 0x80000000-0xBFFFFFFF
  158. * Use byte reversed out routines to handle endianess.
  159. *--------------------------------------------------------------------------*/
  160. out32r(PMM0MA, (pmmma[0]&~0x1)); /* disable, configure PMMxLA, PMMxPCILA first */
  161. out32r(PMM0LA, pmmla[0]);
  162. out32r(PMM0PCILA, pmmpcila[0]);
  163. out32r(PMM0PCIHA, pmmpciha[0]);
  164. out32r(PMM0MA, pmmma[0]);
  165. /*--------------------------------------------------------------------------+
  166. * PMM1 is not used. Initialize them to zero.
  167. *--------------------------------------------------------------------------*/
  168. out32r(PMM1MA, (pmmma[1]&~0x1));
  169. out32r(PMM1LA, pmmla[1]);
  170. out32r(PMM1PCILA, pmmpcila[1]);
  171. out32r(PMM1PCIHA, pmmpciha[1]);
  172. out32r(PMM1MA, pmmma[1]);
  173. /*--------------------------------------------------------------------------+
  174. * PMM2 is not used. Initialize them to zero.
  175. *--------------------------------------------------------------------------*/
  176. out32r(PMM2MA, (pmmma[2]&~0x1));
  177. out32r(PMM2LA, pmmla[2]);
  178. out32r(PMM2PCILA, pmmpcila[2]);
  179. out32r(PMM2PCIHA, pmmpciha[2]);
  180. out32r(PMM2MA, pmmma[2]);
  181. /*--------------------------------------------------------------------------+
  182. * 405GP PCI Target configuration. (PTM1)
  183. * Note: PTM1MS is hardwire enabled but we set the enable bit anyway.
  184. *--------------------------------------------------------------------------*/
  185. out32r(PTM1LA, ptmla[0]); /* insert address */
  186. out32r(PTM1MS, ptmms[0]); /* insert size, enable bit is 1 */
  187. /*--------------------------------------------------------------------------+
  188. * 405GP PCI Target configuration. (PTM2)
  189. *--------------------------------------------------------------------------*/
  190. out32r(PTM2LA, ptmla[1]); /* insert address */
  191. if (ptmms[1] == 0)
  192. {
  193. out32r(PTM2MS, 0x00000001); /* set enable bit */
  194. pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2, 0x00000000);
  195. out32r(PTM2MS, 0x00000000); /* disable */
  196. }
  197. else
  198. {
  199. out32r(PTM2MS, ptmms[1]); /* insert size, enable bit is 1 */
  200. }
  201. /*
  202. * Insert Subsystem Vendor and Device ID
  203. */
  204. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_VENDOR_ID, CFG_PCI_SUBSYS_VENDORID);
  205. #ifdef CONFIG_CPCI405
  206. if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
  207. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID);
  208. else
  209. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID2);
  210. #else
  211. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID);
  212. #endif
  213. /*
  214. * Insert Class-code
  215. */
  216. #ifdef CFG_PCI_CLASSCODE
  217. pci_write_config_word(PCIDEVID_405GP, PCI_CLASS_SUB_CODE, CFG_PCI_CLASSCODE);
  218. #endif /* CFG_PCI_CLASSCODE */
  219. /*--------------------------------------------------------------------------+
  220. * If PCI speed = 66Mhz, set 66Mhz capable bit.
  221. *--------------------------------------------------------------------------*/
  222. if (bd->bi_pci_busfreq >= 66000000) {
  223. pci_read_config_word(PCIDEVID_405GP, PCI_STATUS, &temp_short);
  224. pci_write_config_word(PCIDEVID_405GP,PCI_STATUS,(temp_short|PCI_STATUS_66MHZ));
  225. }
  226. #if (CONFIG_PCI_HOST != PCI_HOST_ADAPTER)
  227. #if (CONFIG_PCI_HOSE == PCI_HOST_AUTO)
  228. if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
  229. #endif
  230. {
  231. /*--------------------------------------------------------------------------+
  232. * Write the 405GP PCI Configuration regs.
  233. * Enable 405GP to be a master on the PCI bus (PMM).
  234. * Enable 405GP to act as a PCI memory target (PTM).
  235. *--------------------------------------------------------------------------*/
  236. pci_read_config_word(PCIDEVID_405GP, PCI_COMMAND, &temp_short);
  237. pci_write_config_word(PCIDEVID_405GP, PCI_COMMAND, temp_short |
  238. PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
  239. }
  240. #endif
  241. /*
  242. * Set HCE bit (Host Configuration Enabled)
  243. */
  244. pci_read_config_word(PCIDEVID_405GP, PCIBRDGOPT2, &temp_short);
  245. pci_write_config_word(PCIDEVID_405GP, PCIBRDGOPT2, (temp_short | 0x0001));
  246. #ifdef CONFIG_PCI_PNP
  247. /*--------------------------------------------------------------------------+
  248. * Scan the PCI bus and configure devices found.
  249. *--------------------------------------------------------------------------*/
  250. #if (CONFIG_PCI_HOST == PCI_HOST_AUTO)
  251. if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
  252. #endif
  253. {
  254. #ifdef CONFIG_PCI_SCAN_SHOW
  255. printf("PCI: Bus Dev VenId DevId Class Int\n");
  256. #endif
  257. hose->last_busno = pci_hose_scan(hose);
  258. }
  259. #endif /* CONFIG_PCI_PNP */
  260. }
  261. /*
  262. * drivers/pci.c skips every host bridge but the 405GP since it could
  263. * be set as an Adapter.
  264. *
  265. * I (Andrew May) don't know what we should do here, but I don't want
  266. * the auto setup of a PCI device disabling what is done pci_405gp_init
  267. * as has happened before.
  268. */
  269. void pci_405gp_setup_bridge(struct pci_controller *hose, pci_dev_t dev,
  270. struct pci_config_table *entry)
  271. {
  272. #ifdef DEBUG
  273. printf("405gp_setup_bridge\n");
  274. #endif
  275. }
  276. /*
  277. *
  278. */
  279. void pci_405gp_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
  280. {
  281. unsigned char int_line = 0xff;
  282. /*
  283. * Write pci interrupt line register (cpci405 specific)
  284. */
  285. switch (PCI_DEV(dev) & 0x03)
  286. {
  287. case 0:
  288. int_line = 27 + 2;
  289. break;
  290. case 1:
  291. int_line = 27 + 3;
  292. break;
  293. case 2:
  294. int_line = 27 + 0;
  295. break;
  296. case 3:
  297. int_line = 27 + 1;
  298. break;
  299. }
  300. pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line);
  301. }
  302. void pci_405gp_setup_vga(struct pci_controller *hose, pci_dev_t dev,
  303. struct pci_config_table *entry)
  304. {
  305. unsigned int cmdstat = 0;
  306. pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_io);
  307. /* always enable io space on vga boards */
  308. pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
  309. cmdstat |= PCI_COMMAND_IO;
  310. pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);
  311. }
  312. #if !(defined(CONFIG_PIP405) || defined (CONFIG_MIP405))
  313. /*
  314. *As is these functs get called out of flash Not a horrible
  315. *thing, but something to keep in mind. (no statics?)
  316. */
  317. static struct pci_config_table pci_405gp_config_table[] = {
  318. /*if VendID is 0 it terminates the table search (ie Walnut)*/
  319. #if CFG_PCI_SUBSYS_VENDORID
  320. {CFG_PCI_SUBSYS_VENDORID, PCI_ANY_ID, PCI_CLASS_BRIDGE_HOST,
  321. PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_bridge},
  322. #endif
  323. {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA,
  324. PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_vga},
  325. {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NOT_DEFINED_VGA,
  326. PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_vga},
  327. { }
  328. };
  329. static struct pci_controller hose = {
  330. fixup_irq: pci_405gp_fixup_irq,
  331. config_table: pci_405gp_config_table,
  332. };
  333. void pci_init_board(void)
  334. {
  335. /*we want the ptrs to RAM not flash (ie don't use init list)*/
  336. hose.fixup_irq = pci_405gp_fixup_irq;
  337. hose.config_table = pci_405gp_config_table;
  338. pci_405gp_init(&hose);
  339. }
  340. #endif
  341. #endif /* CONFIG_PCI */
  342. #endif /* CONFIG_405GP */
  343. /*-----------------------------------------------------------------------------+
  344. * CONFIG_440
  345. *-----------------------------------------------------------------------------*/
  346. #if defined(CONFIG_440) && defined(CONFIG_PCI)
  347. static struct pci_controller ppc440_hose = {0};
  348. void pci_440_init (struct pci_controller *hose)
  349. {
  350. int reg_num = 0;
  351. unsigned long strap;
  352. /*--------------------------------------------------------------------------+
  353. * The PCI initialization sequence enable bit must be set ... if not abort
  354. * pci setup since updating the bit requires chip reset.
  355. *--------------------------------------------------------------------------*/
  356. strap = mfdcr(cpc0_strp1);
  357. if( (strap & 0x00040000) == 0 ){
  358. printf("PCI: CPC0_STRP1[PISE] not set.\n");
  359. printf("PCI: Configuration aborted.\n");
  360. return;
  361. }
  362. /*--------------------------------------------------------------------------+
  363. * PCI controller init
  364. *--------------------------------------------------------------------------*/
  365. hose->first_busno = 0;
  366. hose->last_busno = 0xff;
  367. pci_set_region(hose->regions + reg_num++,
  368. 0x00000000,
  369. PCIX0_IOBASE,
  370. 0x10000,
  371. PCI_REGION_IO);
  372. pci_set_region(hose->regions + reg_num++,
  373. CFG_PCI_TARGBASE,
  374. CFG_PCI_MEMBASE,
  375. 0x10000000,
  376. PCI_REGION_MEM );
  377. hose->region_count = reg_num;
  378. pci_setup_indirect(hose, PCIX0_CFGADR, PCIX0_CFGDATA);
  379. #if defined(CFG_PCI_PRE_INIT)
  380. /* Let board change/modify hose & do initial checks */
  381. if( pci_pre_init (hose) == 0 ){
  382. printf("PCI: Board-specific initialization failed.\n");
  383. printf("PCI: Configuration aborted.\n");
  384. return;
  385. }
  386. #endif
  387. pci_register_hose( hose );
  388. /*--------------------------------------------------------------------------+
  389. * PCI target init
  390. *--------------------------------------------------------------------------*/
  391. #if defined(CFG_PCI_TARGET_INIT)
  392. pci_target_init(hose); /* Let board setup pci target */
  393. #else
  394. out16r( PCIX0_SBSYSVID, CFG_PCI_SUBSYS_VENDORID );
  395. out16r( PCIX0_SBSYSID, CFG_PCI_SUBSYS_ID );
  396. out16r( PCIX0_CLS, 0x00060000 ); /* Bridge, host bridge */
  397. #endif
  398. out32r( PCIX0_BRDGOPT1, 0x10000060 ); /* PLB Rq pri highest */
  399. out32r( PCIX0_BRDGOPT2, in32(PCIX0_BRDGOPT2) | 1 ); /* Enable host config */
  400. /*--------------------------------------------------------------------------+
  401. * PCI master init: default is one 256MB region for PCI memory:
  402. * 0x3_00000000 - 0x3_0FFFFFFF ==> CFG_PCI_MEMBASE
  403. *--------------------------------------------------------------------------*/
  404. #if defined(CFG_PCI_MASTER_INIT)
  405. pci_master_init(hose); /* Let board setup pci master */
  406. #else
  407. out32r( PCIX0_POM0SA, 0 ); /* disable */
  408. out32r( PCIX0_POM1SA, 0 ); /* disable */
  409. out32r( PCIX0_POM2SA, 0 ); /* disable */
  410. out32r( PCIX0_POM0LAL, 0x00000000 );
  411. out32r( PCIX0_POM0LAH, 0x00000003 );
  412. out32r( PCIX0_POM0PCIAL, CFG_PCI_MEMBASE );
  413. out32r( PCIX0_POM0PCIAH, 0x00000000 );
  414. out32r( PCIX0_POM0SA, 0xf0000001 ); /* 256MB, enabled */
  415. out32r( PCIX0_STS, in32r( PCIX0_STS ) & ~0x0000fff8 );
  416. #endif
  417. /*--------------------------------------------------------------------------+
  418. * PCI host configuration -- we don't make any assumptions here ... the
  419. * _board_must_indicate_ what to do -- there's just too many runtime
  420. * scenarios in environments like cPCI, PPMC, etc. to make a determination
  421. * based on hard-coded values or state of arbiter enable.
  422. *--------------------------------------------------------------------------*/
  423. if( is_pci_host(hose) ){
  424. #ifdef CONFIG_PCI_SCAN_SHOW
  425. printf("PCI: Bus Dev VenId DevId Class Int\n");
  426. #endif
  427. out16r( PCIX0_CMD, in16r( PCIX0_CMD ) | PCI_COMMAND_MASTER);
  428. hose->last_busno = pci_hose_scan(hose);
  429. }
  430. }
  431. void pci_init_board(void)
  432. {
  433. pci_440_init (&ppc440_hose);
  434. }
  435. #endif /* CONFIG_440 & CONFIG_PCI */