aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/saa7146.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 /drivers/media/video/saa7146.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 'drivers/media/video/saa7146.h')
-rw-r--r--drivers/media/video/saa7146.h115
1 files changed, 115 insertions, 0 deletions
diff --git a/drivers/media/video/saa7146.h b/drivers/media/video/saa7146.h
new file mode 100644
index 000000000000..f305ec802ea6
--- /dev/null
+++ b/drivers/media/video/saa7146.h
@@ -0,0 +1,115 @@
1/*
2 saa7146.h - definitions philips saa7146 based cards
3 Copyright (C) 1999 Nathan Laredo (laredo@gnu.org)
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#ifndef __SAA7146__
21#define __SAA7146__
22
23#define SAA7146_VERSION_CODE 0x000101
24
25#include <linux/types.h>
26#include <linux/wait.h>
27
28#include <linux/videodev.h>
29
30#ifndef O_NONCAP
31#define O_NONCAP O_TRUNC
32#endif
33
34#define MAX_GBUFFERS 2
35#define FBUF_SIZE 0x190000
36
37#ifdef __KERNEL__
38
39struct saa7146_window
40{
41 int x, y;
42 ushort width, height;
43 ushort bpp, bpl;
44 ushort swidth, sheight;
45 short cropx, cropy;
46 ushort cropwidth, cropheight;
47 unsigned long vidadr;
48 int color_fmt;
49 ushort depth;
50};
51
52/* Per-open data for handling multiple opens on one device */
53struct device_open
54{
55 int isopen;
56 int noncapturing;
57 struct saa7146 *dev;
58};
59#define MAX_OPENS 3
60
61struct saa7146
62{
63 struct video_device video_dev;
64 struct video_picture picture;
65 struct video_audio audio_dev;
66 struct video_info vidinfo;
67 int user;
68 int cap;
69 int capuser;
70 int irqstate; /* irq routine is state driven */
71 int writemode;
72 int playmode;
73 unsigned int nr;
74 unsigned long irq; /* IRQ used by SAA7146 card */
75 unsigned short id;
76 struct pci_dev *dev;
77 unsigned char revision;
78 unsigned char boardcfg[64]; /* 64 bytes of config from eeprom */
79 unsigned long saa7146_adr; /* bus address of IO mem from PCI BIOS */
80 struct saa7146_window win;
81 unsigned char __iomem *saa7146_mem; /* pointer to mapped IO memory */
82 struct device_open open_data[MAX_OPENS];
83#define MAX_MARKS 16
84 /* for a/v sync */
85 int endmark[MAX_MARKS], endmarkhead, endmarktail;
86 u32 *dmaRPS1, *pageRPS1, *dmaRPS2, *pageRPS2, *dmavid1, *dmavid2,
87 *dmavid3, *dmaa1in, *dmaa1out, *dmaa2in, *dmaa2out,
88 *pagedebi, *pagevid1, *pagevid2, *pagevid3, *pagea1in,
89 *pagea1out, *pagea2in, *pagea2out;
90 wait_queue_head_t i2cq, debiq, audq, vidq;
91 u8 *vidbuf, *audbuf, *osdbuf, *dmadebi;
92 int audhead, vidhead, osdhead, audtail, vidtail, osdtail;
93 spinlock_t lock; /* the device lock */
94};
95#endif
96
97#ifdef _ALPHA_SAA7146
98#define saawrite(dat,adr) writel((dat), saa->saa7146_adr+(adr))
99#define saaread(adr) readl(saa->saa7146_adr+(adr))
100#else
101#define saawrite(dat,adr) writel((dat), saa->saa7146_mem+(adr))
102#define saaread(adr) readl(saa->saa7146_mem+(adr))
103#endif
104
105#define saaand(dat,adr) saawrite((dat) & saaread(adr), adr)
106#define saaor(dat,adr) saawrite((dat) | saaread(adr), adr)
107#define saaaor(dat,mask,adr) saawrite((dat) | ((mask) & saaread(adr)), adr)
108
109/* bitmask of attached hardware found */
110#define SAA7146_UNKNOWN 0x00000000
111#define SAA7146_SAA7111 0x00000001
112#define SAA7146_SAA7121 0x00000002
113#define SAA7146_IBMMPEG 0x00000004
114
115#endif