]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/media/video/cx18/cx18-io.h
V4L/DVB: cx18, cx23885, v4l2 doc, MAINTAINERS: Update Andy Walls' email address
[net-next-2.6.git] / drivers / media / video / cx18 / cx18-io.h
CommitLineData
b1526421
AW
1/*
2 * cx18 driver PCI memory mapped IO access routines
3 *
4 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
6afdeaf8 5 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
b1526421
AW
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
d267d851
AW
28/*
29 * Readback and retry of MMIO access for reliability:
30 * The concept was suggested by Steve Toth <stoth@linuxtv.org>.
6afdeaf8 31 * The implmentation is the fault of Andy Walls <awalls@md.metrocast.net>.
3f75c616
AW
32 *
33 * *write* functions are implied to retry the mmio unless suffixed with _noretry
34 * *read* functions never retry the mmio (it never helps to do so)
d267d851
AW
35 */
36
c641d09c 37/* Non byteswapping memory mapped IO */
3f75c616
AW
38static inline u32 cx18_raw_readl(struct cx18 *cx, const void __iomem *addr)
39{
40 return __raw_readl(addr);
41}
42
d267d851
AW
43static inline
44void cx18_raw_writel_noretry(struct cx18 *cx, u32 val, void __iomem *addr)
c641d09c
AW
45{
46 __raw_writel(val, addr);
c641d09c 47}
b1526421 48
d267d851
AW
49static inline void cx18_raw_writel(struct cx18 *cx, u32 val, void __iomem *addr)
50{
3f75c616
AW
51 int i;
52 for (i = 0; i < CX18_MAX_MMIO_WR_RETRIES; i++) {
d267d851 53 cx18_raw_writel_noretry(cx, val, addr);
3f75c616
AW
54 if (val == cx18_raw_readl(cx, addr))
55 break;
56 }
d267d851
AW
57}
58
3f75c616
AW
59/* Normal memory mapped IO */
60static inline u32 cx18_readl(struct cx18 *cx, const void __iomem *addr)
d267d851 61{
3f75c616 62 return readl(addr);
d267d851
AW
63}
64
d267d851 65static inline
3f75c616 66void cx18_writel_noretry(struct cx18 *cx, u32 val, void __iomem *addr)
c641d09c 67{
3f75c616 68 writel(val, addr);
c641d09c 69}
b1526421 70
3f75c616 71static inline void cx18_writel(struct cx18 *cx, u32 val, void __iomem *addr)
d267d851 72{
3f75c616
AW
73 int i;
74 for (i = 0; i < CX18_MAX_MMIO_WR_RETRIES; i++) {
75 cx18_writel_noretry(cx, val, addr);
76 if (val == cx18_readl(cx, addr))
77 break;
78 }
d267d851
AW
79}
80
d267d851 81static inline
3f75c616
AW
82void cx18_writel_expect(struct cx18 *cx, u32 val, void __iomem *addr,
83 u32 eval, u32 mask)
c641d09c 84{
3f75c616 85 int i;
daa1c164 86 u32 r;
3f75c616
AW
87 eval &= mask;
88 for (i = 0; i < CX18_MAX_MMIO_WR_RETRIES; i++) {
89 cx18_writel_noretry(cx, val, addr);
daa1c164
AW
90 r = cx18_readl(cx, addr);
91 if (r == 0xffffffff && eval != 0xffffffff)
92 continue;
93 if (eval == (r & mask))
3f75c616
AW
94 break;
95 }
c641d09c 96}
b1526421 97
3f75c616 98static inline u16 cx18_readw(struct cx18 *cx, const void __iomem *addr)
d267d851 99{
3f75c616 100 return readw(addr);
d267d851
AW
101}
102
d267d851
AW
103static inline
104void cx18_writew_noretry(struct cx18 *cx, u16 val, void __iomem *addr)
c641d09c
AW
105{
106 writew(val, addr);
c641d09c
AW
107}
108
d267d851
AW
109static inline void cx18_writew(struct cx18 *cx, u16 val, void __iomem *addr)
110{
3f75c616
AW
111 int i;
112 for (i = 0; i < CX18_MAX_MMIO_WR_RETRIES; i++) {
d267d851 113 cx18_writew_noretry(cx, val, addr);
3f75c616
AW
114 if (val == cx18_readw(cx, addr))
115 break;
116 }
d267d851
AW
117}
118
3f75c616
AW
119static inline u8 cx18_readb(struct cx18 *cx, const void __iomem *addr)
120{
121 return readb(addr);
122}
d267d851
AW
123
124static inline
125void cx18_writeb_noretry(struct cx18 *cx, u8 val, void __iomem *addr)
c641d09c
AW
126{
127 writeb(val, addr);
c641d09c
AW
128}
129
d267d851
AW
130static inline void cx18_writeb(struct cx18 *cx, u8 val, void __iomem *addr)
131{
3f75c616
AW
132 int i;
133 for (i = 0; i < CX18_MAX_MMIO_WR_RETRIES; i++) {
d267d851 134 cx18_writeb_noretry(cx, val, addr);
3f75c616
AW
135 if (val == cx18_readb(cx, addr))
136 break;
137 }
d267d851
AW
138}
139
ee2d64f5 140static inline
b1526421 141void cx18_memcpy_fromio(struct cx18 *cx, void *to,
ee2d64f5
AW
142 const void __iomem *from, unsigned int len)
143{
144 memcpy_fromio(to, from, len);
145}
146
b1526421
AW
147void cx18_memset_io(struct cx18 *cx, void __iomem *addr, int val, size_t count);
148
d267d851 149
c641d09c 150/* Access "register" region of CX23418 memory mapped I/O */
d267d851
AW
151static inline void cx18_write_reg_noretry(struct cx18 *cx, u32 val, u32 reg)
152{
153 cx18_writel_noretry(cx, val, cx->reg_mem + reg);
154}
155
c641d09c
AW
156static inline void cx18_write_reg(struct cx18 *cx, u32 val, u32 reg)
157{
3f75c616 158 cx18_writel(cx, val, cx->reg_mem + reg);
f056d29e
AW
159}
160
161static inline void cx18_write_reg_expect(struct cx18 *cx, u32 val, u32 reg,
162 u32 eval, u32 mask)
163{
3f75c616 164 cx18_writel_expect(cx, val, cx->reg_mem + reg, eval, mask);
c641d09c
AW
165}
166
167static inline u32 cx18_read_reg(struct cx18 *cx, u32 reg)
168{
3f75c616 169 return cx18_readl(cx, cx->reg_mem + reg);
c641d09c
AW
170}
171
d267d851 172
c641d09c
AW
173/* Access "encoder memory" region of CX23418 memory mapped I/O */
174static inline void cx18_write_enc(struct cx18 *cx, u32 val, u32 addr)
175{
3f75c616 176 cx18_writel(cx, val, cx->enc_mem + addr);
c641d09c
AW
177}
178
179static inline u32 cx18_read_enc(struct cx18 *cx, u32 addr)
180{
3f75c616 181 return cx18_readl(cx, cx->enc_mem + addr);
d267d851 182}
c641d09c 183
b1526421
AW
184void cx18_sw1_irq_enable(struct cx18 *cx, u32 val);
185void cx18_sw1_irq_disable(struct cx18 *cx, u32 val);
186void cx18_sw2_irq_enable(struct cx18 *cx, u32 val);
187void cx18_sw2_irq_disable(struct cx18 *cx, u32 val);
d20ceecd 188void cx18_sw2_irq_disable_cpu(struct cx18 *cx, u32 val);
b1526421
AW
189void cx18_setup_page(struct cx18 *cx, u32 addr);
190
b1526421 191#endif /* CX18_IO_H */