cpci440.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * (C) Copyright 2002
  3. * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <asm/processor.h>
  25. extern void lxt971_no_sleep(void);
  26. long int fixed_sdram( void );
  27. int board_early_init_f (void)
  28. {
  29. uint reg;
  30. /*--------------------------------------------------------------------
  31. * Setup the external bus controller/chip selects
  32. *-------------------------------------------------------------------*/
  33. mtdcr( ebccfga, xbcfg );
  34. reg = mfdcr( ebccfgd );
  35. mtdcr( ebccfgd, reg | 0x04000000 ); /* Set ATC */
  36. mtebc( pb0ap, 0x92015480 ); /* FLASH/SRAM */
  37. mtebc( pb0cr, 0xFF87A000 ); /* BAS=0xff8 8MB R/W 16-bit */
  38. /* test-only: other regs still missing... */
  39. /*--------------------------------------------------------------------
  40. * Setup the interrupt controller polarities, triggers, etc.
  41. *-------------------------------------------------------------------*/
  42. mtdcr( uic0sr, 0xffffffff ); /* clear all */
  43. mtdcr( uic0er, 0x00000000 ); /* disable all */
  44. mtdcr( uic0cr, 0x00000009 ); /* SMI & UIC1 crit are critical */
  45. mtdcr( uic0pr, 0xfffffe13 ); /* per ref-board manual */
  46. mtdcr( uic0tr, 0x01c00008 ); /* per ref-board manual */
  47. mtdcr( uic0vr, 0x00000001 ); /* int31 highest, base=0x000 */
  48. mtdcr( uic0sr, 0xffffffff ); /* clear all */
  49. mtdcr( uic1sr, 0xffffffff ); /* clear all */
  50. mtdcr( uic1er, 0x00000000 ); /* disable all */
  51. mtdcr( uic1cr, 0x00000000 ); /* all non-critical */
  52. mtdcr( uic1pr, 0xffffe0ff ); /* per ref-board manual */
  53. mtdcr( uic1tr, 0x00ffc000 ); /* per ref-board manual */
  54. mtdcr( uic1vr, 0x00000001 ); /* int31 highest, base=0x000 */
  55. mtdcr( uic1sr, 0xffffffff ); /* clear all */
  56. return 0;
  57. }
  58. int checkboard (void)
  59. {
  60. sys_info_t sysinfo;
  61. get_sys_info(&sysinfo);
  62. printf("Board: esd CPCI-440\n");
  63. printf("\tVCO: %lu MHz\n", sysinfo.freqVCOMhz/1000000);
  64. printf("\tCPU: %lu MHz\n", sysinfo.freqProcessor/1000000);
  65. printf("\tPLB: %lu MHz\n", sysinfo.freqPLB/1000000);
  66. printf("\tOPB: %lu MHz\n", sysinfo.freqOPB/1000000);
  67. printf("\tEBC: %lu MHz\n", sysinfo.freqEBC/1000000);
  68. /*
  69. * Disable sleep mode in LXT971
  70. */
  71. lxt971_no_sleep();
  72. return (0);
  73. }
  74. long int initdram (int board_type)
  75. {
  76. long dram_size = 0;
  77. dram_size = fixed_sdram();
  78. return dram_size;
  79. }
  80. /*************************************************************************
  81. * fixed sdram init -- doesn't use serial presence detect.
  82. *
  83. * Assumes: 64 MB, non-ECC, non-registered
  84. * PLB @ 133 MHz
  85. *
  86. ************************************************************************/
  87. long int fixed_sdram( void )
  88. {
  89. uint reg;
  90. #if 1 /* test-only */
  91. /*--------------------------------------------------------------------
  92. * Setup some default
  93. *------------------------------------------------------------------*/
  94. mtsdram( mem_uabba, 0x00000000 ); /* ubba=0 (default) */
  95. mtsdram( mem_slio, 0x00000000 ); /* rdre=0 wrre=0 rarw=0 */
  96. mtsdram( mem_devopt,0x00000000 ); /* dll=0 ds=0 (normal) */
  97. mtsdram( mem_wddctr,0x40000000 ); /* wrcp=0 dcd=0 */
  98. mtsdram( mem_clktr, 0x40000000 ); /* clkp=1 (90 deg wr) dcdt=0 */
  99. /*--------------------------------------------------------------------
  100. * Setup for board-specific specific mem
  101. *------------------------------------------------------------------*/
  102. /*
  103. * Following for CAS Latency = 2.5 @ 133 MHz PLB
  104. */
  105. mtsdram( mem_b0cr, 0x00082001 );/* SDBA=0x000, 64MB, Mode 2, enabled*/
  106. mtsdram( mem_tr0, 0x410a4012 );/* WR=2 WD=1 CL=2.5 PA=3 CP=4 LD=2 */
  107. /* RA=10 RD=3 */
  108. mtsdram( mem_tr1, 0x8080082f );/* SS=T2 SL=STAGE 3 CD=1 CT=0x02f */
  109. mtsdram( mem_rtr, 0x08200000 );/* Rate 15.625 ns @ 133 MHz PLB */
  110. mtsdram( mem_cfg1, 0x00000000 );/* Self-refresh exit, disable PM */
  111. udelay( 400 ); /* Delay 200 usecs (min) */
  112. /*--------------------------------------------------------------------
  113. * Enable the controller, then wait for DCEN to complete
  114. *------------------------------------------------------------------*/
  115. mtsdram( mem_cfg0, 0x86000000 );/* DCEN=1, PMUD=1, 64-bit */
  116. for(;;)
  117. {
  118. mfsdram( mem_mcsts, reg );
  119. if( reg & 0x80000000 )
  120. break;
  121. }
  122. return( 64 * 1024 * 1024 ); /* 64 MB */
  123. #else
  124. return( 32 * 1024 * 1024 ); /* 64 MB */
  125. #endif
  126. }