-
Notifications
You must be signed in to change notification settings - Fork 352
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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); | ||
|
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make sure buffer free
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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, |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed.
@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. |
91c0215
to
391f9a5
Compare
Thanks for the comments, done. |
391f9a5
to
3582000
Compare
3582000
to
9599b7c
Compare
There was a problem hiding this 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 }, |
There was a problem hiding this comment.
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]); |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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.
No description provided.