2 * linux/drivers/video/s3c2410fb.h
3 * Copyright (c) Arnaud Patard
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file COPYING in the main directory of this archive for
9 * S3C2410 LCD Controller Frame Buffer Driver
10 * based on skeletonfb.c, sa1100fb.h
14 * 2004-12-04: Arnaud Patard <arnaud.patard@rtp-net.org>
15 * - Moved dprintk to s3c2410fb.c
17 * 2004-09-07: Arnaud Patard <arnaud.patard@rtp-net.org>
18 * - Renamed from h1940fb.h to s3c2410fb.h
19 * - Changed h1940 to s3c2410
21 * 2004-07-15: Arnaud Patard <arnaud.patard@rtp-net.org>
33 struct s3c2410fb_info
{
39 void __iomem
*irq_base
;
41 enum s3c_drv_type drv_type
;
42 struct s3c2410fb_hw regs
;
44 unsigned int palette_ready
;
46 /* keep these registers in case we need to re-write palette */
47 u32 palette_buffer
[256];
51 #define PALETTE_BUFF_CLEAR (0x80000000) /* entry is clear/invalid */
53 int s3c2410fb_init(void);