linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/2] Add BMP390 IIO driver, device tree bindings and support
@ 2025-06-20  4:54 liquancin.mereenamathai
  2025-06-20  4:54 ` [PATCH v1 1/2] Add the iio driver for bosch pressure sensor bmp390. The bmp390 is a pressure sensor module. It will support SPI and I2C protocol based on configuration liquancin.mereenamathai
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: liquancin.mereenamathai @ 2025-06-20  4:54 UTC (permalink / raw)
  To: linux-iio
  Cc: linux-kernel, jic23, dlechner, nuno.sa, andy, vassilisamir,
	marcelo.schmitt1, javier.carrasco.cruz, Xu.Zhang, Maoting.Bian,
	Liquancin.MereenaMathai, Liquancin Mereena Mathai

From: Liquancin Mereena Mathai <liquancin.mereenamathai@in.bosch.com>

This patch series adds support for the Bosch BMP390 pressure sensor to the
Linux IIO subsystem. It includes the main driver implementation as well as
the necessary device tree bindings for integration on supported platforms.

Patch 1 adds the IIO driver for the BMP390 pressure sensor.
Patch 2 introduces the device tree bindings documentation.

Liquancin Mereena Mathai (2):
  Add the iio driver for bosch pressure sensor bmp390. The bmp390 is a
    pressure sensor module. It will support SPI and I2C protocol based
    on configuration.
  dt-bindings: iio driver: Add BMP390 pressure sensor device tree
    binding

 .../bindings/iio/pressure/bosch,bmp390.yaml   |   65 +
 MAINTAINERS                                   |    7 +
 drivers/iio/pressure/Kconfig                  |   26 +
 drivers/iio/pressure/Makefile                 |    1 +
 drivers/iio/pressure/bmp390/Kconfig           |   29 +
 drivers/iio/pressure/bmp390/Makefile          |   32 +
 drivers/iio/pressure/bmp390/bmp3.c            | 2781 +++++++++++++++++
 drivers/iio/pressure/bmp390/bmp3.h            |  537 ++++
 drivers/iio/pressure/bmp390/bmp390_driver.c   | 1604 ++++++++++
 drivers/iio/pressure/bmp390/bmp390_driver.h   |  232 ++
 drivers/iio/pressure/bmp390/bmp390_i2c.c      |  328 ++
 .../iio/pressure/bmp390/bmp390_iio_buffer.c   |  220 ++
 drivers/iio/pressure/bmp390/bmp390_spi.c      |  286 ++
 drivers/iio/pressure/bmp390/bmp3_defs.h       |  871 ++++++
 drivers/iio/pressure/bmp390/bmp3_selftest.c   |  184 ++
 drivers/iio/pressure/bmp390/bmp3_selftest.h   |   93 +
 16 files changed, 7296 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/iio/pressure/bosch,bmp390.yaml
 create mode 100644 drivers/iio/pressure/bmp390/Kconfig
 create mode 100644 drivers/iio/pressure/bmp390/Makefile
 create mode 100644 drivers/iio/pressure/bmp390/bmp3.c
 create mode 100644 drivers/iio/pressure/bmp390/bmp3.h
 create mode 100644 drivers/iio/pressure/bmp390/bmp390_driver.c
 create mode 100644 drivers/iio/pressure/bmp390/bmp390_driver.h
 create mode 100644 drivers/iio/pressure/bmp390/bmp390_i2c.c
 create mode 100644 drivers/iio/pressure/bmp390/bmp390_iio_buffer.c
 create mode 100644 drivers/iio/pressure/bmp390/bmp390_spi.c
 create mode 100644 drivers/iio/pressure/bmp390/bmp3_defs.h
 create mode 100644 drivers/iio/pressure/bmp390/bmp3_selftest.c
 create mode 100644 drivers/iio/pressure/bmp390/bmp3_selftest.h

-- 
2.20.1


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2025-06-23 21:59 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-20  4:54 [PATCH v1 0/2] Add BMP390 IIO driver, device tree bindings and support liquancin.mereenamathai
2025-06-20  4:54 ` [PATCH v1 1/2] Add the iio driver for bosch pressure sensor bmp390. The bmp390 is a pressure sensor module. It will support SPI and I2C protocol based on configuration liquancin.mereenamathai
2025-06-20  5:49   ` Krzysztof Kozlowski
2025-06-20 13:19   ` David Lechner
2025-06-21  8:55   ` kernel test robot
2025-06-22 16:08   ` Jonathan Cameron
2025-06-20  4:54 ` [PATCH v1 2/2] dt-bindings: iio driver: Add BMP390 pressure sensor device tree binding liquancin.mereenamathai
2025-06-20  5:45   ` Krzysztof Kozlowski
2025-06-22 15:06 ` [PATCH v1 0/2] Add BMP390 IIO driver, device tree bindings and support Jonathan Cameron
2025-06-22 22:34   ` Vasileios Amoiridis
2025-06-23  7:07 ` Andy Shevchenko
2025-06-23  7:37   ` Mereena Mathai Liquancin (MS/EHM4-BST)
2025-06-23 21:59     ` Vasileios Amoiridis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).