sc520_cdp.c 16 KB

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