init.S 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*------------------------------------------------------------------------------+ */
  2. /* */
  3. /* This source code is dual-licensed. You may use it under the terms */
  4. /* of the GNU General Public License version 2, or under the license */
  5. /* below. */
  6. /* */
  7. /* This source code has been made available to you by IBM on an AS-IS */
  8. /* basis. Anyone receiving this source is licensed under IBM */
  9. /* copyrights to use it in any way he or she deems fit, including */
  10. /* copying it, modifying it, compiling it, and redistributing it either */
  11. /* with or without modifications. No license under IBM patents or */
  12. /* patent applications is to be implied by the copyright license. */
  13. /* */
  14. /* Any user of this software should understand that IBM cannot provide */
  15. /* technical support for this software and will not be responsible for */
  16. /* any consequences resulting from the use of this software. */
  17. /* */
  18. /* Any person who transfers this source code or any derivative work */
  19. /* must include the IBM copyright notice, this paragraph, and the */
  20. /* preceding two paragraphs in the transferred software. */
  21. /* */
  22. /* COPYRIGHT I B M CORPORATION 1995 */
  23. /* LICENSED MATERIAL - PROGRAM PROPERTY OF I B M */
  24. /*------------------------------------------------------------------------------- */
  25. /*----------------------------------------------------------------------------- */
  26. /* Function: ext_bus_cntlr_init */
  27. /* Description: Initializes the External Bus Controller for the external */
  28. /* peripherals. IMPORTANT: For pass1 this code must run from */
  29. /* cache since you can not reliably change a peripheral banks */
  30. /* timing register (pbxap) while running code from that bank. */
  31. /* For ex., since we are running from ROM on bank 0, we can NOT */
  32. /* execute the code that modifies bank 0 timings from ROM, so */
  33. /* we run it from cache. */
  34. /* Bank 0 - Flash and SRAM */
  35. /* Bank 1 - NVRAM/RTC */
  36. /* Bank 2 - Keyboard/Mouse controller */
  37. /* Bank 3 - IR controller */
  38. /* Bank 4 - not used */
  39. /* Bank 5 - not used */
  40. /* Bank 6 - not used */
  41. /* Bank 7 - FPGA registers */
  42. /*-----------------------------------------------------------------------------#include <config.h> */
  43. #include <asm/ppc4xx.h>
  44. #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
  45. #include <ppc_asm.tmpl>
  46. #include <ppc_defs.h>
  47. #include <asm/cache.h>
  48. #include <asm/mmu.h>
  49. /* CRAY - L1: only nominally a 'walnut', since ext.Bus.Cntlr is all empty */
  50. /* except for #1 which we use for DMA'ing to IOCA-like things, so the */
  51. /* control registers to set that up are determined by what we've */
  52. /* empirically discovered work there. */
  53. .globl ext_bus_cntlr_init
  54. ext_bus_cntlr_init:
  55. mflr r4 /* save link register */
  56. bl ..getAddr
  57. ..getAddr:
  58. mflr r3 /* get address of ..getAddr */
  59. mtlr r4 /* restore link register */
  60. addi r4,0,14 /* set ctr to 10; used to prefetch */
  61. mtctr r4 /* 10 cache lines to fit this function */
  62. /* in cache (gives us 8x10=80 instrctns) */
  63. ..ebcloop:
  64. icbt r0,r3 /* prefetch cache line for addr in r3 */
  65. addi r3,r3,32 /* move to next cache line */
  66. bdnz ..ebcloop /* continue for 10 cache lines */
  67. /*------------------------------------------------------------------- */
  68. /* Delay to ensure all accesses to ROM are complete before changing */
  69. /* bank 0 timings. 200usec should be enough. */
  70. /* 200,000,000 (cycles/sec) X .000200 (sec) = 0x9C40 cycles */
  71. /*------------------------------------------------------------------- */
  72. addis r3,0,0x0
  73. ori r3,r3,0xA000 /* ensure 200usec have passed since reset */
  74. mtctr r3
  75. ..spinlp:
  76. bdnz ..spinlp /* spin loop */
  77. /*---------------------------------------------------------------------- */
  78. /* Peripheral Bank 0 (Flash) initialization */
  79. /*---------------------------------------------------------------------- */
  80. /* 0x7F8FFE80 slowest boot */
  81. addi r4,0,PB1AP
  82. mtdcr EBC0_CFGADDR,r4
  83. addis r4,0,0x9B01
  84. ori r4,r4,0x5480
  85. mtdcr EBC0_CFGDATA,r4
  86. addi r4,0,PB0CR
  87. mtdcr EBC0_CFGADDR,r4
  88. addis r4,0,0xFFC5 /* BAS=0xFFC,BS=0x4(4MB),BU=0x3(R/W), */
  89. ori r4,r4,0x8000 /* BW=0x0( 8 bits) */
  90. mtdcr EBC0_CFGDATA,r4
  91. blr
  92. /*---------------------------------------------------------------------- */
  93. /* Peripheral Bank 1 (NVRAM/RTC) initialization */
  94. /* CRAY:the L1 has NOT this bank, it is tied to SV2/IOCA/etc/ instead */
  95. /* and we do DMA on it. The ConfigurationRegister part is threfore */
  96. /* almost arbitrary, except that our linux driver needs to know the */
  97. /* address, but it can query, it.. */
  98. /* */
  99. /* The AccessParameter is CRITICAL, */
  100. /* thouch, since it needs to agree with the electrical timings on the */
  101. /* IOCA parallel interface. That value is: 0x0185,4380 */
  102. /* BurstModeEnable BME=0 */
  103. /* TransferWait TWT=3 */
  104. /* ChipSelectOnTiming CSN=1 */
  105. /* OutputEnableOnTimimg OEN=1 */
  106. /* WriteByteEnableOnTiming WBN=1 */
  107. /* WriteByteEnableOffTiming WBF=0 */
  108. /* TransferHold TH=1 */
  109. /* ReadyEnable RE=1 */
  110. /* SampleOnReady SOR=1 */
  111. /* ByteEnableMode BEM=0 */
  112. /* ParityEnable PEN=0 */
  113. /* all reserved bits=0 */
  114. /*---------------------------------------------------------------------- */
  115. /*---------------------------------------------------------------------- */
  116. addi r4,0,PB1AP
  117. mtdcr EBC0_CFGADDR,r4
  118. addis r4,0,0x0185 /* hiword */
  119. ori r4,r4,0x4380 /* loword */
  120. mtdcr EBC0_CFGDATA,r4
  121. addi r4,0,PB1CR
  122. mtdcr EBC0_CFGADDR,r4
  123. addis r4,0,0xF001 /* BAS=0xF00,BS=0x0(1MB),BU=0x3(R/W), */
  124. ori r4,r4,0x8000 /* BW=0x0( 8 bits) */
  125. mtdcr EBC0_CFGDATA,r4
  126. blr