Skip to content

Commit

Permalink
misc: gehc-achc: new driver
Browse files Browse the repository at this point in the history
General Electric Healthcare's PPD has a secondary processor from
NXP's Kinetis K20 series. That device has two SPI chip selects:

The main interface's behaviour depends on the loaded firmware
and is exposed to userspace (as before).

The secondary interface can be used to update the firmware using
EzPort protocol. This is implemented by this driver using the
kernel's firmware API. It's not done during probe time, since
the device has non-volatile memory and flashing lasts almost 3
minutes.

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
  • Loading branch information
sre authored and intel-lab-lkp committed May 28, 2021
1 parent eec55df commit dac014d
Show file tree
Hide file tree
Showing 7 changed files with 671 additions and 3 deletions.
15 changes: 15 additions & 0 deletions drivers/misc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,21 @@ config CS5535_CLOCK_EVENT_SRC
MFGPTs have a better resolution and max interval than the
generic PIT, and are suitable for use as high-res timers.

config NXP_EZPORT
tristate

config GEHC_ACHC
tristate "GEHC ACHC support"
depends on SPI && SYSFS && SPI_SPIDEV
select FW_LOADER
select NXP_EZPORT
help
Support for GE ACHC microcontroller, that is part of the GE
CS One device.

To compile this driver as a module, choose M here: the
module will be called gehc-achc.

config HP_ILO
tristate "Channel interface driver for the HP iLO processor"
depends on PCI
Expand Down
2 changes: 2 additions & 0 deletions drivers/misc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ obj-$(CONFIG_KGDB_TESTS) += kgdbts.o
obj-$(CONFIG_SGI_XP) += sgi-xp/
obj-$(CONFIG_SGI_GRU) += sgi-gru/
obj-$(CONFIG_CS5535_MFGPT) += cs5535-mfgpt.o
obj-$(CONFIG_NXP_EZPORT) += nxp-ezport.o
obj-$(CONFIG_GEHC_ACHC) += gehc-achc.o
obj-$(CONFIG_HP_ILO) += hpilo.o
obj-$(CONFIG_APDS9802ALS) += apds9802als.o
obj-$(CONFIG_ISL29003) += isl29003.o
Expand Down
160 changes: 160 additions & 0 deletions drivers/misc/gehc-achc.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
// SPDX-License-Identifier: GPL-2.0+
/*
* datasheet: https://www.nxp.com/docs/en/data-sheet/K20P144M120SF3.pdf
*
* Copyright (C) 2018-2021 Collabora
* Copyright (C) 2018-2021 GE Healthcare
*/

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/spi/spi.h>
#include <linux/of.h>
#include <linux/platform_data/nxp-ezport.h>

#define ACHC_MAX_FREQ 300000

struct achc_data {
struct spi_device *main;
struct spi_device *ezport;
struct gpio_desc *reset;

struct mutex device_lock; /* avoid concurrent device access */
};

static ssize_t update_firmware_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
struct achc_data *achc = dev_get_drvdata(dev);
int ret;

if (!count)
return -EINVAL;

mutex_lock(&achc->device_lock);
ret = ezport_flash(achc->ezport, achc->reset, "achc.bin");
mutex_unlock(&achc->device_lock);

if (ret < 0)
return ret;

return count;
}
static DEVICE_ATTR_WO(update_firmware);

static ssize_t reset_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
struct achc_data *achc = dev_get_drvdata(dev);

if (!count)
return -EINVAL;

mutex_lock(&achc->device_lock);
ezport_reset(achc->reset);
mutex_unlock(&achc->device_lock);

return count;
}
static DEVICE_ATTR_WO(reset);

static struct attribute *gehc_achc_attrs[] = {
&dev_attr_update_firmware.attr,
&dev_attr_reset.attr,
NULL,
};

static const struct attribute_group gehc_achc_attr_group = {
.attrs = gehc_achc_attrs,
};

static void unregister_ezport(void *data)
{
struct spi_device *ezport = data;

spi_unregister_device(ezport);
}

static int gehc_achc_probe(struct spi_device *spi)
{
struct achc_data *achc;
int ezport_reg, ret;

spi->max_speed_hz = ACHC_MAX_FREQ;
spi->bits_per_word = 8;
spi->mode = SPI_MODE_0;

achc = devm_kzalloc(&spi->dev, sizeof(*achc), GFP_KERNEL);
if (!achc)
return -ENOMEM;
achc->main = spi;

mutex_init(&achc->device_lock);

ret = of_property_read_u32_index(spi->dev.of_node, "reg", 1, &ezport_reg);
if (ret)
return dev_err_probe(&spi->dev, ret, "missing second reg entry!\n");

achc->ezport = spi_new_ancillary_device(spi, ezport_reg);
if (IS_ERR(achc->ezport))
return PTR_ERR(achc->ezport);

ret = devm_add_action_or_reset(&spi->dev, unregister_ezport, achc->ezport);
if (ret)
return ret;

achc->reset = devm_gpiod_get(&spi->dev, "reset", GPIOD_OUT_LOW);
if (IS_ERR(achc->reset))
return dev_err_probe(&spi->dev, PTR_ERR(achc->reset), "Could not get reset gpio\n");

/*
* The sysfs properties are bound to the dummy device, since the main device already
* uses drvdata assigned by the spidev driver.
*/
spi_set_drvdata(achc->ezport, achc);
ret = devm_device_add_group(&achc->ezport->dev, &gehc_achc_attr_group);
if (ret)
return ret;

/*
* Anything before this must use device managed resources to ensure resources being
* free'd in reverse allocation order.
*/
ret = spidev_probe(spi);
if (ret)
return ret;

return 0;
}

static int gehc_achc_remove(struct spi_device *spi)
{
return spidev_remove(spi);
}

static const struct spi_device_id gehc_achc_id[] = {
{ "ge,achc", 0 },
{ }
};
MODULE_DEVICE_TABLE(spi, gehc_achc_id);

static const struct of_device_id gehc_achc_of_match[] = {
{ .compatible = "ge,achc" },
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, gehc_achc_of_match);

static struct spi_driver gehc_achc_spi_driver = {
.driver = {
.name = "gehc-achc",
.of_match_table = gehc_achc_of_match,
},
.probe = gehc_achc_probe,
.remove = gehc_achc_remove,
.id_table = gehc_achc_id,
};
module_spi_driver(gehc_achc_spi_driver);

MODULE_DESCRIPTION("GEHC ACHC driver");
MODULE_AUTHOR("Sebastian Reichel <sebastian.reichel@collabora.com>");
MODULE_LICENSE("GPL");
Loading

0 comments on commit dac014d

Please sign in to comment.