/** * struct sx_common_ops: function pointers needed by common code * * List functions needed by common code to gather information or configure * the sensor. * * @read_prox_data: Function to read raw proximity data. * @check_whoami: Set device name based on whoami register. * @init_compensation: Function to set initial compensation. * @wait_for_sample: When there are no physical IRQ, function to wait for a * sample to be ready. * @get_default_reg: Populate the initial value for a given register.
*/ struct sx_common_ops { int (*read_prox_data)(struct sx_common_data *data, conststruct iio_chan_spec *chan, __be16 *val); int (*check_whoami)(struct device *dev, struct iio_dev *indio_dev); int (*init_compensation)(struct iio_dev *indio_dev); int (*wait_for_sample)(struct sx_common_data *data); conststruct sx_common_reg_default *
(*get_default_reg)(struct device *dev, int idx, struct sx_common_reg_default *reg_def);
};
/** * struct sx_common_chip_info: Semtech Sensor private chip information * * @reg_stat: Main status register address. * @reg_irq_msk: IRQ mask register address. * @reg_enable_chan: Address to enable/disable channels. * Each phase presented by the sensor is an IIO channel.. * @reg_reset: Reset register address. * @mask_enable_chan: Mask over the channels bits in the enable channel * register. * @stat_offset: Offset to check phase status. * @irq_msk_offset: Offset to enable interrupt in the IRQ mask * register. * @num_channels: Number of channels. * @num_default_regs: Number of internal registers that can be configured. * * @ops: Private functions pointers. * @iio_channels: Description of exposed iio channels. * @num_iio_channels: Number of iio_channels. * @iio_info: iio_info structure for this driver.
*/ struct sx_common_chip_info { unsignedint reg_stat; unsignedint reg_irq_msk; unsignedint reg_enable_chan; unsignedint reg_reset;
unsignedint mask_enable_chan; unsignedint stat_offset; unsignedint irq_msk_offset; unsignedint num_channels; int num_default_regs;
struct sx_common_ops ops;
conststruct iio_chan_spec *iio_channels; int num_iio_channels; struct iio_info iio_info;
};
/** * struct sx_common_data: Semtech Sensor private data structure. * * @chip_info: Structure defining sensor internals. * @mutex: Serialize access to registers and channel configuration. * @completion: completion object to wait for data acquisition. * @client: I2C client structure. * @trig: IIO trigger object. * @regmap: Register map. * @chan_prox_stat: Last reading of the proximity status for each channel. * We only send an event to user space when this changes. * @trigger_enabled: True when the device trigger is enabled. * @buffer: Buffer to store raw samples. * @suspend_ctrl: Remember enabled channels and sample rate during suspend. * @chan_read: Bit field for each raw channel enabled. * @chan_event: Bit field for each event enabled.
*/ struct sx_common_data { conststruct sx_common_chip_info *chip_info;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.