Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Copyright © <2010>, Intel Corporation.
  3.  *
  4.  * This program is licensed under the terms and conditions of the
  5.  * Eclipse Public License (EPL), version 1.0.  The full text of the EPL is at
  6.  * http://www.opensource.org/licenses/eclipse-1.0.php.
  7.  *
  8.  */
  9. // Kernel name: AVC_ILDB_Root_Y.asm
  10. //
  11. //  Root kernel serves as a scheduler for child threads
  12. //
  13. //  $Revision: 1 $
  14. //  $Date: 10/19/06 5:06p $
  15. //
  16.  
  17. // ----------------------------------------------------
  18. //  AVC_ILDB_ROOT_Y
  19. // ----------------------------------------------------
  20. #define AVC_ILDB
  21.  
  22. .kernel AVC_ILDB_ROOT_Y
  23. #if defined(COMBINED_KERNEL)
  24. ILDB_LABEL(AVC_ILDB_ROOT_Y):
  25. #endif
  26.  
  27. #include "SetupVPKernel.asm"
  28. #include "AVC_ILDB.inc"
  29.  
  30. /////////////////////////////////////////////////////////////////////////////////////
  31. #if defined(_DEBUG)
  32.  
  33. // Init URB space for running on RTL.  It satisfies reading an unwritten URB entries.  
  34. // Will remove it for production release.
  35.  
  36. mov (8) m1:ud           0x11111111:ud
  37. mov (8) m2:ud           0x22222222:ud
  38. mov (8) m3:ud           0x33333333:ud
  39. mov (8) m4:ud           0x44444444:ud
  40.  
  41. mov (1) Temp1_W:w       0:w
  42.  
  43. ILDB_LABEL(ILDB_INIT_URB_Y):
  44. //mul (1)       Temp2_W:w                               Temp1_W:w               4:w             // URBOffset
  45. //shl (1) URBWriteMsgDescLow:uw         Temp2_W:w               4:w             // Msg descriptor: URB write dest offset (9:4)
  46. //mov (1) URBWriteMsgDescHigh:uw        0x0650:uw                               // Msg descriptor: URB write 5 MRFs (m0 - m4)
  47.  
  48. //mul (1)       URBOffset:uw                    Temp1_W:uw              4:w             // Each thread uses 4 URB entries (1 r0 + 1 inline + 2 data)
  49. mul (1) URBOffset:uw                    Temp1_W:uw              2:w             // Each thread uses 2 URB entries (1 r0 + 1 inline)
  50. mov (1) URBWriteMsgDesc:ud              MSG_LEN(2)+URBWMSGDSC:ud                        // Msg descriptor: URB write msg length = 3
  51. #include "writeURB.asm"
  52.  
  53. add             (1)             Temp1_W:w       Temp1_W:w       1:w                             // Increase block count
  54. cmp.l.f0.0 (1)  null            Temp1_W:w       MBsCntY:w               // Check the block count limit
  55. (f0.0) jmpi             ILDB_LABEL(ILDB_INIT_URB_Y)                                                     // Loop back
  56.  
  57. mov             (1)             EntrySignature:w                        0xFFF0:w
  58.  
  59. #endif
  60. /////////////////////////////////////////////////////////////////////////////////////
  61.  
  62.  
  63. // Set global variable
  64. mov (32)        ChildParam:uw                   0:uw                                                            // Reset local variables, 2 GRFs
  65. //mul   (1)             TotalBlocks:w                   MBsCntX:w               MBsCntY:w                       // Total # of blocks
  66. //add   (1)             GatewayApertureE:w              MBsCntY:w               GatewayApertureB:w      // Aperture End = aperture Head + BlockCntY
  67.  
  68. // 4 URB entries for Y:
  69. // Entry 0 - Child thread R0Hdr
  70. // Entry 1 - input parameter to child kernel (child r1)
  71. // Entry 2 - Prev MB data Y 4x16, col 1 and col 0
  72. // Entry 3 - Prev MB data Y 4x16, col 3 and col 2
  73.  
  74. #undef          URB_ENTRIES_PER_MB
  75. #define         URB_ENTRIES_PER_MB              4
  76.  
  77. // URB_ENTRIES_PER_MB in differnt form, the final desired format is (URB_ENTRIES_PER_MB-1) << 10
  78. mov (1)         URB_EntriesPerMB_2:w            URB_ENTRIES_PER_MB-1:w
  79. shl (1)         URB_EntriesPerMB_2:w            URB_EntriesPerMB_2:w    10:w
  80.  
  81. shr (1)         ThreadLimit:w           MaxThreads:w    1:w                     // Initial luma thread limit to 50%
  82. mul     (1)             TotalBlocks:w           MBsCntX:w               MBsCntY:w       // MBs to be processed count down from TotalBlocks
  83.  
  84. //***** Init CT_R0Hdr fields that are common to all threads *************************
  85. mov (8)         CT_R0Hdr.0:ud           r0.0<8;8,1>:ud                          // Init to root R0 header
  86. mov (1)         CT_R0Hdr.7:ud           r0.6:ud                                         // Copy Parent Thread Cnt; JJ did the change on 06/20/2006
  87. mov (1)         CT_R0Hdr.31:ub          0:w                                                     // Reset the highest byte
  88. mov (1)         CT_R0Hdr.3:ud           0x00000000       
  89. mov (1)         CT_R0Hdr.6:uw           sr0.0:uw                                        // sr0.0: state reg contains general thread states, e.g. EUID/TID.
  90.  
  91. //***** Init ChildParam fields that are common to all threads ***********************
  92. mov (8)         ChildParam<1>:ud        RootParam<8;8,1>:ud             // Copy all root parameters
  93. mov (4)         CurCol<1>:w                     0:w                                             // Reset CurCol, CurRow,
  94. add     (2)             LastCol<1>:w            MBsCntX<2;2,1>:w                -1:w    // Get LastCol and LastRow
  95.        
  96. mov (1)         URBWriteMsgDesc:ud              MSG_LEN(2)+URBWMSGDSC:ud
  97.  
  98. //===================================================================================
  99.  
  100. #include "AVC_ILDB_OpenGateway.asm"             // Open gateway for receiving notification
  101.  
  102. #if defined(DEV_CL)    
  103.         mov     (1)             URBOffset:uw            240:uw  // Use chroma URB offset to spawn chroma root
  104. #else
  105.         mov     (1)             URBOffset:uw            320:uw  // Use chroma URB offset to spawn chroma root
  106. #endif
  107.  
  108. #include "AVC_ILDB_SpawnChromaRoot.asm" // Spawn chroma root
  109.  
  110. mov     (1)             URBOffset:uw            0:uw    // Use luma URB offset to spawn luma child
  111. mov     (1)             ChildThreadsID:uw       2:uw    // Starting ChildThreadsID for luma child threads
  112.  
  113. #include "AVC_ILDB_Dep_Check.asm"               // Check dependency and spawn all luma child threads in parallel with chroma root
  114.  
  115.  
  116. // Wait for UV root thread to finish
  117. ILDB_LABEL(WAIT_FOR_UV):
  118. cmp.l.f0.0 (1) null:w   ThreadLimit:w           MaxThreads:w
  119. (f0.0)  jmpi    ILDB_LABEL(WAIT_FOR_UV)
  120.  
  121.  
  122. #include "AVC_ILDB_CloseGateway.asm"    // Close root thread gateway
  123.  
  124. END_THREAD                                                              // End of root thread
  125.  
  126. #if !defined(COMBINED_KERNEL)           // For standalone kernel only
  127. .end_code
  128.  
  129. .end_kernel
  130. #endif
  131.