Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | /* * Functions to access the TSC2000 controller on TRAB board (used for scanning * thermo sensors) * * Copyright (C) 2003 Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de * * Copyright (C) 2002 DENX Software Engineering, Wolfgang Denk, wd@denx.de * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ #include <common.h> #include <s3c2400.h> #include "tsc2000.h" #include "Pt1000_temp_data.h" /* helper function */ #define abs(value) (((value) < 0) ? ((value)*-1) : (value)) /* * Maximal allowed deviation between two immediate meassurments of an analog * thermo channel. 1 DIGIT = 0.0276 °C. This is used to filter sporadic * "jumps" in measurment. */ #define MAX_DEVIATION 18 /* unit: DIGITs of adc; 18 DIGIT = 0.5 °C */ void spi_init(void) { S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO(); S3C24X0_SPI * const spi = S3C24X0_GetBase_SPI(); int i; /* Configure I/O ports. */ gpio->PDCON = (gpio->PDCON & 0xF3FFFF) | 0x040000; gpio->PGCON = (gpio->PGCON & 0x0F3FFF) | 0x008000; gpio->PGCON = (gpio->PGCON & 0x0CFFFF) | 0x020000; gpio->PGCON = (gpio->PGCON & 0x03FFFF) | 0x080000; CLR_CS_TOUCH(); spi->ch[0].SPPRE = 0x1F; /* Baud-rate ca. 514kHz */ spi->ch[0].SPPIN = 0x01; /* SPI-MOSI holds Level after last bit */ spi->ch[0].SPCON = 0x1A; /* Polling, Prescaler, Master, CPOL=0, CPHA=1 */ /* Dummy byte ensures clock to be low. */ for (i = 0; i < 10; i++) { spi->ch[0].SPTDAT = 0xFF; } spi_wait_transmit_done(); } void spi_wait_transmit_done(void) { S3C24X0_SPI * const spi = S3C24X0_GetBase_SPI(); while (!(spi->ch[0].SPSTA & 0x01)); /* wait until transfer is done */ } void tsc2000_write(unsigned short reg, unsigned short data) { S3C24X0_SPI * const spi = S3C24X0_GetBase_SPI(); unsigned int command; SET_CS_TOUCH(); command = reg; spi->ch[0].SPTDAT = (command & 0xFF00) >> 8; spi_wait_transmit_done(); spi->ch[0].SPTDAT = (command & 0x00FF); spi_wait_transmit_done(); spi->ch[0].SPTDAT = (data & 0xFF00) >> 8; spi_wait_transmit_done(); spi->ch[0].SPTDAT = (data & 0x00FF); spi_wait_transmit_done(); CLR_CS_TOUCH(); } unsigned short tsc2000_read (unsigned short reg) { unsigned short command, data; S3C24X0_SPI * const spi = S3C24X0_GetBase_SPI(); SET_CS_TOUCH(); command = 0x8000 | reg; spi->ch[0].SPTDAT = (command & 0xFF00) >> 8; spi_wait_transmit_done(); spi->ch[0].SPTDAT = (command & 0x00FF); spi_wait_transmit_done(); spi->ch[0].SPTDAT = 0xFF; spi_wait_transmit_done(); data = spi->ch[0].SPRDAT; spi->ch[0].SPTDAT = 0xFF; spi_wait_transmit_done(); CLR_CS_TOUCH(); return (spi->ch[0].SPRDAT & 0x0FF) | (data << 8); } void tsc2000_set_mux (unsigned int channel) { S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO(); CLR_MUX1_ENABLE; CLR_MUX2_ENABLE; CLR_MUX3_ENABLE; CLR_MUX4_ENABLE; switch (channel) { case 0: CLR_MUX0; CLR_MUX1; SET_MUX1_ENABLE; break; case 1: SET_MUX0; CLR_MUX1; SET_MUX1_ENABLE; break; case 2: CLR_MUX0; SET_MUX1; SET_MUX1_ENABLE; break; case 3: SET_MUX0; SET_MUX1; SET_MUX1_ENABLE; break; case 4: CLR_MUX0; CLR_MUX1; SET_MUX2_ENABLE; break; case 5: SET_MUX0; CLR_MUX1; SET_MUX2_ENABLE; break; case 6: CLR_MUX0; SET_MUX1; SET_MUX2_ENABLE; break; case 7: SET_MUX0; SET_MUX1; SET_MUX2_ENABLE; break; case 8: CLR_MUX0; CLR_MUX1; SET_MUX3_ENABLE; break; case 9: SET_MUX0; CLR_MUX1; SET_MUX3_ENABLE; break; case 10: CLR_MUX0; SET_MUX1; SET_MUX3_ENABLE; break; case 11: SET_MUX0; SET_MUX1; SET_MUX3_ENABLE; break; case 12: CLR_MUX0; CLR_MUX1; SET_MUX4_ENABLE; break; case 13: SET_MUX0; CLR_MUX1; SET_MUX4_ENABLE; break; case 14: CLR_MUX0; SET_MUX1; SET_MUX4_ENABLE; break; case 15: SET_MUX0; SET_MUX1; SET_MUX4_ENABLE; break; default: CLR_MUX0; CLR_MUX1; } } void tsc2000_set_range (unsigned int range) { S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO(); switch (range) { case 1: CLR_SEL_TEMP_V_0; SET_SEL_TEMP_V_1; CLR_SEL_TEMP_V_2; CLR_SEL_TEMP_V_3; break; case 2: CLR_SEL_TEMP_V_0; CLR_SEL_TEMP_V_1; CLR_SEL_TEMP_V_2; SET_SEL_TEMP_V_3; break; case 3: SET_SEL_TEMP_V_0; CLR_SEL_TEMP_V_1; SET_SEL_TEMP_V_2; CLR_SEL_TEMP_V_3; break; } } u16 tsc2000_read_channel (unsigned int channel) { u16 res; tsc2000_set_mux(channel); udelay(20 * TSC2000_DELAY_BASE); tsc2000_write(TSC2000_REG_ADC, 0x2036); adc_wait_conversion_done (); res = tsc2000_read(TSC2000_REG_AUX1); return res; } s32 tsc2000_contact_temp (void) { long adc_pt1000, offset; long u_pt1000; long contact_temp; long temp1, temp2; tsc2000_reg_init (); tsc2000_set_range (3); /* * Because of sporadic "jumps" in the measured adc values every * channel is read two times. If there is a significant difference * between the two measurements, then print an error and do a third * measurement, because it is very unlikely that a successive third * measurement goes also wrong. */ temp1 = tsc2000_read_channel (14); temp2 = tsc2000_read_channel (14); if (abs(temp2 - temp1) < MAX_DEVIATION) adc_pt1000 = temp2; else { printf ("%s: read adc value (channel 14) exceeded max allowed " "deviation: %d * 0.0276 °C\n", __FUNCTION__, MAX_DEVIATION); printf ("adc value 1: %ld DIGITs\nadc value 2: %ld DIGITs\n", temp1, temp2); adc_pt1000 = tsc2000_read_channel (14); printf ("use (third read) adc value: adc_pt1000 = " "%ld DIGITs\n", adc_pt1000); } debug ("read channel 14 (pt1000 adc value): %ld\n", adc_pt1000); temp1 = tsc2000_read_channel (15); temp2 = tsc2000_read_channel (15); if (abs(temp2 - temp1) < MAX_DEVIATION) offset = temp2; else { printf ("%s: read adc value (channel 15) exceeded max allowed " "deviation: %d * 0.0276 °C\n", __FUNCTION__, MAX_DEVIATION); printf ("adc value 1: %ld DIGITs\nadc value 2: %ld DIGITs\n", temp1, temp2); offset = tsc2000_read_channel (15); printf ("use (third read) adc value: offset = %ld DIGITs\n", offset); } debug ("read channel 15 (offset): %ld\n", offset); /* * Formula for calculating voltage drop on PT1000 resistor: u_pt1000 = * x_range3 * (adc_raw - offset) / 10. Formula to calculate x_range3: * x_range3 = (2500 * (1000000 + err_vref + err_amp3)) / (4095*6). The * error correction Values err_vref and err_amp3 are assumed as 0 in * u-boot, because this could cause only a very small error (< 1%). */ u_pt1000 = (101750 * (adc_pt1000 - offset)) / 10; debug ("u_pt1000: %ld\n", u_pt1000); if (tsc2000_interpolate(u_pt1000, Pt1000_temp_table, &contact_temp) == -1) { printf ("%s: error interpolating PT1000 vlaue\n", __FUNCTION__); return (-1000); } debug ("contact_temp: %ld\n", contact_temp); return contact_temp; } void tsc2000_reg_init (void) { S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO(); tsc2000_write(TSC2000_REG_ADC, 0x2036); tsc2000_write(TSC2000_REG_REF, 0x0011); tsc2000_write(TSC2000_REG_DACCTL, 0x0000); CON_MUX0; CON_MUX1; CON_MUX1_ENABLE; CON_MUX2_ENABLE; CON_MUX3_ENABLE; CON_MUX4_ENABLE; CON_SEL_TEMP_V_0; CON_SEL_TEMP_V_1; CON_SEL_TEMP_V_2; CON_SEL_TEMP_V_3; tsc2000_set_mux(0); tsc2000_set_range(0); } int tsc2000_interpolate(long value, long data[][2], long *result) { int i; /* the data is sorted and the first element is upper * limit so we can easily check for out-of-band values */ if (data[0][0] < value || data[1][0] > value) return -1; i = 1; while (data[i][0] < value) i++; /* To prevent overflow we have to store the intermediate result in 'long long'. */ *result = data[i-1][1] + ((unsigned long long)(data[i][1] - data[i-1][1]) * (unsigned long long)(value - data[i-1][0])) / (data[i][0] - data[i-1][0]); return 0; } void adc_wait_conversion_done(void) { while (!(tsc2000_read(TSC2000_REG_ADC) & (1 << 14))); } |