cpci440.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. long int fixed_sdram( void );
  26. int board_early_init_f (void)
  27. {
  28. uint reg;
  29. /*--------------------------------------------------------------------
  30. * Setup the external bus controller/chip selects
  31. *-------------------------------------------------------------------*/
  32. mtdcr( ebccfga, xbcfg );
  33. reg = mfdcr( ebccfgd );
  34. mtdcr( ebccfgd, reg | 0x04000000 ); /* Set ATC */
  35. mtebc( pb0ap, 0x92015480 ); /* FLASH/SRAM */
  36. mtebc( pb0cr, 0xFF87A000 ); /* BAS=0xff8 8MB R/W 16-bit */
  37. /* test-only: other regs still missing... */
  38. /*--------------------------------------------------------------------
  39. * Setup the interrupt controller polarities, triggers, etc.
  40. *-------------------------------------------------------------------*/
  41. mtdcr( uic0sr, 0xffffffff ); /* clear all */
  42. mtdcr( uic0er, 0x00000000 ); /* disable all */
  43. mtdcr( uic0cr, 0x00000009 ); /* SMI & UIC1 crit are critical */
  44. mtdcr( uic0pr, 0xfffffe13 ); /* per ref-board manual */
  45. mtdcr( uic0tr, 0x01c00008 ); /* per ref-board manual */
  46. mtdcr( uic0vr, 0x00000001 ); /* int31 highest, base=0x000 */
  47. mtdcr( uic0sr, 0xffffffff ); /* clear all */
  48. mtdcr( uic1sr, 0xffffffff ); /* clear all */
  49. mtdcr( uic1er, 0x00000000 ); /* disable all */
  50. mtdcr( uic1cr, 0x00000000 ); /* all non-critical */
  51. mtdcr( uic1pr, 0xffffe0ff ); /* per ref-board manual */
  52. mtdcr( uic1tr, 0x00ffc000 ); /* per ref-board manual */
  53. mtdcr( uic1vr, 0x00000001 ); /* int31 highest, base=0x000 */
  54. mtdcr( uic1sr, 0xffffffff ); /* clear all */
  55. return 0;
  56. }
  57. int checkboard (void)
  58. {
  59. sys_info_t sysinfo;
  60. get_sys_info(&sysinfo);
  61. printf("Board: esd CPCI-440\n");
  62. printf("\tVCO: %lu MHz\n", sysinfo.freqVCOMhz/1000000);
  63. printf("\tCPU: %lu MHz\n", sysinfo.freqProcessor/1000000);
  64. printf("\tPLB: %lu MHz\n", sysinfo.freqPLB/1000000);
  65. printf("\tOPB: %lu MHz\n", sysinfo.freqOPB/1000000);
  66. printf("\tEPB: %lu MHz\n", sysinfo.freqEPB/1000000);
  67. return (0);
  68. }
  69. long int initdram (int board_type)
  70. {
  71. long dram_size = 0;
  72. dram_size = fixed_sdram();
  73. return dram_size;
  74. }
  75. /*************************************************************************
  76. * fixed sdram init -- doesn't use serial presence detect.
  77. *
  78. * Assumes: 64 MB, non-ECC, non-registered
  79. * PLB @ 133 MHz
  80. *
  81. ************************************************************************/
  82. long int fixed_sdram( void )
  83. {
  84. uint reg;
  85. /*--------------------------------------------------------------------
  86. * Setup some default
  87. *------------------------------------------------------------------*/
  88. mtsdram( mem_uabba, 0x00000000 ); /* ubba=0 (default) */
  89. mtsdram( mem_slio, 0x00000000 ); /* rdre=0 wrre=0 rarw=0 */
  90. mtsdram( mem_devopt,0x00000000 ); /* dll=0 ds=0 (normal) */
  91. mtsdram( mem_wddctr,0x40000000 ); /* wrcp=0 dcd=0 */
  92. mtsdram( mem_clktr, 0x40000000 ); /* clkp=1 (90 deg wr) dcdt=0 */
  93. /*--------------------------------------------------------------------
  94. * Setup for board-specific specific mem
  95. *------------------------------------------------------------------*/
  96. /*
  97. * Following for CAS Latency = 2.5 @ 133 MHz PLB
  98. */
  99. mtsdram( mem_b0cr, 0x00082001 );/* SDBA=0x000, 64MB, Mode 2, enabled*/
  100. mtsdram( mem_tr0, 0x410a4012 );/* WR=2 WD=1 CL=2.5 PA=3 CP=4 LD=2 */
  101. /* RA=10 RD=3 */
  102. mtsdram( mem_tr1, 0x8080082f );/* SS=T2 SL=STAGE 3 CD=1 CT=0x02f */
  103. mtsdram( mem_rtr, 0x08200000 );/* Rate 15.625 ns @ 133 MHz PLB */
  104. mtsdram( mem_cfg1, 0x00000000 );/* Self-refresh exit, disable PM */
  105. udelay( 400 ); /* Delay 200 usecs (min) */
  106. /*--------------------------------------------------------------------
  107. * Enable the controller, then wait for DCEN to complete
  108. *------------------------------------------------------------------*/
  109. mtsdram( mem_cfg0, 0x86000000 );/* DCEN=1, PMUD=1, 64-bit */
  110. for(;;)
  111. {
  112. mfsdram( mem_mcsts, reg );
  113. if( reg & 0x80000000 )
  114. break;
  115. }
  116. return( 64 * 1024 * 1024 ); /* 64 MB */
  117. }