File: GmmPlatforms.h

package info (click to toggle)
intel-gmmlib 22.7.2%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 5,444 kB
  • sloc: cpp: 59,645; ansic: 11,358; makefile: 6
file content (122 lines) | stat: -rw-r--r-- 4,911 bytes parent folder | download | duplicates (3)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*==============================================================================
Copyright(c) 2017 Intel Corporation

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files(the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and / or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
============================================================================*/

#pragma once

#ifdef __cplusplus
#include "../inc/External/Common/GmmMemAllocator.hpp"
#include "../inc/External/Common/GmmTextureExt.h"

namespace GmmLib {
    
    class Context;
    class NON_PAGED_SECTION PlatformInfo : public GmmMemAllocator
    {
    public:
        static int32_t RefCount;
        static int32_t OverrideRefCount;

    protected:
        GMM_PLATFORM_INFO Data;
        Context *         pGmmLibContext;

    public:
        PlatformInfo(PLATFORM &Platform, Context* pGmmLibContext);
        virtual ~PlatformInfo()
        {
        }

        const GMM_PLATFORM_INFO& GetData()
        {
            return Data;
        }

        virtual void ApplyExtendedTexAlign(uint32_t CCSMode, ALIGNMENT& UnitAlign)
        {
            GMM_UNREFERENCED_PARAMETER(CCSMode);
            GMM_UNREFERENCED_PARAMETER(UnitAlign);
        }

        virtual uint8_t OverrideCompressionFormat(GMM_RESOURCE_FORMAT Format, uint8_t IsMC)
        {
            GMM_UNREFERENCED_PARAMETER(Format);
            GMM_UNREFERENCED_PARAMETER(IsMC);
            return 0;
        }

        void SetDataSurfaceMaxSize(uint64_t Size)
        {
            Data.SurfaceMaxSize = Size;
        }
        void SetDataFBCRequiredStolenMemorySize(uint32_t Size)
        {
            Data.FBCRequiredStolenMemorySize = Size;
        }
        void SetDataNumberFenceRegisters(uint32_t Number)
        {
            Data.NumberFenceRegisters = Number;
        }
        virtual void SetCCSFlag(GMM_RESOURCE_FLAG &Flags);
        virtual uint8_t ValidateMMC(GMM_TEXTURE_INFO &Surf);
        virtual uint8_t ValidateCCS(GMM_TEXTURE_INFO &Surf);
        virtual uint8_t ValidateUnifiedAuxSurface(GMM_TEXTURE_INFO &Surf);
        virtual uint8_t CheckFmtDisplayDecompressible(GMM_TEXTURE_INFO &Surf,
                                                      bool IsSupportedRGB64_16_16_16_16,
                                                      bool IsSupportedRGB32_8_8_8_8,
                                                      bool IsSupportedRGB32_2_10_10_10,
                                                      bool IsSupportedMediaFormats);

    };
}
#define GMM_PLATFORM_INFO_CLASS GmmLib::PlatformInfo
#else
typedef struct PlatformInfo PlatformInfo;
#define GMM_PLATFORM_INFO_CLASS PlatformInfo
#endif

//***************************************************************************
//
//                      GMM_PLATFORM_INFO Internl API
//
//***************************************************************************
#define SET_TILE_MODE_INFO(Mode, _Width, _Height, _Depth, _MtsWidth, _MtsHeight, _MtsDepth) \
{                                                                                           \
    Data.TileInfo[Mode].LogicalTileWidth      = GMM_BYTES(_Width);                          \
    Data.TileInfo[Mode].LogicalTileHeight     = GMM_SCANLINES(_Height);                     \
    Data.TileInfo[Mode].LogicalTileDepth      = (_Depth);                                   \
    Data.TileInfo[Mode].LogicalSize           = (_Width) * (_Height) * (_Depth);            \
    Data.TileInfo[Mode].MaxPitch              = GMM_KBYTE(256);                             \
    Data.TileInfo[Mode].MaxMipTailStartWidth  = (_MtsWidth);                                \
    Data.TileInfo[Mode].MaxMipTailStartHeight = (_MtsHeight);                               \
    Data.TileInfo[Mode].MaxMipTailStartDepth  = (_MtsDepth);                                \
}

#if __cplusplus
extern "C" {
#endif

    const GMM_PLATFORM_INFO *GMM_STDCALL __GmmGetPlatformInfo(void *pLibContext);
    void GMM_STDCALL __SetNumberFenceRegisters(void *pLibContext, uint32_t Number);

#if __cplusplus
}
#endif