300 lines
10 KiB
C++
300 lines
10 KiB
C++
/*
|
|
* Copyright (c) 2017 - 2018, 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.
|
|
*/
|
|
|
|
#include "runtime/os_interface/32bit_memory.h"
|
|
#include "runtime/os_interface/linux/drm_buffer_object.h"
|
|
#include "unit_tests/fixtures/memory_management_fixture.h"
|
|
#include "unit_tests/os_interface/linux/device_command_stream_fixture.h"
|
|
#include "drm/i915_drm.h"
|
|
#include "test.h"
|
|
|
|
#include <memory>
|
|
|
|
using namespace OCLRT;
|
|
|
|
class TestedBufferObject : public BufferObject {
|
|
public:
|
|
TestedBufferObject(Drm *drm) : BufferObject(drm, 1, true) {
|
|
}
|
|
|
|
void tileBy(uint32_t mode) {
|
|
this->tiling_mode = mode;
|
|
}
|
|
|
|
void fillExecObject(drm_i915_gem_exec_object2 &execObject) override {
|
|
BufferObject::fillExecObject(execObject);
|
|
execObjectPointerFilled = &execObject;
|
|
}
|
|
|
|
drm_i915_gem_exec_object2 *execObjectPointerFilled = nullptr;
|
|
};
|
|
|
|
class DrmBufferObjectFixture : public MemoryManagementFixture {
|
|
public:
|
|
DrmMockCustom *mock;
|
|
TestedBufferObject *bo;
|
|
drm_i915_gem_exec_object2 execObjectsStorage[256];
|
|
|
|
void SetUp() override {
|
|
MemoryManagementFixture::SetUp();
|
|
this->mock = new DrmMockCustom;
|
|
ASSERT_NE(nullptr, this->mock);
|
|
bo = new TestedBufferObject(this->mock);
|
|
ASSERT_NE(nullptr, bo);
|
|
bo->setExecObjectsStorage(execObjectsStorage);
|
|
}
|
|
|
|
void TearDown() override {
|
|
delete bo;
|
|
if (this->mock->ioctl_expected.total >= 0) {
|
|
EXPECT_EQ(this->mock->ioctl_expected.total, this->mock->ioctl_cnt.total);
|
|
}
|
|
|
|
delete this->mock;
|
|
this->mock = nullptr;
|
|
MemoryManagementFixture::TearDown();
|
|
}
|
|
};
|
|
|
|
typedef Test<DrmBufferObjectFixture> DrmBufferObjectTest;
|
|
|
|
TEST_F(DrmBufferObjectTest, exec) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
|
|
auto ret = bo->exec(0, 0, 0);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
EXPECT_EQ(0u, mock->execBuffer.flags);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, givenDrmWithCoherencyPatchActiveWhenExecIsCalledThenFlagsContainNonCoherentFlag) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
mock->overideCoherencyPatchActive(true);
|
|
|
|
auto ret = bo->exec(0, 0, 0);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
uint64_t expectedFlag = I915_PRIVATE_EXEC_FORCE_NON_COHERENT;
|
|
uint64_t currentFlag = mock->execBuffer.flags;
|
|
EXPECT_EQ(expectedFlag, currentFlag);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, givenDrmWithCoherencyPatchActiveWhenExecIsCalledWithCoherencyRequestThenFlagsDontContainNonCoherentFlag) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
mock->overideCoherencyPatchActive(true);
|
|
|
|
auto ret = bo->exec(0, 0, 0, true);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
uint64_t expectedFlag = 0;
|
|
uint64_t currentFlag = mock->execBuffer.flags;
|
|
EXPECT_EQ(expectedFlag, currentFlag);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, givenDrmWithDataPortCoherencyPatchActiveWhenExecWithCoherencyRequestCalledThenSetExecFlag) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
mock->overideDataPortCoherencyPatchActive(true);
|
|
|
|
auto ret = bo->exec(0, 0, 0, true);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
EXPECT_NE(0u, mock->execBuffer.flags & I915_EXEC_DATA_PORT_COHERENT);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, givenDrmWithoutDataPortCoherencyPatchActiveWhenExecWithCoherencyRequestCalledThenDontSetExecFlag) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
mock->overideDataPortCoherencyPatchActive(false);
|
|
|
|
auto ret = bo->exec(0, 0, 0, true);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
EXPECT_EQ(0u, mock->execBuffer.flags & I915_EXEC_DATA_PORT_COHERENT);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, givenDrmWithDataPortCoherencyPatchActiveWhenExecWithoutCoherencyRequestCalledThenDontSetExecFlag) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
mock->overideDataPortCoherencyPatchActive(true);
|
|
|
|
auto ret = bo->exec(0, 0, 0, false);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
EXPECT_EQ(0u, mock->execBuffer.flags & I915_EXEC_DATA_PORT_COHERENT);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, exec_ioctlFailed) {
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = -1;
|
|
EXPECT_THROW(bo->exec(0, 0, 0), std::exception);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, setTiling_success) {
|
|
mock->ioctl_expected.total = 1; //set_tiling
|
|
auto ret = bo->setTiling(I915_TILING_X, 0);
|
|
EXPECT_TRUE(ret);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, setTiling_theSameTiling) {
|
|
mock->ioctl_expected.total = 0; //set_tiling
|
|
bo->tileBy(I915_TILING_X);
|
|
auto ret = bo->setTiling(I915_TILING_X, 0);
|
|
EXPECT_TRUE(ret);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, setTiling_ioctlFailed) {
|
|
mock->ioctl_expected.total = 1; //set_tiling
|
|
mock->ioctl_res = -1;
|
|
auto ret = bo->setTiling(I915_TILING_X, 0);
|
|
EXPECT_FALSE(ret);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, testExecObjectFlags) {
|
|
drm_i915_gem_exec_object2 execObject;
|
|
|
|
#ifdef __x86_64__
|
|
memset(&execObject, 0, sizeof(execObject));
|
|
bo->setAddress((void *)((uint64_t)1u << 34)); //anything above 4GB
|
|
bo->fillExecObject(execObject);
|
|
EXPECT_TRUE(execObject.flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS);
|
|
#endif
|
|
|
|
memset(&execObject, 0, sizeof(execObject));
|
|
bo->setAddress((void *)((uint64_t)1u << 31)); //anything below 4GB
|
|
bo->fillExecObject(execObject);
|
|
EXPECT_FALSE(execObject.flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, onPinBBhasOnlyBbEndAndForceNonCoherent) {
|
|
std::unique_ptr<uint32_t[]> buff(new uint32_t[1024]);
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
|
|
mock->overideCoherencyPatchActive(true);
|
|
std::unique_ptr<BufferObject> boToPin(new TestedBufferObject(this->mock));
|
|
ASSERT_NE(nullptr, boToPin.get());
|
|
|
|
bo->setAddress(buff.get());
|
|
BufferObject *boArray[1] = {boToPin.get()};
|
|
auto ret = bo->pin(boArray, 1);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
uint32_t bb_end = 0x05000000;
|
|
EXPECT_EQ(buff[0], bb_end);
|
|
EXPECT_GT(mock->execBuffer.batch_len, 0u);
|
|
uint32_t flag = I915_PRIVATE_EXEC_FORCE_NON_COHERENT;
|
|
EXPECT_TRUE((mock->execBuffer.flags & flag) == flag);
|
|
bo->setAddress(nullptr);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, onPinBBhasOnlyBbEndAndNoForceNonCoherent) {
|
|
std::unique_ptr<uint32_t[]> buff(new uint32_t[1024]);
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = 0;
|
|
|
|
mock->overideCoherencyPatchActive(false);
|
|
std::unique_ptr<BufferObject> boToPin(new TestedBufferObject(this->mock));
|
|
ASSERT_NE(nullptr, boToPin.get());
|
|
|
|
bo->setAddress(buff.get());
|
|
BufferObject *boArray[1] = {boToPin.get()};
|
|
auto ret = bo->pin(boArray, 1);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
uint32_t bb_end = 0x05000000;
|
|
EXPECT_EQ(buff[0], bb_end);
|
|
EXPECT_GT(mock->execBuffer.batch_len, 0u);
|
|
uint32_t flag = I915_PRIVATE_EXEC_FORCE_NON_COHERENT;
|
|
EXPECT_TRUE((mock->execBuffer.flags & flag) == 0);
|
|
bo->setAddress(nullptr);
|
|
}
|
|
|
|
TEST_F(DrmBufferObjectTest, onPinIoctlFailed) {
|
|
std::unique_ptr<uint32_t[]> buff(new uint32_t[1024]);
|
|
|
|
mock->ioctl_expected.total = 1;
|
|
mock->ioctl_res = -1;
|
|
this->mock->errnoValue = EINVAL;
|
|
|
|
std::unique_ptr<BufferObject> boToPin(new TestedBufferObject(this->mock));
|
|
ASSERT_NE(nullptr, boToPin.get());
|
|
|
|
bo->setAddress(buff.get());
|
|
BufferObject *boArray[1] = {boToPin.get()};
|
|
auto ret = bo->pin(boArray, 1);
|
|
EXPECT_EQ(EINVAL, ret);
|
|
}
|
|
|
|
TEST(DrmBufferObjectSimpleTest, givenInvalidBoWhenPinIsCalledThenErrorIsReturned) {
|
|
std::unique_ptr<uint32_t[]> buff(new uint32_t[256]);
|
|
std::unique_ptr<DrmMockCustom> mock(new DrmMockCustom);
|
|
ASSERT_NE(nullptr, mock.get());
|
|
std::unique_ptr<TestedBufferObject> bo(new TestedBufferObject(mock.get()));
|
|
ASSERT_NE(nullptr, bo.get());
|
|
drm_i915_gem_exec_object2 execObjectsStorage[3];
|
|
bo->setExecObjectsStorage(execObjectsStorage);
|
|
|
|
// fail DRM_IOCTL_I915_GEM_EXECBUFFER2 in pin
|
|
mock->ioctl_res = -1;
|
|
|
|
std::unique_ptr<BufferObject> boToPin(new TestedBufferObject(mock.get()));
|
|
ASSERT_NE(nullptr, boToPin.get());
|
|
|
|
bo->setAddress(buff.get());
|
|
mock->errnoValue = EFAULT;
|
|
|
|
BufferObject *boArray[1] = {boToPin.get()};
|
|
auto ret = bo->pin(boArray, 1);
|
|
EXPECT_EQ(EFAULT, ret);
|
|
}
|
|
|
|
TEST(DrmBufferObjectSimpleTest, givenArrayOfBosWhenPinnedThenAllBosArePinned) {
|
|
std::unique_ptr<uint32_t[]> buff(new uint32_t[256]);
|
|
std::unique_ptr<DrmMockCustom> mock(new DrmMockCustom);
|
|
ASSERT_NE(nullptr, mock.get());
|
|
std::unique_ptr<TestedBufferObject> bo(new TestedBufferObject(mock.get()));
|
|
ASSERT_NE(nullptr, bo.get());
|
|
drm_i915_gem_exec_object2 execObjectsStorage[4];
|
|
bo->setExecObjectsStorage(execObjectsStorage);
|
|
mock->ioctl_res = 0;
|
|
|
|
std::unique_ptr<TestedBufferObject> boToPin(new TestedBufferObject(mock.get()));
|
|
std::unique_ptr<TestedBufferObject> boToPin2(new TestedBufferObject(mock.get()));
|
|
std::unique_ptr<TestedBufferObject> boToPin3(new TestedBufferObject(mock.get()));
|
|
|
|
ASSERT_NE(nullptr, boToPin.get());
|
|
ASSERT_NE(nullptr, boToPin2.get());
|
|
ASSERT_NE(nullptr, boToPin3.get());
|
|
|
|
BufferObject *array[3] = {boToPin.get(), boToPin2.get(), boToPin3.get()};
|
|
|
|
bo->setAddress(buff.get());
|
|
auto ret = bo->pin(array, 3);
|
|
EXPECT_EQ(mock->ioctl_res, ret);
|
|
uint32_t bb_end = 0x05000000;
|
|
EXPECT_EQ(buff[0], bb_end);
|
|
|
|
EXPECT_LT(0u, mock->execBuffer.batch_len);
|
|
EXPECT_EQ(4u, mock->execBuffer.buffer_count); // 3 bos to pin plus 1 exec bo
|
|
EXPECT_EQ(reinterpret_cast<uintptr_t>(boToPin->execObjectPointerFilled), mock->execBuffer.buffers_ptr);
|
|
EXPECT_NE(nullptr, boToPin2->execObjectPointerFilled);
|
|
EXPECT_NE(nullptr, boToPin3->execObjectPointerFilled);
|
|
|
|
bo->setAddress(nullptr);
|
|
}
|