File: MEDIA_ST.md

package info (click to toggle)
intel-graphics-compiler 1.0.17791.18-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 102,312 kB
  • sloc: cpp: 935,343; lisp: 286,143; ansic: 16,196; python: 3,279; yacc: 2,487; lex: 1,642; pascal: 300; sh: 174; makefile: 27
file content (101 lines) | stat: -rw-r--r-- 2,750 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!---======================= begin_copyright_notice ============================

Copyright (C) 2020-2022 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ==========================-->

## Opcode

  MEDIA_ST = 0x38

## Format

| | | | | | | |
| --- | --- | --- | --- | --- | --- | --- |
| 0x38(MEDIA_ST) | Modifiers | Surface | Plane | Block_width | Block_height | X_offset |
|                | Y_offset  | Src     |       |             |              |          |


## Semantics


```

      UD reg_pitch = block_width < 4 ? 4 : nextPowerOf2(block_width);
      for (i = 0; i < block_height; ++i) {
        for (j = 0; j < block_width; ++j) {
          surface[y_offset+i][x_offset+j] = src[i*reg_pitch+j]; // one byte
        }
      }
```

## Description





```
    Writes <src> into a rectangular block of data to <surface>.
```


- **Modifiers(ub):**

  - Bit[2..0]: encodes the modifiers for the read

    - 0b000:  no modifiers
    - 0b001:  reserved
    - 0b010:  top_field -- for interleaved surfaces, indicates only the top field surface data are needed
    - 0b011:  bottom_field -- for interleaved surfaces, indicates only the bottom field surface data are needed.

- **Surface(ub):** Index of the surface variable.  It must be a 2D surface.

            - T0(SLM): no
            - T5(stateless): no

- **Plane(ub):** The index to the sub-plane as defined in different surface formats. See [5] for a description of the planes represented by each index value. Valid values are  [0], [3]


- **Block_width(ub):** Width in bytes of the block being accessed. Valid values are  [1], [64]


- **Block_height(ub):** Height in rows of blocks being accessed. Valid values are  [1], [64]


- **X_offset(scalar):** The X byte offset of the upper left corner of the block into the surface. Its value must be dword-aligned. Must have type UD


- **Y_offset(scalar):** The Y byte offset of the upper left corner of the block into the surface. Must have type UD


- **Src(raw_operand):** Values to be written. Each row starts at row+id * <register_pitch> bytes, and <block_width> bytes are written to the surface for each row


#### Properties
- **Out-of-bound Access:** On write: data is dropped.




## Text
```



    MEDIA_ST.<mods> (<block_width>, <block_height>) <surface>  <plane> <x_offset> <y_offset> <src> //<mods> is the bits for the modifiers field.
```
## Notes





```
    top_field and bottom_field modifiers are used to provide support for interleaved textures, by controlling the vertical line stride and vertical line stride offset of a media read.

    The following :ref:`table<table_MediaWidthHeightCombinations>` lists the legal width/height combination and their pitch.
```