405gp_pci.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  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. pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_1, ptmpcila[0]);
  188. /*--------------------------------------------------------------------------+
  189. * 405GP PCI Target configuration. (PTM2)
  190. *--------------------------------------------------------------------------*/
  191. out32r(PTM2LA, ptmla[1]); /* insert address */
  192. pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2, ptmpcila[1]);
  193. if (ptmms[1] == 0)
  194. {
  195. out32r(PTM2MS, 0x00000001); /* set enable bit */
  196. pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2, 0x00000000);
  197. out32r(PTM2MS, 0x00000000); /* disable */
  198. }
  199. else
  200. {
  201. out32r(PTM2MS, ptmms[1]); /* insert size, enable bit is 1 */
  202. }
  203. /*
  204. * Insert Subsystem Vendor and Device ID
  205. */
  206. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_VENDOR_ID, CFG_PCI_SUBSYS_VENDORID);
  207. #ifdef CONFIG_CPCI405
  208. if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
  209. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID);
  210. else
  211. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID2);
  212. #else
  213. pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_DEVICEID);
  214. #endif
  215. /*
  216. * Insert Class-code
  217. */
  218. #ifdef CFG_PCI_CLASSCODE
  219. pci_write_config_word(PCIDEVID_405GP, PCI_CLASS_SUB_CODE, CFG_PCI_CLASSCODE);
  220. #endif /* CFG_PCI_CLASSCODE */
  221. /*--------------------------------------------------------------------------+
  222. * If PCI speed = 66Mhz, set 66Mhz capable bit.
  223. *--------------------------------------------------------------------------*/
  224. if (bd->bi_pci_busfreq >= 66000000) {
  225. pci_read_config_word(PCIDEVID_405GP, PCI_STATUS, &temp_short);
  226. pci_write_config_word(PCIDEVID_405GP,PCI_STATUS,(temp_short|PCI_STATUS_66MHZ));
  227. }
  228. #if (CONFIG_PCI_HOST != PCI_HOST_ADAPTER)
  229. #if (CONFIG_PCI_HOST == PCI_HOST_AUTO)
  230. if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
  231. #endif
  232. {
  233. /*--------------------------------------------------------------------------+
  234. * Write the 405GP PCI Configuration regs.
  235. * Enable 405GP to be a master on the PCI bus (PMM).
  236. * Enable 405GP to act as a PCI memory target (PTM).
  237. *--------------------------------------------------------------------------*/
  238. pci_read_config_word(PCIDEVID_405GP, PCI_COMMAND, &temp_short);
  239. pci_write_config_word(PCIDEVID_405GP, PCI_COMMAND, temp_short |
  240. PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
  241. }
  242. #endif
  243. #if defined(CONFIG_405EP) /* on ppc405ep vendor id is not set */
  244. pci_write_config_word(PCIDEVID_405GP, PCI_VENDOR_ID, 0x1014); /* IBM */
  245. #endif
  246. /*
  247. * Set HCE bit (Host Configuration Enabled)
  248. */
  249. pci_read_config_word(PCIDEVID_405GP, PCIBRDGOPT2, &temp_short);
  250. pci_write_config_word(PCIDEVID_405GP, PCIBRDGOPT2, (temp_short | 0x0001));
  251. #ifdef CONFIG_PCI_PNP
  252. /*--------------------------------------------------------------------------+
  253. * Scan the PCI bus and configure devices found.
  254. *--------------------------------------------------------------------------*/
  255. #if (CONFIG_PCI_HOST == PCI_HOST_AUTO)
  256. if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
  257. #endif
  258. {
  259. #ifdef CONFIG_PCI_SCAN_SHOW
  260. printf("PCI: Bus Dev VenId DevId Class Int\n");
  261. #endif
  262. hose->last_busno = pci_hose_scan(hose);
  263. }
  264. #endif /* CONFIG_PCI_PNP */
  265. }
  266. /*
  267. * drivers/pci.c skips every host bridge but the 405GP since it could
  268. * be set as an Adapter.
  269. *
  270. * I (Andrew May) don't know what we should do here, but I don't want
  271. * the auto setup of a PCI device disabling what is done pci_405gp_init
  272. * as has happened before.
  273. */
  274. void pci_405gp_setup_bridge(struct pci_controller *hose, pci_dev_t dev,
  275. struct pci_config_table *entry)
  276. {
  277. #ifdef DEBUG
  278. printf("405gp_setup_bridge\n");
  279. #endif
  280. }
  281. /*
  282. *
  283. */
  284. void pci_405gp_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
  285. {
  286. unsigned char int_line = 0xff;
  287. /*
  288. * Write pci interrupt line register (cpci405 specific)
  289. */
  290. switch (PCI_DEV(dev) & 0x03)
  291. {
  292. case 0:
  293. int_line = 27 + 2;
  294. break;
  295. case 1:
  296. int_line = 27 + 3;
  297. break;
  298. case 2:
  299. int_line = 27 + 0;
  300. break;
  301. case 3:
  302. int_line = 27 + 1;
  303. break;
  304. }
  305. pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line);
  306. }
  307. void pci_405gp_setup_vga(struct pci_controller *hose, pci_dev_t dev,
  308. struct pci_config_table *entry)
  309. {
  310. unsigned int cmdstat = 0;
  311. pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_io);
  312. /* always enable io space on vga boards */
  313. pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
  314. cmdstat |= PCI_COMMAND_IO;
  315. pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);
  316. }
  317. #if !(defined(CONFIG_PIP405) || defined (CONFIG_MIP405))
  318. /*
  319. *As is these functs get called out of flash Not a horrible
  320. *thing, but something to keep in mind. (no statics?)
  321. */
  322. static struct pci_config_table pci_405gp_config_table[] = {
  323. /*if VendID is 0 it terminates the table search (ie Walnut)*/
  324. #ifdef CFG_PCI_SUBSYS_VENDORID
  325. {CFG_PCI_SUBSYS_VENDORID, PCI_ANY_ID, PCI_CLASS_BRIDGE_HOST,
  326. PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_bridge},
  327. #endif
  328. {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA,
  329. PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_vga},
  330. {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NOT_DEFINED_VGA,
  331. PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_vga},
  332. { }
  333. };
  334. static struct pci_controller hose = {
  335. fixup_irq: pci_405gp_fixup_irq,
  336. config_table: pci_405gp_config_table,
  337. };
  338. void pci_init_board(void)
  339. {
  340. /*we want the ptrs to RAM not flash (ie don't use init list)*/
  341. hose.fixup_irq = pci_405gp_fixup_irq;
  342. hose.config_table = pci_405gp_config_table;
  343. pci_405gp_init(&hose);
  344. }
  345. #endif
  346. #endif /* CONFIG_PCI */
  347. #endif /* CONFIG_405GP */
  348. /*-----------------------------------------------------------------------------+
  349. * CONFIG_440
  350. *-----------------------------------------------------------------------------*/
  351. #if defined(CONFIG_440) && defined(CONFIG_PCI)
  352. static struct pci_controller ppc440_hose = {0};
  353. void pci_440_init (struct pci_controller *hose)
  354. {
  355. int reg_num = 0;
  356. unsigned long strap;
  357. /*--------------------------------------------------------------------------+
  358. * The PCI initialization sequence enable bit must be set ... if not abort
  359. * pci setup since updating the bit requires chip reset.
  360. *--------------------------------------------------------------------------*/
  361. #if defined (CONFIG_440_GX)
  362. mfsdr(sdr_sdstp1,strap);
  363. if ( (strap & 0x00010000) == 0 ){
  364. printf("PCI: SDR0_STRP1[PISE] not set.\n");
  365. printf("PCI: Configuration aborted.\n");
  366. return;
  367. }
  368. #else
  369. strap = mfdcr(cpc0_strp1);
  370. if( (strap & 0x00040000) == 0 ){
  371. printf("PCI: CPC0_STRP1[PISE] not set.\n");
  372. printf("PCI: Configuration aborted.\n");
  373. return;
  374. }
  375. #endif
  376. /*--------------------------------------------------------------------------+
  377. * PCI controller init
  378. *--------------------------------------------------------------------------*/
  379. hose->first_busno = 0;
  380. hose->last_busno = 0xff;
  381. pci_set_region(hose->regions + reg_num++,
  382. 0x00000000,
  383. PCIX0_IOBASE,
  384. 0x10000,
  385. PCI_REGION_IO);
  386. pci_set_region(hose->regions + reg_num++,
  387. CFG_PCI_TARGBASE,
  388. CFG_PCI_MEMBASE,
  389. 0x10000000,
  390. PCI_REGION_MEM );
  391. hose->region_count = reg_num;
  392. pci_setup_indirect(hose, PCIX0_CFGADR, PCIX0_CFGDATA);
  393. #if defined(CFG_PCI_PRE_INIT)
  394. /* Let board change/modify hose & do initial checks */
  395. if( pci_pre_init (hose) == 0 ){
  396. printf("PCI: Board-specific initialization failed.\n");
  397. printf("PCI: Configuration aborted.\n");
  398. return;
  399. }
  400. #endif
  401. pci_register_hose( hose );
  402. /*--------------------------------------------------------------------------+
  403. * PCI target init
  404. *--------------------------------------------------------------------------*/
  405. #if defined(CFG_PCI_TARGET_INIT)
  406. pci_target_init(hose); /* Let board setup pci target */
  407. #else
  408. out16r( PCIX0_SBSYSVID, CFG_PCI_SUBSYS_VENDORID );
  409. out16r( PCIX0_SBSYSID, CFG_PCI_SUBSYS_ID );
  410. out16r( PCIX0_CLS, 0x00060000 ); /* Bridge, host bridge */
  411. #endif
  412. #if defined(CONFIG_440_GX)
  413. out32r( PCIX0_BRDGOPT1, 0x04000060 ); /* PLB Rq pri highest */
  414. out32r( PCIX0_BRDGOPT2, in32(PCIX0_BRDGOPT2) | 0x83 ); /* Enable host config, clear Timeout, ensure int src1 */
  415. #else
  416. out32r( PCIX0_BRDGOPT1, 0x10000060 ); /* PLB Rq pri highest */
  417. out32r( PCIX0_BRDGOPT2, in32(PCIX0_BRDGOPT2) | 1 ); /* Enable host config */
  418. #endif
  419. /*--------------------------------------------------------------------------+
  420. * PCI master init: default is one 256MB region for PCI memory:
  421. * 0x3_00000000 - 0x3_0FFFFFFF ==> CFG_PCI_MEMBASE
  422. *--------------------------------------------------------------------------*/
  423. #if defined(CFG_PCI_MASTER_INIT)
  424. pci_master_init(hose); /* Let board setup pci master */
  425. #else
  426. out32r( PCIX0_POM0SA, 0 ); /* disable */
  427. out32r( PCIX0_POM1SA, 0 ); /* disable */
  428. out32r( PCIX0_POM2SA, 0 ); /* disable */
  429. out32r( PCIX0_POM0LAL, 0x00000000 );
  430. out32r( PCIX0_POM0LAH, 0x00000003 );
  431. out32r( PCIX0_POM0PCIAL, CFG_PCI_MEMBASE );
  432. out32r( PCIX0_POM0PCIAH, 0x00000000 );
  433. out32r( PCIX0_POM0SA, 0xf0000001 ); /* 256MB, enabled */
  434. out32r( PCIX0_STS, in32r( PCIX0_STS ) & ~0x0000fff8 );
  435. #endif
  436. /*--------------------------------------------------------------------------+
  437. * PCI host configuration -- we don't make any assumptions here ... the
  438. * _board_must_indicate_ what to do -- there's just too many runtime
  439. * scenarios in environments like cPCI, PPMC, etc. to make a determination
  440. * based on hard-coded values or state of arbiter enable.
  441. *--------------------------------------------------------------------------*/
  442. if( is_pci_host(hose) ){
  443. #ifdef CONFIG_PCI_SCAN_SHOW
  444. printf("PCI: Bus Dev VenId DevId Class Int\n");
  445. #endif
  446. out16r( PCIX0_CMD, in16r( PCIX0_CMD ) | PCI_COMMAND_MASTER);
  447. hose->last_busno = pci_hose_scan(hose);
  448. }
  449. }
  450. void pci_init_board(void)
  451. {
  452. pci_440_init (&ppc440_hose);
  453. }
  454. #endif /* CONFIG_440 & CONFIG_PCI */