Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *  linux/drivers/video/vt8500lcdfb.h
0004  *
0005  *  Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
0006  */
0007 
0008 struct vt8500lcd_info {
0009     struct fb_info      fb;
0010     void __iomem        *regbase;
0011     void __iomem        *palette_cpu;
0012     dma_addr_t      palette_phys;
0013     size_t          palette_size;
0014     wait_queue_head_t   wait;
0015 };
0016 
0017 static int bpp_values[] = {
0018     1,
0019     2,
0020     4,
0021     8,
0022     12,
0023     16,
0024     18,
0025     24,
0026 };