Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
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 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 |
/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * * Module for the SI4709 FM Radio Chip of Samsung YP-R0 * - open the device (power on) * - close the device (power off) * - read registers * - write registers * - direct i2c access * - debug registers * * Copyright (c) 2012 Lorenzo Miori * * 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ /* We use both name and number of the original si470x device in order * to exploit the default device name present in ROM */ printk(SI4709_DEV_NAME ": " f, ## x) static DEFINE_MUTEX(si4709_lock); static unsigned char reg_rw_buf[SI4702_REG_BYTE]; static bool is_si4709_init = 0; static bool is_si4709_power = 0; static void do_null(void) { LOG("null funct call\n"); }; static void (*my_irq_callback)(void) = &do_null; static int SI4709_open(, ); static int SI4709_release(, ); static int SI4709_read(, char *buffer, size_t count, loff_t *ppos); static int SI4709_ioctl(, , unsigned int cmd, unsigned long arg); static int SI4709_detach(); static int SI4709_probe(); static int SI4709_attach(, int address, int kind); static int si4709_read_reg(int reg, uint16_t* buf); static int si4709_i2c_read(int size, unsigned char* buf); static int si4709_write_reg(int reg, uint16_t val); static int si4709_i2c_write(int size, unsigned char* buf); static void si4709_power_on(void); static void si4709_power_off(void); irqreturn_t; static = { .owner = THIS_MODULE, .open = SI4709_open, .read = SI4709_read, .release = SI4709_release, .ioctl = SI4709_ioctl, }; /* this is used by i2c_add_driver */ static = { .driver = { .name = SI4709_DEV_NAME, }, .attach_adapter = SI4709_probe, .detach_client = SI4709_detach, }; static unsigned short normal_i2c[] = {SI4709_I2C_SLAVE_ADDR, I2C_CLIENT_END}; /* var. name MUST be normal_i2c */ I2C_CLIENT_INSMOD; /* DO NOT MISS THIS after normal_i2c!!! from i2c.h */ static ; static int SI4709_read(, char *buffer, size_t count, loff_t *ppos) { return 0; } /* When opening the device file, the chip will be powered up */ static int SI4709_open(, ) { si4709_power_on(); return 0; } /* When closing the device file, the chip will be powered off */ static int SI4709_release(, ) { si4709_power_off(); return 0; } static int SI4709_ioctl(, , unsigned int cmd, unsigned long arg) { int ret = -1; sSi4709_t sData; sSi4709_i2c_t i2cData; sSi4709_irq_addr_t irqData; switch(cmd) { case IOCTL_SI4709_INIT: ret = 0; break; case IOCTL_SI4709_CLOSE: ret = 0; break; case IOCTL_SI4709_WRITE_BYTE: if(!copy_from_user((void*)&sData, (const void*)arg, _IOC_SIZE(cmd))) { if(si4709_write_reg(sData.addr, sData.value) != -1) { ret = 0; } } break; case IOCTL_SI4709_READ_BYTE: if(!copy_from_user((void*)&sData, (const void*)arg, _IOC_SIZE(cmd))) { if(si4709_read_reg(sData.addr, &sData.value) != -1) { if(!copy_to_user((void*)arg, &sData, sizeof(sSi4709_t))) { ret = 0; } } } break; case IOCTL_SI4709_I2C_READ: if(!copy_from_user((void*)&i2cData, (const void*)arg, _IOC_SIZE(cmd))) { if(si4709_i2c_read(i2cData.size, i2cData.buf) != -1) { if(!copy_to_user((void*)arg, &i2cData, sizeof(i2cData))) { ret = 0; } } } break; case IOCTL_SI4709_I2C_WRITE: if(!copy_from_user((void*)&i2cData, (const void*)arg, _IOC_SIZE(cmd))) { if(si4709_i2c_write(i2cData.size, i2cData.buf) != -1) { ret = 0; } } break; case IOCTL_SI4709_IRQ_CALLBACK: LOG("ioctl request\n"); if(!copy_from_user((void*)&irqData, (const void*)arg, _IOC_SIZE(cmd))) { LOG("function address received\n"); (*irqData.addr)(); // rockbox receives that!!! my_irq_callback = irqData.addr; ret = 0; } break; default: break; } if { LOG("ioctl failed!\n"); } return ret; } /* Hardware power management * Works setting up the RST pin (->GPIO: MX37_PIN_AUD5_RXC) */ static void si4709_power_on(void) { if { mxc_request_iomux(MX37_PIN_AUD5_RXC, 4); mxc_iomux_set_pad(MX37_PIN_AUD5_RXC, 5); mxc_set_gpio_direction(MX37_PIN_AUD5_RXC, 0); /* HIGH: turns on radio chip */ mxc_set_gpio_dataout(MX37_PIN_AUD5_RXC, 1); mdelay(100); is_si4709_power = 1; LOG("device powered on!\n"); } } static void si4709_power_off(void) { if { /* LOW: turns off radio chip, registers are reseted */ mxc_set_gpio_dataout(MX37_PIN_AUD5_RXC, 0); mxc_free_iomux(MX37_PIN_AUD5_RXC, 4); mdelay(100); is_si4709_power = 0; LOG("device powered off!\n"); } } /* Macro + 2 methods slightly modified from: mxc_si4702 char device module available in kernel */ (reg - SI4702_STATUSRSSI + SI4709_REG_NUM):\ ((reg >= SI4702_STATUSRSSI) && (reg < SI4709_REG_NUM))?\ (reg - SI4702_STATUSRSSI) : -1) static int si4709_read_reg(int reg, uint16_t *value) { int ret, index; if return -1; index = REG_to_BUF(reg); if return -1; mutex_lock(&si4709_lock); ret = i2c_master_recv(si4709_i2c, reg_rw_buf, SI4702_REG_BYTE); mutex_unlock(&si4709_lock); *value = (reg_rw_buf[index * 2] << 8) & 0xFF00; *value |= reg_rw_buf[index * 2 + 1] & 0x00FF; return ret; } /* Direct i2c channel reading */ static int si4709_i2c_read(int size, unsigned char *buf) { int ret; if return -1; mutex_lock(&si4709_lock); ret = i2c_master_recv(si4709_i2c, buf, size); mutex_unlock(&si4709_lock); return ret; } static int si4709_write_reg(int reg, uint16_t value) { int index; int ret = -1; if return -1; index = REG_to_BUF(reg); if return -1; reg_rw_buf[index * 2] = (value & 0xFF00) >> 8; reg_rw_buf[index * 2 + 1] = value & 0x00FF; mutex_lock(&si4709_lock); ret = i2c_master_send(si4709_i2c, ®_rw_buf[SI4702_RW_OFFSET * 2], (SI4702_STATUSRSSI - SI4702_POWERCFG) * 2); mutex_unlock(&si4709_lock); return ret; } /* Direct i2c channel writing */ static int si4709_i2c_write(int size, unsigned char *buf) { int ret; if return -1; mutex_lock(&si4709_lock); ret = i2c_master_send(si4709_i2c, buf, size); mutex_unlock(&si4709_lock); return ret; } /* I2C initialization stuff */ static int SI4709_detach() { int ret; ret = i2c_detach_client(client); if(ret < 0) LOG("detach failed %d\n", ret); return ret; } static int SI4709_probe() { int ret; ret = i2c_probe(adapter, &addr_data, &SI4709_attach); if(ret < 0) LOG("probe failed -> adapter id[%d] : %d\n", i2c_adapter_id(adapter), ret); return ret; } static int SI4709_attach(, int address, int kind) { int ret; if(i2c_adapter_id(adapter) != 0) { LOG("Different i2c adapter\n"); return -ENODEV; } if(address != SI4709_I2C_SLAVE_ADDR) { LOG("Different i2c address\n"); return -ENODEV; } si4709_i2c = kzalloc(sizeof(), GFP_KERNEL); if return -ENOMEM; si4709_i2c->addr = address; si4709_i2c->adapter = adapter; si4709_i2c->driver = &SI4709_driver; si4709_i2c->flags = 0; strlcpy(si4709_i2c->name, SI4709_DEV_NAME, I2C_NAME_SIZE); ret = i2c_attach_client(si4709_i2c); if LOG("i2c attach failed [%d]\n", i2c_adapter_id(adapter)); else LOG("i2c attached : adapter[%d] addr[0x%X]\n", i2c_adapter_id(adapter), si4709_i2c->addr); return ret; } //static void uswint_wq_handler(struct work_struct* work); //DECLARE_WORK(rds_work, uswint_wq_handler); /* This is to catch the interrupt of the GPIO pin of the radio chip */ irqreturn_t si4709_irq_handler { // disable_irq_nosync(FM_GPIO_INT_IRQ); (*my_irq_callback)(); // enable_irq(FM_GPIO_INT_IRQ); // schedule_work(&rds_work); return IRQ_HANDLED; } static void uswint_wq_handler() { //enable_irq(FM_GPIO_INT_IRQ); //(*my_irq_callback)(); //schedule_delayed_work(&uswint_work, msecs_to_jiffies(3000)); } /* Things to be done here: initialize pins and set RST pin to HIGH */ static void si4709_initialize(void) { /* Read a "random" register in order to initialize register cache */ uint16_t dummy; si4709_read_reg(SI4702_POWERCFG, &dummy); /* Radio Chip GPIO pin setup (input, no special configuration) */ mxc_request_iomux(MX37_PIN_GPIO1_4, IOMUX_CONFIG_ALT0); mxc_iomux_set_pad(MX37_PIN_GPIO1_4, 0); mxc_set_gpio_direction(MX37_PIN_GPIO1_4, 1); set_irq_type(FM_GPIO_INT_IRQ, IRQT_FALLING); if(request_irq(FM_GPIO_INT_IRQ, si4709_irq_handler, IRQF_TRIGGER_NONE, SI4709_DEV_NAME, NULL)) { LOG("IRQ Register Failed!\n"); return; } //set_irq_wake(FM_GPIO_INT_IRQ, 1); is_si4709_init = 1; } static ssize_t si4709_show_registers(, , char *buf) { int i; ssize_t len = 0; len += sprintf(buf+len, "\n"); len += sprintf(buf+len, " 0 1 2 3 4 5 6 7 8 9 a b c d e f\n"); len += sprintf(buf+len, " -----------------------------------------------\n"); len += sprintf(buf+len, "[%02Xh]:", 0); for(i=0; i<SI4709_REG_NUM; i++) { if(i && !(i%0x10)) len += sprintf(buf+len, "\n[%02Xh]:", i); len += sprintf(buf+len, "%04X ", reg_rw_buf[i]); } len += sprintf(buf+len, "\n"); return len; } static DEVICE_ATTR(registers, S_IRUSR | S_IRGRP, si4709_show_registers, NULL); static [] = { &dev_attr_registers.attr, NULL }; static = { .attrs = si4709_attributes }; static int si4709attr_probe() { int ret = 0; LOG("si4709 platform driver attached\n"); ret = sysfs_create_group(&pdev->dev.kobj, &si4709_attr_group); if( ret < 0 ) { LOG("si4709 sysfs create group error\n"); return -EINVAL; } return 0; } static int si4709attr_remove() { sysfs_remove_group(&pdev->dev.kobj, &si4709_attr_group); return 0; } static = { .probe = si4709attr_probe, .remove = si4709attr_remove, .driver = { .name = SI4709_DEV_NAME, .owner = THIS_MODULE, }, }; static = { .name = SI4709_DEV_NAME, .id = 0, }; /* Turn on chip, attach i2c driver and device driver, initialize and then turn off */ static int __init SI4709_init(void) { int ret; si4709_power_on(); ret = i2c_add_driver(&SI4709_driver); if /* >0 means error for i2c_add_driver */ { LOG("Can't add i2c driver\n"); return ret; } ret = register_chrdev(SI4709_DEV_NUM, SI4709_DEV_NAME, &SI4709_fops); if { LOG("Can't get major number for si4709 driver\n"); return ret; } si4709_initialize(); /* register platform device */ ret = platform_device_register(&si4709attr_device); if(ret) { LOG("failed to add platform device %s (%d) \n", si4709attr_device.name, ret); return ret; } ret = platform_driver_register(&si4709attr_driver); if(ret) { LOG("failed to add platrom driver %s (%d) \n", si4709attr_driver.driver.name, ret); return ret; } si4709_power_off(); return 0; } static void __exit SI4709_exit(void) { platform_driver_unregister(&si4709attr_driver); platform_device_unregister(&si4709attr_device); free_irq(FM_GPIO_INT_IRQ, si4709_irq_handler); mxc_free_iomux(MX37_PIN_GPIO1_4 ,IOMUX_CONFIG_ALT0); //cancel_work_sync(&rds_work); unregister_chrdev(SI4709_DEV_NUM, SI4709_DEV_NAME); i2c_del_driver(&SI4709_driver); } module_init(SI4709_init); module_exit(SI4709_exit); MODULE_AUTHOR("Lorenzo Miori (C) 2012"); MODULE_DESCRIPTION("SI4709 FM Radio Chip Driver for Samsung YP-R0"); MODULE_SUPPORTED_DEVICE("si470x"); MODULE_LICENSE("GPL"); |