sc520_cdp.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. /*
  2. *
  3. * (C) Copyright 2002
  4. * Daniel Engström, Omicron Ceti AB <daniel@omicron.se>.
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <pci.h>
  26. #include <asm/io.h>
  27. #include <asm/pci.h>
  28. #include <asm/ic/sc520.h>
  29. #include <asm/ic/pci.h>
  30. #include <ali512x.h>
  31. #include <spi.h>
  32. #include <netdev.h>
  33. DECLARE_GLOBAL_DATA_PTR;
  34. #undef SC520_CDP_DEBUG
  35. #ifdef SC520_CDP_DEBUG
  36. #define PRINTF(fmt,args...) printf (fmt ,##args)
  37. #else
  38. #define PRINTF(fmt,args...)
  39. #endif
  40. /* ------------------------------------------------------------------------- */
  41. /*
  42. * Theory:
  43. * We first set up all IRQs to be non-pci, edge triggered,
  44. * when we later enumerate the pci bus and pci_sc520_fixup_irq() gets
  45. * called we reallocate irqs to the pci bus with sc520_pci_set_irq()
  46. * as needed. Whe choose the irqs to gram from a configurable list
  47. * inside pci_sc520_fixup_irq() (If this list contains stupid irq's
  48. * such as 0 thngas will not work)
  49. */
  50. static void irq_init(void)
  51. {
  52. /* disable global interrupt mode */
  53. sc520_mmcr->picicr = 0x40;
  54. /* set all irqs to edge */
  55. sc520_mmcr->pic_mode[0] = 0x00;
  56. sc520_mmcr->pic_mode[1] = 0x00;
  57. sc520_mmcr->pic_mode[2] = 0x00;
  58. /* active low polarity on PIC interrupt pins,
  59. * active high polarity on all other irq pins */
  60. sc520_mmcr->intpinpol = 0x0000;
  61. /* set irq number mapping */
  62. sc520_mmcr->gp_tmr_int_map[0] = SC520_IRQ_DISABLED; /* disable GP timer 0 INT */
  63. sc520_mmcr->gp_tmr_int_map[1] = SC520_IRQ_DISABLED; /* disable GP timer 1 INT */
  64. sc520_mmcr->gp_tmr_int_map[2] = SC520_IRQ_DISABLED; /* disable GP timer 2 INT */
  65. sc520_mmcr->pit_int_map[0] = SC520_IRQ0; /* Set PIT timer 0 INT to IRQ0 */
  66. sc520_mmcr->pit_int_map[1] = SC520_IRQ_DISABLED; /* disable PIT timer 1 INT */
  67. sc520_mmcr->pit_int_map[2] = SC520_IRQ_DISABLED; /* disable PIT timer 2 INT */
  68. sc520_mmcr->pci_int_map[0] = SC520_IRQ_DISABLED; /* disable PCI INT A */
  69. sc520_mmcr->pci_int_map[1] = SC520_IRQ_DISABLED; /* disable PCI INT B */
  70. sc520_mmcr->pci_int_map[2] = SC520_IRQ_DISABLED; /* disable PCI INT C */
  71. sc520_mmcr->pci_int_map[3] = SC520_IRQ_DISABLED; /* disable PCI INT D */
  72. sc520_mmcr->dmabcintmap = SC520_IRQ_DISABLED; /* disable DMA INT */
  73. sc520_mmcr->ssimap = SC520_IRQ_DISABLED; /* disable Synchronius serial INT */
  74. sc520_mmcr->wdtmap = SC520_IRQ_DISABLED; /* disable Watchdog INT */
  75. sc520_mmcr->rtcmap = SC520_IRQ8; /* Set RTC int to 8 */
  76. sc520_mmcr->wpvmap = SC520_IRQ_DISABLED; /* disable write protect INT */
  77. sc520_mmcr->icemap = SC520_IRQ1; /* Set ICE Debug Serielport INT to IRQ1 */
  78. sc520_mmcr->ferrmap = SC520_IRQ13; /* Set FP error INT to IRQ13 */
  79. if (CONFIG_SYS_USE_SIO_UART) {
  80. sc520_mmcr->uart_int_map[0] = SC520_IRQ_DISABLED; /* disable internal UART1 INT */
  81. sc520_mmcr->uart_int_map[1] = SC520_IRQ_DISABLED; /* disable internal UART2 INT */
  82. sc520_mmcr->gp_int_map[3] = SC520_IRQ3; /* Set GPIRQ3 (ISA IRQ3) to IRQ3 */
  83. sc520_mmcr->gp_int_map[4] = SC520_IRQ4; /* Set GPIRQ4 (ISA IRQ4) to IRQ4 */
  84. } else {
  85. sc520_mmcr->uart_int_map[0] = SC520_IRQ4; /* Set internal UART2 INT to IRQ4 */
  86. sc520_mmcr->uart_int_map[1] = SC520_IRQ3; /* Set internal UART2 INT to IRQ3 */
  87. sc520_mmcr->gp_int_map[3] = SC520_IRQ_DISABLED; /* disable GPIRQ3 (ISA IRQ3) */
  88. sc520_mmcr->gp_int_map[4] = SC520_IRQ_DISABLED; /* disable GPIRQ4 (ISA IRQ4) */
  89. }
  90. sc520_mmcr->gp_int_map[1] = SC520_IRQ1; /* Set GPIRQ1 (SIO IRQ1) to IRQ1 */
  91. sc520_mmcr->gp_int_map[5] = SC520_IRQ5; /* Set GPIRQ5 (ISA IRQ5) to IRQ5 */
  92. sc520_mmcr->gp_int_map[6] = SC520_IRQ6; /* Set GPIRQ6 (ISA IRQ6) to IRQ6 */
  93. sc520_mmcr->gp_int_map[7] = SC520_IRQ7; /* Set GPIRQ7 (ISA IRQ7) to IRQ7 */
  94. sc520_mmcr->gp_int_map[8] = SC520_IRQ8; /* Set GPIRQ8 (SIO IRQ8) to IRQ8 */
  95. sc520_mmcr->gp_int_map[9] = SC520_IRQ9; /* Set GPIRQ9 (ISA IRQ2) to IRQ9 */
  96. sc520_mmcr->gp_int_map[0] = SC520_IRQ11; /* Set GPIRQ0 (ISA IRQ11) to IRQ10 */
  97. sc520_mmcr->gp_int_map[2] = SC520_IRQ12; /* Set GPIRQ2 (ISA IRQ12) to IRQ12 */
  98. sc520_mmcr->gp_int_map[10] = SC520_IRQ14; /* Set GPIRQ10 (ISA IRQ14) to IRQ14 */
  99. sc520_mmcr->pcihostmap = 0x11f; /* Map PCI hostbridge INT to NMI */
  100. sc520_mmcr->eccmap = 0x100; /* Map SDRAM ECC failure INT to NMI */
  101. }
  102. #ifdef CONFIG_PCI
  103. /* PCI stuff */
  104. static void pci_sc520_cdp_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
  105. {
  106. /* a configurable lists of irqs to steal
  107. * when we need one (a board with more pci interrupt pins
  108. * would use a larger table */
  109. static int irq_list[] = {
  110. CONFIG_SYS_FIRST_PCI_IRQ,
  111. CONFIG_SYS_SECOND_PCI_IRQ,
  112. CONFIG_SYS_THIRD_PCI_IRQ,
  113. CONFIG_SYS_FORTH_PCI_IRQ
  114. };
  115. static int next_irq_index=0;
  116. uchar tmp_pin;
  117. int pin;
  118. pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &tmp_pin);
  119. pin = tmp_pin;
  120. pin-=1; /* pci config space use 1-based numbering */
  121. if (-1 == pin) {
  122. return; /* device use no irq */
  123. }
  124. /* map device number + pin to a pin on the sc520 */
  125. switch (PCI_DEV(dev)) {
  126. case 20:
  127. pin+=SC520_PCI_INTA;
  128. break;
  129. case 19:
  130. pin+=SC520_PCI_INTB;
  131. break;
  132. case 18:
  133. pin+=SC520_PCI_INTC;
  134. break;
  135. case 17:
  136. pin+=SC520_PCI_INTD;
  137. break;
  138. default:
  139. return;
  140. }
  141. pin&=3; /* wrap around */
  142. if (sc520_pci_ints[pin] == -1) {
  143. /* re-route one interrupt for us */
  144. if (next_irq_index > 3) {
  145. return;
  146. }
  147. if (pci_sc520_set_irq(pin, irq_list[next_irq_index])) {
  148. return;
  149. }
  150. next_irq_index++;
  151. }
  152. if (-1 != sc520_pci_ints[pin]) {
  153. pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE,
  154. sc520_pci_ints[pin]);
  155. }
  156. PRINTF("fixup_irq: device %d pin %c irq %d\n",
  157. PCI_DEV(dev), 'A' + pin, sc520_pci_ints[pin]);
  158. }
  159. static struct pci_controller sc520_cdp_hose = {
  160. fixup_irq: pci_sc520_cdp_fixup_irq,
  161. };
  162. void pci_init_board(void)
  163. {
  164. pci_sc520_init(&sc520_cdp_hose);
  165. }
  166. #endif
  167. static void silence_uart(int port)
  168. {
  169. outb(0, port+1);
  170. }
  171. void setup_ali_sio(int uart_primary)
  172. {
  173. ali512x_init();
  174. ali512x_set_fdc(ALI_ENABLED, 0x3f2, 6, 0);
  175. ali512x_set_pp(ALI_ENABLED, 0x278, 7, 3);
  176. ali512x_set_uart(ALI_ENABLED, ALI_UART1, uart_primary?0x3f8:0x3e8, 4);
  177. ali512x_set_uart(ALI_ENABLED, ALI_UART2, uart_primary?0x2f8:0x2e8, 3);
  178. ali512x_set_rtc(ALI_DISABLED, 0, 0);
  179. ali512x_set_kbc(ALI_ENABLED, 1, 12);
  180. ali512x_set_cio(ALI_ENABLED);
  181. /* IrDa pins */
  182. ali512x_cio_function(12, 1, 0, 0);
  183. ali512x_cio_function(13, 1, 0, 0);
  184. /* SSI chip select pins */
  185. ali512x_cio_function(14, 0, 0, 0); /* SSI_CS */
  186. ali512x_cio_function(15, 0, 0, 0); /* SSI_MV */
  187. ali512x_cio_function(16, 0, 0, 0); /* SSI_SPI# */
  188. /* Board REV pins */
  189. ali512x_cio_function(20, 0, 0, 1);
  190. ali512x_cio_function(21, 0, 0, 1);
  191. ali512x_cio_function(22, 0, 0, 1);
  192. ali512x_cio_function(23, 0, 0, 1);
  193. }
  194. /* set up the ISA bus timing and system address mappings */
  195. static void bus_init(void)
  196. {
  197. /* set up the GP IO pins */
  198. sc520_mmcr->piopfs31_16 = 0xf7ff; /* set the GPIO pin function 31-16 reg */
  199. sc520_mmcr->piopfs15_0 = 0xffff; /* set the GPIO pin function 15-0 reg */
  200. sc520_mmcr->cspfs = 0xf8; /* set the CS pin function reg */
  201. sc520_mmcr->clksel = 0x70;
  202. sc520_mmcr->gpcsrt = 1; /* set the GP CS offset */
  203. sc520_mmcr->gpcspw = 3; /* set the GP CS pulse width */
  204. sc520_mmcr->gpcsoff = 1; /* set the GP CS offset */
  205. sc520_mmcr->gprdw = 3; /* set the RD pulse width */
  206. sc520_mmcr->gprdoff = 1; /* set the GP RD offset */
  207. sc520_mmcr->gpwrw = 3; /* set the GP WR pulse width */
  208. sc520_mmcr->gpwroff = 1; /* set the GP WR offset */
  209. sc520_mmcr->bootcsctl = 0x1823; /* set up timing of BOOTCS */
  210. sc520_mmcr->romcs1ctl = 0x1823; /* set up timing of ROMCS1 */
  211. sc520_mmcr->romcs2ctl = 0x1823; /* set up timing of ROMCS2 */
  212. /* adjust the memory map:
  213. * by default the first 256MB (0x00000000 - 0x0fffffff) is mapped to SDRAM
  214. * and 256MB to 1G-128k (0x1000000 - 0x37ffffff) is mapped to PCI mmio
  215. * we need to map 1G-128k - 1G (0x38000000 - 0x3fffffff) to CS1 */
  216. /* SRAM = GPCS3 128k @ d0000-effff*/
  217. sc520_mmcr->par[2] = 0x4e00400d;
  218. /* IDE0 = GPCS6 1f0-1f7 */
  219. sc520_mmcr->par[3] = 0x380801f0;
  220. /* IDE1 = GPCS7 3f6 */
  221. sc520_mmcr->par[4] = 0x3c0003f6;
  222. /* bootcs */
  223. sc520_mmcr->par[12] = 0x8bffe800;
  224. /* romcs2 */
  225. sc520_mmcr->par[13] = 0xcbfff000;
  226. /* romcs1 */
  227. sc520_mmcr->par[14] = 0xabfff800;
  228. /* 680 LEDS */
  229. sc520_mmcr->par[15] = 0x30000640;
  230. sc520_mmcr->adddecctl = 0;
  231. asm ("wbinvd\n"); /* Flush cache, req. after setting the unchached attribute ona PAR */
  232. if (CONFIG_SYS_USE_SIO_UART) {
  233. sc520_mmcr->adddecctl = sc520_mmcr->adddecctl | UART2_DIS | UART1_DIS;
  234. setup_ali_sio(1);
  235. } else {
  236. sc520_mmcr->adddecctl = sc520_mmcr->adddecctl & ~(UART2_DIS|UART1_DIS);
  237. setup_ali_sio(0);
  238. silence_uart(0x3e8);
  239. silence_uart(0x2e8);
  240. }
  241. }
  242. /* GPCS usage
  243. * GPCS0 PIO27 (NMI)
  244. * GPCS1 ROMCS1
  245. * GPCS2 ROMCS2
  246. * GPCS3 SRAMCS PAR2
  247. * GPCS4 unused PAR3
  248. * GPCS5 unused PAR4
  249. * GPCS6 IDE
  250. * GPCS7 IDE
  251. */
  252. /* par usage:
  253. * PAR0 legacy_video
  254. * PAR1 PCI ROM mapping
  255. * PAR2 SRAM
  256. * PAR3 IDE
  257. * PAR4 IDE
  258. * PAR5 legacy_video
  259. * PAR6 legacy_video
  260. * PAR7 legacy_video
  261. * PAR8 legacy_video
  262. * PAR9 legacy_video
  263. * PAR10 legacy_video
  264. * PAR11 ISAROM
  265. * PAR12 BOOTCS
  266. * PAR13 ROMCS1
  267. * PAR14 ROMCS2
  268. * PAR15 Port 0x680 LED display
  269. */
  270. /*
  271. * This function should map a chunk of size bytes
  272. * of the system address space to the ISA bus
  273. *
  274. * The function will return the memory address
  275. * as seen by the host (which may very will be the
  276. * same as the bus address)
  277. */
  278. u32 isa_map_rom(u32 bus_addr, int size)
  279. {
  280. u32 par;
  281. PRINTF("isa_map_rom asked to map %d bytes at %x\n",
  282. size, bus_addr);
  283. par = size;
  284. if (par < 0x80000) {
  285. par = 0x80000;
  286. }
  287. par >>= 12;
  288. par--;
  289. par&=0x7f;
  290. par <<= 18;
  291. par |= (bus_addr>>12);
  292. par |= 0x50000000;
  293. PRINTF ("setting PAR11 to %x\n", par);
  294. /* Map rom 0x10000 with PAR1 */
  295. sc520_mmcr->par[11] = par;
  296. return bus_addr;
  297. }
  298. /*
  299. * this function removed any mapping created
  300. * with pci_get_rom_window()
  301. */
  302. void isa_unmap_rom(u32 addr)
  303. {
  304. PRINTF("isa_unmap_rom asked to unmap %x", addr);
  305. if ((addr>>12) == (sc520_mmcr->par[11] & 0x3ffff)) {
  306. sc520_mmcr->par[11] = 0;
  307. PRINTF(" done\n");
  308. return;
  309. }
  310. PRINTF(" not ours\n");
  311. }
  312. #ifdef CONFIG_PCI
  313. #define PCI_ROM_TEMP_SPACE 0x10000
  314. /*
  315. * This function should map a chunk of size bytes
  316. * of the system address space to the PCI bus,
  317. * suitable to map PCI ROMS (bus address < 16M)
  318. * the function will return the host memory address
  319. * which should be converted into a bus address
  320. * before used to configure the PCI rom address
  321. * decoder
  322. */
  323. u32 pci_get_rom_window(struct pci_controller *hose, int size)
  324. {
  325. u32 par;
  326. par = size;
  327. if (par < 0x80000) {
  328. par = 0x80000;
  329. }
  330. par >>= 16;
  331. par--;
  332. par&=0x7ff;
  333. par <<= 14;
  334. par |= (PCI_ROM_TEMP_SPACE>>16);
  335. par |= 0x72000000;
  336. PRINTF ("setting PAR1 to %x\n", par);
  337. /* Map rom 0x10000 with PAR1 */
  338. sc520_mmcr->par[1] = par;
  339. return PCI_ROM_TEMP_SPACE;
  340. }
  341. /*
  342. * this function removed any mapping created
  343. * with pci_get_rom_window()
  344. */
  345. void pci_remove_rom_window(struct pci_controller *hose, u32 addr)
  346. {
  347. PRINTF("pci_remove_rom_window: %x", addr);
  348. if (addr == PCI_ROM_TEMP_SPACE) {
  349. sc520_mmcr->par[1] = 0;
  350. PRINTF(" done\n");
  351. return;
  352. }
  353. PRINTF(" not ours\n");
  354. }
  355. /*
  356. * This function is called in order to provide acces to the
  357. * legacy video I/O ports on the PCI bus.
  358. * After this function accesses to I/O ports 0x3b0-0x3bb and
  359. * 0x3c0-0x3df shuld result in transactions on the PCI bus.
  360. *
  361. */
  362. int pci_enable_legacy_video_ports(struct pci_controller *hose)
  363. {
  364. /* Map video memory to 0xa0000*/
  365. sc520_mmcr->par[0] = 0x7200400a;
  366. /* forward all I/O accesses to PCI */
  367. sc520_mmcr->adddecctl = sc520_mmcr->adddecctl | IO_HOLE_DEST_PCI;
  368. /* so we map away all io ports to pci (only way to access pci io
  369. * below 0x400. But then we have to map back the portions that we dont
  370. * use so that the generate cycles on the GPIO bus where the sio and
  371. * ISA slots are connected, this requre the use of several PAR registers
  372. */
  373. /* bring 0x100 - 0x1ef back to ISA using PAR5 */
  374. sc520_mmcr->par[5] = 0x30ef0100;
  375. /* IDE use 1f0-1f7 */
  376. /* bring 0x1f8 - 0x2f7 back to ISA using PAR6 */
  377. sc520_mmcr->par[6] = 0x30ff01f8;
  378. /* com2 use 2f8-2ff */
  379. /* bring 0x300 - 0x3af back to ISA using PAR7 */
  380. sc520_mmcr->par[7] = 0x30af0300;
  381. /* vga use 3b0-3bb */
  382. /* bring 0x3bc - 0x3bf back to ISA using PAR8 */
  383. sc520_mmcr->par[8] = 0x300303bc;
  384. /* vga use 3c0-3df */
  385. /* bring 0x3e0 - 0x3f5 back to ISA using PAR9 */
  386. sc520_mmcr->par[9] = 0x301503e0;
  387. /* ide use 3f6 */
  388. /* bring 0x3f7 back to ISA using PAR10 */
  389. sc520_mmcr->par[10] = 0x300003f7;
  390. /* com1 use 3f8-3ff */
  391. return 0;
  392. }
  393. #endif
  394. /*
  395. * Miscelaneous platform dependent initialisations
  396. */
  397. int board_init(void)
  398. {
  399. init_sc520();
  400. bus_init();
  401. irq_init();
  402. /* max drive current on SDRAM */
  403. sc520_mmcr->dsctl = 0x0100;
  404. /* enter debug mode after next reset (only if jumper is also set) */
  405. sc520_mmcr->rescfg = 0x08;
  406. /* configure the software timer to 33.333MHz */
  407. sc520_mmcr->swtmrcfg = 0;
  408. gd->bus_clk = 33333000;
  409. return 0;
  410. }
  411. int dram_init(void)
  412. {
  413. init_sc520_dram();
  414. return 0;
  415. }
  416. void show_boot_progress(int val)
  417. {
  418. if (val < -32) val = -1; /* let things compatible */
  419. outb(val&0xff, 0x80);
  420. outb((val&0xff00)>>8, 0x680);
  421. }
  422. int last_stage_init(void)
  423. {
  424. int minor;
  425. int major;
  426. major = minor = 0;
  427. major |= ali512x_cio_in(23)?2:0;
  428. major |= ali512x_cio_in(22)?1:0;
  429. minor |= ali512x_cio_in(21)?2:0;
  430. minor |= ali512x_cio_in(20)?1:0;
  431. printf("AMD SC520 CDP revision %d.%d\n", major, minor);
  432. return 0;
  433. }
  434. void ssi_chip_select(int dev)
  435. {
  436. /* Spunk board: SPI EEPROM is active-low, MW EEPROM and AUX are active high */
  437. switch (dev) {
  438. case 1: /* SPI EEPROM */
  439. ali512x_cio_out(16, 0);
  440. break;
  441. case 2: /* MW EEPROM */
  442. ali512x_cio_out(15, 1);
  443. break;
  444. case 3: /* AUX */
  445. ali512x_cio_out(14, 1);
  446. break;
  447. case 0:
  448. ali512x_cio_out(16, 1);
  449. ali512x_cio_out(15, 0);
  450. ali512x_cio_out(14, 0);
  451. break;
  452. default:
  453. printf("Illegal SSI device requested: %d\n", dev);
  454. }
  455. }
  456. void spi_eeprom_probe(int x)
  457. {
  458. }
  459. int spi_eeprom_read(int x, int offset, uchar *buffer, int len)
  460. {
  461. return 0;
  462. }
  463. int spi_eeprom_write(int x, int offset, uchar *buffer, int len)
  464. {
  465. return 0;
  466. }
  467. void spi_init_f(void)
  468. {
  469. #ifdef CONFIG_SYS_SC520_CDP_USE_SPI
  470. spi_eeprom_probe(1);
  471. #endif
  472. #ifdef CONFIG_SYS_SC520_CDP_USE_MW
  473. mw_eeprom_probe(2);
  474. #endif
  475. }
  476. ssize_t spi_read(uchar *addr, int alen, uchar *buffer, int len)
  477. {
  478. int offset;
  479. int i;
  480. ssize_t res;
  481. offset = 0;
  482. for (i=0;i<alen;i++) {
  483. offset <<= 8;
  484. offset |= addr[i];
  485. }
  486. #ifdef CONFIG_SYS_SC520_CDP_USE_SPI
  487. res = spi_eeprom_read(1, offset, buffer, len);
  488. #endif
  489. #ifdef CONFIG_SYS_SC520_CDP_USE_MW
  490. res = mw_eeprom_read(2, offset, buffer, len);
  491. #endif
  492. #if !defined(CONFIG_SYS_SC520_CDP_USE_SPI) && !defined(CONFIG_SYS_SC520_CDP_USE_MW)
  493. res = 0;
  494. #endif
  495. return res;
  496. }
  497. ssize_t spi_write(uchar *addr, int alen, uchar *buffer, int len)
  498. {
  499. int offset;
  500. int i;
  501. ssize_t res;
  502. offset = 0;
  503. for (i=0;i<alen;i++) {
  504. offset <<= 8;
  505. offset |= addr[i];
  506. }
  507. #ifdef CONFIG_SYS_SC520_CDP_USE_SPI
  508. res = spi_eeprom_write(1, offset, buffer, len);
  509. #endif
  510. #ifdef CONFIG_SYS_SC520_CDP_USE_MW
  511. res = mw_eeprom_write(2, offset, buffer, len);
  512. #endif
  513. #if !defined(CONFIG_SYS_SC520_CDP_USE_SPI) && !defined(CONFIG_SYS_SC520_CDP_USE_MW)
  514. res = 0;
  515. #endif
  516. return res;
  517. }
  518. int board_eth_init(bd_t *bis)
  519. {
  520. return pci_eth_init(bis);
  521. }