ucb1400_core.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Core functions for:
  3. * Philips UCB1400 multifunction chip
  4. *
  5. * Based on ucb1400_ts.c:
  6. * Author: Nicolas Pitre
  7. * Created: September 25, 2006
  8. * Copyright: MontaVista Software, Inc.
  9. *
  10. * Spliting done by: Marek Vasut <marek.vasut@gmail.com>
  11. * If something doesnt work and it worked before spliting, e-mail me,
  12. * dont bother Nicolas please ;-)
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. *
  18. * This code is heavily based on ucb1x00-*.c copyrighted by Russell King
  19. * covering the UCB1100, UCB1200 and UCB1300.. Support for the UCB1400 has
  20. * been made separate from ucb1x00-core/ucb1x00-ts on Russell's request.
  21. */
  22. #include <linux/module.h>
  23. #include <linux/ucb1400.h>
  24. static int ucb1400_core_probe(struct device *dev)
  25. {
  26. int err;
  27. struct ucb1400 *ucb;
  28. struct ucb1400_ts ucb_ts;
  29. struct snd_ac97 *ac97;
  30. memset(&ucb_ts, 0, sizeof(ucb_ts));
  31. ucb = kzalloc(sizeof(struct ucb1400), GFP_KERNEL);
  32. if (!ucb) {
  33. err = -ENOMEM;
  34. goto err;
  35. }
  36. dev_set_drvdata(dev, ucb);
  37. ac97 = to_ac97_t(dev);
  38. ucb_ts.id = ucb1400_reg_read(ac97, UCB_ID);
  39. if (ucb_ts.id != UCB_ID_1400) {
  40. err = -ENODEV;
  41. goto err0;
  42. }
  43. /* TOUCHSCREEN */
  44. ucb_ts.ac97 = ac97;
  45. ucb->ucb1400_ts = platform_device_alloc("ucb1400_ts", -1);
  46. if (!ucb->ucb1400_ts) {
  47. err = -ENOMEM;
  48. goto err0;
  49. }
  50. err = platform_device_add_data(ucb->ucb1400_ts, &ucb_ts,
  51. sizeof(ucb_ts));
  52. if (err)
  53. goto err1;
  54. err = platform_device_add(ucb->ucb1400_ts);
  55. if (err)
  56. goto err1;
  57. return 0;
  58. err1:
  59. platform_device_put(ucb->ucb1400_ts);
  60. err0:
  61. kfree(ucb);
  62. err:
  63. return err;
  64. }
  65. static int ucb1400_core_remove(struct device *dev)
  66. {
  67. struct ucb1400 *ucb = dev_get_drvdata(dev);
  68. platform_device_unregister(ucb->ucb1400_ts);
  69. kfree(ucb);
  70. return 0;
  71. }
  72. static struct device_driver ucb1400_core_driver = {
  73. .name = "ucb1400_core",
  74. .bus = &ac97_bus_type,
  75. .probe = ucb1400_core_probe,
  76. .remove = ucb1400_core_remove,
  77. };
  78. static int __init ucb1400_core_init(void)
  79. {
  80. return driver_register(&ucb1400_core_driver);
  81. }
  82. static void __exit ucb1400_core_exit(void)
  83. {
  84. driver_unregister(&ucb1400_core_driver);
  85. }
  86. module_init(ucb1400_core_init);
  87. module_exit(ucb1400_core_exit);
  88. MODULE_DESCRIPTION("Philips UCB1400 driver");
  89. MODULE_LICENSE("GPL");