aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx18/cx18-io.h
diff options
context:
space:
mode:
authorAndy Walls <awalls@radix.net>2008-08-30 15:03:44 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 07:36:58 -0400
commitb1526421eac9a912b2cda7e147f1da2aa31be278 (patch)
tree5c21474d865bd43dc00514f0a55a84bdf05ba440 /drivers/media/video/cx18/cx18-io.h
parent4519064c1c7ccdd319d26181bdd12ee2df6e336e (diff)
V4L/DVB (8913): cx18: Create cx18_ specific wrappers for all pci mmio accessesors.
cx18: Create cx18_ specific wrappers for all pci mmio accessesors. This is a first step in instrumenting all CX23418 PCI bus IO, to debug problems with accessing the CX23418's PCI memory mapped IO. Signed-off-by: Andy Walls <awalls@radix.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-io.h')
-rw-r--r--drivers/media/video/cx18/cx18-io.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/drivers/media/video/cx18/cx18-io.h b/drivers/media/video/cx18/cx18-io.h
new file mode 100644
index 000000000000..7c08c0add490
--- /dev/null
+++ b/drivers/media/video/cx18/cx18-io.h
@@ -0,0 +1,69 @@
1/*
2 * cx18 driver PCI memory mapped IO access routines
3 *
4 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
5 * Copyright (C) 2008 Andy Walls <awalls@radix.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 * 02111-1307 USA
21 */
22
23#ifndef CX18_IO_H
24#define CX18_IO_H
25
26#include "cx18-driver.h"
27
28/* This is a PCI post thing, where if the pci register is not read, then
29 the write doesn't always take effect right away. By reading back the
30 register any pending PCI writes will be performed (in order), and so
31 you can be sure that the writes are guaranteed to be done.
32
33 Rarely needed, only in some timing sensitive cases.
34 Apparently if this is not done some motherboards seem
35 to kill the firmware and get into the broken state until computer is
36 rebooted. */
37u32 cx18_write_sync(struct cx18 *cx, u32 val, void __iomem *addr);
38
39void cx18_writel(struct cx18 *cx, u32 val, void __iomem *addr);
40u32 cx18_readl(struct cx18 *cx, const void __iomem *addr);
41
42/* No endiannes conversion calls */
43void cx18_raw_writel(struct cx18 *cx, u32 val, void __iomem *addr);
44u32 cx18_raw_readl(struct cx18 *cx, const void __iomem *addr);
45
46/* Access "register" region of CX23418 memory mapped I/O */
47u32 cx18_read_reg(struct cx18 *cx, u32 reg);
48void cx18_write_reg(struct cx18 *cx, u32 val, u32 reg);
49u32 cx18_write_reg_sync(struct cx18 *cx, u32 val, u32 reg);
50
51/* Access "encoder memory" region of CX23418 memory mapped I/O */
52u32 cx18_read_enc(struct cx18 *cx, u32 addr);
53void cx18_write_enc(struct cx18 *cx, u32 val, u32 addr);
54u32 cx18_write_enc_sync(struct cx18 *cx, u32 val, u32 addr);
55
56void cx18_memcpy_fromio(struct cx18 *cx, void *to,
57 const void __iomem *from, unsigned int len);
58void cx18_memset_io(struct cx18 *cx, void __iomem *addr, int val, size_t count);
59
60void cx18_sw1_irq_enable(struct cx18 *cx, u32 val);
61void cx18_sw1_irq_disable(struct cx18 *cx, u32 val);
62void cx18_sw2_irq_enable(struct cx18 *cx, u32 val);
63void cx18_sw2_irq_disable(struct cx18 *cx, u32 val);
64void cx18_setup_page(struct cx18 *cx, u32 addr);
65
66/* Tries to recover from the CX23418 responding improperly on the PCI bus */
67int cx18_pci_try_recover(struct cx18 *cx);
68
69#endif /* CX18_IO_H */