mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	This relies on the old LCD implementation which is to be removed. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			27 lines
		
	
	
		
			535 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			535 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+
 | 
						|
 *
 | 
						|
 * Copyright (C) 2016  Nexell Co., Ltd.
 | 
						|
 *
 | 
						|
 * Author: junghyun, kim <jhkim@nexell.co.kr>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _NX__DISPLAY_DEV_H_
 | 
						|
#define _NX__DISPLAY_DEV_H_
 | 
						|
 | 
						|
struct nx_display_dev {
 | 
						|
	unsigned long base;
 | 
						|
	int module;
 | 
						|
	struct dp_sync_info sync;
 | 
						|
	struct dp_ctrl_info ctrl;
 | 
						|
	struct dp_plane_top top;
 | 
						|
	struct dp_plane_info planes[DP_PLANS_NUM];
 | 
						|
	int dev_type;
 | 
						|
	void *device;
 | 
						|
	struct dp_plane_info *fb_plane;
 | 
						|
	unsigned int depth;	/* byte per pixel */
 | 
						|
	unsigned int fb_addr;
 | 
						|
	unsigned int fb_size;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |