forked from Openwrt/openwrt
8dfe69cdfc
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From 33a1c6618677fe33f8e84cb7bedc45abbce89a50 Mon Sep 17 00:00:00 2001
|
|
From: Sean Anderson <sean.anderson@seco.com>
|
|
Date: Fri, 29 Apr 2022 17:27:01 +0100
|
|
Subject: [PATCH] nvmem: sfp: Add support for TA 2.1 devices
|
|
|
|
This adds support for Trust Architecture (TA) 2.1 devices to the SFP driver.
|
|
There are few differences between TA 2.1 and TA 3.0, especially for
|
|
read-only support, so just re-use the existing data.
|
|
|
|
Signed-off-by: Sean Anderson <sean.anderson@seco.com>
|
|
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
|
|
Link: https://lore.kernel.org/r/20220429162701.2222-17-srinivas.kandagatla@linaro.org
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/nvmem/layerscape-sfp.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
--- a/drivers/nvmem/layerscape-sfp.c
|
|
+++ b/drivers/nvmem/layerscape-sfp.c
|
|
@@ -78,12 +78,18 @@ static int layerscape_sfp_probe(struct p
|
|
return PTR_ERR_OR_ZERO(nvmem);
|
|
}
|
|
|
|
+static const struct layerscape_sfp_data ls1021a_data = {
|
|
+ .size = 0x88,
|
|
+ .endian = REGMAP_ENDIAN_BIG,
|
|
+};
|
|
+
|
|
static const struct layerscape_sfp_data ls1028a_data = {
|
|
.size = 0x88,
|
|
.endian = REGMAP_ENDIAN_LITTLE,
|
|
};
|
|
|
|
static const struct of_device_id layerscape_sfp_dt_ids[] = {
|
|
+ { .compatible = "fsl,ls1021a-sfp", .data = &ls1021a_data },
|
|
{ .compatible = "fsl,ls1028a-sfp", .data = &ls1028a_data },
|
|
{},
|
|
};
|