Add the CSC conversion from NV12/I420 to YUYV
authorZhao Yakui <yakui.zhao@intel.com>
Fri, 21 Jun 2013 02:16:57 +0000 (10:16 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Thu, 27 Feb 2014 02:22:18 +0000 (10:22 +0800)
Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
src/i965_post_processing.c
src/shaders/post_processing/gen8/Makefile.am
src/shaders/post_processing/gen8/Save_AVS_PA.g8a [new file with mode: 0644]
src/shaders/post_processing/gen8/pl2_to_pa.asm [new file with mode: 0644]
src/shaders/post_processing/gen8/pl2_to_pa.g8b [new file with mode: 0644]
src/shaders/post_processing/gen8/pl3_to_pa.asm [new file with mode: 0644]
src/shaders/post_processing/gen8/pl3_to_pa.g8b [new file with mode: 0644]

index 2ae2e0b..78405b5 100755 (executable)
@@ -1199,10 +1199,10 @@ static const uint32_t pp_nv12_dn_gen8[][4] = {
 // #include "shaders/post_processing/gen7/nv12_dn_nv12.g75b"
 };
 static const uint32_t pp_nv12_load_save_pa_gen8[][4] = {
-#include "shaders/post_processing/gen7/pl2_to_pa.g75b"
+#include "shaders/post_processing/gen8/pl2_to_pa.g8b"
 };
 static const uint32_t pp_pl3_load_save_pa_gen8[][4] = {
-#include "shaders/post_processing/gen7/pl3_to_pa.g75b"
+#include "shaders/post_processing/gen8/pl3_to_pa.g8b"
 };
 static const uint32_t pp_pa_load_save_nv12_gen8[][4] = {
 #include "shaders/post_processing/gen7/pa_to_pl2.g75b"
index e2f586b..776803e 100644 (file)
@@ -4,7 +4,9 @@ INTEL_PP_G8B = \
        pl3_to_pl2.g8b          \
        pl3_to_pl3.g8b          \
        pl2_to_rgbx.g8b         \
-       rgbx_to_nv12.g8b                \
+       rgbx_to_nv12.g8b        \
+       pl2_to_pa.g8b           \
+       pl3_to_pa.g8b           \
        $(NULL)
 
 INTEL_PP_G8A = \
@@ -24,6 +26,7 @@ INTEL_PP_G8A = \
        Save_AVS_NV12.g8a               \
        Save_AVS_PL3.g8a                \
        Save_AVS_RGBX.g8a               \        
+       Save_AVS_PA.g8a                 \        
        Set_AVS_Buf_0123_PL2.g8a        \
        Set_AVS_Buf_0123_PL3.g8a        \
        Set_AVS_Buf_0123_BGRA.g8a       \
diff --git a/src/shaders/post_processing/gen8/Save_AVS_PA.g8a b/src/shaders/post_processing/gen8/Save_AVS_PA.g8a
new file mode 100644 (file)
index 0000000..1cedac7
--- /dev/null
@@ -0,0 +1,629 @@
+/*
+ *  Copyright 2000-2013 Intel Corporation All Rights Reserved
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ *     Authors: Zhao Yakui <yakui.zhao@intel.com>
+ */
+//  174    // Total instruction count
+//    1    // Total kernel count
+
+
+
+// Module name: common.inc
+//
+// Common header file for all Video-Processing kernels
+//
+
+.default_execution_size (16)
+.default_register_type  :ub
+
+.reg_count_total        128
+.reg_count_payload      7
+
+//========== Common constants ==========
+
+
+//========== Macros ==========
+
+
+//Fast Jump, For more details see "Set_Layer_N.asm"
+
+
+//========== Defines ====================
+
+//========== Static Parameters (Common To All) ==========
+//r1
+
+
+//r2
+
+                                    //  e.g.            byte0   byte1  byte2
+                                    // YUYV               0       1      3
+                                    // YVYU               0       3      1
+
+//Color Pipe (IECP) parameters
+
+
+//ByteCopy
+
+
+//r4
+
+                                    //  e.g.              byte0           byte1           byte2
+                                    // YUYV                 0               1               3
+                                    // YVYU                 0               3               1
+
+
+//========== Inline parameters (Common To All) ===========
+
+
+//============== Binding Index Table===========
+//Common between DNDI and DNUV
+
+
+//================= Common Message Descriptor =====
+// Message descriptor for thread spawning
+// Message Descriptors
+//                = 000 0001 (min message len 1 ) 0,0000 (resp len 0   -add later)
+//                  0000,0000,0000
+//                  0001(Spawn a root thread),0001 (Root thread spawn thread)
+//                = 0x02000011
+// Thread Spawner Message Descriptor
+
+
+// Message descriptor for atomic operation add
+// Message Descriptors
+//                = 000 0110 (min message len 6 ) 0,0000 (resp len 0   -add later)
+//                  1(header present)001,10(typed atomic operation)0(return enabled)0(slot group, low 8 bits),0111 (AOP_Add)
+//                  0000,0000 (Binding table index, added later)
+//                = 0x02000011
+
+// Atomic Operation Add Message Descriptor
+
+
+// Message descriptor for dataport media write
+        // Message Descriptors
+                //                = 000 0001 (min message len 1 - add later) 00000 (resp len 0)
+                //                  1 (header present 1) 0 1010 (media block write) 000000
+                //                  00000000 (binding table index - set later)
+                //                = 0x020A8000
+
+
+// Message Length defines
+
+
+// Response Length defines
+
+
+// Block Width and Height Size defines
+
+
+// Extended Message Descriptors
+
+
+// Common message descriptors:
+
+
+//===================== Math Function Control ===================================
+
+
+//============ Message Registers ===============
+                             // buf4 starts from r28
+
+
+//#define mMSGHDR_EOT  r43    // Dummy Message Register for EOT
+
+
+.declare    mubMSGPAYLOAD  Base=r30 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    muwMSGPAYLOAD  Base=r30 ElementSize=2 SrcRegion=<16;16,1> Type=uw
+.declare    mudMSGPAYLOAD  Base=r30 ElementSize=4 SrcRegion=<8;8,1> Type=ud
+.declare    mfMSGPAYLOAD   Base=r30 ElementSize=4 SrcRegion=<8;8,1> Type=f
+
+//=================== End of thread instruction ===========================
+
+
+//=====================Pointers Used=====================================
+
+
+//=======================================================================
+
+
+//r9-r17
+// Define temp space for any usages
+
+
+// Common Buffers
+
+
+// temp space for rotation
+
+.declare fROBUF                  Base=r9.0             ElementSize=4           SrcRegion=<8;8,1>                 DstRegion=<1>         Type=f
+
+.declare udROBUF               Base=r9.0               ElementSize=4           SrcRegion=<8;8,1>                 DstRegion=<1>         Type=ud
+
+.declare uwROBUF               Base=r9.0               ElementSize=2           SrcRegion=<16;16,1>             DstRegion=<1>           Type=uw
+
+.declare ubROBUF               Base=r9.0               ElementSize=1           SrcRegion=<16;16,1>             DstRegion=<1>           Type=ub
+
+.declare ub4ROBUF      Base=r9.0               ElementSize=1           SrcRegion=<32;8,4>              DstRegion=<4>           Type=ub
+
+
+// End of common.inc
+
+
+// Module name: Save_AVS_PA.asm
+//
+// Save PA 422 frame data block of size 16x16
+//
+// To save 16x16 block (32x16 bytes of YUYV) we need 2 send instructions with of size 16x16 each.
+//  -------------------------------
+//  |    16x16    |    16x16      |
+//  |    YUYV     |    YUYV       |
+//  -------------------------------
+// these 2 sends are replaced by 8 32x2 sends to improve performance
+
+
+
+// Module name: Save.inc
+
+
+
+
+// Description: Includes all definitions explicit to Fast Composite.
+
+
+
+
+// End of common.inc
+
+
+//========== GRF partition ==========
+     // r0 header            :   r0          (1 GRF)
+     // Static parameters    :   r1 - r6     (6 GRFS)
+     // Inline parameters    :   r7 - r8     (2 GRFs)
+     // MSGSRC               :   r27         (1 GRF)
+//===================================
+
+//Interface:
+//========== Static Parameters (Explicit To Fast Composite) ==========
+//r1
+//CSC Set 0
+
+
+.declare udCSC_CURBE    Base=r1.0      ElementSize=4       Type=ud
+
+//Constant alpha
+
+
+//r2
+
+
+// Gen7 AVS WA
+
+
+// WiDi Definitions
+
+
+//Colorfill
+
+
+                                      // 0: 0-degree, 1: 90, 2: 180, 3: 270-degree, clockwise.     
+
+.declare ubCOLOR_PIXEL_VAL      Base=r2.20      ElementSize=1       SrcRegion=<0;1,0>       DstRegion=<1>       Type=ub
+
+//r3
+//Normalised Ratio of Horizontal step size with main video for all layers
+
+
+    //Normalised Ratio of Horizontal step size with main video for all layers becomes
+    //Normalised Horizontal step size for all layers in VP_Setup.asm
+
+
+//r4
+//Normalised Vertical step size for all layers
+
+
+//r5
+//Normalised Vertical Frame Origin for all layers
+
+
+//r6
+//Normalised Horizontal Frame Origin for all layers
+
+
+//========== Inline Parameters (Explicit To Fast Composite) ==========
+
+
+//Main video Step X
+
+
+//====================== Binding table (Explicit To Fast Composite)=========================================
+
+
+//Used by Interlaced Scaling Kernels
+
+
+//========== Sampler State Table Index (Explicit To Fast Composite)==========
+//Sampler Index for AVS/IEF messages
+
+
+//Sampler Index for SIMD16 sampler messages
+
+
+//=============================================================================
+
+.declare fBUFFER_0      Base=r64.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
+.declare fBUFFER_1      Base=r80.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
+.declare fBUFFER_2      Base=r96.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
+.declare fBUFFER_3      Base=r112.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
+.declare fBUFFER_4      Base=r28.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
+.declare fBUFFER_5      Base=r46.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=f
+
+.declare udBUFFER_0     Base=r64.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
+.declare udBUFFER_1     Base=r80.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
+.declare udBUFFER_2     Base=r96.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
+.declare udBUFFER_3     Base=r112.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
+.declare udBUFFER_4     Base=r28.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
+.declare udBUFFER_5     Base=r46.0       ElementSize=4       SrcRegion=<8;8,1>       DstRegion=<1>       Type=ud
+
+.declare uwBUFFER_0     Base=r64.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
+.declare uwBUFFER_1     Base=r80.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
+.declare uwBUFFER_2     Base=r96.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
+.declare uwBUFFER_3     Base=r112.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
+.declare uwBUFFER_4     Base=r28.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
+.declare uwBUFFER_5     Base=r46.0       ElementSize=2       SrcRegion=<16;16,1>     DstRegion=<1>       Type=uw
+
+.declare ubBUFFER_0     Base=r64.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
+.declare ubBUFFER_1     Base=r80.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
+.declare ubBUFFER_2     Base=r96.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
+.declare ubBUFFER_3     Base=r112.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
+.declare ubBUFFER_4     Base=r28.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
+.declare ubBUFFER_5     Base=r46.0       ElementSize=1       SrcRegion=<16;16,1>     DstRegion=<1>       Type=ub
+
+.declare ub4BUFFER_0    Base=r64.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
+.declare ub4BUFFER_1    Base=r80.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
+.declare ub4BUFFER_2    Base=r96.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
+.declare ub4BUFFER_3    Base=r112.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
+.declare ub4BUFFER_4    Base=r28.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
+.declare ub4BUFFER_5    Base=r46.0       ElementSize=1       SrcRegion=<32;8,4>      DstRegion=<4>       Type=ub
+
+//Pointer to mask reg
+
+
+//r18
+
+
+//Always keep Cannel Pointers and Offsets in same GRF, so that we can use
+// NODDCLR, NODDCHK flags. -rT
+
+
+.declare udCSC_COEFF_0  Base=r18.0    ElementSize=4 Type=ud       // 1 GRF
+
+//r19
+
+
+.declare udCSC_COEFF_1  Base=r19.0    ElementSize=4 Type=ud       // 1 GRF
+
+
+//r20
+
+.declare uwALPHA_MASK_REG_TEMP  Base=r20.0    ElementSize=2 SrcRegion=<16;16,1> Type=uw        // 1 GRF
+
+//r21
+
+.declare uwALPHA_MASK_REG       Base=r21.0         ElementSize=2 SrcRegion=<16;16,1> Type=uw        // 1 GRF
+
+//r22
+
+
+//Always keep Cannel Pointers and Offsets in same GRF, so that we can use
+// NODDCLR, NODDCHK flags. -rT
+
+
+//Keep fORIGIN_X_NLAS, fY_OFFSET_2ND_BLOCK, fSTEP_X_NLAS, pMSGDSC_COPY, ubCONST_ALPHA_COPY as
+//sub registers of same GRF to enable using NODDCLR NODDCHK. -rT
+
+//r23
+
+
+//Lumakey
+
+
+//r24
+
+
+//r25
+
+
+//r26
+
+
+//defines to generate LABELS during compile time.
+
+
+//Msg payload buffers; upto 4 full-size messages can be written
+
+
+.declare    mudMSGPAYLOAD0  Base=r29.0 ElementSize=4 SrcRegion=<8;8,1> Type=ud
+.declare    mudMSGPAYLOAD1  Base=r38.0 ElementSize=4 SrcRegion=<8;8,1> Type=ud
+.declare    mudMSGPAYLOAD2  Base=r47.0 ElementSize=4 SrcRegion=<8;8,1> Type=ud
+.declare    mudMSGPAYLOAD3  Base=r56.0 ElementSize=4 SrcRegion=<8;8,1> Type=ud
+
+.declare    muwMSGPAYLOAD0  Base=r29.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw
+.declare    muwMSGPAYLOAD1  Base=r38.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw
+.declare    muwMSGPAYLOAD2  Base=r47.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw
+.declare    muwMSGPAYLOAD3  Base=r56.0 ElementSize=2 SrcRegion=<16;16,1> Type=uw
+
+.declare    mubMSGPAYLOAD0  Base=r29.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD1  Base=r38.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD2  Base=r47.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD3  Base=r56.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD4  Base=r32.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD5  Base=r41.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD6  Base=r50.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+.declare    mubMSGPAYLOAD7  Base=r59.0 ElementSize=1 SrcRegion=<16;16,1> Type=ub
+
+
+       // the r17 register (nTEMP0) is originally defined from "Common.inc"
+       // instead of re-defining a nTEMP0 here, we use "SAVE_RGB" suffix for its naming
+
+       .declare uwTemp0 Base=r17.0 ElementSize=2 Type=uw
+
+
+//_SAVE_INC_
+
+
+       //wBUFF_CHNL_PTR points to buffer 0.
+       //Add appropriate offsets to get pointers for all buffers (1,2,3).
+       //Offset is zero for buffer 0.
+       add   (4)   a0.0<1>:uw   r22.0<4;4,1>:w          0:uw 
+
+       //Set DEST pointers according to output packing i.e. YUYV, YVYU, UYVY, VYUY
+       add     (4)             a0.4<1>:w                       r2.28<4;4,1>:ub    928:uw
+
+       /* X block origin. YUY2 or UYUV */
+    shl (1) r27.0<1>:d      r7.0<0;1,0>:w            1:w                        { NoDDClr }            // H. block origin need to be 2 times
+    mov (1) r27.1<1>:d      r7.1<0;1,0>:w                                       { NoDDClr, NoDDChk }   // Block origin (1st quadrant)
+    mov (1) r27.2<1>:ud     0x1001F:ud          { NoDDChk }            // Block width and height (32x2)
+
+// Rounding
+       // left
+       add.sat (4)     r[a0.0, 0]<2>:uw                r[a0.0,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,32]<2>:uw                r[a0.0, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,64]<2>:uw                r[a0.0, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,96]<2>:uw                r[a0.0, 96]<8;4,2>:uw           0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 0]<1>:uw                r[a0.1,  0]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,32]<1>:uw                r[a0.1, 32]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,64]<1>:uw                r[a0.1, 64]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,96]<1>:uw                r[a0.1, 96]<8;8,1>:uw           0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 0]<2>:uw                r[a0.2,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,32]<2>:uw                r[a0.2, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,64]<2>:uw                r[a0.2, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,96]<2>:uw                r[a0.2, 96]<8;4,2>:uw           0x0080:uw                       
+
+       // right
+       add.sat (4)     r[a0.0,16]<2>:uw                        r[a0.0, 16]<8;4,2>:uw                   0x0080:uw                       
+       add.sat (4)     r[a0.0,48]<2>:uw                r[a0.0, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,80]<2>:uw                r[a0.0, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,112]<2>:uw               r[a0.0, 112]<8;4,2>:uw          0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 16]<1>:uw                       r[a0.1, 16]<8;8,1>:uw                   0x0080:uw                       
+       add.sat (8)     r[a0.1,48]<1>:uw                r[a0.1, 48]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,80]<1>:uw                r[a0.1, 80]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,112]<1>:uw               r[a0.1, 112]<8;8,1>:uw          0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 16]<2>:uw                       r[a0.2,  16]<8;4,2>:uw          0x0080:uw                       
+       add.sat (4)     r[a0.2,48]<2>:uw                r[a0.2, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,80]<2>:uw                r[a0.2, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,112]<2>:uw               r[a0.2, 112]<8;4,2>:uw          0x0080:uw                       
+
+    add (4)    a0.0<1>:uw    r22.0<4;4,1>:w    512:uw
+       // left
+       add.sat (4)     r[a0.0, 0]<2>:uw                r[a0.0,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,32]<2>:uw                r[a0.0, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,64]<2>:uw                r[a0.0, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,96]<2>:uw                r[a0.0, 96]<8;4,2>:uw           0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 0]<1>:uw                r[a0.1,  0]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,32]<1>:uw                r[a0.1, 32]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,64]<1>:uw                r[a0.1, 64]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,96]<1>:uw                r[a0.1, 96]<8;8,1>:uw           0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 0]<2>:uw                r[a0.2,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,32]<2>:uw                r[a0.2, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,64]<2>:uw                r[a0.2, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,96]<2>:uw                r[a0.2, 96]<8;4,2>:uw           0x0080:uw                       
+
+       // right
+       add.sat (4)     r[a0.0,16]<2>:uw                        r[a0.0, 16]<8;4,2>:uw                   0x0080:uw                       
+       add.sat (4)     r[a0.0,48]<2>:uw                r[a0.0, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,80]<2>:uw                r[a0.0, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,112]<2>:uw               r[a0.0, 112]<8;4,2>:uw          0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 16]<1>:uw                       r[a0.1, 16]<8;8,1>:uw                   0x0080:uw                       
+       add.sat (8)     r[a0.1,48]<1>:uw                r[a0.1, 48]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,80]<1>:uw                r[a0.1, 80]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,112]<1>:uw               r[a0.1, 112]<8;8,1>:uw          0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 16]<2>:uw                       r[a0.2,  16]<8;4,2>:uw          0x0080:uw                       
+       add.sat (4)     r[a0.2,48]<2>:uw                r[a0.2, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,80]<2>:uw                r[a0.2, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,112]<2>:uw               r[a0.2, 112]<8;4,2>:uw          0x0080:uw                       
+
+    add (4)    a0.0<1>:uw    r22.0<4;4,1>:w    1024:uw
+       // left
+       add.sat (4)     r[a0.0, 0]<2>:uw                r[a0.0,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,32]<2>:uw                r[a0.0, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,64]<2>:uw                r[a0.0, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,96]<2>:uw                r[a0.0, 96]<8;4,2>:uw           0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 0]<1>:uw                r[a0.1,  0]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,32]<1>:uw                r[a0.1, 32]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,64]<1>:uw                r[a0.1, 64]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,96]<1>:uw                r[a0.1, 96]<8;8,1>:uw           0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 0]<2>:uw                r[a0.2,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,32]<2>:uw                r[a0.2, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,64]<2>:uw                r[a0.2, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,96]<2>:uw                r[a0.2, 96]<8;4,2>:uw           0x0080:uw                       
+
+       // right
+       add.sat (4)     r[a0.0,16]<2>:uw                        r[a0.0, 16]<8;4,2>:uw                   0x0080:uw                       
+       add.sat (4)     r[a0.0,48]<2>:uw                r[a0.0, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,80]<2>:uw                r[a0.0, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,112]<2>:uw               r[a0.0, 112]<8;4,2>:uw          0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 16]<1>:uw                       r[a0.1, 16]<8;8,1>:uw                   0x0080:uw                       
+       add.sat (8)     r[a0.1,48]<1>:uw                r[a0.1, 48]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,80]<1>:uw                r[a0.1, 80]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,112]<1>:uw               r[a0.1, 112]<8;8,1>:uw          0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 16]<2>:uw                       r[a0.2,  16]<8;4,2>:uw          0x0080:uw                       
+       add.sat (4)     r[a0.2,48]<2>:uw                r[a0.2, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,80]<2>:uw                r[a0.2, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,112]<2>:uw               r[a0.2, 112]<8;4,2>:uw          0x0080:uw                       
+
+    add (4)    a0.0<1>:uw    r22.0<4;4,1>:w    1536:uw
+       // left
+       add.sat (4)     r[a0.0, 0]<2>:uw                r[a0.0,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,32]<2>:uw                r[a0.0, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,64]<2>:uw                r[a0.0, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,96]<2>:uw                r[a0.0, 96]<8;4,2>:uw           0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 0]<1>:uw                r[a0.1,  0]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,32]<1>:uw                r[a0.1, 32]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,64]<1>:uw                r[a0.1, 64]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,96]<1>:uw                r[a0.1, 96]<8;8,1>:uw           0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 0]<2>:uw                r[a0.2,  0]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,32]<2>:uw                r[a0.2, 32]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,64]<2>:uw                r[a0.2, 64]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,96]<2>:uw                r[a0.2, 96]<8;4,2>:uw           0x0080:uw                       
+
+       // right
+       add.sat (4)     r[a0.0,16]<2>:uw                        r[a0.0, 16]<8;4,2>:uw                   0x0080:uw                       
+       add.sat (4)     r[a0.0,48]<2>:uw                r[a0.0, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,80]<2>:uw                r[a0.0, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.0,112]<2>:uw               r[a0.0, 112]<8;4,2>:uw          0x0080:uw                       
+
+       add.sat (8)     r[a0.1, 16]<1>:uw                       r[a0.1, 16]<8;8,1>:uw                   0x0080:uw                       
+       add.sat (8)     r[a0.1,48]<1>:uw                r[a0.1, 48]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,80]<1>:uw                r[a0.1, 80]<8;8,1>:uw           0x0080:uw                       
+       add.sat (8)     r[a0.1,112]<1>:uw               r[a0.1, 112]<8;8,1>:uw          0x0080:uw                       
+
+       add.sat (4)     r[a0.2, 16]<2>:uw                       r[a0.2,  16]<8;4,2>:uw          0x0080:uw                       
+       add.sat (4)     r[a0.2,48]<2>:uw                r[a0.2, 48]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,80]<2>:uw                r[a0.2, 80]<8;4,2>:uw           0x0080:uw                       
+       add.sat (4)     r[a0.2,112]<2>:uw               r[a0.2, 112]<8;4,2>:uw          0x0080:uw                       
+
+    add (4)    a0.0<1>:uw    r22.0<4;4,1>:w    2048:uw
+       // restore pointer
+       add   (4)   a0.0<1>:uw   r22.0<4;4,1>:w          0:uw
+
+       mov (8) r28<1>:ud               r27<8;8,1>:ud
+       mov (8) r37<1>:ud               r27<8;8,1>:ud
+       add (1) r37.1<1>:d     r27.1<0;1,0>:d       2:d   // Point to 2nd part
+
+       /* a0.2 U, a0.1 Y, a0.0 V */
+
+       mov  (8)    r[a0.6,  0]<4>:ub    r[a0.0,   1]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 32]<4>:ub    r[a0.0,33]<32;8,4>:ub         { NoDDClr }    
+    mov (16)    r[a0.4,  0]<2>:ub    r[a0.1,   1]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4, 32]<2>:ub    r[a0.1,33]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,  0]<4>:ub    r[a0.2,   1]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5, 32]<4>:ub    r[a0.2,33]<32;8,4>:ub         { NoDDChk }
+
+       /* a0.4 + 288 = r38 */
+    mov  (8)    r[a0.6, 288]<4>:ub    r[a0.0,65]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 320]<4>:ub    r[a0.0,97]<32;8,4>:ub         { NoDDClr }
+    mov (16)    r[a0.4,288]<2>:ub    r[a0.1,65]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4,320]<2>:ub    r[a0.1,97]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,288]<4>:ub    r[a0.2,65]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5,320]<4>:ub    r[a0.2,97]<32;8,4>:ub         { NoDDChk }
+
+    send (1)    null<1>:d    r28       0xc                     0x60A8018:ud
+       send (1)    null<1>:d    r37    0xc                     0x60A8018:ud
+
+    // restore pointer
+       add   (4)   a0.0<1>:uw   r22.0<4;4,1>:w          512:uw
+
+       add (1) r28.1<1>:d     r27.1<0;1,0>:d       4:d   // Point to 2nd part
+       add (1) r37.1<1>:d     r27.1<0;1,0>:d       6:d   // Point to 2nd part
+
+
+       mov  (8)    r[a0.6,  0]<4>:ub    r[a0.0,   1]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 32]<4>:ub    r[a0.0,33]<32;8,4>:ub         { NoDDClr }    
+    mov (16)    r[a0.4,  0]<2>:ub    r[a0.1,   1]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4, 32]<2>:ub    r[a0.1,33]<32;16,2>:ub        { NoDDClr, NoDDChk }   
+    mov  (8)    r[a0.5,  0]<4>:ub    r[a0.2,   1]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5, 32]<4>:ub    r[a0.2,33]<32;8,4>:ub         { NoDDChk }
+
+    mov  (8)    r[a0.6, 288]<4>:ub    r[a0.0,65]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 320]<4>:ub    r[a0.0,97]<32;8,4>:ub         { NoDDClr }
+    mov (16)    r[a0.4,288]<2>:ub    r[a0.1,65]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4,320]<2>:ub    r[a0.1,97]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,288]<4>:ub    r[a0.2,65]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5,320]<4>:ub    r[a0.2,97]<32;8,4>:ub         { NoDDChk }
+
+    send (1)    null<1>:d    r28       0xc                     0x60A8018:ud
+       send (1)    null<1>:d    r37    0xc                     0x60A8018:ud
+
+    // restore pointer
+       add   (4)   a0.0<1>:uw   r22.0<4;4,1>:w          1024:uw
+
+       add (1) r28.1<1>:d     r27.1<0;1,0>:d       8:d   // Point to 2nd part
+       add (1) r37.1<1>:d     r27.1<0;1,0>:d       10:d   // Point to 2nd part
+
+
+       mov  (8)    r[a0.6,  0]<4>:ub    r[a0.0,   1]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 32]<4>:ub    r[a0.0,33]<32;8,4>:ub         { NoDDClr }    
+    mov (16)    r[a0.4,  0]<2>:ub    r[a0.1,   1]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4, 32]<2>:ub    r[a0.1,33]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,  0]<4>:ub    r[a0.2,   1]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5, 32]<4>:ub    r[a0.2,33]<32;8,4>:ub         { NoDDChk }
+
+    mov  (8)    r[a0.6, 288]<4>:ub    r[a0.0,65]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 320]<4>:ub    r[a0.0,97]<32;8,4>:ub         { NoDDClr }        
+    mov (16)    r[a0.4,288]<2>:ub    r[a0.1,65]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4,320]<2>:ub    r[a0.1,97]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,288]<4>:ub    r[a0.2,65]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5,320]<4>:ub    r[a0.2,97]<32;8,4>:ub         { NoDDChk }
+
+    send (1)    null<1>:d    r28       0xc                     0x60A8018:ud
+       send (1)    null<1>:d    r37    0xc                     0x60A8018:ud
+
+   // restore pointer
+       add   (4)   a0.0<1>:uw   r22.0<4;4,1>:w          1536:uw
+
+       add (1) r28.1<1>:d     r27.1<0;1,0>:d       12:d   // Point to 2nd part
+       add (1) r37.1<1>:d     r27.1<0;1,0>:d       14:d   // Point to 2nd part
+
+       mov  (8)    r[a0.6,  0]<4>:ub    r[a0.0,   1]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 32]<4>:ub    r[a0.0,33]<32;8,4>:ub         { NoDDClr }    
+    mov (16)    r[a0.4,  0]<2>:ub    r[a0.1,   1]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4, 32]<2>:ub    r[a0.1,33]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,  0]<4>:ub    r[a0.2,   1]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5, 32]<4>:ub    r[a0.2,33]<32;8,4>:ub         { NoDDChk }
+
+    mov  (8)    r[a0.6, 288]<4>:ub    r[a0.0,65]<32;8,4>:ub         { NoDDClr }
+    mov  (8)    r[a0.6, 320]<4>:ub    r[a0.0,97]<32;8,4>:ub         { NoDDClr }
+    mov (16)    r[a0.4,288]<2>:ub    r[a0.1,65]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov (16)    r[a0.4,320]<2>:ub    r[a0.1,97]<32;16,2>:ub        { NoDDClr, NoDDChk }
+    mov  (8)    r[a0.5,288]<4>:ub    r[a0.2,65]<32;8,4>:ub         { NoDDChk }
+    mov  (8)    r[a0.5,320]<4>:ub    r[a0.2,97]<32;8,4>:ub         { NoDDChk }
+
+    send (1)    null<1>:d    r28       0xc                     0x60A8018:ud
+       send (1)    null<1>:d    r37    0xc                     0x60A8018:ud
+
diff --git a/src/shaders/post_processing/gen8/pl2_to_pa.asm b/src/shaders/post_processing/gen8/pl2_to_pa.asm
new file mode 100644 (file)
index 0000000..55d9ced
--- /dev/null
@@ -0,0 +1,17 @@
+// Module name: AVS
+.kernel PL2_TO_PA
+.code
+
+#include "VP_Setup.g8a"
+#include "Set_Layer_0.g8a"
+#include "Set_AVS_Buf_0123_PL2.g8a"
+#include "PL2_AVS_Buf_0.g8a"
+#include "PL2_AVS_Buf_1.g8a"
+#include "PL2_AVS_Buf_2.g8a"
+#include "PL2_AVS_Buf_3.g8a"
+#include "Save_AVS_PA.g8a"        
+#include "EOT.g8a"
+
+.end_code  
+
+.end_kernel
diff --git a/src/shaders/post_processing/gen8/pl2_to_pa.g8b b/src/shaders/post_processing/gen8/pl2_to_pa.g8b
new file mode 100644 (file)
index 0000000..0c0cda1
--- /dev/null
@@ -0,0 +1,287 @@
+   { 0x00600001, 0x23600208, 0x008d0000, 0x00000000 },
+   { 0x00600001, 0x23200208, 0x008d0000, 0x00000000 },
+   { 0x00600001, 0x23400208, 0x008d0000, 0x00000000 },
+   { 0x00600041, 0x20603ae8, 0x3a8d0060, 0x000000f0 },
+   { 0x00200001, 0x21141ae8, 0x004500e0, 0x00000000 },
+   { 0x01000010, 0x20002220, 0x1600005a, 0x00010001 },
+   { 0x00000008, 0x22201248, 0x16000044, 0x00000000 },
+   { 0x00000005, 0x22201248, 0x16000220, 0x00030003 },
+   { 0x01000010, 0x20001261, 0x16000220, 0x00010001 },
+   { 0x00010020, 0x34000005, 0x0e001400, 0x00000090 },
+   { 0x01000010, 0x20001261, 0x16000220, 0x00020002 },
+   { 0x00010020, 0x34000005, 0x0e001400, 0x000000f0 },
+   { 0x01000010, 0x20001261, 0x16000220, 0x00030003 },
+   { 0x00010020, 0x34000005, 0x0e001400, 0x00000180 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000114 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000118 },
+   { 0x00000020, 0x34000004, 0x0e001400, 0x000001a0 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000118 },
+   { 0x00000001, 0x220012e8, 0x00000040, 0x00000000 },
+   { 0x00000040, 0x22203ae8, 0x3a004114, 0x00000200 },
+   { 0x00000040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000220 },
+   { 0x00000020, 0x34000004, 0x0e001400, 0x00000120 },
+   { 0x00110001, 0x220012e8, 0x00000040, 0x00000000 },
+   { 0x00110040, 0x22203ae8, 0x3a004114, 0x00000200 },
+   { 0x00110040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000220 },
+   { 0x00000001, 0x220012e8, 0x00000042, 0x00000000 },
+   { 0x00000040, 0x22203ae8, 0x3a004118, 0x00000200 },
+   { 0x00000040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000220 },
+   { 0x00000020, 0x34000004, 0x0e001400, 0x00000070 },
+   { 0x00110001, 0x220012e8, 0x00000042, 0x00000000 },
+   { 0x00110040, 0x22203ae8, 0x3a004118, 0x00000200 },
+   { 0x00110040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000220 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000114 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00800001, 0x22a01648, 0x10000000, 0xffffffff },
+   { 0x00000005, 0x23021288, 0x16000044, 0x00030003 },
+   { 0x00000001, 0x23203ae8, 0x000000f8, 0x00000000 },
+   { 0x00000001, 0x23383ae8, 0x000000f4, 0x00000000 },
+   { 0x00000001, 0x23303ae8, 0x00000060, 0x00000000 },
+   { 0x00000001, 0x23343ae8, 0x00000080, 0x00000000 },
+   { 0x00000001, 0x23283ae8, 0x000000c0, 0x00000000 },
+   { 0x00000001, 0x232c3ae8, 0x000000a0, 0x00000000 },
+   { 0x00000001, 0x233c0608, 0x00000000, 0x00000000 },
+   { 0x00000040, 0x233c0208, 0x0600033c, 0x08000000 },
+   { 0x00000001, 0x24083ae0, 0x000000c0, 0x00000000 },
+   { 0x00000048, 0x24083ae0, 0x3e000060, 0x41000000 },
+   { 0x00000248, 0x22e83ae8, 0x3e0000f4, 0x41e00000 },
+   { 0x00000641, 0x22e43ae8, 0x3e000080, 0x40800000 },
+   { 0x00000001, 0x24103ae0, 0x00000060, 0x00000000 },
+   { 0x00000648, 0x22f03ae8, 0x3e0000f4, 0x41000000 },
+   { 0x00000401, 0x22f40608, 0x00000000, 0x00000000 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00400001, 0x24003660, 0x30000000, 0x00006ea2 },
+   { 0x00400040, 0x24001860, 0x16690400, 0x00460046 },
+   { 0x00400009, 0x22c01868, 0x16690400, 0x00050005 },
+   { 0x00400001, 0x24003660, 0x30000000, 0x00006204 },
+   { 0x00400040, 0x24001860, 0x16690400, 0x00400040 },
+   { 0x00400209, 0x22401868, 0x16690400, 0x00050005 },
+   { 0x00000401, 0x22500608, 0x00000000, 0x01000100 },
+   { 0x00000001, 0x22d00608, 0x00000000, 0x00400040 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x28002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x048eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000a000 },
+   { 0x02000031, 0x28802248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000001 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x2a002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x048eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000a000 },
+   { 0x02000031, 0x2a802248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000002 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x2c002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x048eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000a000 },
+   { 0x02000031, 0x2c802248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000003 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x2e002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x048eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000a000 },
+   { 0x02000031, 0x2e802248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x00000000 },
+   { 0x00400040, 0x22082260, 0x1669005c, 0x03a003a0 },
+   { 0x00000209, 0x23601a28, 0x1e0000e0, 0x00010001 },
+   { 0x00000601, 0x23641a28, 0x000000e2, 0x00000000 },
+   { 0x00000401, 0x23680608, 0x00000000, 0x0001001f },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x02000200 },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x04000400 },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x06000600 },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x08000800 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x00000000 },
+   { 0x00600001, 0x23800208, 0x008d0360, 0x00000000 },
+   { 0x00600001, 0x24a00208, 0x008d0360, 0x00000000 },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x00000002 },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x02000200 },
+   { 0x00000040, 0x23840a28, 0x0e000364, 0x00000004 },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x00000006 },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x04000400 },
+   { 0x00000040, 0x23840a28, 0x0e000364, 0x00000008 },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x0000000a },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x06000600 },
+   { 0x00000040, 0x23840a28, 0x0e000364, 0x0000000c },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x0000000e },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00600001, 0x2fe00208, 0x008d0000, 0x00000000 },
+   { 0x07000031, 0x20002220, 0x0e000fe0, 0x82000010 },
diff --git a/src/shaders/post_processing/gen8/pl3_to_pa.asm b/src/shaders/post_processing/gen8/pl3_to_pa.asm
new file mode 100644 (file)
index 0000000..acb7670
--- /dev/null
@@ -0,0 +1,17 @@
+// Module name: AVS
+.kernel PL3_TO_PL3
+.code
+
+#include "VP_Setup.g8a"
+#include "Set_Layer_0.g8a"
+#include "Set_AVS_Buf_0123_PL3.g8a"
+#include "PL3_AVS_Buf_0.g8a"
+#include "PL3_AVS_Buf_1.g8a"
+#include "PL3_AVS_Buf_2.g8a"
+#include "PL3_AVS_Buf_3.g8a"
+#include "Save_AVS_PA.g8a"        
+#include "EOT.g8a"
+
+.end_code  
+
+.end_kernel
diff --git a/src/shaders/post_processing/gen8/pl3_to_pa.g8b b/src/shaders/post_processing/gen8/pl3_to_pa.g8b
new file mode 100644 (file)
index 0000000..d6798c2
--- /dev/null
@@ -0,0 +1,303 @@
+   { 0x00600001, 0x23600208, 0x008d0000, 0x00000000 },
+   { 0x00600001, 0x23200208, 0x008d0000, 0x00000000 },
+   { 0x00600001, 0x23400208, 0x008d0000, 0x00000000 },
+   { 0x00600041, 0x20603ae8, 0x3a8d0060, 0x000000f0 },
+   { 0x00200001, 0x21141ae8, 0x004500e0, 0x00000000 },
+   { 0x01000010, 0x20002220, 0x1600005a, 0x00010001 },
+   { 0x00000008, 0x22201248, 0x16000044, 0x00000000 },
+   { 0x00000005, 0x22201248, 0x16000220, 0x00030003 },
+   { 0x01000010, 0x20001261, 0x16000220, 0x00010001 },
+   { 0x00010020, 0x34000005, 0x0e001400, 0x00000090 },
+   { 0x01000010, 0x20001261, 0x16000220, 0x00020002 },
+   { 0x00010020, 0x34000005, 0x0e001400, 0x000000f0 },
+   { 0x01000010, 0x20001261, 0x16000220, 0x00030003 },
+   { 0x00010020, 0x34000005, 0x0e001400, 0x00000180 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000114 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000118 },
+   { 0x00000020, 0x34000004, 0x0e001400, 0x000001a0 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000118 },
+   { 0x00000001, 0x220012e8, 0x00000040, 0x00000000 },
+   { 0x00000040, 0x22203ae8, 0x3a004114, 0x00000200 },
+   { 0x00000040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000220 },
+   { 0x00000020, 0x34000004, 0x0e001400, 0x00000120 },
+   { 0x00110001, 0x220012e8, 0x00000040, 0x00000000 },
+   { 0x00110040, 0x22203ae8, 0x3a004114, 0x00000200 },
+   { 0x00110040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000220 },
+   { 0x00000001, 0x220012e8, 0x00000042, 0x00000000 },
+   { 0x00000040, 0x22203ae8, 0x3a004118, 0x00000200 },
+   { 0x00000040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000220 },
+   { 0x00000020, 0x34000004, 0x0e001400, 0x00000070 },
+   { 0x00110001, 0x220012e8, 0x00000042, 0x00000000 },
+   { 0x00110040, 0x22203ae8, 0x3a004118, 0x00000200 },
+   { 0x00110040, 0x22203ae8, 0x3e000220, 0xc1800000 },
+   { 0x00110001, 0x24003ae0, 0x000000c0, 0x00000000 },
+   { 0x00110048, 0x20c03ae8, 0x3a000060, 0x00000220 },
+   { 0x00000001, 0x24003ae0, 0x000000a0, 0x00000000 },
+   { 0x00000048, 0x20a03ae8, 0x3a000080, 0x00000114 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00800001, 0x22a01648, 0x10000000, 0xffffffff },
+   { 0x00000005, 0x23021288, 0x16000044, 0x00030003 },
+   { 0x00000001, 0x23203ae8, 0x000000f8, 0x00000000 },
+   { 0x00000001, 0x23383ae8, 0x000000f4, 0x00000000 },
+   { 0x00000001, 0x23303ae8, 0x00000060, 0x00000000 },
+   { 0x00000001, 0x23343ae8, 0x00000080, 0x00000000 },
+   { 0x00000001, 0x23283ae8, 0x000000c0, 0x00000000 },
+   { 0x00000001, 0x232c3ae8, 0x000000a0, 0x00000000 },
+   { 0x00000001, 0x233c0608, 0x00000000, 0x00000000 },
+   { 0x00000040, 0x233c0208, 0x0600033c, 0x08000000 },
+   { 0x00000001, 0x24083ae0, 0x000000c0, 0x00000000 },
+   { 0x00000048, 0x24083ae0, 0x3e000060, 0x41000000 },
+   { 0x00000248, 0x22e83ae8, 0x3e0000f4, 0x41e00000 },
+   { 0x00000641, 0x22e43ae8, 0x3e000080, 0x40800000 },
+   { 0x00000001, 0x24103ae0, 0x00000060, 0x00000000 },
+   { 0x00000648, 0x22f03ae8, 0x3e0000f4, 0x41000000 },
+   { 0x00000401, 0x22f40608, 0x00000000, 0x00000000 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00400001, 0x24003660, 0x30000000, 0x00006ea2 },
+   { 0x00400040, 0x24001860, 0x16690400, 0x00460046 },
+   { 0x00400009, 0x22c01868, 0x16690400, 0x00050005 },
+   { 0x00400001, 0x24003660, 0x30000000, 0x00006204 },
+   { 0x00400040, 0x24001860, 0x16690400, 0x00400040 },
+   { 0x00400209, 0x22401868, 0x16690400, 0x00050005 },
+   { 0x00000401, 0x22500608, 0x00000000, 0x01000100 },
+   { 0x00000001, 0x22d00608, 0x00000000, 0x00400040 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000000 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x28002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x28802248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb002 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x29002248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00000001, 0x22d00608, 0x00000000, 0x00400040 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000001 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x2a002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x2a802248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb002 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x2b002248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00000001, 0x22d00608, 0x00000000, 0x00400040 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000002 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x2c002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x2c802248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb002 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x2d002248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00000001, 0x22d00608, 0x00000000, 0x00400040 },
+   { 0x00000001, 0x220c0208, 0x0000000c, 0x00000000 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb000 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000d000 },
+   { 0x00000001, 0x23240608, 0x00000000, 0x00000003 },
+   { 0x00600001, 0x22200208, 0x008d0320, 0x00000000 },
+   { 0x02000031, 0x2e002248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb001 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x2e802248, 0x00000200, 0x00000200 },
+   { 0x00000040, 0x22000200, 0x060002f4, 0x044eb002 },
+   { 0x00000001, 0x22080608, 0x00000000, 0x0000e000 },
+   { 0x02000031, 0x2f002248, 0x00000200, 0x00000200 },
+   { 0x0000007e, 0x00000000, 0x00000000, 0x00000000 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x00000000 },
+   { 0x00400040, 0x22082260, 0x1669005c, 0x03a003a0 },
+   { 0x00000209, 0x23601a28, 0x1e0000e0, 0x00010001 },
+   { 0x00000601, 0x23641a28, 0x000000e2, 0x00000000 },
+   { 0x00000401, 0x23680608, 0x00000000, 0x0001001f },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x02000200 },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x04000400 },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x06000600 },
+   { 0x80400040, 0xc0001248, 0x168a8000, 0x00800080 },
+   { 0x80400040, 0xc0201248, 0x168a8020, 0x00800080 },
+   { 0x80400040, 0xc0401248, 0x168a8040, 0x00800080 },
+   { 0x80400040, 0xc0601248, 0x168a8060, 0x00800080 },
+   { 0x80600040, 0xa2001248, 0x168d8200, 0x00800080 },
+   { 0x80600040, 0xa2201248, 0x168d8220, 0x00800080 },
+   { 0x80600040, 0xa2401248, 0x168d8240, 0x00800080 },
+   { 0x80600040, 0xa2601248, 0x168d8260, 0x00800080 },
+   { 0x80400040, 0xc4001248, 0x168a8400, 0x00800080 },
+   { 0x80400040, 0xc4201248, 0x168a8420, 0x00800080 },
+   { 0x80400040, 0xc4401248, 0x168a8440, 0x00800080 },
+   { 0x80400040, 0xc4601248, 0x168a8460, 0x00800080 },
+   { 0x80400040, 0xc0101248, 0x168a8010, 0x00800080 },
+   { 0x80400040, 0xc0301248, 0x168a8030, 0x00800080 },
+   { 0x80400040, 0xc0501248, 0x168a8050, 0x00800080 },
+   { 0x80400040, 0xc0701248, 0x168a8070, 0x00800080 },
+   { 0x80600040, 0xa2101248, 0x168d8210, 0x00800080 },
+   { 0x80600040, 0xa2301248, 0x168d8230, 0x00800080 },
+   { 0x80600040, 0xa2501248, 0x168d8250, 0x00800080 },
+   { 0x80600040, 0xa2701248, 0x168d8270, 0x00800080 },
+   { 0x80400040, 0xc4101248, 0x168a8410, 0x00800080 },
+   { 0x80400040, 0xc4301248, 0x168a8430, 0x00800080 },
+   { 0x80400040, 0xc4501248, 0x168a8450, 0x00800080 },
+   { 0x80400040, 0xc4701248, 0x168a8470, 0x00800080 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x08000800 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x00000000 },
+   { 0x00600001, 0x23800208, 0x008d0360, 0x00000000 },
+   { 0x00600001, 0x24a00208, 0x008d0360, 0x00000000 },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x00000002 },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x02000200 },
+   { 0x00000040, 0x23840a28, 0x0e000364, 0x00000004 },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x00000006 },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x04000400 },
+   { 0x00000040, 0x23840a28, 0x0e000364, 0x00000008 },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x0000000a },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00400040, 0x22001a40, 0x166902c0, 0x06000600 },
+   { 0x00000040, 0x23840a28, 0x0e000364, 0x0000000c },
+   { 0x00000040, 0x24a40a28, 0x0e000364, 0x0000000e },
+   { 0x00600201, 0xec002288, 0x00cf8001, 0x00000000 },
+   { 0x00600201, 0xec202288, 0x00cf8021, 0x00000000 },
+   { 0x00800601, 0xc8002288, 0x00d28201, 0x00000000 },
+   { 0x00800601, 0xc8202288, 0x00d28221, 0x00000000 },
+   { 0x00600401, 0xea002288, 0x00cf8401, 0x00000000 },
+   { 0x00600401, 0xea202288, 0x00cf8421, 0x00000000 },
+   { 0x00600201, 0xed202288, 0x00cf8041, 0x00000000 },
+   { 0x00600201, 0xed402288, 0x00cf8061, 0x00000000 },
+   { 0x00800601, 0xc9202288, 0x00d28241, 0x00000000 },
+   { 0x00800601, 0xc9402288, 0x00d28261, 0x00000000 },
+   { 0x00600401, 0xeb202288, 0x00cf8441, 0x00000000 },
+   { 0x00600401, 0xeb402288, 0x00cf8461, 0x00000000 },
+   { 0x0c000031, 0x20002220, 0x06000380, 0x060a8018 },
+   { 0x0c000031, 0x20002220, 0x060004a0, 0x060a8018 },
+   { 0x00600001, 0x2fe00208, 0x008d0000, 0x00000000 },
+   { 0x07000031, 0x20002220, 0x0e000fe0, 0x82000010 },