Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * All Video Processing kernels
  3.  * Copyright © <2010>, Intel Corporation.
  4.  *
  5.  * This program is licensed under the terms and conditions of the
  6.  * Eclipse Public License (EPL), version 1.0.  The full text of the EPL is at
  7.  * http://www.opensource.org/licenses/eclipse-1.0.php.
  8.  *
  9.  */
  10.  
  11. // Module name: PL8x8_Save_PA.asm
  12. //
  13. // Save planar YUV422 to packed YUV422 format data
  14. //
  15. // Note: SRC_* must reference to regions with data type "BYTE"
  16. //               in order to save to byte-aligned byte location
  17.  
  18. #include "PL8x8_Save_PA.inc"
  19.  
  20.     add (4) pCF_Y_OFFSET<1>:uw   ubDEST_CF_OFFSET<4;4,1>:ub   nDEST_YUV_REG*nGRFWIB:w    // Initial Y,U,V offset in YUV422 block
  21.  
  22.     // Pack Y
  23.     $for(0; <nY_NUM_OF_ROWS; 1) {
  24.         mov (16) r[pCF_Y_OFFSET, %1*nGRFWIB]<2>    ubSRC_Y(0,%1*32)
  25.     }
  26.  
  27.     // Pack U/V
  28.     $for(0; <nUV_NUM_OF_ROWS; 1) {
  29.         mov (8)  r[pCF_U_OFFSET, %1*nGRFWIB]<4>    ubSRC_U(0, %1*16)
  30.         mov (8)  r[pCF_V_OFFSET, %1*nGRFWIB]<4>    ubSRC_V(0, %1*16)
  31.     }
  32.  
  33.     shl (1) rMSGSRC.0<1>:d      wORIX<0;1,0>:w            1:w  { NoDDClr }             // H. block origin need to be doubled
  34.     mov (1) rMSGSRC.1<1>:d      wORIY<0;1,0>:w                 { NoDDClr, NoDDChk }    // Block origin
  35.     mov (1) rMSGSRC.2<1>:ud     nDPW_BLOCK_SIZE_YUV:ud         { NoDDChk }             // Block width and height (32x8)
  36.  
  37.     mov (8) mMSGHDR<1>:ud       rMSGSRC<8;8,1>:ud
  38.  
  39. //Use the mask to determine which pixels shouldn't be over-written
  40.    and (1)        acc0.0<1>:ud udBLOCK_MASK<0;1,0>:ud   0x00FFFFFF:ud
  41.    cmp.ge.f0.0(1) dNULLREG     acc0.0<0;1,0>:ud         0x00FFFFFF:ud   //Check if all pixels in the block need to be modified
  42.    (f0.0)  jmpi WritePackedToDataPort
  43.  
  44.    //If mask is not all 1's, then load the entire 32x8 block
  45.     //so that only those bytes may be modified that need to be (using the mask)
  46.  
  47.     // Load 32x8 packed YUV 422 ----------------------------------------------------
  48.     send (8) udSRC_YUV(0)<1>    mMSGHDR     udDUMMY_NULL    nDATAPORT_READ    nDPMR_MSGDSC+nDPR_MSG_SIZE_YUV+nBI_DESTINATION_YUV:ud
  49.     mov  (8) mMSGHDR<1>:ud      rMSGSRC<8;8,1>:ud
  50.  
  51.     //Merge the data
  52.     mov (1)           f0.0:uw             ubBLOCK_MASK_V:ub    //Load the mask on flag reg
  53.     (f0.0)  mov (8)   rMASK_TEMP<1>:uw    uwBLOCK_MASK_H:uw
  54.     (-f0.0) mov (8)   rMASK_TEMP<1>:uw    0:uw
  55.  
  56.     // Destination is Byte aligned
  57.     $for(0; <nY_NUM_OF_ROWS; 1) {
  58.         mov (1)             f0.1:uw                   uwMASK_TEMP(0,%1)<0;1,0>
  59.         (-f0.1) mov (16)    uwDEST_YUV(%1)<1>         uwSRC_YUV(%1)        //check the UV merge - vK
  60.     }
  61.  
  62. WritePackedToDataPort:
  63.     //  Packed YUV data are stored in one of the I/O regions before moving to MRF
  64.     //  Note: This is necessary since indirect addressing is not supported for MRF.
  65.     //  Packed data block should be saved as 32x8 pixel block
  66.     $for(0; <nY_NUM_OF_ROWS; 1) {
  67.         mov (8) mudMSGPAYLOAD(%1)<1>       udDEST_YUV(%1)REGION(8,1)
  68.     }
  69.     send (8)    dNULLREG    mMSGHDR   udDUMMY_NULL    nDATAPORT_WRITE    nDPMW_MSGDSC+nDPW_MSG_SIZE_YUV+nBI_DESTINATION_YUV:ud
  70.  
  71. // End of PL8x8_Save_PA
  72.