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. //========== Forward message to root thread through gateway ==========
  10.  
  11. // Chroma root kenrel updates luma thread limit.
  12.  
  13. #if defined(_DEBUG)
  14. mov             (1)             EntrySignatureC:w                       0x7788:w
  15. #endif
  16.  
  17. // Init payload to r0
  18. mov (8)         GatewayPayload<1>:ud    0:w                                                             { NoDDClr }
  19.  
  20. // Forward a message:
  21. // Offset = x relative to r50 (defiend in open gataway), x = ORIX >> 4 [bit 28:16]
  22. // Need to shift left 16
  23.  
  24. mov     (1)             Offset_Length:ud                THREAD_LIMIT_OFFSET:ud                          { NoDDClr, NoDDChk }
  25.  
  26. // Length = 1 byte,     [bit 10:8 = 000]
  27. //000 xxxxxxxxxxxxx 00000 000 00000000 ==> 000x xxxx xxxx xxxx 0000 0000 0000 0000
  28.  
  29. //mov (1)       DispatchID:ub                   r0.20:ub                // Dispatch ID
  30.  
  31. //  Copy EUid and Thread ID that we received from the PARENT thread
  32. mov (1)         EUID_TID:uw                     r0.6:uw                                                         { NoDDClr, NoDDChk }
  33.  
  34. mov (1)         GatewayPayloadKey:uw    0x1212:uw                                                       { NoDDChk }     // Key
  35.  
  36. //mov   (4)             GatewayPayload<1>:ud    0:ud                                                            { NoDDClr, NoDDChk }    // Init payload low 4 dword
  37.  
  38. // Write back one byte (value = 0xFF) to root thread GRF to indicate this child thread is finished
  39. // All lower 4 bytes must be assigned to the same byte value.
  40. add     (1)             Temp1_W:w                               MaxThreads:uw   -OutstandingThreads:uw
  41. mov     (4)             GatewayPayload<1>:ub    Temp1_B<0;1,0>:ub
  42.  
  43. send (8)        GatewayResponse:ud              m0                      GatewayPayload<8;8,1>:ud    MSG_GW      FWDMSGDSC
  44.  
  45. //========== Forward Msg Done ========================================
  46.  
  47.