init.S 5.5 KB

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