1 /*
2  *  linux/drivers/video/vt8500lcdfb.h
3  *
4  *  Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
5  *
6  * This software is licensed under the terms of the GNU General Public
7  * License version 2, as published by the Free Software Foundation, and
8  * may be copied, distributed, and modified under those terms.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15 
16 struct vt8500lcd_info {
17 	struct fb_info		fb;
18 	void __iomem		*regbase;
19 	void __iomem		*palette_cpu;
20 	dma_addr_t		palette_phys;
21 	size_t			palette_size;
22 	wait_queue_head_t	wait;
23 };
24 
25 static int bpp_values[] = {
26 	1,
27 	2,
28 	4,
29 	8,
30 	12,
31 	16,
32 	18,
33 	24,
34 };
35