Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  *  Copyright 2000-2011 Intel Corporation All Rights Reserved
  3.  *
  4.  *  Licensed under the Apache License, Version 2.0 (the "License");
  5.  *  you may not use this file except in compliance with the License.
  6.  *  You may obtain a copy of the License at
  7.  *
  8.  *      http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  *  Unless required by applicable law or agreed to in writing, software
  11.  *  distributed under the License is distributed on an "AS IS" BASIS,
  12.  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  *  See the License for the specific language governing permissions and
  14.  *  limitations under the License.
  15.  */
  16. //   18    // Total instruction count
  17. //    1    // Total kernel count
  18.  
  19.  
  20.  
  21. // Module name: common.inc
  22. //
  23. // Common header file for all Video-Processing kernels
  24. //
  25.  
  26. .default_execution_size (16)
  27. .default_register_type  :ub
  28.  
  29. .reg_count_total        128
  30. .reg_count_payload      7
  31.  
  32. //========== Common constants ==========
  33.  
  34.  
  35. //========== Macros ==========
  36.  
  37.  
  38. //Fast Jump, For more details see "Set_Layer_N.asm"
  39.  
  40.  
  41. //========== Defines ====================
  42.  
  43. //========== Static Parameters (Common To All) ==========
  44. //r1
  45.  
  46.  
  47. //r2
  48.  
  49.                                     //  e.g.            byte0   byte1  byte2
  50.                                     // YUYV               0       1      3
  51.                                     // YVYU               0       3      1
  52.  
  53. //Color Pipe (IECP) parameters
  54.  
  55.  
  56. //ByteCopy
  57.  
  58.  
  59. //r4
  60.  
  61.                                     //  e.g.              byte0           byte1           byte2
  62.                                     // YUYV                 0               1               3
  63.                                     // YVYU                 0               3               1
  64.  
  65.  
  66. //========== Inline parameters (Common To All) ===========
  67.  
  68.  
  69. //============== Binding Index Table===========
  70. //Common between DNDI and DNUV
  71.  
  72.  
  73. //================= Common Message Descriptor =====
  74. // Message descriptor for thread spawning
  75. // Message Descriptors
  76. //                = 000 0001 (min message len 1 ) 0,0000 (resp len 0   -add later)
  77. //                  0000,0000,0000
  78. //                  0001(Spawn a root thread),0001 (Root thread spawn thread)
  79. //                = 0x02000011
  80. // Thread Spawner Message Descriptor
  81.  
  82.  
  83. // Message descriptor for atomic operation add
  84. // Message Descriptors
  85. //                = 000 0110 (min message len 6 ) 0,0000 (resp len 0   -add later)
  86. //                  1(header present)001,10(typed atomic operation)0(return enabled)0(slot group, low 8 bits),0111 (AOP_Add)
  87. //                  0000,0000 (Binding table index, added later)
  88. //                = 0x02000011
  89.  
  90. // Atomic Operation Add Message Descriptor
  91.  
  92.  
  93. // Message descriptor for dataport media write
  94.         // Message Descriptors
  95.                 //                = 000 0001 (min message len 1 - add later) 00000 (resp len 0)
  96.                 //                  1 (header present 1) 0 1010 (media block write) 000000
  97.                 //                  00000000 (binding table index - set later)
  98.                 //                = 0x020A8000
  99.  
  100.  
  101. // Message Length defines
  102.  
  103.  
  104. // Response Length defines
  105.  
  106.  
  107. // Block Width and Height Size defines
  108.  
  109.  
  110. // Extended Message Descriptors
  111.  
  112.  
  113. // Common message descriptors:
  114.  
  115.  
  116. //===================== Math Function Control ===================================
  117.  
  118.  
  119. //============ Message Registers ===============
  120.                              // buf4 starts from r28
  121.  
  122.  
  123. //#define mMSGHDR_EOT  r43    // Dummy Message Register for EOT
  124.  
  125.  
  126. .declare    mubMSGPAYLOAD  Base=r30 ElementSize=1 SrcRegion=<16;16,1> Type=ub
  127. .declare    muwMSGPAYLOAD  Base=r30 ElementSize=2 SrcRegion=<16;16,1> Type=uw
  128. .declare    mudMSGPAYLOAD  Base=r30 ElementSize=4 SrcRegion=<8;8,1> Type=ud
  129. .declare    mfMSGPAYLOAD   Base=r30 ElementSize=4 SrcRegion=<8;8,1> Type=f
  130.  
  131. //=================== End of thread instruction ===========================
  132.  
  133.  
  134. //=====================Pointers Used=====================================
  135.  
  136.  
  137. //=======================================================================
  138.  
  139.  
  140. //r9-r17
  141. // Define temp space for any usages
  142.  
  143.  
  144. // Common Buffers
  145.  
  146.  
  147. // temp space for rotation
  148.  
  149. .declare fROBUF           Base=r9.0             ElementSize=4           SrcRegion=<8;8,1>                 DstRegion=<1>         Type=f
  150.  
  151. .declare udROBUF                Base=r9.0               ElementSize=4           SrcRegion=<8;8,1>                 DstRegion=<1>         Type=ud
  152.  
  153. .declare uwROBUF                Base=r9.0               ElementSize=2           SrcRegion=<16;16,1>             DstRegion=<1>           Type=uw
  154.  
  155. .declare ubROBUF                Base=r9.0               ElementSize=1           SrcRegion=<16;16,1>             DstRegion=<1>           Type=ub
  156.  
  157. .declare ub4ROBUF       Base=r9.0               ElementSize=1           SrcRegion=<32;8,4>              DstRegion=<4>           Type=ub
  158.  
  159.  
  160. // End of common.inc
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167. //Module name:   Set_Layer_N.inc
  168.  
  169.  
  170.  
  171.  
  172. // Description: Includes all definitions explicit to Fast Composite.
  173.  
  174.  
  175.  
  176.  
  177. // End of common.inc
  178.  
  179.  
  180. //========== GRF partition ==========
  181.      // r0 header            :   r0          (1 GRF)
  182.      // Static parameters    :   r1 - r6     (6 GRFS)
  183.      // Inline parameters    :   r7 - r8     (2 GRFs)
  184.      // MSGSRC               :   r27         (1 GRF)
  185. //===================================
  186.  
  187. //Interface:
  188. //========== Static Parameters (Explicit To Fast Composite) ==========
  189. //r1
  190. //CSC Set 0
  191.  
  192.  
  193. .declare udCSC_CURBE    Base=r1.0      ElementSize=4       Type=ud
  194.  
  195. //Constant alpha
  196.  
  197.  
  198. //r2
  199.  
  200.  
  201. // Gen7 AVS WA
  202.  
  203.  
  204. // WiDi Definitions
  205.  
  206.  
  207. //Colorfill
  208.  
  209.  
  210.                                       // 0: 0-degree, 1: 90, 2: 180, 3: 270-degree, clockwise.     
  211.  
  212. .declare ubCOLOR_PIXEL_VAL      Base=r2.20      ElementSize=1       SrcRegion=<0;1,0>       DstRegion=<1>       Type=ub
  213.  
  214. //r3
  215. //Normalised Ratio of Horizontal step size with main video for all layers
  216.  
  217.  
  218.     //Normalised Ratio of Horizontal step size with main video for all layers becomes
  219.     //Normalised Horizontal step size for all layers in VP_Setup.asm
  220.  
  221.  
  222. //r4
  223. //Normalised Vertical step size for all layers
  224.  
  225.  
  226. //r5
  227. //Normalised Vertical Frame Origin for all layers
  228.  
  229.  
  230. //r6
  231. //Normalised Horizontal Frame Origin for all layers
  232.  
  233.  
  234. //========== Inline Parameters (Explicit To Fast Composite) ==========
  235.  
  236.  
  237. //Main video Step X
  238.  
  239.  
  240. //====================== Binding table (Explicit To Fast Composite)=========================================
  241.  
  242.  
  243. //Used by Interlaced Scaling Kernels
  244.  
  245.  
  246. //========== Sampler State Table Index (Explicit To Fast Composite)==========
  247. //Sampler Index for AVS/IEF messages
  248.  
  249.  
  250. //Sampler Index for SIMD16 sampler messages
  251.  
  252.  
  253. //=============================================================================
  254.  
  255. .declare fBUFFER_0      Base=r64.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
  256. .declare fBUFFER_1      Base=r80.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
  257. .declare fBUFFER_2      Base=r96.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
  258. .declare fBUFFER_3      Base=r112.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
  259. .declare fBUFFER_4      Base=r28.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
  260. .declare fBUFFER_5      Base=r46.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
  261.  
  262. .declare udBUFFER_0     Base=r64.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
  263. .declare udBUFFER_1     Base=r80.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
  264. .declare udBUFFER_2     Base=r96.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
  265. .declare udBUFFER_3     Base=r112.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
  266. .declare udBUFFER_4     Base=r28.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
  267. .declare udBUFFER_5     Base=r46.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
  268.  
  269. .declare uwBUFFER_0     Base=r64.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
  270. .declare uwBUFFER_1     Base=r80.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
  271. .declare uwBUFFER_2     Base=r96.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
  272. .declare uwBUFFER_3     Base=r112.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
  273. .declare uwBUFFER_4     Base=r28.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
  274. .declare uwBUFFER_5     Base=r46.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
  275.  
  276. .declare ubBUFFER_0     Base=r64.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
  277. .declare ubBUFFER_1     Base=r80.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
  278. .declare ubBUFFER_2     Base=r96.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
  279. .declare ubBUFFER_3     Base=r112.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
  280. .declare ubBUFFER_4     Base=r28.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
  281. .declare ubBUFFER_5     Base=r46.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
  282.  
  283. .declare ub4BUFFER_0    Base=r64.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
  284. .declare ub4BUFFER_1    Base=r80.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
  285. .declare ub4BUFFER_2    Base=r96.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
  286. .declare ub4BUFFER_3    Base=r112.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
  287. .declare ub4BUFFER_4    Base=r28.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
  288. .declare ub4BUFFER_5    Base=r46.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
  289.  
  290. //Pointer to mask reg
  291.  
  292.  
  293. //r18
  294.  
  295.  
  296. //Always keep Cannel Pointers and Offsets in same GRF, so that we can use
  297. // NODDCLR, NODDCHK flags. -rT
  298.  
  299.  
  300. .declare udCSC_COEFF_0  Base=r18.0    ElementSize=4 Type=ud       // 1 GRF
  301.  
  302. //r19
  303.  
  304.  
  305. .declare udCSC_COEFF_1  Base=r19.0    ElementSize=4 Type=ud       // 1 GRF
  306.  
  307.  
  308. //r20
  309.  
  310. .declare uwALPHA_MASK_REG_TEMP  Base=r20.0    ElementSize=2 SrcRegion=<16;16,1> Type=uw        // 1 GRF
  311.  
  312. //r21
  313.  
  314. .declare uwALPHA_MASK_REG       Base=r21.0         ElementSize=2 SrcRegion=<16;16,1> Type=uw        // 1 GRF
  315.  
  316. //r22
  317.  
  318.  
  319. //Always keep Cannel Pointers and Offsets in same GRF, so that we can use
  320. // NODDCLR, NODDCHK flags. -rT
  321.  
  322.  
  323. //Keep fORIGIN_X_NLAS, fY_OFFSET_2ND_BLOCK, fSTEP_X_NLAS, pMSGDSC_COPY, ubCONST_ALPHA_COPY as
  324. //sub registers of same GRF to enable using NODDCLR NODDCHK. -rT
  325.  
  326. //r23
  327.  
  328.  
  329. //Lumakey
  330.  
  331.  
  332. //r24
  333.  
  334.  
  335. //r25
  336.  
  337.  
  338. //r26
  339.  
  340.  
  341. //defines to generate LABELS during compile time.
  342.  
  343.  
  344. //Used to generate LABELS at compile time.
  345.  
  346.  
  347. //definitions for Expand Mask
  348. .declare uwMask_Temp1           Base=r17.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw         // 1 GRF
  349. .declare ubMask_Temp1           Base=r17.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub         // 1 GRF
  350. .declare udMask_Temp1           Base=r17.0 ElementSize=4 Type=ud                                // 1 GRF
  351. .declare uwMask_Temp2           Base=r16.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw         // 1 GRF
  352. .declare ubMask_Temp2           Base=r16.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub         // 1 GRF
  353. .declare udMask_Temp2           Base=r16.0 ElementSize=4 Type=ud                                // 1 GRF
  354.  
  355. .declare uwMask_Temp3           Base=r15.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw         // 1 GRF
  356. .declare ubMask_Temp3           Base=r15.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub         // 1 GRF
  357.  
  358. .declare udALPHA_MASK_REG       Base=r21.0         ElementSize=4 Type=ud       // 1 GRF
  359. .declare udALPHA_MASK_REG_TEMP  Base=r20.0    ElementSize=4 Type=ud       // 1 GRF
  360.  
  361.  
  362. //Initialize mask reg to FFFF
  363.  
  364.         mov     (16)    uwALPHA_MASK_REG(0)<1>          0xFFFF:uw
  365.  
  366.  
  367. //Fast jump for -
  368. //LAYER0: we determine whether layer 0 is to be loaded and processed or not based
  369. //              on block mask in module "Set_Layer_0" and store result in f0.1.
  370. //              This flag is then directly used to while loading buf0-3 and colorfill.
  371. //              (So flag f0.1 should not be changed from Set_Layer_0 till Colorfill)
  372. //
  373. //LAYER1-7: For all other layers, we compute whether layer is to be loaded and processed
  374. //                based on block mask in module "Set_Layer_1-7" and store result in SKIP_LAYER
  375. //                variable.
  376. //                While Loading buf 4 and 5, we move SKIP_LAYER to f0.0 every time and use it
  377. //                for Loading.
  378. //                For processing though, we move SKIP_LAYER only once to f0.1 in module
  379. //                "Set_Buf0_Buf4" and use f0.1 for deciding whether layer 1-7 (all 4 sub blocks)
  380. //                is to be processed or not.
  381. //                (So flag f0.1) should not be modififed from module "Set_Buf0_Buf4" till module
  382. //                that processess sub-block 3).
  383. //
  384. //None of the above fast jumps, apply to CSC modules. We always perform CSC irrespective of mask.
  385. //
  386. //Example: (Without going into finer details)
  387. //              Typical Combined kernel:
  388. //
  389. //              (let var = decision whether to load/process that layer)
  390. //
  391. //              Set_Layer_0                     //f0.1 <- var
  392. //              ..
  393. //              Set_Layer_1                     //f0.1 <- var, SKIP_LAYER <- var
  394. //              ..
  395. //              Load buf 0                      //use f0.1
  396. //              Load buf 4                      //f0.0 <- SKIP_LAYER
  397. //              Load buf 1                      //use f0.1
  398. //              Load buf 5                      //f0.0 <- SKIP_LAYER
  399. //              Load buf 2                      //use f0.1
  400. //              Load buf 3                      //use f0.1
  401. //              ..
  402. //              ..
  403. //              Colorfill
  404. //              ..
  405. //              Set_Buf0_Buf4           //f0.1 <- SKIP_LAYER
  406. //              process0-4                      //Use f0.1
  407. //              Load buf 4
  408. //              Set_Buf1_Buf5
  409. //              process1-5
  410. //              Load buf 5
  411. //              ..
  412. //              Set_Layer_2                     //f0.1 <-var, SKIP_LAYER <- var
  413. //              ..
  414. //              Set_Buf2_Buf4
  415. //              process2-4
  416. //              Load buf 4
  417. //              Set_Buf3_Buf5
  418. //              process3-5
  419. //              Load buf 5
  420. //              ..
  421.  
  422.  
  423.         //For layer 0, use f0.1 directly
  424.         cmp.ne.f0.1                     (1)  null<1>:d    r7.2:uw               0:uw
  425.         (f0.1)cmp.ne.f0.1       (1)  null<1>:d           r7.3:uw                0:uw
  426.         (-f0.1)  jmpi  (1)  SKIP_LAYER_L0
  427.  
  428.  
  429.     and (1) r24.2:ub    r2.2<0;1,0>:uw    3:uw    
  430.  
  431.  
  432.         //Copy all AVS Payload data
  433.         // Setup Message Payload Header for 1st block of Media Sampler 8x8 (16x4 for IVB+)
  434.         mov (1) r25.6:f        r7.5:f           { NoDDClr }             //NLAS dx
  435.         mov (1) r25.4:f        r3.0:f                           { NoDDClr, NoDDChk }    //Step X
  436.         mov (1) r25.5:f        r4.0:f                           { NoDDClr, NoDDChk }    //Step Y
  437.  
  438.  
  439.         mov (1) r25.2:f         r6.0<0;1,0>:f           { NoDDClr, NoDDChk }    //Orig X
  440.         mov (1) r25.3:f         r5.0<0;1,0>:f           { NoDDChk }             //Orig Y
  441.  
  442.     //NLAS calculations for 2nd half of blocks of Media Sampler 8x8:
  443.     // X(i) = X0 + dx*i + ddx*i*(i-1)/2   ==>  X(8) = X0 + dx*8 +ddx*28
  444.     // dx(i)= dx(0) + ddx*i               ==>  dx(8)= dx + ddx*8
  445.  
  446.         //OPTIMIZATION: fORIGIN_X_NLAS, fY_OFFSET_2ND_BLOCK, fSTEP_X_NLAS, pMSGDSC_COPY, ubCONST_ALPHA_COPY - are sub registers of same GRF. Use NODDCLR NODDCHK. -rT
  447.  
  448.     // Calculating X(8)
  449.     mov (1)   acc0.2:f                          r6.0:f
  450.     mac (1)   acc0.2:f                          r3.0:f                  8.0:f
  451.     mac (1)   r23.2:f           r7.5:f     28.0:f               { NoDDClr }
  452.  
  453.     // Calculating Y(4)
  454.     mul (1)   r23.1<1>:f        r4.0:f       4.0:f      { NoDDClr, NoDDChk }  //dY*4
  455.  
  456.     // Calculating dx(8)
  457.     mov (1)   acc0.4:f           r3.0:f
  458.     mac (1)   r23.4:f     r7.5:f                8.0:f           { NoDDClr, NoDDChk }
  459.  
  460.         // Binding Index
  461.         mov (1) r23.5:ud                0:ud                                                    { NoDDChk }
  462.  
  463.  
  464. SKIP_LAYER_L0:
  465.         nop
  466.  
  467.  
  468.