blob: f9b8e48e5ce63070a3871449e1fa980edad43e6a [file] [log] [blame]
/*
* Copyright (c) 2013-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.
*/
//!
//! \file media_interfaces_g9_skl.h
//! \brief All interfaces used for SKL that require factory creation
//!
#ifndef __MEDIA_INTERFACES_G9_SKL_H__
#define __MEDIA_INTERFACES_G9_SKL_H__
#include "media_interfaces_mhw.h"
#include "media_interfaces_codechal.h"
#include "media_interfaces_mmd.h"
#include "media_interfaces_cmhal.h"
#include "media_interfaces_mosutil.h"
#include "media_interfaces_vphal.h"
#include "media_interfaces_renderhal.h"
#include "media_interfaces_nv12top010.h"
#include "media_interfaces_decode_histogram.h"
#include "mhw_cp_interface.h"
#include "mhw_mi_g9_X.h"
#include "mhw_render_g9_X.h"
#include "mhw_sfc_g9_X.h"
#include "mhw_state_heap_g9.h"
#include "mhw_vebox_g9_X.h"
#include "mhw_vdbox_mfx_g9_skl.h"
#include "mhw_vdbox_hcp_g9_skl.h"
#include "mhw_vdbox_huc_g9_skl.h"
#include "mhw_vdbox_vdenc_g9_skl.h"
#include "codechal_hw_g9_X.h"
#ifdef _AVC_DECODE_SUPPORTED
#include "codechal_decode_avc.h"
#endif
#include "codechal_decode_downsampling_g9.h"
#ifdef _HEVC_DECODE_SUPPORTED
#include "codechal_decode_hevc.h"
#endif
#ifdef _JPEG_DECODE_SUPPORTED
#include "codechal_decode_jpeg.h"
#endif
#ifdef _MPEG2_DECODE_SUPPORTED
#include "codechal_decode_mpeg2.h"
#endif
#ifdef _VC1_DECODE_SUPPORTED
#include "codechal_decode_vc1_g9.h"
#endif
#ifdef _VP8_DECODE_SUPPORTED
#include "codechal_decode_vp8.h"
#endif
#ifdef _VP9_DECODE_SUPPORTED
#include "codechal_decode_vp9.h"
#endif
#include "codechal_decode_nv12top010_g9.h"
#ifdef _JPEG_ENCODE_SUPPORTED
#include "codechal_encode_jpeg.h"
#endif
#ifdef _HEVC_ENCODE_VME_SUPPORTED
#include "codechal_encode_hevc_g9_skl.h"
#include "codechal_fei_hevc_g9_skl.h"
#endif
#ifdef _MPEG2_ENCODE_VME_SUPPORTED
#include "codechal_encode_mpeg2_g9_skl.h"
#endif
#ifdef _AVC_ENCODE_VME_SUPPORTED
#include "codechal_encode_avc_g9_skl.h"
#include "codechal_fei_avc_g9_skl.h"
#include "codechal_fei_avc_g9.h"
#endif
#ifdef _AVC_ENCODE_VDENC_SUPPORTED
#include "codechal_vdenc_avc_g9_skl.h"
#endif
#include "codechal_encode_csc_ds_g9.h"
#include "codechal_memdecomp_g9.h"
#include "cm_hal_g9.h"
#include "vphal_g9.h"
#include "renderhal_g9.h"
#include "codechal_decode_histogram_vebox_g9.h"
class MhwInterfacesG9Skl : public MhwInterfaces
{
public:
using Mi = MhwMiInterfaceG9;
using Cp = MhwCpInterface;
using Render = MhwRenderInterfaceG9;
using Sfc = MhwSfcInterfaceG9;
using StateHeap = MHW_STATE_HEAP_INTERFACE_G9_X;
using Mfx = MhwVdboxMfxInterfaceG9Skl;
using Hcp = MhwVdboxHcpInterfaceG9Skl;
using Huc = MhwVdboxHucInterfaceG9Skl;
using Vdenc = MhwVdboxVdencInterfaceG9Skl;
using Vebox = MhwVeboxInterfaceG9;
MOS_STATUS Initialize(
CreateParams params,
PMOS_INTERFACE osInterface);
};
class MmdDeviceG9Skl : public MmdDevice
{
public:
using Mmd = MediaMemDecompStateG9;
MOS_STATUS Initialize(
PMOS_INTERFACE osInterface,
MhwInterfaces *mhwInterfaces);
};
class Nv12ToP010DeviceG9Skl : public Nv12ToP010Device
{
public:
using Nv12ToP010 = CodechalDecodeNV12ToP010G9;
MOS_STATUS Initialize(
PMOS_INTERFACE osInterface);
};
class CodechalDecodeInterfacesG9Skl
{
public:
#ifdef _AVC_DECODE_SUPPORTED
using Avc = CodechalDecodeAvc;
#endif
#ifdef _HEVC_DECODE_SUPPORTED
using Hevc = CodechalDecodeHevc;
#endif
#ifdef _JPEG_DECODE_SUPPORTED
using Jpeg = CodechalDecodeJpeg;
#endif
#ifdef _MPEG2_DECODE_SUPPORTED
using Mpeg2 = CodechalDecodeMpeg2;
#endif
#ifdef _VC1_DECODE_SUPPORTED
using Vc1 = CodechalDecodeVc1G9;
#endif
#ifdef _VP8_DECODE_SUPPORTED
using Vp8 = CodechalDecodeVp8;
#endif
#ifdef _VP9_DECODE_SUPPORTED
using Vp9 = CodechalDecodeVp9;
#endif
using Nv12ToP010 = CodechalDecodeNV12ToP010;
#ifdef _DECODE_PROCESSING_SUPPORTED
using FieldScaling = FieldScalingInterfaceG9;
#endif
};
class CodechalEncodeInterfacesG9Skl
{
public:
#ifdef _JPEG_ENCODE_SUPPORTED
using Jpeg = CodechalEncodeJpegState;
#endif
#ifdef _MPEG2_ENCODE_VME_SUPPORTED
using Mpeg2 = CodechalEncodeMpeg2G9Skl;
#endif
using CscDs = CodechalEncodeCscDsG9;
#ifdef _HEVC_ENCODE_VME_SUPPORTED
using HevcEnc = CodechalEncHevcStateG9Skl;
using HevcFei = CodechalFeiHevcStateG9Skl;
#endif
#ifdef _AVC_ENCODE_VME_SUPPORTED
using AvcEnc = CodechalEncodeAvcEncG9Skl;
using AvcFei = CodechalEncodeAvcEncFeiG9Skl;
#endif
#ifdef _AVC_ENCODE_VDENC_SUPPORTED
using AvcVdenc = CodechalVdencAvcStateG9Skl;
#endif
};
class CodechalInterfacesG9Skl : public CodechalDevice
{
public:
using Decode = CodechalDecodeInterfacesG9Skl;
using Encode = CodechalEncodeInterfacesG9Skl;
using Hw = CodechalHwInterfaceG9;
MOS_STATUS Initialize(
void *standardInfo,
void *settings,
MhwInterfaces *mhwInterfaces,
PMOS_INTERFACE osInterface) override;
};
class CMHalInterfacesG9Skl : public CMHalDevice
{
protected:
using CMHal = CM_HAL_G9_X;
MOS_STATUS Initialize(
CM_HAL_STATE *pCmState);
};
class MosUtilDeviceG9Skl : public MosUtilDevice
{
public:
using MosUtil = MediaUserSettingsMgr;
MOS_STATUS Initialize();
};
class VphalInterfacesG9Skl : public VphalDevice
{
public:
using VphalState = VphalStateG9;
MOS_STATUS Initialize(
PMOS_INTERFACE osInterface,
PMOS_CONTEXT osDriverContext,
bool bInitVphalState,
MOS_STATUS *eStatus);
};
class RenderHalInterfacesG9Skl : public RenderHalDevice
{
protected:
using XRenderHal = XRenderHal_Interface_g9;
MOS_STATUS Initialize();
};
class DecodeHistogramDeviceG9Skl : public DecodeHistogramDevice
{
public:
using DecodeHistogramVebox = CodechalDecodeHistogramVeboxG9;
MOS_STATUS Initialize(
CodechalHwInterface *hwInterface,
PMOS_INTERFACE osInterface);
};
#endif // __MEDIA_INTERFACES_G9_SKL_H__