* [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210
@ 2022-12-27 14:10 Vincent Tremblay
2022-12-27 14:10 ` [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible Vincent Tremblay
2022-12-27 15:23 ` [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210 Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Vincent Tremblay @ 2022-12-27 14:10 UTC (permalink / raw)
Cc: vincent, Rob Herring, Krzysztof Kozlowski, Mark Brown,
Guenter Roeck, Stanislav Jakubek, Jarkko Sakkinen,
Marcello Sylvester Bauer, Marek Vasut, Samuel Holland,
Greg.Schwendimann@infineon.com, Conor Dooley, Pali Rohár,
devicetree, linux-kernel, linux-spi
Add Silicon Labs SI3210 to trivial devices.
Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
---
Documentation/devicetree/bindings/trivial-devices.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml
index 5a3ccbce8c23..7da40dadfe2e 100644
--- a/Documentation/devicetree/bindings/trivial-devices.yaml
+++ b/Documentation/devicetree/bindings/trivial-devices.yaml
@@ -325,6 +325,8 @@ properties:
- sgx,vz89x
# Silicon Labs EM3581 Zigbee SoC with SPI interface
- silabs,em3581
+ # Silicon Labs SI3210 Programmable CMOS SLIC/CODEC with SPI interface
+ - silabs,si3210
# Relative Humidity and Temperature Sensors
- silabs,si7020
# Skyworks SKY81452: Six-Channel White LED Driver with Touch Panel Bias Supply
--
2.37.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible
2022-12-27 14:10 [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210 Vincent Tremblay
@ 2022-12-27 14:10 ` Vincent Tremblay
2022-12-27 15:23 ` [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210 Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Vincent Tremblay @ 2022-12-27 14:10 UTC (permalink / raw)
Cc: vincent, Rob Herring, Krzysztof Kozlowski, Mark Brown,
Guenter Roeck, Stanislav Jakubek, Marcello Sylvester Bauer,
Marek Vasut, Samuel Holland, Conor Dooley, Pali Rohár,
devicetree, linux-kernel, linux-spi
Add compatible string for Silicon Labs SI3210 device.
Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
---
drivers/spi/spidev.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
index 46f53ca03f8d..d8998d5e8483 100644
--- a/drivers/spi/spidev.c
+++ b/drivers/spi/spidev.c
@@ -703,6 +703,7 @@ static const struct spi_device_id spidev_spi_ids[] = {
{ .name = "spi-petra" },
{ .name = "spi-authenta" },
{ .name = "em3581" },
+ { .name = "si3210" },
{},
};
MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
@@ -730,6 +731,7 @@ static const struct of_device_id spidev_dt_ids[] = {
{ .compatible = "cisco,spi-petra", .data = &spidev_of_check },
{ .compatible = "micron,spi-authenta", .data = &spidev_of_check },
{ .compatible = "silabs,em3581", .data = &spidev_of_check },
+ { .compatible = "silabs,si3210", .data = &spidev_of_check },
{},
};
MODULE_DEVICE_TABLE(of, spidev_dt_ids);
--
2.37.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210
2022-12-27 14:10 [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210 Vincent Tremblay
2022-12-27 14:10 ` [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible Vincent Tremblay
@ 2022-12-27 15:23 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2022-12-27 15:23 UTC (permalink / raw)
To: Vincent Tremblay
Cc: Rob Herring, Krzysztof Kozlowski, Guenter Roeck,
Stanislav Jakubek, Jarkko Sakkinen, Marcello Sylvester Bauer,
Marek Vasut, Samuel Holland, Greg.Schwendimann, Conor Dooley,
Pali Rohár, devicetree, linux-kernel, linux-spi
On Tue, 27 Dec 2022 09:10:07 -0500, Vincent Tremblay wrote:
> Add Silicon Labs SI3210 to trivial devices.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
Thanks!
[1/2] dt-bindings: trivial-devices: Add silabs,si3210
commit: f7879d677e76d0c4449fa1839f948d335795f334
[2/2] spidev: Add Silicon Labs SI3210 device compatible
commit: 6c9d1fd52956c3148e847a214bae9102b1811de5
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-12-27 15:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-27 14:10 [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210 Vincent Tremblay
2022-12-27 14:10 ` [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible Vincent Tremblay
2022-12-27 15:23 ` [PATCH 1/2] dt-bindings: trivial-devices: Add silabs,si3210 Mark Brown
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).