Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / dt3155 / dt3155_io.c
CommitLineData
aa337ef1 1/*
ef97e4ef
GKH
2 * Copyright 1996,2002,2005 Gregory D. Hager, Alfred A. Rizzi, Noah J. Cowan,
3 * Jason Lapenta, Scott Smedley
4 *
5 * This file is part of the DT3155 Device Driver.
6 *
7 * The DT3155 Device Driver is free software; you can redistribute it and/or
8 * modify 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 (at your
10 * option) any later version.
11 *
12 * The DT3155 Device Driver 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 GNU General
15 * Public License for more details.
16 */
aa337ef1 17
ef97e4ef
GKH
18/*
19 * This file provides some basic register io routines. It is modified from
20 * demo code provided by Data Translations.
21 */
aa337ef1 22
ef97e4ef 23#include <linux/delay.h>
aa337ef1
SS
24#include "dt3155.h"
25#include "dt3155_io.h"
26#include "dt3155_drv.h"
27
aa337ef1
SS
28
29/****** local copies of board's 32 bit registers ******/
3a8954e8
HS
30u32 even_dma_start_r; /* bit 0 should always be 0 */
31u32 odd_dma_start_r; /* .. */
32u32 even_dma_stride_r; /* bits 0&1 should always be 0 */
33u32 odd_dma_stride_r; /* .. */
34u32 even_pixel_fmt_r;
35u32 odd_pixel_fmt_r;
aa337ef1 36
ef97e4ef
GKH
37FIFO_TRIGGER_R fifo_trigger_r;
38XFER_MODE_R xfer_mode_r;
39CSR1_R csr1_r;
40RETRY_WAIT_CNT_R retry_wait_cnt_r;
41INT_CSR_R int_csr_r;
aa337ef1 42
3a8954e8
HS
43u32 even_fld_mask_r;
44u32 odd_fld_mask_r;
aa337ef1 45
ef97e4ef
GKH
46MASK_LENGTH_R mask_length_r;
47FIFO_FLAG_CNT_R fifo_flag_cnt_r;
48IIC_CLK_DUR_R iic_clk_dur_r;
49IIC_CSR1_R iic_csr1_r;
50IIC_CSR2_R iic_csr2_r;
51DMA_UPPER_LMT_R even_dma_upper_lmt_r;
52DMA_UPPER_LMT_R odd_dma_upper_lmt_r;
aa337ef1
SS
53
54
55
56/******** local copies of board's 8 bit I2C registers ******/
ef97e4ef
GKH
57I2C_CSR2 i2c_csr2;
58I2C_EVEN_CSR i2c_even_csr;
59I2C_ODD_CSR i2c_odd_csr;
60I2C_CONFIG i2c_config;
61u8 i2c_dt_id;
62u8 i2c_x_clip_start;
63u8 i2c_y_clip_start;
64u8 i2c_x_clip_end;
65u8 i2c_y_clip_end;
66u8 i2c_ad_addr;
67u8 i2c_ad_lut;
68I2C_AD_CMD i2c_ad_cmd;
69u8 i2c_dig_out;
70u8 i2c_pm_lut_addr;
71u8 i2c_pm_lut_data;
aa337ef1 72
ef97e4ef
GKH
73/*
74 * wait_ibsyclr()
75 *
76 * This function handles read/write timing and r/w timeout error
ef97e4ef
GKH
77 */
78static int wait_ibsyclr(u8 *lpReg)
aa337ef1 79{
ef97e4ef
GKH
80 /* wait 100 microseconds */
81 udelay(100L);
82 /* __delay(loops_per_sec/10000); */
59200df5
HS
83
84 ReadMReg(lpReg + IIC_CSR2, iic_csr2_r.reg);
ef97e4ef
GKH
85 if (iic_csr2_r.fld.NEW_CYCLE) {
86 /* if NEW_CYCLE didn't clear */
87 /* TIMEOUT ERROR */
88 dt3155_errno = DT_ERR_I2C_TIMEOUT;
59200df5
HS
89 return -ETIMEDOUT;
90 }
91
92 return 0; /* no error */
aa337ef1
SS
93}
94
ef97e4ef
GKH
95/*
96 * WriteI2C()
97 *
98 * This function handles writing to 8-bit DT3155 registers
99 *
100 * 1st parameter is pointer to 32-bit register base address
101 * 2nd parameter is reg. index;
102 * 3rd is value to be written
ef97e4ef
GKH
103 */
104int WriteI2C(u8 *lpReg, u_short wIregIndex, u8 byVal)
aa337ef1 105{
ef97e4ef 106 /* read 32 bit IIC_CSR2 register data into union */
aa337ef1 107
ef97e4ef 108 ReadMReg((lpReg + IIC_CSR2), iic_csr2_r.reg);
aa337ef1 109
ef97e4ef
GKH
110 /* for write operation */
111 iic_csr2_r.fld.DIR_RD = 0;
112 /* I2C address of I2C register: */
113 iic_csr2_r.fld.DIR_ADDR = wIregIndex;
114 /* 8 bit data to be written to I2C reg */
115 iic_csr2_r.fld.DIR_WR_DATA = byVal;
116 /* will start a direct I2C cycle: */
117 iic_csr2_r.fld.NEW_CYCLE = 1;
aa337ef1 118
ef97e4ef
GKH
119 /* xfer union data into 32 bit IIC_CSR2 register */
120 WriteMReg((lpReg + IIC_CSR2), iic_csr2_r.reg);
aa337ef1 121
ef97e4ef 122 /* wait for IIC cycle to finish */
59200df5 123 return wait_ibsyclr(lpReg);
aa337ef1
SS
124}
125
ef97e4ef
GKH
126/*
127 * ReadI2C()
128 *
129 * This function handles reading from 8-bit DT3155 registers
130 *
131 * 1st parameter is pointer to 32-bit register base address
132 * 2nd parameter is reg. index;
133 * 3rd is adrs of value to be read
ef97e4ef
GKH
134 */
135int ReadI2C(u8 *lpReg, u_short wIregIndex, u8 *byVal)
aa337ef1 136{
ef97e4ef 137 int writestat; /* status for return */
aa337ef1 138
ef97e4ef
GKH
139 /* read 32 bit IIC_CSR2 register data into union */
140 ReadMReg((lpReg + IIC_CSR2), iic_csr2_r.reg);
aa337ef1 141
ef97e4ef
GKH
142 /* for read operation */
143 iic_csr2_r.fld.DIR_RD = 1;
aa337ef1 144
ef97e4ef
GKH
145 /* I2C address of I2C register: */
146 iic_csr2_r.fld.DIR_ADDR = wIregIndex;
aa337ef1 147
ef97e4ef
GKH
148 /* will start a direct I2C cycle: */
149 iic_csr2_r.fld.NEW_CYCLE = 1;
aa337ef1 150
ef97e4ef
GKH
151 /* xfer union's data into 32 bit IIC_CSR2 register */
152 WriteMReg((lpReg + IIC_CSR2), iic_csr2_r.reg);
aa337ef1 153
ef97e4ef
GKH
154 /* wait for IIC cycle to finish */
155 writestat = wait_ibsyclr(lpReg);
aa337ef1 156
ef97e4ef
GKH
157 /* Next 2 commands read 32 bit IIC_CSR1 register's data into union */
158 /* first read data is in IIC_CSR1 */
159 ReadMReg((lpReg + IIC_CSR1), iic_csr1_r.reg);
aa337ef1 160
ef97e4ef
GKH
161 /* now get data u8 out of register */
162 *byVal = (u8) iic_csr1_r.fld.RD_DATA;
aa337ef1 163
ef97e4ef 164 return writestat;
aa337ef1 165}