* [PATCH 0/2] iio: magnetometer: Infineon TLV493D-A1B6 support
@ 2017-12-09 23:25 Andreas Färber
[not found] ` <20171209232507.18594-1-afaerber-l3A5Bk7waGM@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Färber @ 2017-12-09 23:25 UTC (permalink / raw)
To: linux-iio-u79uwXL29TY76Z2rM5mHXA
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Andreas Färber,
Marius Tarcatu, devicetree-u79uwXL29TY76Z2rM5mHXA
Hello,
This mini-series adds initial support for the Infineon TLV493D-A1B6 3D Magnetic
Sensor found on the Infineon 3D Magnetic Sensor 2Go Kit.
Tested on a Raspberry Pi 3 with a DT Overlay.
https://github.com/afaerber/dt-overlays/blob/master/bcm2837-rpi-3-b%2Btlv493d-a1b6.dts
Have a lot of fun!
Cheers,
Andreas
Cc: Marius Tarcatu <marius.tarcatu-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Andreas Färber (2):
dt-bindings: Add Infineon TLV493D-A1B6
iio: magnetometer: Add Infineon TLV493D-A1B6
.../devicetree/bindings/trivial-devices.txt | 1 +
drivers/iio/magnetometer/Kconfig | 9 +
drivers/iio/magnetometer/Makefile | 2 +
drivers/iio/magnetometer/tlv493d.c | 328 +++++++++++++++++++++
4 files changed, 340 insertions(+)
create mode 100644 drivers/iio/magnetometer/tlv493d.c
--
2.13.6
^ permalink raw reply [flat|nested] 3+ messages in thread[parent not found: <20171209232507.18594-1-afaerber-l3A5Bk7waGM@public.gmane.org>]
* [PATCH 1/2] dt-bindings: Add Infineon TLV493D-A1B6 [not found] ` <20171209232507.18594-1-afaerber-l3A5Bk7waGM@public.gmane.org> @ 2017-12-09 23:25 ` Andreas Färber [not found] ` <20171209232507.18594-2-afaerber-l3A5Bk7waGM@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Andreas Färber @ 2017-12-09 23:25 UTC (permalink / raw) To: linux-iio-u79uwXL29TY76Z2rM5mHXA Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Andreas Färber, Marius Tarcatu, Rob Herring, Mark Rutland, open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS The Infineon TLV493D-A1B6 is an I2C-based 3D Magnetic Sensor. Cc: Marius Tarcatu <marius.tarcatu-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org> Signed-off-by: Andreas Färber <afaerber-l3A5Bk7waGM@public.gmane.org> --- Documentation/devicetree/bindings/trivial-devices.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/trivial-devices.txt b/Documentation/devicetree/bindings/trivial-devices.txt index 5f3143f97098..7ad1939cb0d6 100644 --- a/Documentation/devicetree/bindings/trivial-devices.txt +++ b/Documentation/devicetree/bindings/trivial-devices.txt @@ -63,6 +63,7 @@ fsl,sgtl5000 SGTL5000: Ultra Low-Power Audio Codec gmt,g751 G751: Digital Temperature Sensor and Thermal Watchdog with Two-Wire Interface infineon,slb9635tt Infineon SLB9635 (Soft-) I2C TPM (old protocol, max 100khz) infineon,slb9645tt Infineon SLB9645 I2C TPM (new protocol, max 400khz) +infineon,tlv493d-a1b6 Infineon TLV493D-A1B6 I2C 3D Magnetic Sensor isil,isl1208 Intersil ISL1208 Low Power RTC with Battery Backed SRAM isil,isl1218 Intersil ISL1218 Low Power RTC with Battery Backed SRAM isil,isl12022 Intersil ISL12022 Real-time Clock -- 2.13.6 ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <20171209232507.18594-2-afaerber-l3A5Bk7waGM@public.gmane.org>]
* Re: [PATCH 1/2] dt-bindings: Add Infineon TLV493D-A1B6 [not found] ` <20171209232507.18594-2-afaerber-l3A5Bk7waGM@public.gmane.org> @ 2017-12-15 21:42 ` Rob Herring 0 siblings, 0 replies; 3+ messages in thread From: Rob Herring @ 2017-12-15 21:42 UTC (permalink / raw) To: Andreas Färber Cc: linux-iio-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Marius Tarcatu, Mark Rutland, open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS On Sun, Dec 10, 2017 at 12:25:06AM +0100, Andreas Färber wrote: > The Infineon TLV493D-A1B6 is an I2C-based 3D Magnetic Sensor. > > Cc: Marius Tarcatu <marius.tarcatu-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org> > Signed-off-by: Andreas Färber <afaerber-l3A5Bk7waGM@public.gmane.org> > --- > Documentation/devicetree/bindings/trivial-devices.txt | 1 + > 1 file changed, 1 insertion(+) I take trivial-devices.txt changes to avoid any conflicts, so I've applied. Rob ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-12-15 21:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-09 23:25 [PATCH 0/2] iio: magnetometer: Infineon TLV493D-A1B6 support Andreas Färber
[not found] ` <20171209232507.18594-1-afaerber-l3A5Bk7waGM@public.gmane.org>
2017-12-09 23:25 ` [PATCH 1/2] dt-bindings: Add Infineon TLV493D-A1B6 Andreas Färber
[not found] ` <20171209232507.18594-2-afaerber-l3A5Bk7waGM@public.gmane.org>
2017-12-15 21:42 ` Rob Herring
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox