-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 354388 b: refs/heads/master c: 872e79a h: refs/heads/master v: v3
- Loading branch information
Denis Ciocca
authored and
Jonathan Cameron
committed
Jan 31, 2013
1 parent
54dedff
commit 52ec9ba
Showing
8 changed files
with
743 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7be56a8f57b57cca1651fb97886e20246c168e25 | ||
refs/heads/master: 872e79add7561645b130fba63aa7ca12098a9361 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* STMicroelectronics magnetometers driver | ||
* | ||
* Copyright 2012-2013 STMicroelectronics Inc. | ||
* | ||
* Denis Ciocca <denis.ciocca@st.com> | ||
* v. 1.0.0 | ||
* Licensed under the GPL-2. | ||
*/ | ||
|
||
#ifndef ST_MAGN_H | ||
#define ST_MAGN_H | ||
|
||
#include <linux/types.h> | ||
#include <linux/iio/common/st_sensors.h> | ||
|
||
#define LSM303DLHC_MAGN_DEV_NAME "lsm303dlhc_magn" | ||
#define LSM303DLM_MAGN_DEV_NAME "lsm303dlm_magn" | ||
#define LIS3MDL_MAGN_DEV_NAME "lis3mdl" | ||
|
||
int st_magn_common_probe(struct iio_dev *indio_dev); | ||
void st_magn_common_remove(struct iio_dev *indio_dev); | ||
|
||
#ifdef CONFIG_IIO_BUFFER | ||
int st_magn_allocate_ring(struct iio_dev *indio_dev); | ||
void st_magn_deallocate_ring(struct iio_dev *indio_dev); | ||
#else /* CONFIG_IIO_BUFFER */ | ||
static inline int st_magn_probe_trigger(struct iio_dev *indio_dev, int irq) | ||
{ | ||
return 0; | ||
} | ||
static inline void st_magn_remove_trigger(struct iio_dev *indio_dev, int irq) | ||
{ | ||
return; | ||
} | ||
static inline int st_magn_allocate_ring(struct iio_dev *indio_dev) | ||
{ | ||
return 0; | ||
} | ||
static inline void st_magn_deallocate_ring(struct iio_dev *indio_dev) | ||
{ | ||
} | ||
#endif /* CONFIG_IIO_BUFFER */ | ||
|
||
#endif /* ST_MAGN_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* | ||
* STMicroelectronics magnetometers driver | ||
* | ||
* Copyright 2012-2013 STMicroelectronics Inc. | ||
* | ||
* Denis Ciocca <denis.ciocca@st.com> | ||
* | ||
* Licensed under the GPL-2. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include <linux/kernel.h> | ||
#include <linux/slab.h> | ||
#include <linux/stat.h> | ||
#include <linux/interrupt.h> | ||
#include <linux/i2c.h> | ||
#include <linux/delay.h> | ||
#include <linux/iio/iio.h> | ||
#include <linux/iio/buffer.h> | ||
#include <linux/iio/trigger_consumer.h> | ||
#include <linux/iio/triggered_buffer.h> | ||
|
||
#include <linux/iio/common/st_sensors.h> | ||
#include "st_magn.h" | ||
|
||
static int st_magn_buffer_preenable(struct iio_dev *indio_dev) | ||
{ | ||
int err; | ||
|
||
err = st_sensors_set_enable(indio_dev, true); | ||
if (err < 0) | ||
goto st_magn_set_enable_error; | ||
|
||
err = iio_sw_buffer_preenable(indio_dev); | ||
|
||
st_magn_set_enable_error: | ||
return err; | ||
} | ||
|
||
static int st_magn_buffer_postenable(struct iio_dev *indio_dev) | ||
{ | ||
int err; | ||
struct st_sensor_data *mdata = iio_priv(indio_dev); | ||
|
||
mdata->buffer_data = kmalloc(indio_dev->scan_bytes, GFP_KERNEL); | ||
if (mdata->buffer_data == NULL) { | ||
err = -ENOMEM; | ||
goto allocate_memory_error; | ||
} | ||
|
||
err = iio_triggered_buffer_postenable(indio_dev); | ||
if (err < 0) | ||
goto st_magn_buffer_postenable_error; | ||
|
||
return err; | ||
|
||
st_magn_buffer_postenable_error: | ||
kfree(mdata->buffer_data); | ||
allocate_memory_error: | ||
return err; | ||
} | ||
|
||
static int st_magn_buffer_predisable(struct iio_dev *indio_dev) | ||
{ | ||
int err; | ||
struct st_sensor_data *mdata = iio_priv(indio_dev); | ||
|
||
err = iio_triggered_buffer_predisable(indio_dev); | ||
if (err < 0) | ||
goto st_magn_buffer_predisable_error; | ||
|
||
err = st_sensors_set_enable(indio_dev, false); | ||
|
||
st_magn_buffer_predisable_error: | ||
kfree(mdata->buffer_data); | ||
return err; | ||
} | ||
|
||
static const struct iio_buffer_setup_ops st_magn_buffer_setup_ops = { | ||
.preenable = &st_magn_buffer_preenable, | ||
.postenable = &st_magn_buffer_postenable, | ||
.predisable = &st_magn_buffer_predisable, | ||
}; | ||
|
||
int st_magn_allocate_ring(struct iio_dev *indio_dev) | ||
{ | ||
return iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time, | ||
&st_sensors_trigger_handler, &st_magn_buffer_setup_ops); | ||
} | ||
|
||
void st_magn_deallocate_ring(struct iio_dev *indio_dev) | ||
{ | ||
iio_triggered_buffer_cleanup(indio_dev); | ||
} | ||
|
||
MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>"); | ||
MODULE_DESCRIPTION("STMicroelectronics magnetometers buffer"); | ||
MODULE_LICENSE("GPL v2"); |
Oops, something went wrong.