spi: Let drivers translate ACPI DeviceSelection to suitable Linux chip select
authorMika Westerberg <mika.westerberg@linux.intel.com>
Mon, 8 Feb 2016 15:14:28 +0000 (17:14 +0200)
committerMark Brown <broonie@kernel.org>
Tue, 9 Feb 2016 18:19:40 +0000 (18:19 +0000)
commita0a90718f18264dc904d34a580f332006f5561e9
treec40aaf68aada348c4133059aaef79baf948a811a
parent92e963f50fc74041b5e9e744c330dca48e04f08d
spi: Let drivers translate ACPI DeviceSelection to suitable Linux chip select

In Windows it is up to the SPI host controller driver to handle the ACPI
DeviceSelection as it likes. The SPI core does not take any part in it.
This is different in Linux because we always expect to have chip select in
range of 0 .. master->num_chipselect - 1.

In order to support this in Linux we need a way to allow the driver to
translate between ACPI DeviceSelection field and Linux chip select number
so provide a new optional hook ->fw_translate_cs() that can be used by a
driver to handle translation and call this hook if set during SPI slave
ACPI enumeration.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi.c
include/linux/spi/spi.h