blob: c791940c579b40d10b50829ec16da31b65f687c4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __SAA7146__
2#define __SAA7146__
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/delay.h> /* for delay-stuff */
5#include <linux/slab.h> /* for kmalloc/kfree */
6#include <linux/pci.h> /* for pci-config-stuff, vendor ids etc. */
7#include <linux/init.h> /* for "__init" */
8#include <linux/interrupt.h> /* for IMMEDIATE_BH */
9#include <linux/kmod.h> /* for kernel module loader */
10#include <linux/i2c.h> /* for i2c subsystem */
11#include <asm/io.h> /* for accessing devices */
12#include <linux/stringify.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020013#include <linux/mutex.h>
Ralf Baechle11763602007-10-23 20:42:11 +020014#include <linux/scatterlist.h>
Hans Verkuilef77a262009-02-07 07:23:40 -030015#include <media/v4l2-device.h>
Hans Verkuil6e65ca92012-04-29 16:47:47 -030016#include <media/v4l2-ctrls.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/vmalloc.h> /* for vmalloc() */
19#include <linux/mm.h> /* for vmalloc_to_page() */
20
Hans Verkuil3ff4ad82009-04-01 03:15:52 -030021#define SAA7146_VERSION_CODE 0x000600 /* 0.6.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#define saa7146_write(sxy,adr,dat) writel((dat),(sxy->mem+(adr)))
24#define saa7146_read(sxy,adr) readl(sxy->mem+(adr))
25
26extern unsigned int saa7146_debug;
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#ifndef DEBUG_VARIABLE
29 #define DEBUG_VARIABLE saa7146_debug
30#endif
31
Joe Perches44d0b802011-08-21 19:56:44 -030032#define ERR(fmt, ...) pr_err("%s: " fmt, __func__, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Joe Perches44d0b802011-08-21 19:56:44 -030034#define _DBG(mask, fmt, ...) \
35do { \
36 if (DEBUG_VARIABLE & mask) \
37 pr_debug("%s(): " fmt, __func__, ##__VA_ARGS__); \
38} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perches44d0b802011-08-21 19:56:44 -030040/* simple debug messages */
41#define DEB_S(fmt, ...) _DBG(0x01, fmt, ##__VA_ARGS__)
42/* more detailed debug messages */
43#define DEB_D(fmt, ...) _DBG(0x02, fmt, ##__VA_ARGS__)
44/* print enter and exit of functions */
45#define DEB_EE(fmt, ...) _DBG(0x04, fmt, ##__VA_ARGS__)
46/* i2c debug messages */
47#define DEB_I2C(fmt, ...) _DBG(0x08, fmt, ##__VA_ARGS__)
48/* vbi debug messages */
49#define DEB_VBI(fmt, ...) _DBG(0x10, fmt, ##__VA_ARGS__)
50/* interrupt debug messages */
51#define DEB_INT(fmt, ...) _DBG(0x20, fmt, ##__VA_ARGS__)
52/* capture debug messages */
53#define DEB_CAP(fmt, ...) _DBG(0x40, fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define SAA7146_ISR_CLEAR(x,y) \
56 saa7146_write(x, ISR, (y));
57
Paul Gortmakerde477252011-05-26 13:46:22 -040058struct module;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060struct saa7146_dev;
61struct saa7146_extension;
62struct saa7146_vv;
63
64/* saa7146 page table */
65struct saa7146_pgtable {
66 unsigned int size;
Al Viroa36ef6b2008-06-22 14:19:19 -030067 __le32 *cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 dma_addr_t dma;
69 /* used for offsets for u,v planes for planar capture modes */
70 unsigned long offset;
71 /* used for custom pagetables (used for example by budget dvb cards) */
72 struct scatterlist *slist;
Jon Burgess87c30192007-05-03 12:23:44 -030073 int nents;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
76struct saa7146_pci_extension_data {
77 struct saa7146_extension *ext;
78 void *ext_priv; /* most likely a name string */
79};
80
81#define MAKE_EXTENSION_PCI(x_var, x_vendor, x_device) \
82 { \
83 .vendor = PCI_VENDOR_ID_PHILIPS, \
84 .device = PCI_DEVICE_ID_PHILIPS_SAA7146, \
85 .subvendor = x_vendor, \
86 .subdevice = x_device, \
87 .driver_data = (unsigned long)& x_var, \
88 }
89
90struct saa7146_extension
91{
92 char name[32]; /* name of the device */
93#define SAA7146_USE_I2C_IRQ 0x1
94#define SAA7146_I2C_SHORT_DELAY 0x2
95 int flags;
96
97 /* pairs of subvendor and subdevice ids for
98 supported devices, last entry 0xffff, 0xfff */
99 struct module *module;
100 struct pci_driver driver;
101 struct pci_device_id *pci_tbl;
102
103 /* extension functions */
104 int (*probe)(struct saa7146_dev *);
105 int (*attach)(struct saa7146_dev *, struct saa7146_pci_extension_data *);
106 int (*detach)(struct saa7146_dev*);
107
108 u32 irq_mask; /* mask to indicate, which irq-events are handled by the extension */
109 void (*irq_func)(struct saa7146_dev*, u32* irq_mask);
110};
111
112struct saa7146_dma
113{
114 dma_addr_t dma_handle;
Al Viroa36ef6b2008-06-22 14:19:19 -0300115 __le32 *cpu_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118struct saa7146_dev
119{
120 struct module *module;
121
122 struct list_head item;
123
Hans Verkuilef77a262009-02-07 07:23:40 -0300124 struct v4l2_device v4l2_dev;
Hans Verkuil6e65ca92012-04-29 16:47:47 -0300125 struct v4l2_ctrl_handler ctrl_handler;
Hans Verkuilef77a262009-02-07 07:23:40 -0300126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* different device locks */
128 spinlock_t slock;
Hans Verkuil9af39712010-12-18 09:20:59 -0300129 struct mutex v4l2_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 unsigned char __iomem *mem; /* pointer to mapped IO memory */
Oliver Endriss804b4452007-07-12 20:37:50 -0300132 u32 revision; /* chip revision; needed for bug-workarounds*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /* pci-device & irq stuff*/
135 char name[32];
136 struct pci_dev *pci;
137 u32 int_todo;
138 spinlock_t int_slock;
139
140 /* extension handling */
141 struct saa7146_extension *ext; /* indicates if handled by extension */
142 void *ext_priv; /* pointer for extension private use (most likely some private data) */
143 struct saa7146_ext_vv *ext_vv_data;
144
145 /* per device video/vbi informations (if available) */
146 struct saa7146_vv *vv_data;
147 void (*vv_callback)(struct saa7146_dev *dev, unsigned long status);
148
149 /* i2c-stuff */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200150 struct mutex i2c_lock;
151
152 u32 i2c_bitrate;
153 struct saa7146_dma d_i2c; /* pointer to i2c memory */
154 wait_queue_head_t i2c_wq;
155 int i2c_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /* memories */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200158 struct saa7146_dma d_rps0;
159 struct saa7146_dma d_rps1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
Hans Verkuil45d80942009-02-07 07:38:12 -0300162static inline struct saa7146_dev *to_saa7146_dev(struct v4l2_device *v4l2_dev)
163{
164 return container_of(v4l2_dev, struct saa7146_dev, v4l2_dev);
165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* from saa7146_i2c.c */
168int saa7146_i2c_adapter_prepare(struct saa7146_dev *dev, struct i2c_adapter *i2c_adapter, u32 bitrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/* from saa7146_core.c */
171extern struct list_head saa7146_devices;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200172extern struct mutex saa7146_devices_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173int saa7146_register_extension(struct saa7146_extension*);
174int saa7146_unregister_extension(struct saa7146_extension*);
Mauro Carvalho Chehaba757ee22010-12-02 01:57:03 -0200175struct saa7146_format* saa7146_format_by_fourcc(struct saa7146_dev *dev, int fourcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176int saa7146_pgtable_alloc(struct pci_dev *pci, struct saa7146_pgtable *pt);
177void saa7146_pgtable_free(struct pci_dev *pci, struct saa7146_pgtable *pt);
178int saa7146_pgtable_build_single(struct pci_dev *pci, struct saa7146_pgtable *pt, struct scatterlist *list, int length );
Oliver Endriss804b4452007-07-12 20:37:50 -0300179void *saa7146_vmalloc_build_pgtable(struct pci_dev *pci, long length, struct saa7146_pgtable *pt);
180void saa7146_vfree_destroy_pgtable(struct pci_dev *pci, void *mem, struct saa7146_pgtable *pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181void saa7146_setgpio(struct saa7146_dev *dev, int port, u32 data);
182int saa7146_wait_for_debi_done(struct saa7146_dev *dev, int nobusyloop);
183
184/* some memory sizes */
185#define SAA7146_I2C_MEM ( 1*PAGE_SIZE)
186#define SAA7146_RPS_MEM ( 1*PAGE_SIZE)
187
188/* some i2c constants */
189#define SAA7146_I2C_TIMEOUT 100 /* i2c-timeout-value in ms */
190#define SAA7146_I2C_RETRIES 3 /* how many times shall we retry an i2c-operation? */
191#define SAA7146_I2C_DELAY 5 /* time we wait after certain i2c-operations */
192
193/* unsorted defines */
194#define ME1 0x0000000800
195#define PV1 0x0000000008
196
197/* gpio defines */
198#define SAA7146_GPIO_INPUT 0x00
199#define SAA7146_GPIO_IRQHI 0x10
200#define SAA7146_GPIO_IRQLO 0x20
201#define SAA7146_GPIO_IRQHL 0x30
202#define SAA7146_GPIO_OUTLO 0x40
203#define SAA7146_GPIO_OUTHI 0x50
204
205/* debi defines */
206#define DEBINOSWAP 0x000e0000
207
208/* define for the register programming sequencer (rps) */
209#define CMD_NOP 0x00000000 /* No operation */
210#define CMD_CLR_EVENT 0x00000000 /* Clear event */
211#define CMD_SET_EVENT 0x10000000 /* Set signal event */
212#define CMD_PAUSE 0x20000000 /* Pause */
213#define CMD_CHECK_LATE 0x30000000 /* Check late */
214#define CMD_UPLOAD 0x40000000 /* Upload */
215#define CMD_STOP 0x50000000 /* Stop */
216#define CMD_INTERRUPT 0x60000000 /* Interrupt */
217#define CMD_JUMP 0x80000000 /* Jump */
218#define CMD_WR_REG 0x90000000 /* Write (load) register */
219#define CMD_RD_REG 0xa0000000 /* Read (store) register */
220#define CMD_WR_REG_MASK 0xc0000000 /* Write register with mask */
221
222#define CMD_OAN MASK_27
223#define CMD_INV MASK_26
224#define CMD_SIG4 MASK_25
225#define CMD_SIG3 MASK_24
226#define CMD_SIG2 MASK_23
227#define CMD_SIG1 MASK_22
228#define CMD_SIG0 MASK_21
229#define CMD_O_FID_B MASK_14
230#define CMD_E_FID_B MASK_13
231#define CMD_O_FID_A MASK_12
232#define CMD_E_FID_A MASK_11
233
234/* some events and command modifiers for rps1 squarewave generator */
235#define EVT_HS (1<<15) // Source Line Threshold reached
236#define EVT_VBI_B (1<<9) // VSYNC Event
237#define RPS_OAN (1<<27) // 1: OR events, 0: AND events
238#define RPS_INV (1<<26) // Invert (compound) event
239#define GPIO3_MSK 0xFF000000 // GPIO #3 control bits
240
241/* Bit mask constants */
242#define MASK_00 0x00000001 /* Mask value for bit 0 */
243#define MASK_01 0x00000002 /* Mask value for bit 1 */
244#define MASK_02 0x00000004 /* Mask value for bit 2 */
245#define MASK_03 0x00000008 /* Mask value for bit 3 */
246#define MASK_04 0x00000010 /* Mask value for bit 4 */
247#define MASK_05 0x00000020 /* Mask value for bit 5 */
248#define MASK_06 0x00000040 /* Mask value for bit 6 */
249#define MASK_07 0x00000080 /* Mask value for bit 7 */
250#define MASK_08 0x00000100 /* Mask value for bit 8 */
251#define MASK_09 0x00000200 /* Mask value for bit 9 */
252#define MASK_10 0x00000400 /* Mask value for bit 10 */
253#define MASK_11 0x00000800 /* Mask value for bit 11 */
254#define MASK_12 0x00001000 /* Mask value for bit 12 */
255#define MASK_13 0x00002000 /* Mask value for bit 13 */
256#define MASK_14 0x00004000 /* Mask value for bit 14 */
257#define MASK_15 0x00008000 /* Mask value for bit 15 */
258#define MASK_16 0x00010000 /* Mask value for bit 16 */
259#define MASK_17 0x00020000 /* Mask value for bit 17 */
260#define MASK_18 0x00040000 /* Mask value for bit 18 */
261#define MASK_19 0x00080000 /* Mask value for bit 19 */
262#define MASK_20 0x00100000 /* Mask value for bit 20 */
263#define MASK_21 0x00200000 /* Mask value for bit 21 */
264#define MASK_22 0x00400000 /* Mask value for bit 22 */
265#define MASK_23 0x00800000 /* Mask value for bit 23 */
266#define MASK_24 0x01000000 /* Mask value for bit 24 */
267#define MASK_25 0x02000000 /* Mask value for bit 25 */
268#define MASK_26 0x04000000 /* Mask value for bit 26 */
269#define MASK_27 0x08000000 /* Mask value for bit 27 */
270#define MASK_28 0x10000000 /* Mask value for bit 28 */
271#define MASK_29 0x20000000 /* Mask value for bit 29 */
272#define MASK_30 0x40000000 /* Mask value for bit 30 */
273#define MASK_31 0x80000000 /* Mask value for bit 31 */
274
275#define MASK_B0 0x000000ff /* Mask value for byte 0 */
276#define MASK_B1 0x0000ff00 /* Mask value for byte 1 */
277#define MASK_B2 0x00ff0000 /* Mask value for byte 2 */
278#define MASK_B3 0xff000000 /* Mask value for byte 3 */
279
280#define MASK_W0 0x0000ffff /* Mask value for word 0 */
281#define MASK_W1 0xffff0000 /* Mask value for word 1 */
282
283#define MASK_PA 0xfffffffc /* Mask value for physical address */
284#define MASK_PR 0xfffffffe /* Mask value for protection register */
285#define MASK_ER 0xffffffff /* Mask value for the entire register */
286
287#define MASK_NONE 0x00000000 /* No mask */
288
289/* register aliases */
290#define BASE_ODD1 0x00 /* Video DMA 1 registers */
291#define BASE_EVEN1 0x04
292#define PROT_ADDR1 0x08
293#define PITCH1 0x0C
294#define BASE_PAGE1 0x10 /* Video DMA 1 base page */
295#define NUM_LINE_BYTE1 0x14
296
297#define BASE_ODD2 0x18 /* Video DMA 2 registers */
298#define BASE_EVEN2 0x1C
299#define PROT_ADDR2 0x20
300#define PITCH2 0x24
301#define BASE_PAGE2 0x28 /* Video DMA 2 base page */
302#define NUM_LINE_BYTE2 0x2C
303
304#define BASE_ODD3 0x30 /* Video DMA 3 registers */
305#define BASE_EVEN3 0x34
306#define PROT_ADDR3 0x38
307#define PITCH3 0x3C
308#define BASE_PAGE3 0x40 /* Video DMA 3 base page */
309#define NUM_LINE_BYTE3 0x44
310
311#define PCI_BT_V1 0x48 /* Video/FIFO 1 */
312#define PCI_BT_V2 0x49 /* Video/FIFO 2 */
313#define PCI_BT_V3 0x4A /* Video/FIFO 3 */
314#define PCI_BT_DEBI 0x4B /* DEBI */
315#define PCI_BT_A 0x4C /* Audio */
316
317#define DD1_INIT 0x50 /* Init setting of DD1 interface */
318
319#define DD1_STREAM_B 0x54 /* DD1 B video data stream handling */
320#define DD1_STREAM_A 0x56 /* DD1 A video data stream handling */
321
322#define BRS_CTRL 0x58 /* BRS control register */
323#define HPS_CTRL 0x5C /* HPS control register */
324#define HPS_V_SCALE 0x60 /* HPS vertical scale */
325#define HPS_V_GAIN 0x64 /* HPS vertical ACL and gain */
326#define HPS_H_PRESCALE 0x68 /* HPS horizontal prescale */
327#define HPS_H_SCALE 0x6C /* HPS horizontal scale */
328#define BCS_CTRL 0x70 /* BCS control */
329#define CHROMA_KEY_RANGE 0x74
330#define CLIP_FORMAT_CTRL 0x78 /* HPS outputs formats & clipping */
331
332#define DEBI_CONFIG 0x7C
333#define DEBI_COMMAND 0x80
334#define DEBI_PAGE 0x84
335#define DEBI_AD 0x88
336
337#define I2C_TRANSFER 0x8C
338#define I2C_STATUS 0x90
339
340#define BASE_A1_IN 0x94 /* Audio 1 input DMA */
341#define PROT_A1_IN 0x98
342#define PAGE_A1_IN 0x9C
343
344#define BASE_A1_OUT 0xA0 /* Audio 1 output DMA */
345#define PROT_A1_OUT 0xA4
346#define PAGE_A1_OUT 0xA8
347
348#define BASE_A2_IN 0xAC /* Audio 2 input DMA */
349#define PROT_A2_IN 0xB0
350#define PAGE_A2_IN 0xB4
351
352#define BASE_A2_OUT 0xB8 /* Audio 2 output DMA */
353#define PROT_A2_OUT 0xBC
354#define PAGE_A2_OUT 0xC0
355
356#define RPS_PAGE0 0xC4 /* RPS task 0 page register */
357#define RPS_PAGE1 0xC8 /* RPS task 1 page register */
358
359#define RPS_THRESH0 0xCC /* HBI threshold for task 0 */
360#define RPS_THRESH1 0xD0 /* HBI threshold for task 1 */
361
362#define RPS_TOV0 0xD4 /* RPS timeout for task 0 */
363#define RPS_TOV1 0xD8 /* RPS timeout for task 1 */
364
365#define IER 0xDC /* Interrupt enable register */
366
367#define GPIO_CTRL 0xE0 /* GPIO 0-3 register */
368
369#define EC1SSR 0xE4 /* Event cnt set 1 source select */
370#define EC2SSR 0xE8 /* Event cnt set 2 source select */
371#define ECT1R 0xEC /* Event cnt set 1 thresholds */
372#define ECT2R 0xF0 /* Event cnt set 2 thresholds */
373
374#define ACON1 0xF4
375#define ACON2 0xF8
376
377#define MC1 0xFC /* Main control register 1 */
378#define MC2 0x100 /* Main control register 2 */
379
380#define RPS_ADDR0 0x104 /* RPS task 0 address register */
381#define RPS_ADDR1 0x108 /* RPS task 1 address register */
382
383#define ISR 0x10C /* Interrupt status register */
384#define PSR 0x110 /* Primary status register */
385#define SSR 0x114 /* Secondary status register */
386
387#define EC1R 0x118 /* Event counter set 1 register */
388#define EC2R 0x11C /* Event counter set 2 register */
389
390#define PCI_VDP1 0x120 /* Video DMA pointer of FIFO 1 */
391#define PCI_VDP2 0x124 /* Video DMA pointer of FIFO 2 */
392#define PCI_VDP3 0x128 /* Video DMA pointer of FIFO 3 */
393#define PCI_ADP1 0x12C /* Audio DMA pointer of audio out 1 */
394#define PCI_ADP2 0x130 /* Audio DMA pointer of audio in 1 */
395#define PCI_ADP3 0x134 /* Audio DMA pointer of audio out 2 */
396#define PCI_ADP4 0x138 /* Audio DMA pointer of audio in 2 */
397#define PCI_DMA_DDP 0x13C /* DEBI DMA pointer */
398
399#define LEVEL_REP 0x140,
400#define A_TIME_SLOT1 0x180, /* from 180 - 1BC */
401#define A_TIME_SLOT2 0x1C0, /* from 1C0 - 1FC */
402
403/* isr masks */
404#define SPCI_PPEF 0x80000000 /* PCI parity error */
405#define SPCI_PABO 0x40000000 /* PCI access error (target or master abort) */
406#define SPCI_PPED 0x20000000 /* PCI parity error on 'real time data' */
407#define SPCI_RPS_I1 0x10000000 /* Interrupt issued by RPS1 */
408#define SPCI_RPS_I0 0x08000000 /* Interrupt issued by RPS0 */
409#define SPCI_RPS_LATE1 0x04000000 /* RPS task 1 is late */
410#define SPCI_RPS_LATE0 0x02000000 /* RPS task 0 is late */
411#define SPCI_RPS_E1 0x01000000 /* RPS error from task 1 */
412#define SPCI_RPS_E0 0x00800000 /* RPS error from task 0 */
413#define SPCI_RPS_TO1 0x00400000 /* RPS timeout task 1 */
414#define SPCI_RPS_TO0 0x00200000 /* RPS timeout task 0 */
415#define SPCI_UPLD 0x00100000 /* RPS in upload */
416#define SPCI_DEBI_S 0x00080000 /* DEBI status */
417#define SPCI_DEBI_E 0x00040000 /* DEBI error */
418#define SPCI_IIC_S 0x00020000 /* I2C status */
419#define SPCI_IIC_E 0x00010000 /* I2C error */
420#define SPCI_A2_IN 0x00008000 /* Audio 2 input DMA protection / limit */
421#define SPCI_A2_OUT 0x00004000 /* Audio 2 output DMA protection / limit */
422#define SPCI_A1_IN 0x00002000 /* Audio 1 input DMA protection / limit */
423#define SPCI_A1_OUT 0x00001000 /* Audio 1 output DMA protection / limit */
424#define SPCI_AFOU 0x00000800 /* Audio FIFO over- / underflow */
425#define SPCI_V_PE 0x00000400 /* Video protection address */
426#define SPCI_VFOU 0x00000200 /* Video FIFO over- / underflow */
427#define SPCI_FIDA 0x00000100 /* Field ID video port A */
428#define SPCI_FIDB 0x00000080 /* Field ID video port B */
429#define SPCI_PIN3 0x00000040 /* GPIO pin 3 */
430#define SPCI_PIN2 0x00000020 /* GPIO pin 2 */
431#define SPCI_PIN1 0x00000010 /* GPIO pin 1 */
432#define SPCI_PIN0 0x00000008 /* GPIO pin 0 */
433#define SPCI_ECS 0x00000004 /* Event counter 1, 2, 4, 5 */
434#define SPCI_EC3S 0x00000002 /* Event counter 3 */
435#define SPCI_EC0S 0x00000001 /* Event counter 0 */
436
437/* i2c */
438#define SAA7146_I2C_ABORT (1<<7)
439#define SAA7146_I2C_SPERR (1<<6)
440#define SAA7146_I2C_APERR (1<<5)
441#define SAA7146_I2C_DTERR (1<<4)
442#define SAA7146_I2C_DRERR (1<<3)
443#define SAA7146_I2C_AL (1<<2)
444#define SAA7146_I2C_ERR (1<<1)
445#define SAA7146_I2C_BUSY (1<<0)
446
447#define SAA7146_I2C_START (0x3)
448#define SAA7146_I2C_CONT (0x2)
449#define SAA7146_I2C_STOP (0x1)
450#define SAA7146_I2C_NOP (0x0)
451
452#define SAA7146_I2C_BUS_BIT_RATE_6400 (0x500)
453#define SAA7146_I2C_BUS_BIT_RATE_3200 (0x100)
454#define SAA7146_I2C_BUS_BIT_RATE_480 (0x400)
455#define SAA7146_I2C_BUS_BIT_RATE_320 (0x600)
456#define SAA7146_I2C_BUS_BIT_RATE_240 (0x700)
457#define SAA7146_I2C_BUS_BIT_RATE_120 (0x000)
458#define SAA7146_I2C_BUS_BIT_RATE_80 (0x200)
459#define SAA7146_I2C_BUS_BIT_RATE_60 (0x300)
460
Oliver Endriss42077002006-11-03 15:13:52 -0300461static inline void SAA7146_IER_DISABLE(struct saa7146_dev *x, unsigned y)
462{
463 unsigned long flags;
464 spin_lock_irqsave(&x->int_slock, flags);
465 saa7146_write(x, IER, saa7146_read(x, IER) & ~y);
466 spin_unlock_irqrestore(&x->int_slock, flags);
467}
468
469static inline void SAA7146_IER_ENABLE(struct saa7146_dev *x, unsigned y)
470{
471 unsigned long flags;
472 spin_lock_irqsave(&x->int_slock, flags);
473 saa7146_write(x, IER, saa7146_read(x, IER) | y);
474 spin_unlock_irqrestore(&x->int_slock, flags);
475}
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477#endif