Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[linux-2.6/mini2440.git] / drivers / video / s3c2410fb.h
blob9a6ba3e9d1b823bf7a9dc7db874cc37e7c26645f
1 /*
2 * linux/drivers/video/s3c2410fb.h
3 * Copyright (c) 2004 Arnaud Patard
5 * S3C2410 LCD Framebuffer Driver
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
9 * more details.
13 #ifndef __S3C2410FB_H
14 #define __S3C2410FB_H
16 enum s3c_drv_type {
17 DRV_S3C2410,
18 DRV_S3C2412,
21 struct s3c2410fb_info {
22 struct device *dev;
23 struct clk *clk;
25 struct resource *mem;
26 void __iomem *io;
27 void __iomem *irq_base;
29 enum s3c_drv_type drv_type;
30 struct s3c2410fb_hw regs;
32 unsigned int palette_ready;
34 /* keep these registers in case we need to re-write palette */
35 u32 palette_buffer[256];
36 u32 pseudo_pal[16];
39 #define PALETTE_BUFF_CLEAR (0x80000000) /* entry is clear/invalid */
41 int s3c2410fb_init(void);
43 #endif