Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

media driver implementation for the LibVA content protection interface #1086

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

shiqiangyu
Copy link
Contributor

No description provided.

Copy link
Contributor

@Xiaogangli-intel Xiaogangli-intel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please fix the build error.
Is this change for enabling content protection on Linux? If so, please refine the title.


pCpCtx = (PDDI_CP_CONTEXT)DdiMedia_GetContextFromContextID(ctx, protected_session, &ctxType);
DDI_CHK_NULL(pCpCtx, "Null pCpCtx.", VA_STATUS_ERROR_INVALID_CONTEXT);

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need send disconnect

case VAProtectedSessionExecuteBufferType:
exec_buff = (VAProtectedSessionExecuteBuffer *)pData;
ret = write(pCpCtx->fdMei, exec_buff->input.data, exec_buff->input.data_size);
if (ret == -1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should check more than -1 error code

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no handling for function id? how to know it is fw version cmd. need make logic clear to other reviewer.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should check more than -1 error code

Linux always returns -1 as error code, we have printed errno verbosely.

pBuf->uiType = type;
pBuf->format = Media_Format_Buffer;
pBuf->uiOffset = 0;
pBuf->pData = (uint8_t*)MOS_AllocAndZeroMemory(size * num_elements);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make sure buffer free

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure. Done.

int32_t alignedHeight = height;
uint32_t tag = 0;
int mem_type = mediaSurface->memType;
int32_t size = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't need protected surface implement

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.

@@ -271,6 +271,10 @@ int mos_set_context_param_bond(struct mos_linux_context *ctx,
struct i915_engine_class_instance *bond_ci,
unsigned int bond_count);

int mos_set_protected_buffer_params(struct mos_bufmgr *bufmgr,
uint64_t protected_surfacetag,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't need this api

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.

@@ -1569,6 +1569,51 @@ struct drm_i915_gem_context_param {
__u64 value;
};


struct drm_i915_gem_object_param {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also don't need this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.

@shiqiangyu
Copy link
Contributor Author

@XinfengZhang, this PR uses the new declaration like VADriverVTableProt in intel/libva#457, but looks like the build is using upstreamed LibVA header file and build failed,is there any way to resolve such kind of compilation issue? Thanks.

@shiqiangyu shiqiangyu force-pushed the libva_upstream_driver_part branch 5 times, most recently from 91c0215 to 391f9a5 Compare December 23, 2020 02:40
@shiqiangyu shiqiangyu changed the title Implement TEE FW version query based on Libva protected interface. Enable content protection on Linux Dec 28, 2020
@shiqiangyu
Copy link
Contributor Author

Please fix the build error.
Is this change for enabling content protection on Linux? If so, please refine the title.

Thanks for the comments, done.

@shiqiangyu shiqiangyu force-pushed the libva_upstream_driver_part branch from 391f9a5 to 3582000 Compare January 6, 2021 02:27
@shiqiangyu shiqiangyu force-pushed the libva_upstream_driver_part branch from 3582000 to 9599b7c Compare January 6, 2021 04:15
@shiqiangyu shiqiangyu changed the title Enable content protection on Linux media driver implementation for the LibVA content protection interface Jan 12, 2021
Copy link
Contributor

@dvrogozh dvrogozh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, add to commit message that this change requires libva API change. I.e. add a link to intel/libva#457. For example like this:

media driver implementation for the LibVA content protection interface

Requires: https://github.com/intel/libva/pull/457

{ VAProfileNone , VAEntrypointStats },
#ifdef VA_DRIVER_VTABLE_PROT_VERSION
{ VAProfileProtected , VAEntrypointProtectedTEEComm },
{ VAProfileProtected , (VAEntrypoint) 0x1000 },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(VAEntrypoint) 0x1000

What is this?

int ret = m_driverLoader.InitDriver(platforms[i]);
EXPECT_EQ(VA_STATUS_SUCCESS , ret) << "Platform = " << g_platformName[platforms[i]]
<< ", Failed function = m_driverLoader.InitDriver" << endl;
// int ret = m_driverLoader.InitDriver(platforms[i]);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why test is disabled?

@@ -29,6 +29,11 @@
#include "va/va_drmcommon.h"
#include "va/va_backend.h"
#include "va/va_backend_vpp.h"
#if defined(__has_include)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why so complex? Just add VAAPI version check here

@@ -350,7 +499,77 @@ VAStatus DdiMediaProtected::ProtectedSessionCreateBuffer(
void *data,
VABufferID *bufId)
{
return VA_STATUS_ERROR_UNIMPLEMENTED;
PDDI_MEDIA_CONTEXT pMediaCtx = nullptr;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Per https://github.com/intel/libva/pull/457/files, we don't execute vaProtectedSessionHwUpdate in the API and I don't see that this function is being called anywhere in the library. It seems this function is simply not needed anymore. Hence, why add implementation?

@@ -20,7 +20,7 @@ jobs:
- name: checkout libva
uses: actions/checkout@v2
with:
repository: intel/libva
repository: shiqiangyu/libva
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eventually, PR can't be merged with this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants