sc520_cdp.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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 <asm/io.h>
  26. #include <asm/ic/sc520.h>
  27. #include <ali512x.h>
  28. #include <spi.h>
  29. #include <netdev.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. #undef SC520_CDP_DEBUG
  32. #ifdef SC520_CDP_DEBUG
  33. #define PRINTF(fmt,args...) printf (fmt ,##args)
  34. #else
  35. #define PRINTF(fmt,args...)
  36. #endif
  37. /* ------------------------------------------------------------------------- */
  38. /*
  39. * Theory:
  40. * We first set up all IRQs to be non-pci, edge triggered,
  41. * when we later enumerate the pci bus and pci_sc520_fixup_irq() gets
  42. * called we reallocate irqs to the pci bus with sc520_pci_set_irq()
  43. * as needed. Whe choose the irqs to gram from a configurable list
  44. * inside pci_sc520_fixup_irq() (If this list contains stupid irq's
  45. * such as 0 thngas will not work)
  46. */
  47. static void irq_init(void)
  48. {
  49. /* disable global interrupt mode */
  50. sc520_mmcr->picicr = 0x40;
  51. /* set all irqs to edge */
  52. sc520_mmcr->pic_mode[0] = 0x00;
  53. sc520_mmcr->pic_mode[1] = 0x00;
  54. sc520_mmcr->pic_mode[2] = 0x00;
  55. /* active low polarity on PIC interrupt pins,
  56. * active high polarity on all other irq pins */
  57. sc520_mmcr->intpinpol = 0x0000;
  58. /* set irq number mapping */
  59. sc520_mmcr->gp_tmr_int_map[0] = SC520_IRQ_DISABLED; /* disable GP timer 0 INT */
  60. sc520_mmcr->gp_tmr_int_map[1] = SC520_IRQ_DISABLED; /* disable GP timer 1 INT */
  61. sc520_mmcr->gp_tmr_int_map[2] = SC520_IRQ_DISABLED; /* disable GP timer 2 INT */
  62. sc520_mmcr->pit_int_map[0] = SC520_IRQ0; /* Set PIT timer 0 INT to IRQ0 */
  63. sc520_mmcr->pit_int_map[1] = SC520_IRQ_DISABLED; /* disable PIT timer 1 INT */
  64. sc520_mmcr->pit_int_map[2] = SC520_IRQ_DISABLED; /* disable PIT timer 2 INT */
  65. sc520_mmcr->pci_int_map[0] = SC520_IRQ_DISABLED; /* disable PCI INT A */
  66. sc520_mmcr->pci_int_map[1] = SC520_IRQ_DISABLED; /* disable PCI INT B */
  67. sc520_mmcr->pci_int_map[2] = SC520_IRQ_DISABLED; /* disable PCI INT C */
  68. sc520_mmcr->pci_int_map[3] = SC520_IRQ_DISABLED; /* disable PCI INT D */
  69. sc520_mmcr->dmabcintmap = SC520_IRQ_DISABLED; /* disable DMA INT */
  70. sc520_mmcr->ssimap = SC520_IRQ_DISABLED; /* disable Synchronius serial INT */
  71. sc520_mmcr->wdtmap = SC520_IRQ_DISABLED; /* disable Watchdog INT */
  72. sc520_mmcr->rtcmap = SC520_IRQ8; /* Set RTC int to 8 */
  73. sc520_mmcr->wpvmap = SC520_IRQ_DISABLED; /* disable write protect INT */
  74. sc520_mmcr->icemap = SC520_IRQ1; /* Set ICE Debug Serielport INT to IRQ1 */
  75. sc520_mmcr->ferrmap = SC520_IRQ13; /* Set FP error INT to IRQ13 */
  76. if (CONFIG_SYS_USE_SIO_UART) {
  77. sc520_mmcr->uart_int_map[0] = SC520_IRQ_DISABLED; /* disable internal UART1 INT */
  78. sc520_mmcr->uart_int_map[1] = SC520_IRQ_DISABLED; /* disable internal UART2 INT */
  79. sc520_mmcr->gp_int_map[3] = SC520_IRQ3; /* Set GPIRQ3 (ISA IRQ3) to IRQ3 */
  80. sc520_mmcr->gp_int_map[4] = SC520_IRQ4; /* Set GPIRQ4 (ISA IRQ4) to IRQ4 */
  81. } else {
  82. sc520_mmcr->uart_int_map[0] = SC520_IRQ4; /* Set internal UART2 INT to IRQ4 */
  83. sc520_mmcr->uart_int_map[1] = SC520_IRQ3; /* Set internal UART2 INT to IRQ3 */
  84. sc520_mmcr->gp_int_map[3] = SC520_IRQ_DISABLED; /* disable GPIRQ3 (ISA IRQ3) */
  85. sc520_mmcr->gp_int_map[4] = SC520_IRQ_DISABLED; /* disable GPIRQ4 (ISA IRQ4) */
  86. }
  87. sc520_mmcr->gp_int_map[1] = SC520_IRQ1; /* Set GPIRQ1 (SIO IRQ1) to IRQ1 */
  88. sc520_mmcr->gp_int_map[5] = SC520_IRQ5; /* Set GPIRQ5 (ISA IRQ5) to IRQ5 */
  89. sc520_mmcr->gp_int_map[6] = SC520_IRQ6; /* Set GPIRQ6 (ISA IRQ6) to IRQ6 */
  90. sc520_mmcr->gp_int_map[7] = SC520_IRQ7; /* Set GPIRQ7 (ISA IRQ7) to IRQ7 */
  91. sc520_mmcr->gp_int_map[8] = SC520_IRQ8; /* Set GPIRQ8 (SIO IRQ8) to IRQ8 */
  92. sc520_mmcr->gp_int_map[9] = SC520_IRQ9; /* Set GPIRQ9 (ISA IRQ2) to IRQ9 */
  93. sc520_mmcr->gp_int_map[0] = SC520_IRQ11; /* Set GPIRQ0 (ISA IRQ11) to IRQ10 */
  94. sc520_mmcr->gp_int_map[2] = SC520_IRQ12; /* Set GPIRQ2 (ISA IRQ12) to IRQ12 */
  95. sc520_mmcr->gp_int_map[10] = SC520_IRQ14; /* Set GPIRQ10 (ISA IRQ14) to IRQ14 */
  96. sc520_mmcr->pcihostmap = 0x11f; /* Map PCI hostbridge INT to NMI */
  97. sc520_mmcr->eccmap = 0x100; /* Map SDRAM ECC failure INT to NMI */
  98. }
  99. static void silence_uart(int port)
  100. {
  101. outb(0, port+1);
  102. }
  103. void setup_ali_sio(int uart_primary)
  104. {
  105. ali512x_init();
  106. ali512x_set_fdc(ALI_ENABLED, 0x3f2, 6, 0);
  107. ali512x_set_pp(ALI_ENABLED, 0x278, 7, 3);
  108. ali512x_set_uart(ALI_ENABLED, ALI_UART1, uart_primary?0x3f8:0x3e8, 4);
  109. ali512x_set_uart(ALI_ENABLED, ALI_UART2, uart_primary?0x2f8:0x2e8, 3);
  110. ali512x_set_rtc(ALI_DISABLED, 0, 0);
  111. ali512x_set_kbc(ALI_ENABLED, 1, 12);
  112. ali512x_set_cio(ALI_ENABLED);
  113. /* IrDa pins */
  114. ali512x_cio_function(12, 1, 0, 0);
  115. ali512x_cio_function(13, 1, 0, 0);
  116. /* SSI chip select pins */
  117. ali512x_cio_function(14, 0, 0, 0); /* SSI_CS */
  118. ali512x_cio_function(15, 0, 0, 0); /* SSI_MV */
  119. ali512x_cio_function(16, 0, 0, 0); /* SSI_SPI# */
  120. /* Board REV pins */
  121. ali512x_cio_function(20, 0, 0, 1);
  122. ali512x_cio_function(21, 0, 0, 1);
  123. ali512x_cio_function(22, 0, 0, 1);
  124. ali512x_cio_function(23, 0, 0, 1);
  125. }
  126. /* set up the ISA bus timing and system address mappings */
  127. static void bus_init(void)
  128. {
  129. /* set up the GP IO pins */
  130. sc520_mmcr->piopfs31_16 = 0xf7ff; /* set the GPIO pin function 31-16 reg */
  131. sc520_mmcr->piopfs15_0 = 0xffff; /* set the GPIO pin function 15-0 reg */
  132. sc520_mmcr->cspfs = 0xf8; /* set the CS pin function reg */
  133. sc520_mmcr->clksel = 0x70;
  134. sc520_mmcr->gpcsrt = 1; /* set the GP CS offset */
  135. sc520_mmcr->gpcspw = 3; /* set the GP CS pulse width */
  136. sc520_mmcr->gpcsoff = 1; /* set the GP CS offset */
  137. sc520_mmcr->gprdw = 3; /* set the RD pulse width */
  138. sc520_mmcr->gprdoff = 1; /* set the GP RD offset */
  139. sc520_mmcr->gpwrw = 3; /* set the GP WR pulse width */
  140. sc520_mmcr->gpwroff = 1; /* set the GP WR offset */
  141. sc520_mmcr->bootcsctl = 0x1823; /* set up timing of BOOTCS */
  142. sc520_mmcr->romcs1ctl = 0x1823; /* set up timing of ROMCS1 */
  143. sc520_mmcr->romcs2ctl = 0x1823; /* set up timing of ROMCS2 */
  144. /* adjust the memory map:
  145. * by default the first 256MB (0x00000000 - 0x0fffffff) is mapped to SDRAM
  146. * and 256MB to 1G-128k (0x1000000 - 0x37ffffff) is mapped to PCI mmio
  147. * we need to map 1G-128k - 1G (0x38000000 - 0x3fffffff) to CS1 */
  148. /* SRAM = GPCS3 128k @ d0000-effff*/
  149. sc520_mmcr->par[2] = 0x4e00400d;
  150. /* IDE0 = GPCS6 1f0-1f7 */
  151. sc520_mmcr->par[3] = 0x380801f0;
  152. /* IDE1 = GPCS7 3f6 */
  153. sc520_mmcr->par[4] = 0x3c0003f6;
  154. /* bootcs */
  155. sc520_mmcr->par[12] = 0x8bffe800;
  156. /* romcs2 */
  157. sc520_mmcr->par[13] = 0xcbfff000;
  158. /* romcs1 */
  159. sc520_mmcr->par[14] = 0xabfff800;
  160. /* 680 LEDS */
  161. sc520_mmcr->par[15] = 0x30000640;
  162. sc520_mmcr->adddecctl = 0;
  163. asm ("wbinvd\n"); /* Flush cache, req. after setting the unchached attribute ona PAR */
  164. if (CONFIG_SYS_USE_SIO_UART) {
  165. sc520_mmcr->adddecctl = sc520_mmcr->adddecctl | UART2_DIS | UART1_DIS;
  166. setup_ali_sio(1);
  167. } else {
  168. sc520_mmcr->adddecctl = sc520_mmcr->adddecctl & ~(UART2_DIS|UART1_DIS);
  169. setup_ali_sio(0);
  170. silence_uart(0x3e8);
  171. silence_uart(0x2e8);
  172. }
  173. }
  174. /* GPCS usage
  175. * GPCS0 PIO27 (NMI)
  176. * GPCS1 ROMCS1
  177. * GPCS2 ROMCS2
  178. * GPCS3 SRAMCS PAR2
  179. * GPCS4 unused PAR3
  180. * GPCS5 unused PAR4
  181. * GPCS6 IDE
  182. * GPCS7 IDE
  183. */
  184. /* par usage:
  185. * PAR0 legacy_video
  186. * PAR1 PCI ROM mapping
  187. * PAR2 SRAM
  188. * PAR3 IDE
  189. * PAR4 IDE
  190. * PAR5 legacy_video
  191. * PAR6 legacy_video
  192. * PAR7 legacy_video
  193. * PAR8 legacy_video
  194. * PAR9 legacy_video
  195. * PAR10 legacy_video
  196. * PAR11 ISAROM
  197. * PAR12 BOOTCS
  198. * PAR13 ROMCS1
  199. * PAR14 ROMCS2
  200. * PAR15 Port 0x680 LED display
  201. */
  202. /*
  203. * Miscelaneous platform dependent initialisations
  204. */
  205. int board_init(void)
  206. {
  207. init_sc520();
  208. bus_init();
  209. irq_init();
  210. /* max drive current on SDRAM */
  211. sc520_mmcr->dsctl = 0x0100;
  212. /* enter debug mode after next reset (only if jumper is also set) */
  213. sc520_mmcr->rescfg = 0x08;
  214. /* configure the software timer to 33.333MHz */
  215. sc520_mmcr->swtmrcfg = 0;
  216. gd->bus_clk = 33333000;
  217. return 0;
  218. }
  219. int dram_init(void)
  220. {
  221. init_sc520_dram();
  222. return 0;
  223. }
  224. void show_boot_progress(int val)
  225. {
  226. if (val < -32) val = -1; /* let things compatible */
  227. outb(val&0xff, 0x80);
  228. outb((val&0xff00)>>8, 0x680);
  229. }
  230. int last_stage_init(void)
  231. {
  232. int minor;
  233. int major;
  234. major = minor = 0;
  235. major |= ali512x_cio_in(23)?2:0;
  236. major |= ali512x_cio_in(22)?1:0;
  237. minor |= ali512x_cio_in(21)?2:0;
  238. minor |= ali512x_cio_in(20)?1:0;
  239. printf("AMD SC520 CDP revision %d.%d\n", major, minor);
  240. return 0;
  241. }
  242. void ssi_chip_select(int dev)
  243. {
  244. /* Spunk board: SPI EEPROM is active-low, MW EEPROM and AUX are active high */
  245. switch (dev) {
  246. case 1: /* SPI EEPROM */
  247. ali512x_cio_out(16, 0);
  248. break;
  249. case 2: /* MW EEPROM */
  250. ali512x_cio_out(15, 1);
  251. break;
  252. case 3: /* AUX */
  253. ali512x_cio_out(14, 1);
  254. break;
  255. case 0:
  256. ali512x_cio_out(16, 1);
  257. ali512x_cio_out(15, 0);
  258. ali512x_cio_out(14, 0);
  259. break;
  260. default:
  261. printf("Illegal SSI device requested: %d\n", dev);
  262. }
  263. }
  264. void spi_eeprom_probe(int x)
  265. {
  266. }
  267. int spi_eeprom_read(int x, int offset, uchar *buffer, int len)
  268. {
  269. return 0;
  270. }
  271. int spi_eeprom_write(int x, int offset, uchar *buffer, int len)
  272. {
  273. return 0;
  274. }
  275. void spi_init_f(void)
  276. {
  277. #ifdef CONFIG_SYS_SC520_CDP_USE_SPI
  278. spi_eeprom_probe(1);
  279. #endif
  280. #ifdef CONFIG_SYS_SC520_CDP_USE_MW
  281. mw_eeprom_probe(2);
  282. #endif
  283. }
  284. ssize_t spi_read(uchar *addr, int alen, uchar *buffer, int len)
  285. {
  286. int offset;
  287. int i;
  288. ssize_t res;
  289. offset = 0;
  290. for (i=0;i<alen;i++) {
  291. offset <<= 8;
  292. offset |= addr[i];
  293. }
  294. #ifdef CONFIG_SYS_SC520_CDP_USE_SPI
  295. res = spi_eeprom_read(1, offset, buffer, len);
  296. #endif
  297. #ifdef CONFIG_SYS_SC520_CDP_USE_MW
  298. res = mw_eeprom_read(2, offset, buffer, len);
  299. #endif
  300. #if !defined(CONFIG_SYS_SC520_CDP_USE_SPI) && !defined(CONFIG_SYS_SC520_CDP_USE_MW)
  301. res = 0;
  302. #endif
  303. return res;
  304. }
  305. ssize_t spi_write(uchar *addr, int alen, uchar *buffer, int len)
  306. {
  307. int offset;
  308. int i;
  309. ssize_t res;
  310. offset = 0;
  311. for (i=0;i<alen;i++) {
  312. offset <<= 8;
  313. offset |= addr[i];
  314. }
  315. #ifdef CONFIG_SYS_SC520_CDP_USE_SPI
  316. res = spi_eeprom_write(1, offset, buffer, len);
  317. #endif
  318. #ifdef CONFIG_SYS_SC520_CDP_USE_MW
  319. res = mw_eeprom_write(2, offset, buffer, len);
  320. #endif
  321. #if !defined(CONFIG_SYS_SC520_CDP_USE_SPI) && !defined(CONFIG_SYS_SC520_CDP_USE_MW)
  322. res = 0;
  323. #endif
  324. return res;
  325. }
  326. int board_eth_init(bd_t *bis)
  327. {
  328. return pci_eth_init(bis);
  329. }