aboutsummaryrefslogtreecommitdiffstats
path: root/include/video/kyro.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/video/kyro.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/video/kyro.h')
-rw-r--r--include/video/kyro.h92
1 files changed, 92 insertions, 0 deletions
diff --git a/include/video/kyro.h b/include/video/kyro.h
new file mode 100644
index 000000000000..1bed37cfa68c
--- /dev/null
+++ b/include/video/kyro.h
@@ -0,0 +1,92 @@
1/*
2 * linux/drivers/video/kyro/kryo.h
3 *
4 * Copyright (C) 2002 STMicroelectronics
5 * Copyright (C) 2004 Paul Mundt
6 *
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
9 * for more details.
10 */
11
12#ifndef _KYRO_H
13#define _KYRO_H
14
15struct kyrofb_info {
16 void __iomem *regbase;
17
18 u32 HTot; /* Hor Total Time */
19 u32 HFP; /* Hor Front Porch */
20 u32 HST; /* Hor Sync Time */
21 u32 HBP; /* Hor Back Porch */
22 s32 HSP; /* Hor Sync Polarity */
23 u32 VTot; /* Ver Total Time */
24 u32 VFP; /* Ver Front Porch */
25 u32 VST; /* Ver Sync Time */
26 u32 VBP; /* Ver Back Porch */
27 s32 VSP; /* Ver Sync Polarity */
28 u32 XRES; /* X Resolution */
29 u32 YRES; /* Y Resolution */
30 u32 VFREQ; /* Ver Frequency */
31 u32 PIXCLK; /* Pixel Clock */
32 u32 HCLK; /* Hor Clock */
33
34 /* Usefull to hold depth here for Linux */
35 u8 PIXDEPTH;
36
37#ifdef CONFIG_MTRR
38 int mtrr_handle;
39#endif
40};
41
42extern int kyro_dev_init(void);
43extern void kyro_dev_reset(void);
44
45extern unsigned char *kyro_dev_physical_fb_ptr(void);
46extern unsigned char *kyro_dev_virtual_fb_ptr(void);
47extern void *kyro_dev_physical_regs_ptr(void);
48extern void *kyro_dev_virtual_regs_ptr(void);
49extern unsigned int kyro_dev_fb_size(void);
50extern unsigned int kyro_dev_regs_size(void);
51
52extern u32 kyro_dev_overlay_offset(void);
53
54/*
55 * benedict.gaster@superh.com
56 * Added the follow IOCTLS for the creation of overlay services...
57 */
58#define KYRO_IOC_MAGIC 'k'
59
60#define KYRO_IOCTL_OVERLAY_CREATE _IO(KYRO_IOC_MAGIC, 0)
61#define KYRO_IOCTL_OVERLAY_VIEWPORT_SET _IO(KYRO_IOC_MAGIC, 1)
62#define KYRO_IOCTL_SET_VIDEO_MODE _IO(KYRO_IOC_MAGIC, 2)
63#define KYRO_IOCTL_UVSTRIDE _IO(KYRO_IOC_MAGIC, 3)
64#define KYRO_IOCTL_OVERLAY_OFFSET _IO(KYRO_IOC_MAGIC, 4)
65#define KYRO_IOCTL_STRIDE _IO(KYRO_IOC_MAGIC, 5)
66
67/*
68 * The follow 3 structures are used to pass data from user space into the kernel
69 * for the creation of overlay surfaces and setting the video mode.
70 */
71typedef struct _OVERLAY_CREATE {
72 u32 ulWidth;
73 u32 ulHeight;
74 int bLinear;
75} overlay_create;
76
77typedef struct _OVERLAY_VIEWPORT_SET {
78 u32 xOrgin;
79 u32 yOrgin;
80 u32 xSize;
81 u32 ySize;
82} overlay_viewport_set;
83
84typedef struct _SET_VIDEO_MODE {
85 u32 ulWidth;
86 u32 ulHeight;
87 u32 ulScan;
88 u8 displayDepth;
89 int bLinear;
90} set_video_mode;
91
92#endif /* _KYRO_H */