30 lines
		
	
	
		
			567 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			567 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-License-Identifier: MIT
 | 
						|
 *
 | 
						|
 * Copyright © 2017-2018 Intel Corporation
 | 
						|
 */
 | 
						|
 | 
						|
#include "../intel_timeline.h"
 | 
						|
 | 
						|
#include "mock_timeline.h"
 | 
						|
 | 
						|
void mock_timeline_init(struct intel_timeline *timeline, u64 context)
 | 
						|
{
 | 
						|
	timeline->gt = NULL;
 | 
						|
	timeline->fence_context = context;
 | 
						|
 | 
						|
	mutex_init(&timeline->mutex);
 | 
						|
 | 
						|
	INIT_ACTIVE_FENCE(&timeline->last_request);
 | 
						|
	INIT_LIST_HEAD(&timeline->requests);
 | 
						|
 | 
						|
	i915_syncmap_init(&timeline->sync);
 | 
						|
 | 
						|
	INIT_LIST_HEAD(&timeline->link);
 | 
						|
}
 | 
						|
 | 
						|
void mock_timeline_fini(struct intel_timeline *timeline)
 | 
						|
{
 | 
						|
	i915_syncmap_free(&timeline->sync);
 | 
						|
}
 |