From 88c66ffd8ed6cd50e436ce0d5830cd27f93259a2 Mon Sep 17 00:00:00 2001 From: Bhuvanchandra DV Date: Wed, 30 Mar 2016 01:20:43 +0530 Subject: spi core: Add new sysfs 'num_chipselect' file Add new sysfs 'num_chipselect' file to expose the maximum number of chipselects a SPI master can support. This allows to create a script in user space which automatically creates a new spidev instance for every chipselect on a bus. Signed-off-by: Bhuvanchandra DV Signed-off-by: Stefan Agner --- Documentation/spi/spi-summary | 3 +++ drivers/spi/spi.c | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/Documentation/spi/spi-summary b/Documentation/spi/spi-summary index d1824b399b2d..b4d15e409cfe 100644 --- a/Documentation/spi/spi-summary +++ b/Documentation/spi/spi-summary @@ -181,6 +181,9 @@ shows up in sysfs in several locations: controller managing bus "B". All spiB.* devices share one physical SPI bus segment, with SCLK, MOSI, and MISO. + /sys/class/spi_master/spiB/num_chipselect ... exposes the maximum + number of chipselects a SPI master can support. + Note that the actual location of the controller's class state depends on whether you enabled CONFIG_SYSFS_DEPRECATED or not. At this time, the only class-specific state is the bus number ("B" in "spiB"), so diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index dee1cb87d24f..06fb3dd1b297 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -67,6 +67,19 @@ modalias_show(struct device *dev, struct device_attribute *a, char *buf) } static DEVICE_ATTR_RO(modalias); +static ssize_t +num_chipselect_show(struct device *dev, struct device_attribute *a, char *buf) +{ + struct spi_master *master = container_of(dev, + struct spi_master, dev); + + return sprintf(buf, "%d\n", master->num_chipselect); +} +static struct device_attribute dev_attr_num_chipselect = { + .attr = { .name = "num_chipselect", .mode = S_IRUGO }, + .show = num_chipselect_show, +}; + #define SPI_STATISTICS_ATTRS(field, file) \ static ssize_t spi_master_##field##_show(struct device *dev, \ struct device_attribute *attr, \ @@ -154,6 +167,15 @@ static const struct attribute_group spi_dev_group = { .attrs = spi_dev_attrs, }; +static struct attribute *spi_master_attrs[] = { + &dev_attr_num_chipselect.attr, + NULL, +}; + +static const struct attribute_group spi_master_group = { + .attrs = spi_master_attrs, +}; + static struct attribute *spi_device_statistics_attrs[] = { &dev_attr_spi_device_messages.attr, &dev_attr_spi_device_transfers.attr, @@ -233,6 +255,7 @@ static const struct attribute_group spi_master_statistics_group = { }; static const struct attribute_group *spi_master_groups[] = { + &spi_master_group, &spi_master_statistics_group, NULL, }; -- cgit v1.2.3