cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

vt8500lcdfb.h (397B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 *  linux/drivers/video/vt8500lcdfb.h
      4 *
      5 *  Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
      6 */
      7
      8struct vt8500lcd_info {
      9	struct fb_info		fb;
     10	void __iomem		*regbase;
     11	void __iomem		*palette_cpu;
     12	dma_addr_t		palette_phys;
     13	size_t			palette_size;
     14	wait_queue_head_t	wait;
     15};
     16
     17static int bpp_values[] = {
     18	1,
     19	2,
     20	4,
     21	8,
     22	12,
     23	16,
     24	18,
     25	24,
     26};