drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_spi.c
Source file repositories/reference/linux-study-clean/drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_spi.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_spi.c- Extension
.c- Size
- 2045 bytes
- Lines
- 87
- Domain
- Driver Families
- Bucket
- drivers/iio
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/device/devres.hlinux/err.hlinux/gfp_types.hlinux/module.hlinux/mod_devicetable.hlinux/regmap.hlinux/spi/spi.hlinux/iio/common/st_sensors_spi.hst_lsm9ds0.h
Detected Declarations
function st_lsm9ds0_spi_probe
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* STMicroelectronics LSM9DS0 IMU driver
*
* Copyright (C) 2021, Intel Corporation
*
* Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
*/
#include <linux/device/devres.h>
#include <linux/err.h>
#include <linux/gfp_types.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/regmap.h>
#include <linux/spi/spi.h>
#include <linux/iio/common/st_sensors_spi.h>
#include "st_lsm9ds0.h"
static const struct of_device_id st_lsm9ds0_of_match[] = {
{
.compatible = "st,lsm303d-imu",
.data = LSM303D_IMU_DEV_NAME,
},
{
.compatible = "st,lsm9ds0-imu",
.data = LSM9DS0_IMU_DEV_NAME,
},
{ }
};
MODULE_DEVICE_TABLE(of, st_lsm9ds0_of_match);
static const struct spi_device_id st_lsm9ds0_id_table[] = {
{ LSM303D_IMU_DEV_NAME },
{ LSM9DS0_IMU_DEV_NAME },
{ }
};
MODULE_DEVICE_TABLE(spi, st_lsm9ds0_id_table);
static const struct regmap_config st_lsm9ds0_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.read_flag_mask = 0xc0,
};
static int st_lsm9ds0_spi_probe(struct spi_device *spi)
{
struct device *dev = &spi->dev;
struct st_lsm9ds0 *lsm9ds0;
struct regmap *regmap;
st_sensors_dev_name_probe(dev, spi->modalias, sizeof(spi->modalias));
lsm9ds0 = devm_kzalloc(dev, sizeof(*lsm9ds0), GFP_KERNEL);
if (!lsm9ds0)
return -ENOMEM;
lsm9ds0->dev = dev;
lsm9ds0->name = spi->modalias;
lsm9ds0->irq = spi->irq;
regmap = devm_regmap_init_spi(spi, &st_lsm9ds0_regmap_config);
if (IS_ERR(regmap))
return PTR_ERR(regmap);
spi_set_drvdata(spi, lsm9ds0);
return st_lsm9ds0_probe(lsm9ds0, regmap);
}
static struct spi_driver st_lsm9ds0_driver = {
.driver = {
.name = "st-lsm9ds0-spi",
.of_match_table = st_lsm9ds0_of_match,
},
.probe = st_lsm9ds0_spi_probe,
.id_table = st_lsm9ds0_id_table,
};
module_spi_driver(st_lsm9ds0_driver);
MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>");
MODULE_DESCRIPTION("STMicroelectronics LSM9DS0 IMU SPI driver");
MODULE_LICENSE("GPL v2");
MODULE_IMPORT_NS("IIO_ST_SENSORS");
Annotation
- Immediate include surface: `linux/device/devres.h`, `linux/err.h`, `linux/gfp_types.h`, `linux/module.h`, `linux/mod_devicetable.h`, `linux/regmap.h`, `linux/spi/spi.h`, `linux/iio/common/st_sensors_spi.h`.
- Detected declarations: `function st_lsm9ds0_spi_probe`.
- Atlas domain: Driver Families / drivers/iio.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.