All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource
@ 2020-04-13 18:04 Andy Shevchenko
  2020-04-14 11:40 ` Applied "spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource" to the spi tree Mark Brown
  2020-04-17 16:09 ` [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2020-04-13 18:04 UTC (permalink / raw)
  To: Mark Brown, linux-spi; +Cc: Andy Shevchenko

By unknown reason the commit 64bee4d28c9e
  ("spi / ACPI: add ACPI enumeration support")
missed the DataBitLength property to encounter when parse SPI slave
device data from ACPI.

Fill the gap here.

Fixes: 64bee4d28c9e ("spi / ACPI: add ACPI enumeration support")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/spi/spi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index c92c89467e7e..e0e27fe06878 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -2111,6 +2111,7 @@ static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
 			}
 
 			lookup->max_speed_hz = sb->connection_speed;
+			lookup->bits_per_word = sb->data_bit_length;
 
 			if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
 				lookup->mode |= SPI_CPHA;
-- 
2.25.1


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

* Applied "spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource" to the spi tree
  2020-04-13 18:04 [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Andy Shevchenko
@ 2020-04-14 11:40 ` Mark Brown
  2020-04-17 16:09 ` [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2020-04-14 11:40 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: linux-spi, Mark Brown

The patch

   spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource

has been applied to the spi tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git 

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

From 0dadde344d965566589cd82797893d5aa06557a3 Mon Sep 17 00:00:00 2001
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Date: Mon, 13 Apr 2020 21:04:06 +0300
Subject: [PATCH] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI
 resource

By unknown reason the commit 64bee4d28c9e
  ("spi / ACPI: add ACPI enumeration support")
missed the DataBitLength property to encounter when parse SPI slave
device data from ACPI.

Fill the gap here.

Fixes: 64bee4d28c9e ("spi / ACPI: add ACPI enumeration support")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200413180406.1826-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 drivers/spi/spi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 0996d238f61e..531d1de85f7f 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -2111,6 +2111,7 @@ static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
 			}
 
 			lookup->max_speed_hz = sb->connection_speed;
+			lookup->bits_per_word = sb->data_bit_length;
 
 			if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
 				lookup->mode |= SPI_CPHA;
-- 
2.20.1


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

* Re: [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource
  2020-04-13 18:04 [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Andy Shevchenko
  2020-04-14 11:40 ` Applied "spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource" to the spi tree Mark Brown
@ 2020-04-17 16:09 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2020-04-17 16:09 UTC (permalink / raw)
  To: linux-spi, Andy Shevchenko

On Mon, 13 Apr 2020 21:04:06 +0300, Andy Shevchenko wrote:
> By unknown reason the commit 64bee4d28c9e
>   ("spi / ACPI: add ACPI enumeration support")
> missed the DataBitLength property to encounter when parse SPI slave
> device data from ACPI.
> 
> Fill the gap here.
> 
> [...]

Applied, thanks!

[1/1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource
      commit: 0dadde344d965566589cd82797893d5aa06557a3

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:[~2020-04-17 16:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-13 18:04 [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Andy Shevchenko
2020-04-14 11:40 ` Applied "spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource" to the spi tree Mark Brown
2020-04-17 16:09 ` [PATCH v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.