Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
40 lines
853 B
C
40 lines
853 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* ADXL355 3-Axis Digital Accelerometer
|
|
*
|
|
* Copyright (c) 2021 Puranjay Mohan <puranjay12@gmail.com>
|
|
*/
|
|
|
|
#ifndef _ADXL355_H_
|
|
#define _ADXL355_H_
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
enum adxl355_device_type {
|
|
ADXL355,
|
|
ADXL359,
|
|
};
|
|
|
|
struct adxl355_fractional_type {
|
|
int integer;
|
|
int decimal;
|
|
};
|
|
|
|
struct device;
|
|
|
|
struct adxl355_chip_info {
|
|
const char *name;
|
|
u8 part_id;
|
|
struct adxl355_fractional_type accel_scale;
|
|
struct adxl355_fractional_type temp_offset;
|
|
};
|
|
|
|
extern const struct regmap_access_table adxl355_readable_regs_tbl;
|
|
extern const struct regmap_access_table adxl355_writeable_regs_tbl;
|
|
extern const struct adxl355_chip_info adxl35x_chip_info[];
|
|
|
|
int adxl355_core_probe(struct device *dev, struct regmap *regmap,
|
|
const struct adxl355_chip_info *chip_info);
|
|
|
|
#endif /* _ADXL355_H_ */
|