Kfdtest: Change and move drm device function into KFDBaseComponentTest

It is for other test to reuse this function.

Change-Id: Ib0dbc1a267a5bbcd8078ab3265677b53531f86f3
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>


[ROCm/ROCR-Runtime commit: f8d19104aa]
This commit is contained in:
Eric Huang
2018-08-01 14:18:40 -04:00
committed by JinHuiEric Huang
orang tua 2f6d819f6c
melakukan 7162162847
4 mengubah file dengan 79 tambahan dan 117 penghapusan
@@ -22,9 +22,6 @@
*/
#include "KFDMemoryTest.hpp"
extern "C" {
#include <amdgpu.h>
}
#ifndef __KFD_GRAPHICS_INTEROP_TEST__H__
#define __KFD_GRAPHICS_INTEROP_TEST__H__
@@ -36,23 +33,6 @@ class KFDGraphicsInterop : public KFDMemoryTest
public:
KFDGraphicsInterop(void) {};
~KFDGraphicsInterop(void) {};
protected:
virtual void SetUp();
virtual void TearDown();
protected:
#define MAX_RENDER_NODES 64
struct {
int fd;
uint32_t major_version;
uint32_t minor_version;
amdgpu_device_handle device_handle;
uint32_t bdf;
} m_RenderNodes[MAX_RENDER_NODES];
// @brief Finds DRM Render node corresponding to gpuNode
// @return DRM Render Node if successful or -1 on failure
int FindDRMRenderNode(int gpuNode);
};
#endif