/kern_oII/drivers/staging/meilhaus/me1600_ao.h

http://omnia2droid.googlecode.com/ · C++ Header · 128 lines · 66 code · 18 blank · 44 comment · 0 complexity · d8552a7437bf6aac8ac1454f83e7ecf0 MD5 · raw file

  1. /**
  2. * @file me1600_ao.h
  3. *
  4. * @brief Meilhaus ME-1600 analog output subdevice class.
  5. * @note Copyright (C) 2007 Meilhaus Electronic GmbH (support@meilhaus.de)
  6. * @author Guenter Gebhardt
  7. */
  8. /*
  9. * Copyright (C) 2007 Meilhaus Electronic GmbH (support@meilhaus.de)
  10. *
  11. * This file is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. */
  25. #ifndef _ME1600_AO_H_
  26. #define _ME1600_AO_H_
  27. # include <linux/version.h>
  28. # include "mesubdevice.h"
  29. # ifdef __KERNEL__
  30. # define ME1600_MAX_RANGES 2 /**< Specifies the maximum number of ranges in me1600_ao_subdevice_t::u_ranges und me1600_ao_subdevice_t::i_ranges. */
  31. /**
  32. * @brief Defines a entry in the range table.
  33. */
  34. typedef struct me1600_ao_range_entry {
  35. int32_t min;
  36. int32_t max;
  37. } me1600_ao_range_entry_t;
  38. typedef struct me1600_ao_timeout {
  39. unsigned long start_time;
  40. unsigned long delay;
  41. } me1600_ao_timeout_t;
  42. typedef struct me1600_ao_shadow {
  43. int count;
  44. unsigned long *registry;
  45. uint16_t *shadow;
  46. uint16_t *mirror;
  47. uint16_t synchronous; /**< Synchronization list. */
  48. uint16_t trigger; /**< Synchronization flag. */
  49. } me1600_ao_shadow_t;
  50. typedef enum ME1600_AO_STATUS {
  51. ao_status_none = 0,
  52. ao_status_single_configured,
  53. ao_status_single_run,
  54. ao_status_single_end,
  55. ao_status_last
  56. } ME1600_AO_STATUS;
  57. /**
  58. * @brief The ME-1600 analog output subdevice class.
  59. */
  60. typedef struct me1600_ao_subdevice {
  61. /* Inheritance */
  62. me_subdevice_t base; /**< The subdevice base class. */
  63. /* Attributes */
  64. int ao_idx; /**< The index of the analog output subdevice on the device. */
  65. spinlock_t subdevice_lock; /**< Spin lock to protect the subdevice from concurrent access. */
  66. spinlock_t *config_regs_lock; /**< Spin lock to protect configuration registers from concurrent access. */
  67. int u_ranges_count; /**< The number of voltage ranges available on this subdevice. */
  68. me1600_ao_range_entry_t u_ranges[ME1600_MAX_RANGES]; /**< Array holding the voltage ranges on this subdevice. */
  69. int i_ranges_count; /**< The number of current ranges available on this subdevice. */
  70. me1600_ao_range_entry_t i_ranges[ME1600_MAX_RANGES]; /**< Array holding the current ranges on this subdevice. */
  71. /* Registers */
  72. unsigned long uni_bi_reg; /**< Register for switching between unipoar and bipolar output mode. */
  73. unsigned long i_range_reg; /**< Register for switching between ranges. */
  74. unsigned long sim_output_reg; /**< Register used in order to update all channels simultaneously. */
  75. unsigned long current_on_reg; /**< Register enabling current output on the fourth subdevice. */
  76. # ifdef PDEBUG_REG
  77. unsigned long reg_base;
  78. # endif
  79. ME1600_AO_STATUS status;
  80. me1600_ao_shadow_t *ao_regs_shadows; /**< Addresses and shadows of output's registers. */
  81. spinlock_t *ao_shadows_lock; /**< Protects the shadow's struct. */
  82. int mode; /**< Mode in witch output should works. */
  83. wait_queue_head_t wait_queue; /**< Wait queue to put on tasks waiting for data to arrive. */
  84. me1600_ao_timeout_t timeout; /**< The timeout for start in blocking and non-blocking mode. */
  85. struct workqueue_struct *me1600_workqueue;
  86. struct delayed_work ao_control_task;
  87. volatile int ao_control_task_flag; /**< Flag controling reexecuting of control task */
  88. } me1600_ao_subdevice_t;
  89. /**
  90. * @brief The constructor to generate a subdevice template instance.
  91. *
  92. * @param reg_base The register base address of the device as returned by the PCI BIOS.
  93. * @param ao_idx The index of the analog output subdevice on the device.
  94. * @param current Flag indicating that analog output with #ao_idx of 3 is capable of current output.
  95. * @param config_regs_lock Pointer to spin lock protecting the configuration registers and from concurrent access.
  96. *
  97. * @return Pointer to new instance on success.\n
  98. * NULL on error.
  99. */
  100. me1600_ao_subdevice_t *me1600_ao_constructor(uint32_t reg_base,
  101. unsigned int ao_idx,
  102. int curr,
  103. spinlock_t * config_regs_lock,
  104. spinlock_t * ao_shadows_lock,
  105. me1600_ao_shadow_t *
  106. ao_regs_shadows,
  107. struct workqueue_struct
  108. *me1600_wq);
  109. # endif //__KERNEL__
  110. #endif //_ME1600_AO_H_