* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-06 8:28 ` Yangbo Lu
0 siblings, 0 replies; 81+ messages in thread
From: Yangbo Lu @ 2016-09-06 8:28 UTC (permalink / raw)
To: linux-mmc-u79uwXL29TY76Z2rM5mHXA,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A, Scott Wood, Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA, Russell King,
Yangbo Lu, Bhupesh Sharma, netdev-u79uwXL29TY76Z2rM5mHXA,
Santosh Shilimkar, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
Jochen Friedrich, xiaobo.xie-3arQi8VN3Tc,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Rob Herring,
linux-i2c-u79uwXL29TY76Z2rM5mHXA, Claudiu Manoil, Kumar Gala,
leoyang.li-3arQi8VN3Tc, linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-clk-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Qiang Zhao
The global utilities block controls power management, I/O device
enabling, power-onreset(POR) configuration monitoring, alternate
function selection for multiplexed signals,and clock control.
This patch adds a driver to manage and access global utilities block.
Initially only reading SVR and registering soc device are supported.
Other guts accesses, such as reading RCW, should eventually be moved
into this driver as well.
Signed-off-by: Yangbo Lu <yangbo.lu-3arQi8VN3Tc@public.gmane.org>
Signed-off-by: Scott Wood <oss-fOR+EgIDQEHk1uMJSBkQmQ@public.gmane.org>
---
Changes for v4:
- Added this patch
Changes for v5:
- Modified copyright info
- Changed MODULE_LICENSE to GPL
- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL
- Made FSL_GUTS user-invisible
- Added a complete compatible list for GUTS
- Stored guts info in file-scope variable
- Added mfspr() getting SVR
- Redefined GUTS APIs
- Called fsl_guts_init rather than using platform driver
- Removed useless parentheses
- Removed useless 'extern' key words
Changes for v6:
- Made guts thread safe in fsl_guts_init
Changes for v7:
- Removed 'ifdef' for function declaration in guts.h
Changes for v8:
- Fixes lines longer than 80 characters checkpatch issue
- Added 'Acked-by: Scott Wood'
Changes for v9:
- None
Changes for v10:
- None
Changes for v11:
- Changed to platform driver
- Registered soc device
---
drivers/soc/Kconfig | 2 +-
drivers/soc/fsl/Kconfig | 20 ++
drivers/soc/fsl/Makefile | 1 +
drivers/soc/fsl/guts.c | 483 +++++++++++++++++++++++++++++++++++++++++++++++
include/linux/fsl/guts.h | 127 ++++++++-----
5 files changed, 584 insertions(+), 49 deletions(-)
create mode 100644 drivers/soc/fsl/Kconfig
create mode 100644 drivers/soc/fsl/guts.c
diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig
index fe42a2f..f31bceb 100644
--- a/drivers/soc/Kconfig
+++ b/drivers/soc/Kconfig
@@ -1,7 +1,7 @@
menu "SOC (System On Chip) specific Drivers"
source "drivers/soc/bcm/Kconfig"
-source "drivers/soc/fsl/qe/Kconfig"
+source "drivers/soc/fsl/Kconfig"
source "drivers/soc/mediatek/Kconfig"
source "drivers/soc/qcom/Kconfig"
source "drivers/soc/rockchip/Kconfig"
diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
new file mode 100644
index 0000000..439998d
--- /dev/null
+++ b/drivers/soc/fsl/Kconfig
@@ -0,0 +1,20 @@
+#
+# Freescale SOC drivers
+#
+
+source "drivers/soc/fsl/qe/Kconfig"
+
+config FSL_GUTS
+ bool "Freescale QorIQ GUTS driver"
+ select SOC_BUS
+ select GLOB
+ help
+ The global utilities block controls power management, I/O device
+ enabling, power-onreset(POR) configuration monitoring, alternate
+ function selection for multiplexed signals,and clock control.
+ This driver is to manage and access global utilities block.
+ Initially only reading SVR and registering soc device are supported.
+ Other guts accesses, such as reading RCW, should eventually be moved
+ into this driver as well.
+
+ If you want GUTS driver support, you should say Y here.
diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile
index 203307f..02afb7f 100644
--- a/drivers/soc/fsl/Makefile
+++ b/drivers/soc/fsl/Makefile
@@ -4,3 +4,4 @@
obj-$(CONFIG_QUICC_ENGINE) += qe/
obj-$(CONFIG_CPM) += qe/
+obj-$(CONFIG_FSL_GUTS) += guts.o
diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
new file mode 100644
index 0000000..93c39315
--- /dev/null
+++ b/drivers/soc/fsl/guts.c
@@ -0,0 +1,483 @@
+/*
+ * Freescale QorIQ Platforms GUTS Driver
+ *
+ * Copyright (C) 2016 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+#include <linux/io.h>
+#include <linux/slab.h>
+#include <linux/module.h>
+#include <linux/of_fdt.h>
+#include <linux/sys_soc.h>
+#include <linux/of_address.h>
+#include <linux/platform_device.h>
+#include <linux/glob.h>
+#include <linux/fsl/guts.h>
+#include <linux/fsl/svr.h>
+
+struct guts {
+ struct ccsr_guts __iomem *regs;
+ bool little_endian;
+};
+
+static struct guts *guts;
+static struct soc_device_attribute *soc_dev_attr;
+static struct soc_device *soc_dev;
+
+
+/* SoC attribute definition for QorIQ platform */
+static const struct soc_device_attribute qoriq_soc[] = {
+#ifdef CONFIG_PPC
+ /*
+ * Power Architecture-based SoCs T Series
+ */
+
+ /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
+ { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85440010,name:T1014,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854C0010,name:T1014E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85410010,name:T1023,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85490010,name:T1023E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85450010,name:T1013,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854D0010,name:T1013E,die:T1024",
+ .revision = "1.0",
+ },
+ /* SoC: T1040/T1020/T1042/T1022 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85200010,name:T1040,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280010,name:T1040E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210010,name:T1020,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290010,name:T1020E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200210,name:T1042,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280210,name:T1042E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210210,name:T1022,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290210,name:T1022E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200011,name:T1040,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280011,name:T1040E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210011,name:T1020,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290011,name:T1020E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85200211,name:T1042,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280211,name:T1042E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210211,name:T1022,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290211,name:T1022E,die:T1040",
+ .revision = "1.1",
+ },
+ /* SoC: T2080/T2081 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85300010,name:T2080,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85380010,name:T2080E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85310010,name:T2081,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85390010,name:T2081E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85300011,name:T2080,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85380011,name:T2080E,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85310011,name:T2081,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85390011,name:T2081E,die:T2080",
+ .revision = "1.1",
+ },
+ /* SoC: T4240/T4160/T4080 Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x82400010,name:T4240,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82480010,name:T4240E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82410010,name:T4160,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82490010,name:T4160E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82400020,name:T4240,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82480020,name:T4240E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410020,name:T4160,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490020,name:T4160E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410220,name:T4080,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490220,name:T4080E,die:T4240",
+ .revision = "2.0",
+ },
+#endif /* CONFIG_PPC */
+#if defined(CONFIG_ARCH_MXC) || defined(CONFIG_ARCH_LAYERSCAPE)
+ /*
+ * ARM-based SoCs LS Series
+ */
+
+ /* SoC: LS1021A/LS1020A/LS1022A Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x87001110,name:LS1021A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081110,name:LS1021AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001010,name:LS1020A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081010,name:LS1020AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001210,name:LS1022A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081210,name:LS1022AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001120,name:LS1021A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081120,name:LS1021AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001020,name:LS1020A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081020,name:LS1020AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001220,name:LS1022A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081220,name:LS1022AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ /* SoC: LS1046A/LS1026A Rev: 1.0 */
+ { .soc_id = "svr:0x87070110,name:LS1046A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070010,name:LS1046AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070910,name:LS1026A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070810,name:LS1026AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 21*21 */
+ { .soc_id = "svr:0x87920110,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920010,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920910,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920810,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 23*23 */
+ { .soc_id = "svr:0x87920310,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920210,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920B10,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920A10,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1012A Rev: 1.0 */
+ { .soc_id = "svr:0x87040110,name:LS1012A,die:LS1012A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87040010,name:LS1012AE,die:LS1012A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2088A/LS2048A/LS2084A/LS2044A Rev: 1.0 */
+ { .soc_id = "svr:0x87090110,name:LS2088A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87090010,name:LS2088AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092110,name:LS2048A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092010,name:LS2048AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091110,name:LS2084A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091010,name:LS2084AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093110,name:LS2044A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093010,name:LS2044AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2080A/LS2040A Rev: 1.0 */
+ { .soc_id = "svr:0x87011010,name:LS2080AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87013010,name:LS2040AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2085A Rev: 1.0 */
+ { .soc_id = "svr:0x87010110,name:LS2085A,die:LS2085A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87010010,name:LS2085AE,die:LS2085A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1088A/LS1048A/LS1084A/LS1044A Rev: 1.0 */
+ { .soc_id = "svr:0x87030110,name:LS1088A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030010,name:LS1088AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032110,name:LS1048A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032010,name:LS1048AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030310,name:LS1084A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030210,name:LS1084AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032310,name:LS1044A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032210,name:LS1044AE,die:LS1088A",
+ .revision = "1.0",
+ },
+#endif /* CONFIG_ARCH_MXC || CONFIG_ARCH_LAYERSCAPE */
+ { },
+};
+
+static const struct soc_device_attribute *fsl_soc_device_match(
+ unsigned int svr, const struct soc_device_attribute *matches)
+{
+ char svr_match[50];
+ int n;
+
+ n = sprintf(svr_match, "*%08x*", svr);
+
+ do {
+ if (!matches->soc_id)
+ return NULL;
+ if (glob_match(svr_match, matches->soc_id))
+ break;
+ } while (matches++);
+
+ return matches;
+}
+
+unsigned int fsl_guts_get_svr(void)
+{
+ unsigned int svr = 0;
+
+ if (!guts || !guts->regs)
+ return svr;
+
+ if (guts->little_endian)
+ svr = ioread32(&guts->regs->svr);
+ else
+ svr = ioread32be(&guts->regs->svr);
+
+ return svr;
+}
+EXPORT_SYMBOL(fsl_guts_get_svr);
+
+static int fsl_guts_probe(struct platform_device *pdev)
+{
+ struct device_node *np;
+ const struct soc_device_attribute *fsl_soc;
+ const char *machine;
+ unsigned int svr;
+ int ret = 0;
+
+ np = pdev->dev.of_node;
+
+ /* Initialize guts */
+ guts = kzalloc(sizeof(*guts), GFP_KERNEL);
+ if (!guts)
+ return -ENOMEM;
+
+ guts->little_endian = of_property_read_bool(np, "little-endian");
+
+ guts->regs = of_iomap(np, 0);
+ if (!guts->regs) {
+ ret = -ENOMEM;
+ goto out_free;
+ }
+
+ /* Register soc device */
+ soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
+ if (!soc_dev_attr) {
+ ret = -ENOMEM;
+ goto out_unmap;
+ }
+
+ machine = of_flat_dt_get_machine_name();
+ if (machine)
+ soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s", machine);
+
+ soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
+
+ svr = fsl_guts_get_svr();
+ fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
+ if (fsl_soc) {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->soc_id);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->revision);
+ } else {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x", svr);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
+ SVR_MAJ(svr), SVR_MIN(svr));
+ }
+
+ soc_dev = soc_device_register(soc_dev_attr);
+ if (IS_ERR(soc_dev)) {
+ ret = -ENODEV;
+ goto out;
+ } else {
+ pr_info("Detected: %s\n", soc_dev_attr->machine);
+ pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
+ pr_info("Detected SoC ID: %s, revision: %s\n",
+ soc_dev_attr->soc_id, soc_dev_attr->revision);
+ }
+ return 0;
+out:
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+out_unmap:
+ iounmap(guts->regs);
+out_free:
+ kfree(guts);
+ return ret;
+}
+
+static int fsl_guts_remove(struct platform_device *dev)
+{
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+ soc_device_unregister(soc_dev);
+ iounmap(guts->regs);
+ kfree(guts);
+ return 0;
+}
+
+/*
+ * Table for matching compatible strings, for device tree
+ * guts node, for Freescale QorIQ SOCs.
+ */
+static const struct of_device_id fsl_guts_of_match[] = {
+ { .compatible = "fsl,qoriq-device-config-1.0", },
+ { .compatible = "fsl,qoriq-device-config-2.0", },
+ { .compatible = "fsl,p1010-guts", },
+ { .compatible = "fsl,p1020-guts", },
+ { .compatible = "fsl,p1021-guts", },
+ { .compatible = "fsl,p1022-guts", },
+ { .compatible = "fsl,p1023-guts", },
+ { .compatible = "fsl,p2020-guts", },
+ { .compatible = "fsl,bsc9131-guts", },
+ { .compatible = "fsl,bsc9132-guts", },
+ { .compatible = "fsl,mpc8536-guts", },
+ { .compatible = "fsl,mpc8544-guts", },
+ { .compatible = "fsl,mpc8548-guts", },
+ { .compatible = "fsl,mpc8568-guts", },
+ { .compatible = "fsl,mpc8569-guts", },
+ { .compatible = "fsl,mpc8572-guts", },
+ { .compatible = "fsl,ls1021a-dcfg", },
+ { .compatible = "fsl,ls1043a-dcfg", },
+ { .compatible = "fsl,ls2080a-dcfg", },
+ {}
+};
+
+static struct platform_driver fsl_guts_driver = {
+ .driver = {
+ .name = "fsl-guts",
+ .of_match_table = fsl_guts_of_match,
+ },
+ .probe = fsl_guts_probe,
+ .remove = fsl_guts_remove,
+};
+
+module_platform_driver(fsl_guts_driver);
diff --git a/include/linux/fsl/guts.h b/include/linux/fsl/guts.h
index 649e917..c5e24cf 100644
--- a/include/linux/fsl/guts.h
+++ b/include/linux/fsl/guts.h
@@ -29,83 +29,114 @@
* #ifdefs.
*/
struct ccsr_guts {
- __be32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
- __be32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
- __be32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and Control Register */
- __be32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
- __be32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
- __be32 pordevsr2; /* 0x.0014 - POR device status register 2 */
+ u32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
+ u32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
+ u32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and
+ * Control Register
+ */
+ u32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
+ u32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
+ u32 pordevsr2; /* 0x.0014 - POR device status register 2 */
u8 res018[0x20 - 0x18];
- __be32 porcir; /* 0x.0020 - POR Configuration Information Register */
+ u32 porcir; /* 0x.0020 - POR Configuration Information
+ * Register
+ */
u8 res024[0x30 - 0x24];
- __be32 gpiocr; /* 0x.0030 - GPIO Control Register */
+ u32 gpiocr; /* 0x.0030 - GPIO Control Register */
u8 res034[0x40 - 0x34];
- __be32 gpoutdr; /* 0x.0040 - General-Purpose Output Data Register */
+ u32 gpoutdr; /* 0x.0040 - General-Purpose Output Data
+ * Register
+ */
u8 res044[0x50 - 0x44];
- __be32 gpindr; /* 0x.0050 - General-Purpose Input Data Register */
+ u32 gpindr; /* 0x.0050 - General-Purpose Input Data
+ * Register
+ */
u8 res054[0x60 - 0x54];
- __be32 pmuxcr; /* 0x.0060 - Alternate Function Signal Multiplex Control */
- __be32 pmuxcr2; /* 0x.0064 - Alternate function signal multiplex control 2 */
- __be32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
+ u32 pmuxcr; /* 0x.0060 - Alternate Function Signal
+ * Multiplex Control
+ */
+ u32 pmuxcr2; /* 0x.0064 - Alternate function signal
+ * multiplex control 2
+ */
+ u32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
u8 res06c[0x70 - 0x6c];
- __be32 devdisr; /* 0x.0070 - Device Disable Control */
+ u32 devdisr; /* 0x.0070 - Device Disable Control */
#define CCSR_GUTS_DEVDISR_TB1 0x00001000
#define CCSR_GUTS_DEVDISR_TB0 0x00004000
- __be32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
+ u32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
u8 res078[0x7c - 0x78];
- __be32 pmjcr; /* 0x.007c - 4 Power Management Jog Control Register */
- __be32 powmgtcsr; /* 0x.0080 - Power Management Status and Control Register */
- __be32 pmrccr; /* 0x.0084 - Power Management Reset Counter Configuration Register */
- __be32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter Configuration Register */
- __be32 pmcdr; /* 0x.008c - 4Power management clock disable register */
- __be32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
- __be32 rstrscr; /* 0x.0094 - Reset Request Status and Control Register */
- __be32 ectrstcr; /* 0x.0098 - Exception reset control register */
- __be32 autorstsr; /* 0x.009c - Automatic reset status register */
- __be32 pvr; /* 0x.00a0 - Processor Version Register */
- __be32 svr; /* 0x.00a4 - System Version Register */
+ u32 pmjcr; /* 0x.007c - 4 Power Management Jog Control
+ * Register
+ */
+ u32 powmgtcsr; /* 0x.0080 - Power Management Status and
+ * Control Register
+ */
+ u32 pmrccr; /* 0x.0084 - Power Management Reset Counter
+ * Configuration Register
+ */
+ u32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter
+ * Configuration Register
+ */
+ u32 pmcdr; /* 0x.008c - 4Power management clock disable
+ * register
+ */
+ u32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
+ u32 rstrscr; /* 0x.0094 - Reset Request Status and
+ * Control Register
+ */
+ u32 ectrstcr; /* 0x.0098 - Exception reset control register */
+ u32 autorstsr; /* 0x.009c - Automatic reset status register */
+ u32 pvr; /* 0x.00a0 - Processor Version Register */
+ u32 svr; /* 0x.00a4 - System Version Register */
u8 res0a8[0xb0 - 0xa8];
- __be32 rstcr; /* 0x.00b0 - Reset Control Register */
+ u32 rstcr; /* 0x.00b0 - Reset Control Register */
u8 res0b4[0xc0 - 0xb4];
- __be32 iovselsr; /* 0x.00c0 - I/O voltage select status register
+ u32 iovselsr; /* 0x.00c0 - I/O voltage select status register
Called 'elbcvselcr' on 86xx SOCs */
u8 res0c4[0x100 - 0xc4];
- __be32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
+ u32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
There are 16 registers */
u8 res140[0x224 - 0x140];
- __be32 iodelay1; /* 0x.0224 - IO delay control register 1 */
- __be32 iodelay2; /* 0x.0228 - IO delay control register 2 */
+ u32 iodelay1; /* 0x.0224 - IO delay control register 1 */
+ u32 iodelay2; /* 0x.0228 - IO delay control register 2 */
u8 res22c[0x604 - 0x22c];
- __be32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
+ u32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
u8 res608[0x800 - 0x608];
- __be32 clkdvdr; /* 0x.0800 - Clock Divide Register */
+ u32 clkdvdr; /* 0x.0800 - Clock Divide Register */
u8 res804[0x900 - 0x804];
- __be32 ircr; /* 0x.0900 - Infrared Control Register */
+ u32 ircr; /* 0x.0900 - Infrared Control Register */
u8 res904[0x908 - 0x904];
- __be32 dmacr; /* 0x.0908 - DMA Control Register */
+ u32 dmacr; /* 0x.0908 - DMA Control Register */
u8 res90c[0x914 - 0x90c];
- __be32 elbccr; /* 0x.0914 - eLBC Control Register */
+ u32 elbccr; /* 0x.0914 - eLBC Control Register */
u8 res918[0xb20 - 0x918];
- __be32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
- __be32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
- __be32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
+ u32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
+ u32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
+ u32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
u8 resb2c[0xe00 - 0xb2c];
- __be32 clkocr; /* 0x.0e00 - Clock Out Select Register */
+ u32 clkocr; /* 0x.0e00 - Clock Out Select Register */
u8 rese04[0xe10 - 0xe04];
- __be32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
+ u32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
u8 rese14[0xe20 - 0xe14];
- __be32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
- __be32 cpfor; /* 0x.0e24 - L2 charge pump fuse override register */
+ u32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
+ u32 cpfor; /* 0x.0e24 - L2 charge pump fuse override
+ * register
+ */
u8 rese28[0xf04 - 0xe28];
- __be32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
- __be32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
+ u32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
+ u32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
u8 resf0c[0xf2c - 0xf0c];
- __be32 itcr; /* 0x.0f2c - Internal transaction control register */
+ u32 itcr; /* 0x.0f2c - Internal transaction control
+ * register
+ */
u8 resf30[0xf40 - 0xf30];
- __be32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
- __be32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
+ u32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
+ u32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
} __attribute__ ((packed));
+#ifdef CONFIG_FSL_GUTS
+unsigned int fsl_guts_get_svr(void);
+#endif
/* Alternate function signal multiplex control */
#define MPC85xx_PMUXCR_QE(x) (0x8000 >> (x))
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-06 8:28 ` Yangbo Lu
0 siblings, 0 replies; 81+ messages in thread
From: Yangbo Lu @ 2016-09-06 8:28 UTC (permalink / raw)
To: linux-arm-kernel
The global utilities block controls power management, I/O device
enabling, power-onreset(POR) configuration monitoring, alternate
function selection for multiplexed signals,and clock control.
This patch adds a driver to manage and access global utilities block.
Initially only reading SVR and registering soc device are supported.
Other guts accesses, such as reading RCW, should eventually be moved
into this driver as well.
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Signed-off-by: Scott Wood <oss@buserror.net>
---
Changes for v4:
- Added this patch
Changes for v5:
- Modified copyright info
- Changed MODULE_LICENSE to GPL
- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL
- Made FSL_GUTS user-invisible
- Added a complete compatible list for GUTS
- Stored guts info in file-scope variable
- Added mfspr() getting SVR
- Redefined GUTS APIs
- Called fsl_guts_init rather than using platform driver
- Removed useless parentheses
- Removed useless 'extern' key words
Changes for v6:
- Made guts thread safe in fsl_guts_init
Changes for v7:
- Removed 'ifdef' for function declaration in guts.h
Changes for v8:
- Fixes lines longer than 80 characters checkpatch issue
- Added 'Acked-by: Scott Wood'
Changes for v9:
- None
Changes for v10:
- None
Changes for v11:
- Changed to platform driver
- Registered soc device
---
drivers/soc/Kconfig | 2 +-
drivers/soc/fsl/Kconfig | 20 ++
drivers/soc/fsl/Makefile | 1 +
drivers/soc/fsl/guts.c | 483 +++++++++++++++++++++++++++++++++++++++++++++++
include/linux/fsl/guts.h | 127 ++++++++-----
5 files changed, 584 insertions(+), 49 deletions(-)
create mode 100644 drivers/soc/fsl/Kconfig
create mode 100644 drivers/soc/fsl/guts.c
diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig
index fe42a2f..f31bceb 100644
--- a/drivers/soc/Kconfig
+++ b/drivers/soc/Kconfig
@@ -1,7 +1,7 @@
menu "SOC (System On Chip) specific Drivers"
source "drivers/soc/bcm/Kconfig"
-source "drivers/soc/fsl/qe/Kconfig"
+source "drivers/soc/fsl/Kconfig"
source "drivers/soc/mediatek/Kconfig"
source "drivers/soc/qcom/Kconfig"
source "drivers/soc/rockchip/Kconfig"
diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
new file mode 100644
index 0000000..439998d
--- /dev/null
+++ b/drivers/soc/fsl/Kconfig
@@ -0,0 +1,20 @@
+#
+# Freescale SOC drivers
+#
+
+source "drivers/soc/fsl/qe/Kconfig"
+
+config FSL_GUTS
+ bool "Freescale QorIQ GUTS driver"
+ select SOC_BUS
+ select GLOB
+ help
+ The global utilities block controls power management, I/O device
+ enabling, power-onreset(POR) configuration monitoring, alternate
+ function selection for multiplexed signals,and clock control.
+ This driver is to manage and access global utilities block.
+ Initially only reading SVR and registering soc device are supported.
+ Other guts accesses, such as reading RCW, should eventually be moved
+ into this driver as well.
+
+ If you want GUTS driver support, you should say Y here.
diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile
index 203307f..02afb7f 100644
--- a/drivers/soc/fsl/Makefile
+++ b/drivers/soc/fsl/Makefile
@@ -4,3 +4,4 @@
obj-$(CONFIG_QUICC_ENGINE) += qe/
obj-$(CONFIG_CPM) += qe/
+obj-$(CONFIG_FSL_GUTS) += guts.o
diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
new file mode 100644
index 0000000..93c39315
--- /dev/null
+++ b/drivers/soc/fsl/guts.c
@@ -0,0 +1,483 @@
+/*
+ * Freescale QorIQ Platforms GUTS Driver
+ *
+ * Copyright (C) 2016 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+#include <linux/io.h>
+#include <linux/slab.h>
+#include <linux/module.h>
+#include <linux/of_fdt.h>
+#include <linux/sys_soc.h>
+#include <linux/of_address.h>
+#include <linux/platform_device.h>
+#include <linux/glob.h>
+#include <linux/fsl/guts.h>
+#include <linux/fsl/svr.h>
+
+struct guts {
+ struct ccsr_guts __iomem *regs;
+ bool little_endian;
+};
+
+static struct guts *guts;
+static struct soc_device_attribute *soc_dev_attr;
+static struct soc_device *soc_dev;
+
+
+/* SoC attribute definition for QorIQ platform */
+static const struct soc_device_attribute qoriq_soc[] = {
+#ifdef CONFIG_PPC
+ /*
+ * Power Architecture-based SoCs T Series
+ */
+
+ /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
+ { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85440010,name:T1014,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854C0010,name:T1014E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85410010,name:T1023,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85490010,name:T1023E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85450010,name:T1013,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854D0010,name:T1013E,die:T1024",
+ .revision = "1.0",
+ },
+ /* SoC: T1040/T1020/T1042/T1022 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85200010,name:T1040,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280010,name:T1040E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210010,name:T1020,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290010,name:T1020E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200210,name:T1042,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280210,name:T1042E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210210,name:T1022,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290210,name:T1022E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200011,name:T1040,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280011,name:T1040E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210011,name:T1020,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290011,name:T1020E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85200211,name:T1042,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280211,name:T1042E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210211,name:T1022,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290211,name:T1022E,die:T1040",
+ .revision = "1.1",
+ },
+ /* SoC: T2080/T2081 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85300010,name:T2080,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85380010,name:T2080E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85310010,name:T2081,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85390010,name:T2081E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85300011,name:T2080,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85380011,name:T2080E,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85310011,name:T2081,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85390011,name:T2081E,die:T2080",
+ .revision = "1.1",
+ },
+ /* SoC: T4240/T4160/T4080 Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x82400010,name:T4240,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82480010,name:T4240E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82410010,name:T4160,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82490010,name:T4160E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82400020,name:T4240,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82480020,name:T4240E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410020,name:T4160,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490020,name:T4160E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410220,name:T4080,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490220,name:T4080E,die:T4240",
+ .revision = "2.0",
+ },
+#endif /* CONFIG_PPC */
+#if defined(CONFIG_ARCH_MXC) || defined(CONFIG_ARCH_LAYERSCAPE)
+ /*
+ * ARM-based SoCs LS Series
+ */
+
+ /* SoC: LS1021A/LS1020A/LS1022A Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x87001110,name:LS1021A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081110,name:LS1021AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001010,name:LS1020A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081010,name:LS1020AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001210,name:LS1022A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081210,name:LS1022AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001120,name:LS1021A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081120,name:LS1021AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001020,name:LS1020A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081020,name:LS1020AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001220,name:LS1022A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081220,name:LS1022AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ /* SoC: LS1046A/LS1026A Rev: 1.0 */
+ { .soc_id = "svr:0x87070110,name:LS1046A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070010,name:LS1046AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070910,name:LS1026A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070810,name:LS1026AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 21*21 */
+ { .soc_id = "svr:0x87920110,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920010,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920910,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920810,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 23*23 */
+ { .soc_id = "svr:0x87920310,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920210,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920B10,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920A10,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1012A Rev: 1.0 */
+ { .soc_id = "svr:0x87040110,name:LS1012A,die:LS1012A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87040010,name:LS1012AE,die:LS1012A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2088A/LS2048A/LS2084A/LS2044A Rev: 1.0 */
+ { .soc_id = "svr:0x87090110,name:LS2088A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87090010,name:LS2088AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092110,name:LS2048A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092010,name:LS2048AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091110,name:LS2084A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091010,name:LS2084AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093110,name:LS2044A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093010,name:LS2044AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2080A/LS2040A Rev: 1.0 */
+ { .soc_id = "svr:0x87011010,name:LS2080AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87013010,name:LS2040AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2085A Rev: 1.0 */
+ { .soc_id = "svr:0x87010110,name:LS2085A,die:LS2085A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87010010,name:LS2085AE,die:LS2085A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1088A/LS1048A/LS1084A/LS1044A Rev: 1.0 */
+ { .soc_id = "svr:0x87030110,name:LS1088A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030010,name:LS1088AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032110,name:LS1048A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032010,name:LS1048AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030310,name:LS1084A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030210,name:LS1084AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032310,name:LS1044A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032210,name:LS1044AE,die:LS1088A",
+ .revision = "1.0",
+ },
+#endif /* CONFIG_ARCH_MXC || CONFIG_ARCH_LAYERSCAPE */
+ { },
+};
+
+static const struct soc_device_attribute *fsl_soc_device_match(
+ unsigned int svr, const struct soc_device_attribute *matches)
+{
+ char svr_match[50];
+ int n;
+
+ n = sprintf(svr_match, "*%08x*", svr);
+
+ do {
+ if (!matches->soc_id)
+ return NULL;
+ if (glob_match(svr_match, matches->soc_id))
+ break;
+ } while (matches++);
+
+ return matches;
+}
+
+unsigned int fsl_guts_get_svr(void)
+{
+ unsigned int svr = 0;
+
+ if (!guts || !guts->regs)
+ return svr;
+
+ if (guts->little_endian)
+ svr = ioread32(&guts->regs->svr);
+ else
+ svr = ioread32be(&guts->regs->svr);
+
+ return svr;
+}
+EXPORT_SYMBOL(fsl_guts_get_svr);
+
+static int fsl_guts_probe(struct platform_device *pdev)
+{
+ struct device_node *np;
+ const struct soc_device_attribute *fsl_soc;
+ const char *machine;
+ unsigned int svr;
+ int ret = 0;
+
+ np = pdev->dev.of_node;
+
+ /* Initialize guts */
+ guts = kzalloc(sizeof(*guts), GFP_KERNEL);
+ if (!guts)
+ return -ENOMEM;
+
+ guts->little_endian = of_property_read_bool(np, "little-endian");
+
+ guts->regs = of_iomap(np, 0);
+ if (!guts->regs) {
+ ret = -ENOMEM;
+ goto out_free;
+ }
+
+ /* Register soc device */
+ soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
+ if (!soc_dev_attr) {
+ ret = -ENOMEM;
+ goto out_unmap;
+ }
+
+ machine = of_flat_dt_get_machine_name();
+ if (machine)
+ soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s", machine);
+
+ soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
+
+ svr = fsl_guts_get_svr();
+ fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
+ if (fsl_soc) {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->soc_id);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->revision);
+ } else {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x", svr);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
+ SVR_MAJ(svr), SVR_MIN(svr));
+ }
+
+ soc_dev = soc_device_register(soc_dev_attr);
+ if (IS_ERR(soc_dev)) {
+ ret = -ENODEV;
+ goto out;
+ } else {
+ pr_info("Detected: %s\n", soc_dev_attr->machine);
+ pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
+ pr_info("Detected SoC ID: %s, revision: %s\n",
+ soc_dev_attr->soc_id, soc_dev_attr->revision);
+ }
+ return 0;
+out:
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+out_unmap:
+ iounmap(guts->regs);
+out_free:
+ kfree(guts);
+ return ret;
+}
+
+static int fsl_guts_remove(struct platform_device *dev)
+{
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+ soc_device_unregister(soc_dev);
+ iounmap(guts->regs);
+ kfree(guts);
+ return 0;
+}
+
+/*
+ * Table for matching compatible strings, for device tree
+ * guts node, for Freescale QorIQ SOCs.
+ */
+static const struct of_device_id fsl_guts_of_match[] = {
+ { .compatible = "fsl,qoriq-device-config-1.0", },
+ { .compatible = "fsl,qoriq-device-config-2.0", },
+ { .compatible = "fsl,p1010-guts", },
+ { .compatible = "fsl,p1020-guts", },
+ { .compatible = "fsl,p1021-guts", },
+ { .compatible = "fsl,p1022-guts", },
+ { .compatible = "fsl,p1023-guts", },
+ { .compatible = "fsl,p2020-guts", },
+ { .compatible = "fsl,bsc9131-guts", },
+ { .compatible = "fsl,bsc9132-guts", },
+ { .compatible = "fsl,mpc8536-guts", },
+ { .compatible = "fsl,mpc8544-guts", },
+ { .compatible = "fsl,mpc8548-guts", },
+ { .compatible = "fsl,mpc8568-guts", },
+ { .compatible = "fsl,mpc8569-guts", },
+ { .compatible = "fsl,mpc8572-guts", },
+ { .compatible = "fsl,ls1021a-dcfg", },
+ { .compatible = "fsl,ls1043a-dcfg", },
+ { .compatible = "fsl,ls2080a-dcfg", },
+ {}
+};
+
+static struct platform_driver fsl_guts_driver = {
+ .driver = {
+ .name = "fsl-guts",
+ .of_match_table = fsl_guts_of_match,
+ },
+ .probe = fsl_guts_probe,
+ .remove = fsl_guts_remove,
+};
+
+module_platform_driver(fsl_guts_driver);
diff --git a/include/linux/fsl/guts.h b/include/linux/fsl/guts.h
index 649e917..c5e24cf 100644
--- a/include/linux/fsl/guts.h
+++ b/include/linux/fsl/guts.h
@@ -29,83 +29,114 @@
* #ifdefs.
*/
struct ccsr_guts {
- __be32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
- __be32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
- __be32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and Control Register */
- __be32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
- __be32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
- __be32 pordevsr2; /* 0x.0014 - POR device status register 2 */
+ u32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
+ u32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
+ u32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and
+ * Control Register
+ */
+ u32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
+ u32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
+ u32 pordevsr2; /* 0x.0014 - POR device status register 2 */
u8 res018[0x20 - 0x18];
- __be32 porcir; /* 0x.0020 - POR Configuration Information Register */
+ u32 porcir; /* 0x.0020 - POR Configuration Information
+ * Register
+ */
u8 res024[0x30 - 0x24];
- __be32 gpiocr; /* 0x.0030 - GPIO Control Register */
+ u32 gpiocr; /* 0x.0030 - GPIO Control Register */
u8 res034[0x40 - 0x34];
- __be32 gpoutdr; /* 0x.0040 - General-Purpose Output Data Register */
+ u32 gpoutdr; /* 0x.0040 - General-Purpose Output Data
+ * Register
+ */
u8 res044[0x50 - 0x44];
- __be32 gpindr; /* 0x.0050 - General-Purpose Input Data Register */
+ u32 gpindr; /* 0x.0050 - General-Purpose Input Data
+ * Register
+ */
u8 res054[0x60 - 0x54];
- __be32 pmuxcr; /* 0x.0060 - Alternate Function Signal Multiplex Control */
- __be32 pmuxcr2; /* 0x.0064 - Alternate function signal multiplex control 2 */
- __be32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
+ u32 pmuxcr; /* 0x.0060 - Alternate Function Signal
+ * Multiplex Control
+ */
+ u32 pmuxcr2; /* 0x.0064 - Alternate function signal
+ * multiplex control 2
+ */
+ u32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
u8 res06c[0x70 - 0x6c];
- __be32 devdisr; /* 0x.0070 - Device Disable Control */
+ u32 devdisr; /* 0x.0070 - Device Disable Control */
#define CCSR_GUTS_DEVDISR_TB1 0x00001000
#define CCSR_GUTS_DEVDISR_TB0 0x00004000
- __be32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
+ u32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
u8 res078[0x7c - 0x78];
- __be32 pmjcr; /* 0x.007c - 4 Power Management Jog Control Register */
- __be32 powmgtcsr; /* 0x.0080 - Power Management Status and Control Register */
- __be32 pmrccr; /* 0x.0084 - Power Management Reset Counter Configuration Register */
- __be32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter Configuration Register */
- __be32 pmcdr; /* 0x.008c - 4Power management clock disable register */
- __be32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
- __be32 rstrscr; /* 0x.0094 - Reset Request Status and Control Register */
- __be32 ectrstcr; /* 0x.0098 - Exception reset control register */
- __be32 autorstsr; /* 0x.009c - Automatic reset status register */
- __be32 pvr; /* 0x.00a0 - Processor Version Register */
- __be32 svr; /* 0x.00a4 - System Version Register */
+ u32 pmjcr; /* 0x.007c - 4 Power Management Jog Control
+ * Register
+ */
+ u32 powmgtcsr; /* 0x.0080 - Power Management Status and
+ * Control Register
+ */
+ u32 pmrccr; /* 0x.0084 - Power Management Reset Counter
+ * Configuration Register
+ */
+ u32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter
+ * Configuration Register
+ */
+ u32 pmcdr; /* 0x.008c - 4Power management clock disable
+ * register
+ */
+ u32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
+ u32 rstrscr; /* 0x.0094 - Reset Request Status and
+ * Control Register
+ */
+ u32 ectrstcr; /* 0x.0098 - Exception reset control register */
+ u32 autorstsr; /* 0x.009c - Automatic reset status register */
+ u32 pvr; /* 0x.00a0 - Processor Version Register */
+ u32 svr; /* 0x.00a4 - System Version Register */
u8 res0a8[0xb0 - 0xa8];
- __be32 rstcr; /* 0x.00b0 - Reset Control Register */
+ u32 rstcr; /* 0x.00b0 - Reset Control Register */
u8 res0b4[0xc0 - 0xb4];
- __be32 iovselsr; /* 0x.00c0 - I/O voltage select status register
+ u32 iovselsr; /* 0x.00c0 - I/O voltage select status register
Called 'elbcvselcr' on 86xx SOCs */
u8 res0c4[0x100 - 0xc4];
- __be32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
+ u32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
There are 16 registers */
u8 res140[0x224 - 0x140];
- __be32 iodelay1; /* 0x.0224 - IO delay control register 1 */
- __be32 iodelay2; /* 0x.0228 - IO delay control register 2 */
+ u32 iodelay1; /* 0x.0224 - IO delay control register 1 */
+ u32 iodelay2; /* 0x.0228 - IO delay control register 2 */
u8 res22c[0x604 - 0x22c];
- __be32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
+ u32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
u8 res608[0x800 - 0x608];
- __be32 clkdvdr; /* 0x.0800 - Clock Divide Register */
+ u32 clkdvdr; /* 0x.0800 - Clock Divide Register */
u8 res804[0x900 - 0x804];
- __be32 ircr; /* 0x.0900 - Infrared Control Register */
+ u32 ircr; /* 0x.0900 - Infrared Control Register */
u8 res904[0x908 - 0x904];
- __be32 dmacr; /* 0x.0908 - DMA Control Register */
+ u32 dmacr; /* 0x.0908 - DMA Control Register */
u8 res90c[0x914 - 0x90c];
- __be32 elbccr; /* 0x.0914 - eLBC Control Register */
+ u32 elbccr; /* 0x.0914 - eLBC Control Register */
u8 res918[0xb20 - 0x918];
- __be32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
- __be32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
- __be32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
+ u32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
+ u32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
+ u32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
u8 resb2c[0xe00 - 0xb2c];
- __be32 clkocr; /* 0x.0e00 - Clock Out Select Register */
+ u32 clkocr; /* 0x.0e00 - Clock Out Select Register */
u8 rese04[0xe10 - 0xe04];
- __be32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
+ u32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
u8 rese14[0xe20 - 0xe14];
- __be32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
- __be32 cpfor; /* 0x.0e24 - L2 charge pump fuse override register */
+ u32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
+ u32 cpfor; /* 0x.0e24 - L2 charge pump fuse override
+ * register
+ */
u8 rese28[0xf04 - 0xe28];
- __be32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
- __be32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
+ u32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
+ u32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
u8 resf0c[0xf2c - 0xf0c];
- __be32 itcr; /* 0x.0f2c - Internal transaction control register */
+ u32 itcr; /* 0x.0f2c - Internal transaction control
+ * register
+ */
u8 resf30[0xf40 - 0xf30];
- __be32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
- __be32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
+ u32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
+ u32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
} __attribute__ ((packed));
+#ifdef CONFIG_FSL_GUTS
+unsigned int fsl_guts_get_svr(void);
+#endif
/* Alternate function signal multiplex control */
#define MPC85xx_PMUXCR_QE(x) (0x8000 >> (x))
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-06 8:28 ` Yangbo Lu
0 siblings, 0 replies; 81+ messages in thread
From: Yangbo Lu @ 2016-09-06 8:28 UTC (permalink / raw)
To: linux-mmc, ulf.hansson, Scott Wood, Arnd Bergmann
Cc: linuxppc-dev, devicetree, linux-arm-kernel, linux-kernel,
linux-clk, linux-i2c, iommu, netdev, Mark Rutland, Rob Herring,
Russell King, Jochen Friedrich, Joerg Roedel, Claudiu Manoil,
Bhupesh Sharma, Qiang Zhao, Kumar Gala, Santosh Shilimkar,
leoyang.li, xiaobo.xie, Yangbo Lu
The global utilities block controls power management, I/O device
enabling, power-onreset(POR) configuration monitoring, alternate
function selection for multiplexed signals,and clock control.
This patch adds a driver to manage and access global utilities block.
Initially only reading SVR and registering soc device are supported.
Other guts accesses, such as reading RCW, should eventually be moved
into this driver as well.
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Signed-off-by: Scott Wood <oss@buserror.net>
---
Changes for v4:
- Added this patch
Changes for v5:
- Modified copyright info
- Changed MODULE_LICENSE to GPL
- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL
- Made FSL_GUTS user-invisible
- Added a complete compatible list for GUTS
- Stored guts info in file-scope variable
- Added mfspr() getting SVR
- Redefined GUTS APIs
- Called fsl_guts_init rather than using platform driver
- Removed useless parentheses
- Removed useless 'extern' key words
Changes for v6:
- Made guts thread safe in fsl_guts_init
Changes for v7:
- Removed 'ifdef' for function declaration in guts.h
Changes for v8:
- Fixes lines longer than 80 characters checkpatch issue
- Added 'Acked-by: Scott Wood'
Changes for v9:
- None
Changes for v10:
- None
Changes for v11:
- Changed to platform driver
- Registered soc device
---
drivers/soc/Kconfig | 2 +-
drivers/soc/fsl/Kconfig | 20 ++
drivers/soc/fsl/Makefile | 1 +
drivers/soc/fsl/guts.c | 483 +++++++++++++++++++++++++++++++++++++++++++++++
include/linux/fsl/guts.h | 127 ++++++++-----
5 files changed, 584 insertions(+), 49 deletions(-)
create mode 100644 drivers/soc/fsl/Kconfig
create mode 100644 drivers/soc/fsl/guts.c
diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig
index fe42a2f..f31bceb 100644
--- a/drivers/soc/Kconfig
+++ b/drivers/soc/Kconfig
@@ -1,7 +1,7 @@
menu "SOC (System On Chip) specific Drivers"
source "drivers/soc/bcm/Kconfig"
-source "drivers/soc/fsl/qe/Kconfig"
+source "drivers/soc/fsl/Kconfig"
source "drivers/soc/mediatek/Kconfig"
source "drivers/soc/qcom/Kconfig"
source "drivers/soc/rockchip/Kconfig"
diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
new file mode 100644
index 0000000..439998d
--- /dev/null
+++ b/drivers/soc/fsl/Kconfig
@@ -0,0 +1,20 @@
+#
+# Freescale SOC drivers
+#
+
+source "drivers/soc/fsl/qe/Kconfig"
+
+config FSL_GUTS
+ bool "Freescale QorIQ GUTS driver"
+ select SOC_BUS
+ select GLOB
+ help
+ The global utilities block controls power management, I/O device
+ enabling, power-onreset(POR) configuration monitoring, alternate
+ function selection for multiplexed signals,and clock control.
+ This driver is to manage and access global utilities block.
+ Initially only reading SVR and registering soc device are supported.
+ Other guts accesses, such as reading RCW, should eventually be moved
+ into this driver as well.
+
+ If you want GUTS driver support, you should say Y here.
diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile
index 203307f..02afb7f 100644
--- a/drivers/soc/fsl/Makefile
+++ b/drivers/soc/fsl/Makefile
@@ -4,3 +4,4 @@
obj-$(CONFIG_QUICC_ENGINE) += qe/
obj-$(CONFIG_CPM) += qe/
+obj-$(CONFIG_FSL_GUTS) += guts.o
diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
new file mode 100644
index 0000000..93c39315
--- /dev/null
+++ b/drivers/soc/fsl/guts.c
@@ -0,0 +1,483 @@
+/*
+ * Freescale QorIQ Platforms GUTS Driver
+ *
+ * Copyright (C) 2016 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+#include <linux/io.h>
+#include <linux/slab.h>
+#include <linux/module.h>
+#include <linux/of_fdt.h>
+#include <linux/sys_soc.h>
+#include <linux/of_address.h>
+#include <linux/platform_device.h>
+#include <linux/glob.h>
+#include <linux/fsl/guts.h>
+#include <linux/fsl/svr.h>
+
+struct guts {
+ struct ccsr_guts __iomem *regs;
+ bool little_endian;
+};
+
+static struct guts *guts;
+static struct soc_device_attribute *soc_dev_attr;
+static struct soc_device *soc_dev;
+
+
+/* SoC attribute definition for QorIQ platform */
+static const struct soc_device_attribute qoriq_soc[] = {
+#ifdef CONFIG_PPC
+ /*
+ * Power Architecture-based SoCs T Series
+ */
+
+ /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
+ { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85440010,name:T1014,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854C0010,name:T1014E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85410010,name:T1023,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85490010,name:T1023E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85450010,name:T1013,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854D0010,name:T1013E,die:T1024",
+ .revision = "1.0",
+ },
+ /* SoC: T1040/T1020/T1042/T1022 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85200010,name:T1040,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280010,name:T1040E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210010,name:T1020,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290010,name:T1020E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200210,name:T1042,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280210,name:T1042E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210210,name:T1022,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290210,name:T1022E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200011,name:T1040,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280011,name:T1040E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210011,name:T1020,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290011,name:T1020E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85200211,name:T1042,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280211,name:T1042E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210211,name:T1022,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290211,name:T1022E,die:T1040",
+ .revision = "1.1",
+ },
+ /* SoC: T2080/T2081 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85300010,name:T2080,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85380010,name:T2080E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85310010,name:T2081,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85390010,name:T2081E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85300011,name:T2080,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85380011,name:T2080E,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85310011,name:T2081,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85390011,name:T2081E,die:T2080",
+ .revision = "1.1",
+ },
+ /* SoC: T4240/T4160/T4080 Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x82400010,name:T4240,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82480010,name:T4240E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82410010,name:T4160,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82490010,name:T4160E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82400020,name:T4240,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82480020,name:T4240E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410020,name:T4160,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490020,name:T4160E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410220,name:T4080,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490220,name:T4080E,die:T4240",
+ .revision = "2.0",
+ },
+#endif /* CONFIG_PPC */
+#if defined(CONFIG_ARCH_MXC) || defined(CONFIG_ARCH_LAYERSCAPE)
+ /*
+ * ARM-based SoCs LS Series
+ */
+
+ /* SoC: LS1021A/LS1020A/LS1022A Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x87001110,name:LS1021A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081110,name:LS1021AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001010,name:LS1020A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081010,name:LS1020AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001210,name:LS1022A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081210,name:LS1022AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001120,name:LS1021A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081120,name:LS1021AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001020,name:LS1020A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081020,name:LS1020AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001220,name:LS1022A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081220,name:LS1022AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ /* SoC: LS1046A/LS1026A Rev: 1.0 */
+ { .soc_id = "svr:0x87070110,name:LS1046A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070010,name:LS1046AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070910,name:LS1026A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070810,name:LS1026AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 21*21 */
+ { .soc_id = "svr:0x87920110,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920010,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920910,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920810,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 23*23 */
+ { .soc_id = "svr:0x87920310,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920210,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920B10,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920A10,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1012A Rev: 1.0 */
+ { .soc_id = "svr:0x87040110,name:LS1012A,die:LS1012A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87040010,name:LS1012AE,die:LS1012A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2088A/LS2048A/LS2084A/LS2044A Rev: 1.0 */
+ { .soc_id = "svr:0x87090110,name:LS2088A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87090010,name:LS2088AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092110,name:LS2048A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092010,name:LS2048AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091110,name:LS2084A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091010,name:LS2084AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093110,name:LS2044A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093010,name:LS2044AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2080A/LS2040A Rev: 1.0 */
+ { .soc_id = "svr:0x87011010,name:LS2080AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87013010,name:LS2040AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2085A Rev: 1.0 */
+ { .soc_id = "svr:0x87010110,name:LS2085A,die:LS2085A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87010010,name:LS2085AE,die:LS2085A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1088A/LS1048A/LS1084A/LS1044A Rev: 1.0 */
+ { .soc_id = "svr:0x87030110,name:LS1088A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030010,name:LS1088AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032110,name:LS1048A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032010,name:LS1048AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030310,name:LS1084A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030210,name:LS1084AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032310,name:LS1044A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032210,name:LS1044AE,die:LS1088A",
+ .revision = "1.0",
+ },
+#endif /* CONFIG_ARCH_MXC || CONFIG_ARCH_LAYERSCAPE */
+ { },
+};
+
+static const struct soc_device_attribute *fsl_soc_device_match(
+ unsigned int svr, const struct soc_device_attribute *matches)
+{
+ char svr_match[50];
+ int n;
+
+ n = sprintf(svr_match, "*%08x*", svr);
+
+ do {
+ if (!matches->soc_id)
+ return NULL;
+ if (glob_match(svr_match, matches->soc_id))
+ break;
+ } while (matches++);
+
+ return matches;
+}
+
+unsigned int fsl_guts_get_svr(void)
+{
+ unsigned int svr = 0;
+
+ if (!guts || !guts->regs)
+ return svr;
+
+ if (guts->little_endian)
+ svr = ioread32(&guts->regs->svr);
+ else
+ svr = ioread32be(&guts->regs->svr);
+
+ return svr;
+}
+EXPORT_SYMBOL(fsl_guts_get_svr);
+
+static int fsl_guts_probe(struct platform_device *pdev)
+{
+ struct device_node *np;
+ const struct soc_device_attribute *fsl_soc;
+ const char *machine;
+ unsigned int svr;
+ int ret = 0;
+
+ np = pdev->dev.of_node;
+
+ /* Initialize guts */
+ guts = kzalloc(sizeof(*guts), GFP_KERNEL);
+ if (!guts)
+ return -ENOMEM;
+
+ guts->little_endian = of_property_read_bool(np, "little-endian");
+
+ guts->regs = of_iomap(np, 0);
+ if (!guts->regs) {
+ ret = -ENOMEM;
+ goto out_free;
+ }
+
+ /* Register soc device */
+ soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
+ if (!soc_dev_attr) {
+ ret = -ENOMEM;
+ goto out_unmap;
+ }
+
+ machine = of_flat_dt_get_machine_name();
+ if (machine)
+ soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s", machine);
+
+ soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
+
+ svr = fsl_guts_get_svr();
+ fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
+ if (fsl_soc) {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->soc_id);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->revision);
+ } else {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x", svr);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
+ SVR_MAJ(svr), SVR_MIN(svr));
+ }
+
+ soc_dev = soc_device_register(soc_dev_attr);
+ if (IS_ERR(soc_dev)) {
+ ret = -ENODEV;
+ goto out;
+ } else {
+ pr_info("Detected: %s\n", soc_dev_attr->machine);
+ pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
+ pr_info("Detected SoC ID: %s, revision: %s\n",
+ soc_dev_attr->soc_id, soc_dev_attr->revision);
+ }
+ return 0;
+out:
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+out_unmap:
+ iounmap(guts->regs);
+out_free:
+ kfree(guts);
+ return ret;
+}
+
+static int fsl_guts_remove(struct platform_device *dev)
+{
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+ soc_device_unregister(soc_dev);
+ iounmap(guts->regs);
+ kfree(guts);
+ return 0;
+}
+
+/*
+ * Table for matching compatible strings, for device tree
+ * guts node, for Freescale QorIQ SOCs.
+ */
+static const struct of_device_id fsl_guts_of_match[] = {
+ { .compatible = "fsl,qoriq-device-config-1.0", },
+ { .compatible = "fsl,qoriq-device-config-2.0", },
+ { .compatible = "fsl,p1010-guts", },
+ { .compatible = "fsl,p1020-guts", },
+ { .compatible = "fsl,p1021-guts", },
+ { .compatible = "fsl,p1022-guts", },
+ { .compatible = "fsl,p1023-guts", },
+ { .compatible = "fsl,p2020-guts", },
+ { .compatible = "fsl,bsc9131-guts", },
+ { .compatible = "fsl,bsc9132-guts", },
+ { .compatible = "fsl,mpc8536-guts", },
+ { .compatible = "fsl,mpc8544-guts", },
+ { .compatible = "fsl,mpc8548-guts", },
+ { .compatible = "fsl,mpc8568-guts", },
+ { .compatible = "fsl,mpc8569-guts", },
+ { .compatible = "fsl,mpc8572-guts", },
+ { .compatible = "fsl,ls1021a-dcfg", },
+ { .compatible = "fsl,ls1043a-dcfg", },
+ { .compatible = "fsl,ls2080a-dcfg", },
+ {}
+};
+
+static struct platform_driver fsl_guts_driver = {
+ .driver = {
+ .name = "fsl-guts",
+ .of_match_table = fsl_guts_of_match,
+ },
+ .probe = fsl_guts_probe,
+ .remove = fsl_guts_remove,
+};
+
+module_platform_driver(fsl_guts_driver);
diff --git a/include/linux/fsl/guts.h b/include/linux/fsl/guts.h
index 649e917..c5e24cf 100644
--- a/include/linux/fsl/guts.h
+++ b/include/linux/fsl/guts.h
@@ -29,83 +29,114 @@
* #ifdefs.
*/
struct ccsr_guts {
- __be32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
- __be32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
- __be32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and Control Register */
- __be32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
- __be32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
- __be32 pordevsr2; /* 0x.0014 - POR device status register 2 */
+ u32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
+ u32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
+ u32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and
+ * Control Register
+ */
+ u32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
+ u32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
+ u32 pordevsr2; /* 0x.0014 - POR device status register 2 */
u8 res018[0x20 - 0x18];
- __be32 porcir; /* 0x.0020 - POR Configuration Information Register */
+ u32 porcir; /* 0x.0020 - POR Configuration Information
+ * Register
+ */
u8 res024[0x30 - 0x24];
- __be32 gpiocr; /* 0x.0030 - GPIO Control Register */
+ u32 gpiocr; /* 0x.0030 - GPIO Control Register */
u8 res034[0x40 - 0x34];
- __be32 gpoutdr; /* 0x.0040 - General-Purpose Output Data Register */
+ u32 gpoutdr; /* 0x.0040 - General-Purpose Output Data
+ * Register
+ */
u8 res044[0x50 - 0x44];
- __be32 gpindr; /* 0x.0050 - General-Purpose Input Data Register */
+ u32 gpindr; /* 0x.0050 - General-Purpose Input Data
+ * Register
+ */
u8 res054[0x60 - 0x54];
- __be32 pmuxcr; /* 0x.0060 - Alternate Function Signal Multiplex Control */
- __be32 pmuxcr2; /* 0x.0064 - Alternate function signal multiplex control 2 */
- __be32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
+ u32 pmuxcr; /* 0x.0060 - Alternate Function Signal
+ * Multiplex Control
+ */
+ u32 pmuxcr2; /* 0x.0064 - Alternate function signal
+ * multiplex control 2
+ */
+ u32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
u8 res06c[0x70 - 0x6c];
- __be32 devdisr; /* 0x.0070 - Device Disable Control */
+ u32 devdisr; /* 0x.0070 - Device Disable Control */
#define CCSR_GUTS_DEVDISR_TB1 0x00001000
#define CCSR_GUTS_DEVDISR_TB0 0x00004000
- __be32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
+ u32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
u8 res078[0x7c - 0x78];
- __be32 pmjcr; /* 0x.007c - 4 Power Management Jog Control Register */
- __be32 powmgtcsr; /* 0x.0080 - Power Management Status and Control Register */
- __be32 pmrccr; /* 0x.0084 - Power Management Reset Counter Configuration Register */
- __be32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter Configuration Register */
- __be32 pmcdr; /* 0x.008c - 4Power management clock disable register */
- __be32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
- __be32 rstrscr; /* 0x.0094 - Reset Request Status and Control Register */
- __be32 ectrstcr; /* 0x.0098 - Exception reset control register */
- __be32 autorstsr; /* 0x.009c - Automatic reset status register */
- __be32 pvr; /* 0x.00a0 - Processor Version Register */
- __be32 svr; /* 0x.00a4 - System Version Register */
+ u32 pmjcr; /* 0x.007c - 4 Power Management Jog Control
+ * Register
+ */
+ u32 powmgtcsr; /* 0x.0080 - Power Management Status and
+ * Control Register
+ */
+ u32 pmrccr; /* 0x.0084 - Power Management Reset Counter
+ * Configuration Register
+ */
+ u32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter
+ * Configuration Register
+ */
+ u32 pmcdr; /* 0x.008c - 4Power management clock disable
+ * register
+ */
+ u32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
+ u32 rstrscr; /* 0x.0094 - Reset Request Status and
+ * Control Register
+ */
+ u32 ectrstcr; /* 0x.0098 - Exception reset control register */
+ u32 autorstsr; /* 0x.009c - Automatic reset status register */
+ u32 pvr; /* 0x.00a0 - Processor Version Register */
+ u32 svr; /* 0x.00a4 - System Version Register */
u8 res0a8[0xb0 - 0xa8];
- __be32 rstcr; /* 0x.00b0 - Reset Control Register */
+ u32 rstcr; /* 0x.00b0 - Reset Control Register */
u8 res0b4[0xc0 - 0xb4];
- __be32 iovselsr; /* 0x.00c0 - I/O voltage select status register
+ u32 iovselsr; /* 0x.00c0 - I/O voltage select status register
Called 'elbcvselcr' on 86xx SOCs */
u8 res0c4[0x100 - 0xc4];
- __be32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
+ u32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
There are 16 registers */
u8 res140[0x224 - 0x140];
- __be32 iodelay1; /* 0x.0224 - IO delay control register 1 */
- __be32 iodelay2; /* 0x.0228 - IO delay control register 2 */
+ u32 iodelay1; /* 0x.0224 - IO delay control register 1 */
+ u32 iodelay2; /* 0x.0228 - IO delay control register 2 */
u8 res22c[0x604 - 0x22c];
- __be32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
+ u32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
u8 res608[0x800 - 0x608];
- __be32 clkdvdr; /* 0x.0800 - Clock Divide Register */
+ u32 clkdvdr; /* 0x.0800 - Clock Divide Register */
u8 res804[0x900 - 0x804];
- __be32 ircr; /* 0x.0900 - Infrared Control Register */
+ u32 ircr; /* 0x.0900 - Infrared Control Register */
u8 res904[0x908 - 0x904];
- __be32 dmacr; /* 0x.0908 - DMA Control Register */
+ u32 dmacr; /* 0x.0908 - DMA Control Register */
u8 res90c[0x914 - 0x90c];
- __be32 elbccr; /* 0x.0914 - eLBC Control Register */
+ u32 elbccr; /* 0x.0914 - eLBC Control Register */
u8 res918[0xb20 - 0x918];
- __be32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
- __be32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
- __be32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
+ u32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
+ u32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
+ u32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
u8 resb2c[0xe00 - 0xb2c];
- __be32 clkocr; /* 0x.0e00 - Clock Out Select Register */
+ u32 clkocr; /* 0x.0e00 - Clock Out Select Register */
u8 rese04[0xe10 - 0xe04];
- __be32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
+ u32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
u8 rese14[0xe20 - 0xe14];
- __be32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
- __be32 cpfor; /* 0x.0e24 - L2 charge pump fuse override register */
+ u32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
+ u32 cpfor; /* 0x.0e24 - L2 charge pump fuse override
+ * register
+ */
u8 rese28[0xf04 - 0xe28];
- __be32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
- __be32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
+ u32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
+ u32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
u8 resf0c[0xf2c - 0xf0c];
- __be32 itcr; /* 0x.0f2c - Internal transaction control register */
+ u32 itcr; /* 0x.0f2c - Internal transaction control
+ * register
+ */
u8 resf30[0xf40 - 0xf30];
- __be32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
- __be32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
+ u32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
+ u32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
} __attribute__ ((packed));
+#ifdef CONFIG_FSL_GUTS
+unsigned int fsl_guts_get_svr(void);
+#endif
/* Alternate function signal multiplex control */
#define MPC85xx_PMUXCR_QE(x) (0x8000 >> (x))
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-06 8:28 ` Yangbo Lu
0 siblings, 0 replies; 81+ messages in thread
From: Yangbo Lu @ 2016-09-06 8:28 UTC (permalink / raw)
To: linux-mmc-u79uwXL29TY76Z2rM5mHXA,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A, Scott Wood, Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA, Russell King,
Yangbo Lu, Bhupesh Sharma, netdev-u79uwXL29TY76Z2rM5mHXA,
Santosh Shilimkar, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
Jochen Friedrich, xiaobo.xie-3arQi8VN3Tc,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Rob Herring,
linux-i2c-u79uwXL29TY76Z2rM5mHXA, Claudiu Manoil, Kumar Gala,
leoyang.li-3arQi8VN3Tc, linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-clk-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Qiang Zhao
The global utilities block controls power management, I/O device
enabling, power-onreset(POR) configuration monitoring, alternate
function selection for multiplexed signals,and clock control.
This patch adds a driver to manage and access global utilities block.
Initially only reading SVR and registering soc device are supported.
Other guts accesses, such as reading RCW, should eventually be moved
into this driver as well.
Signed-off-by: Yangbo Lu <yangbo.lu-3arQi8VN3Tc@public.gmane.org>
Signed-off-by: Scott Wood <oss-fOR+EgIDQEHk1uMJSBkQmQ@public.gmane.org>
---
Changes for v4:
- Added this patch
Changes for v5:
- Modified copyright info
- Changed MODULE_LICENSE to GPL
- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL
- Made FSL_GUTS user-invisible
- Added a complete compatible list for GUTS
- Stored guts info in file-scope variable
- Added mfspr() getting SVR
- Redefined GUTS APIs
- Called fsl_guts_init rather than using platform driver
- Removed useless parentheses
- Removed useless 'extern' key words
Changes for v6:
- Made guts thread safe in fsl_guts_init
Changes for v7:
- Removed 'ifdef' for function declaration in guts.h
Changes for v8:
- Fixes lines longer than 80 characters checkpatch issue
- Added 'Acked-by: Scott Wood'
Changes for v9:
- None
Changes for v10:
- None
Changes for v11:
- Changed to platform driver
- Registered soc device
---
drivers/soc/Kconfig | 2 +-
drivers/soc/fsl/Kconfig | 20 ++
drivers/soc/fsl/Makefile | 1 +
drivers/soc/fsl/guts.c | 483 +++++++++++++++++++++++++++++++++++++++++++++++
include/linux/fsl/guts.h | 127 ++++++++-----
5 files changed, 584 insertions(+), 49 deletions(-)
create mode 100644 drivers/soc/fsl/Kconfig
create mode 100644 drivers/soc/fsl/guts.c
diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig
index fe42a2f..f31bceb 100644
--- a/drivers/soc/Kconfig
+++ b/drivers/soc/Kconfig
@@ -1,7 +1,7 @@
menu "SOC (System On Chip) specific Drivers"
source "drivers/soc/bcm/Kconfig"
-source "drivers/soc/fsl/qe/Kconfig"
+source "drivers/soc/fsl/Kconfig"
source "drivers/soc/mediatek/Kconfig"
source "drivers/soc/qcom/Kconfig"
source "drivers/soc/rockchip/Kconfig"
diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
new file mode 100644
index 0000000..439998d
--- /dev/null
+++ b/drivers/soc/fsl/Kconfig
@@ -0,0 +1,20 @@
+#
+# Freescale SOC drivers
+#
+
+source "drivers/soc/fsl/qe/Kconfig"
+
+config FSL_GUTS
+ bool "Freescale QorIQ GUTS driver"
+ select SOC_BUS
+ select GLOB
+ help
+ The global utilities block controls power management, I/O device
+ enabling, power-onreset(POR) configuration monitoring, alternate
+ function selection for multiplexed signals,and clock control.
+ This driver is to manage and access global utilities block.
+ Initially only reading SVR and registering soc device are supported.
+ Other guts accesses, such as reading RCW, should eventually be moved
+ into this driver as well.
+
+ If you want GUTS driver support, you should say Y here.
diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile
index 203307f..02afb7f 100644
--- a/drivers/soc/fsl/Makefile
+++ b/drivers/soc/fsl/Makefile
@@ -4,3 +4,4 @@
obj-$(CONFIG_QUICC_ENGINE) += qe/
obj-$(CONFIG_CPM) += qe/
+obj-$(CONFIG_FSL_GUTS) += guts.o
diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
new file mode 100644
index 0000000..93c39315
--- /dev/null
+++ b/drivers/soc/fsl/guts.c
@@ -0,0 +1,483 @@
+/*
+ * Freescale QorIQ Platforms GUTS Driver
+ *
+ * Copyright (C) 2016 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+#include <linux/io.h>
+#include <linux/slab.h>
+#include <linux/module.h>
+#include <linux/of_fdt.h>
+#include <linux/sys_soc.h>
+#include <linux/of_address.h>
+#include <linux/platform_device.h>
+#include <linux/glob.h>
+#include <linux/fsl/guts.h>
+#include <linux/fsl/svr.h>
+
+struct guts {
+ struct ccsr_guts __iomem *regs;
+ bool little_endian;
+};
+
+static struct guts *guts;
+static struct soc_device_attribute *soc_dev_attr;
+static struct soc_device *soc_dev;
+
+
+/* SoC attribute definition for QorIQ platform */
+static const struct soc_device_attribute qoriq_soc[] = {
+#ifdef CONFIG_PPC
+ /*
+ * Power Architecture-based SoCs T Series
+ */
+
+ /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
+ { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85440010,name:T1014,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854C0010,name:T1014E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85410010,name:T1023,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85490010,name:T1023E,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85450010,name:T1013,die:T1024",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x854D0010,name:T1013E,die:T1024",
+ .revision = "1.0",
+ },
+ /* SoC: T1040/T1020/T1042/T1022 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85200010,name:T1040,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280010,name:T1040E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210010,name:T1020,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290010,name:T1020E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200210,name:T1042,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85280210,name:T1042E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85210210,name:T1022,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85290210,name:T1022E,die:T1040",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85200011,name:T1040,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280011,name:T1040E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210011,name:T1020,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290011,name:T1020E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85200211,name:T1042,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85280211,name:T1042E,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85210211,name:T1022,die:T1040",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85290211,name:T1022E,die:T1040",
+ .revision = "1.1",
+ },
+ /* SoC: T2080/T2081 Rev: 1.0/1.1 */
+ { .soc_id = "svr:0x85300010,name:T2080,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85380010,name:T2080E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85310010,name:T2081,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85390010,name:T2081E,die:T2080",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x85300011,name:T2080,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85380011,name:T2080E,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85310011,name:T2081,die:T2080",
+ .revision = "1.1",
+ },
+ { .soc_id = "svr:0x85390011,name:T2081E,die:T2080",
+ .revision = "1.1",
+ },
+ /* SoC: T4240/T4160/T4080 Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x82400010,name:T4240,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82480010,name:T4240E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82410010,name:T4160,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82490010,name:T4160E,die:T4240",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x82400020,name:T4240,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82480020,name:T4240E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410020,name:T4160,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490020,name:T4160E,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82410220,name:T4080,die:T4240",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x82490220,name:T4080E,die:T4240",
+ .revision = "2.0",
+ },
+#endif /* CONFIG_PPC */
+#if defined(CONFIG_ARCH_MXC) || defined(CONFIG_ARCH_LAYERSCAPE)
+ /*
+ * ARM-based SoCs LS Series
+ */
+
+ /* SoC: LS1021A/LS1020A/LS1022A Rev: 1.0/2.0 */
+ { .soc_id = "svr:0x87001110,name:LS1021A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081110,name:LS1021AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001010,name:LS1020A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081010,name:LS1020AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001210,name:LS1022A,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87081210,name:LS1022AE,die:LS1021A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87001120,name:LS1021A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081120,name:LS1021AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001020,name:LS1020A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081020,name:LS1020AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87001220,name:LS1022A,die:LS1021A",
+ .revision = "2.0",
+ },
+ { .soc_id = "svr:0x87081220,name:LS1022AE,die:LS1021A",
+ .revision = "2.0",
+ },
+ /* SoC: LS1046A/LS1026A Rev: 1.0 */
+ { .soc_id = "svr:0x87070110,name:LS1046A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070010,name:LS1046AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070910,name:LS1026A,die:LS1046A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87070810,name:LS1026AE,die:LS1046A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 21*21 */
+ { .soc_id = "svr:0x87920110,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920010,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920910,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920810,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1043A/LS1023A Rev: 1.0 Package: 23*23 */
+ { .soc_id = "svr:0x87920310,name:LS1043A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920210,name:LS1043AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920B10,name:LS1023A,die:LS1043A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87920A10,name:LS1023AE,die:LS1043A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1012A Rev: 1.0 */
+ { .soc_id = "svr:0x87040110,name:LS1012A,die:LS1012A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87040010,name:LS1012AE,die:LS1012A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2088A/LS2048A/LS2084A/LS2044A Rev: 1.0 */
+ { .soc_id = "svr:0x87090110,name:LS2088A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87090010,name:LS2088AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092110,name:LS2048A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87092010,name:LS2048AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091110,name:LS2084A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87091010,name:LS2084AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093110,name:LS2044A,die:LS2088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87093010,name:LS2044AE,die:LS2088A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2080A/LS2040A Rev: 1.0 */
+ { .soc_id = "svr:0x87011010,name:LS2080AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87013010,name:LS2040AE,die:LS2080A",
+ .revision = "1.0",
+ },
+ /* SoC: LS2085A Rev: 1.0 */
+ { .soc_id = "svr:0x87010110,name:LS2085A,die:LS2085A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87010010,name:LS2085AE,die:LS2085A",
+ .revision = "1.0",
+ },
+ /* SoC: LS1088A/LS1048A/LS1084A/LS1044A Rev: 1.0 */
+ { .soc_id = "svr:0x87030110,name:LS1088A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030010,name:LS1088AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032110,name:LS1048A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032010,name:LS1048AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030310,name:LS1084A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87030210,name:LS1084AE,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032310,name:LS1044A,die:LS1088A",
+ .revision = "1.0",
+ },
+ { .soc_id = "svr:0x87032210,name:LS1044AE,die:LS1088A",
+ .revision = "1.0",
+ },
+#endif /* CONFIG_ARCH_MXC || CONFIG_ARCH_LAYERSCAPE */
+ { },
+};
+
+static const struct soc_device_attribute *fsl_soc_device_match(
+ unsigned int svr, const struct soc_device_attribute *matches)
+{
+ char svr_match[50];
+ int n;
+
+ n = sprintf(svr_match, "*%08x*", svr);
+
+ do {
+ if (!matches->soc_id)
+ return NULL;
+ if (glob_match(svr_match, matches->soc_id))
+ break;
+ } while (matches++);
+
+ return matches;
+}
+
+unsigned int fsl_guts_get_svr(void)
+{
+ unsigned int svr = 0;
+
+ if (!guts || !guts->regs)
+ return svr;
+
+ if (guts->little_endian)
+ svr = ioread32(&guts->regs->svr);
+ else
+ svr = ioread32be(&guts->regs->svr);
+
+ return svr;
+}
+EXPORT_SYMBOL(fsl_guts_get_svr);
+
+static int fsl_guts_probe(struct platform_device *pdev)
+{
+ struct device_node *np;
+ const struct soc_device_attribute *fsl_soc;
+ const char *machine;
+ unsigned int svr;
+ int ret = 0;
+
+ np = pdev->dev.of_node;
+
+ /* Initialize guts */
+ guts = kzalloc(sizeof(*guts), GFP_KERNEL);
+ if (!guts)
+ return -ENOMEM;
+
+ guts->little_endian = of_property_read_bool(np, "little-endian");
+
+ guts->regs = of_iomap(np, 0);
+ if (!guts->regs) {
+ ret = -ENOMEM;
+ goto out_free;
+ }
+
+ /* Register soc device */
+ soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
+ if (!soc_dev_attr) {
+ ret = -ENOMEM;
+ goto out_unmap;
+ }
+
+ machine = of_flat_dt_get_machine_name();
+ if (machine)
+ soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s", machine);
+
+ soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
+
+ svr = fsl_guts_get_svr();
+ fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
+ if (fsl_soc) {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->soc_id);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
+ fsl_soc->revision);
+ } else {
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x", svr);
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
+ SVR_MAJ(svr), SVR_MIN(svr));
+ }
+
+ soc_dev = soc_device_register(soc_dev_attr);
+ if (IS_ERR(soc_dev)) {
+ ret = -ENODEV;
+ goto out;
+ } else {
+ pr_info("Detected: %s\n", soc_dev_attr->machine);
+ pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
+ pr_info("Detected SoC ID: %s, revision: %s\n",
+ soc_dev_attr->soc_id, soc_dev_attr->revision);
+ }
+ return 0;
+out:
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+out_unmap:
+ iounmap(guts->regs);
+out_free:
+ kfree(guts);
+ return ret;
+}
+
+static int fsl_guts_remove(struct platform_device *dev)
+{
+ kfree(soc_dev_attr->machine);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr);
+ soc_device_unregister(soc_dev);
+ iounmap(guts->regs);
+ kfree(guts);
+ return 0;
+}
+
+/*
+ * Table for matching compatible strings, for device tree
+ * guts node, for Freescale QorIQ SOCs.
+ */
+static const struct of_device_id fsl_guts_of_match[] = {
+ { .compatible = "fsl,qoriq-device-config-1.0", },
+ { .compatible = "fsl,qoriq-device-config-2.0", },
+ { .compatible = "fsl,p1010-guts", },
+ { .compatible = "fsl,p1020-guts", },
+ { .compatible = "fsl,p1021-guts", },
+ { .compatible = "fsl,p1022-guts", },
+ { .compatible = "fsl,p1023-guts", },
+ { .compatible = "fsl,p2020-guts", },
+ { .compatible = "fsl,bsc9131-guts", },
+ { .compatible = "fsl,bsc9132-guts", },
+ { .compatible = "fsl,mpc8536-guts", },
+ { .compatible = "fsl,mpc8544-guts", },
+ { .compatible = "fsl,mpc8548-guts", },
+ { .compatible = "fsl,mpc8568-guts", },
+ { .compatible = "fsl,mpc8569-guts", },
+ { .compatible = "fsl,mpc8572-guts", },
+ { .compatible = "fsl,ls1021a-dcfg", },
+ { .compatible = "fsl,ls1043a-dcfg", },
+ { .compatible = "fsl,ls2080a-dcfg", },
+ {}
+};
+
+static struct platform_driver fsl_guts_driver = {
+ .driver = {
+ .name = "fsl-guts",
+ .of_match_table = fsl_guts_of_match,
+ },
+ .probe = fsl_guts_probe,
+ .remove = fsl_guts_remove,
+};
+
+module_platform_driver(fsl_guts_driver);
diff --git a/include/linux/fsl/guts.h b/include/linux/fsl/guts.h
index 649e917..c5e24cf 100644
--- a/include/linux/fsl/guts.h
+++ b/include/linux/fsl/guts.h
@@ -29,83 +29,114 @@
* #ifdefs.
*/
struct ccsr_guts {
- __be32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
- __be32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
- __be32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and Control Register */
- __be32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
- __be32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
- __be32 pordevsr2; /* 0x.0014 - POR device status register 2 */
+ u32 porpllsr; /* 0x.0000 - POR PLL Ratio Status Register */
+ u32 porbmsr; /* 0x.0004 - POR Boot Mode Status Register */
+ u32 porimpscr; /* 0x.0008 - POR I/O Impedance Status and
+ * Control Register
+ */
+ u32 pordevsr; /* 0x.000c - POR I/O Device Status Register */
+ u32 pordbgmsr; /* 0x.0010 - POR Debug Mode Status Register */
+ u32 pordevsr2; /* 0x.0014 - POR device status register 2 */
u8 res018[0x20 - 0x18];
- __be32 porcir; /* 0x.0020 - POR Configuration Information Register */
+ u32 porcir; /* 0x.0020 - POR Configuration Information
+ * Register
+ */
u8 res024[0x30 - 0x24];
- __be32 gpiocr; /* 0x.0030 - GPIO Control Register */
+ u32 gpiocr; /* 0x.0030 - GPIO Control Register */
u8 res034[0x40 - 0x34];
- __be32 gpoutdr; /* 0x.0040 - General-Purpose Output Data Register */
+ u32 gpoutdr; /* 0x.0040 - General-Purpose Output Data
+ * Register
+ */
u8 res044[0x50 - 0x44];
- __be32 gpindr; /* 0x.0050 - General-Purpose Input Data Register */
+ u32 gpindr; /* 0x.0050 - General-Purpose Input Data
+ * Register
+ */
u8 res054[0x60 - 0x54];
- __be32 pmuxcr; /* 0x.0060 - Alternate Function Signal Multiplex Control */
- __be32 pmuxcr2; /* 0x.0064 - Alternate function signal multiplex control 2 */
- __be32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
+ u32 pmuxcr; /* 0x.0060 - Alternate Function Signal
+ * Multiplex Control
+ */
+ u32 pmuxcr2; /* 0x.0064 - Alternate function signal
+ * multiplex control 2
+ */
+ u32 dmuxcr; /* 0x.0068 - DMA Mux Control Register */
u8 res06c[0x70 - 0x6c];
- __be32 devdisr; /* 0x.0070 - Device Disable Control */
+ u32 devdisr; /* 0x.0070 - Device Disable Control */
#define CCSR_GUTS_DEVDISR_TB1 0x00001000
#define CCSR_GUTS_DEVDISR_TB0 0x00004000
- __be32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
+ u32 devdisr2; /* 0x.0074 - Device Disable Control 2 */
u8 res078[0x7c - 0x78];
- __be32 pmjcr; /* 0x.007c - 4 Power Management Jog Control Register */
- __be32 powmgtcsr; /* 0x.0080 - Power Management Status and Control Register */
- __be32 pmrccr; /* 0x.0084 - Power Management Reset Counter Configuration Register */
- __be32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter Configuration Register */
- __be32 pmcdr; /* 0x.008c - 4Power management clock disable register */
- __be32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
- __be32 rstrscr; /* 0x.0094 - Reset Request Status and Control Register */
- __be32 ectrstcr; /* 0x.0098 - Exception reset control register */
- __be32 autorstsr; /* 0x.009c - Automatic reset status register */
- __be32 pvr; /* 0x.00a0 - Processor Version Register */
- __be32 svr; /* 0x.00a4 - System Version Register */
+ u32 pmjcr; /* 0x.007c - 4 Power Management Jog Control
+ * Register
+ */
+ u32 powmgtcsr; /* 0x.0080 - Power Management Status and
+ * Control Register
+ */
+ u32 pmrccr; /* 0x.0084 - Power Management Reset Counter
+ * Configuration Register
+ */
+ u32 pmpdccr; /* 0x.0088 - Power Management Power Down Counter
+ * Configuration Register
+ */
+ u32 pmcdr; /* 0x.008c - 4Power management clock disable
+ * register
+ */
+ u32 mcpsumr; /* 0x.0090 - Machine Check Summary Register */
+ u32 rstrscr; /* 0x.0094 - Reset Request Status and
+ * Control Register
+ */
+ u32 ectrstcr; /* 0x.0098 - Exception reset control register */
+ u32 autorstsr; /* 0x.009c - Automatic reset status register */
+ u32 pvr; /* 0x.00a0 - Processor Version Register */
+ u32 svr; /* 0x.00a4 - System Version Register */
u8 res0a8[0xb0 - 0xa8];
- __be32 rstcr; /* 0x.00b0 - Reset Control Register */
+ u32 rstcr; /* 0x.00b0 - Reset Control Register */
u8 res0b4[0xc0 - 0xb4];
- __be32 iovselsr; /* 0x.00c0 - I/O voltage select status register
+ u32 iovselsr; /* 0x.00c0 - I/O voltage select status register
Called 'elbcvselcr' on 86xx SOCs */
u8 res0c4[0x100 - 0xc4];
- __be32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
+ u32 rcwsr[16]; /* 0x.0100 - Reset Control Word Status registers
There are 16 registers */
u8 res140[0x224 - 0x140];
- __be32 iodelay1; /* 0x.0224 - IO delay control register 1 */
- __be32 iodelay2; /* 0x.0228 - IO delay control register 2 */
+ u32 iodelay1; /* 0x.0224 - IO delay control register 1 */
+ u32 iodelay2; /* 0x.0228 - IO delay control register 2 */
u8 res22c[0x604 - 0x22c];
- __be32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
+ u32 pamubypenr; /* 0x.604 - PAMU bypass enable register */
u8 res608[0x800 - 0x608];
- __be32 clkdvdr; /* 0x.0800 - Clock Divide Register */
+ u32 clkdvdr; /* 0x.0800 - Clock Divide Register */
u8 res804[0x900 - 0x804];
- __be32 ircr; /* 0x.0900 - Infrared Control Register */
+ u32 ircr; /* 0x.0900 - Infrared Control Register */
u8 res904[0x908 - 0x904];
- __be32 dmacr; /* 0x.0908 - DMA Control Register */
+ u32 dmacr; /* 0x.0908 - DMA Control Register */
u8 res90c[0x914 - 0x90c];
- __be32 elbccr; /* 0x.0914 - eLBC Control Register */
+ u32 elbccr; /* 0x.0914 - eLBC Control Register */
u8 res918[0xb20 - 0x918];
- __be32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
- __be32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
- __be32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
+ u32 ddr1clkdr; /* 0x.0b20 - DDR1 Clock Disable Register */
+ u32 ddr2clkdr; /* 0x.0b24 - DDR2 Clock Disable Register */
+ u32 ddrclkdr; /* 0x.0b28 - DDR Clock Disable Register */
u8 resb2c[0xe00 - 0xb2c];
- __be32 clkocr; /* 0x.0e00 - Clock Out Select Register */
+ u32 clkocr; /* 0x.0e00 - Clock Out Select Register */
u8 rese04[0xe10 - 0xe04];
- __be32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
+ u32 ddrdllcr; /* 0x.0e10 - DDR DLL Control Register */
u8 rese14[0xe20 - 0xe14];
- __be32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
- __be32 cpfor; /* 0x.0e24 - L2 charge pump fuse override register */
+ u32 lbcdllcr; /* 0x.0e20 - LBC DLL Control Register */
+ u32 cpfor; /* 0x.0e24 - L2 charge pump fuse override
+ * register
+ */
u8 rese28[0xf04 - 0xe28];
- __be32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
- __be32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
+ u32 srds1cr0; /* 0x.0f04 - SerDes1 Control Register 0 */
+ u32 srds1cr1; /* 0x.0f08 - SerDes1 Control Register 0 */
u8 resf0c[0xf2c - 0xf0c];
- __be32 itcr; /* 0x.0f2c - Internal transaction control register */
+ u32 itcr; /* 0x.0f2c - Internal transaction control
+ * register
+ */
u8 resf30[0xf40 - 0xf30];
- __be32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
- __be32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
+ u32 srds2cr0; /* 0x.0f40 - SerDes2 Control Register 0 */
+ u32 srds2cr1; /* 0x.0f44 - SerDes2 Control Register 0 */
} __attribute__ ((packed));
+#ifdef CONFIG_FSL_GUTS
+unsigned int fsl_guts_get_svr(void);
+#endif
/* Alternate function signal multiplex control */
#define MPC85xx_PMUXCR_QE(x) (0x8000 >> (x))
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-09 3:47 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-09 3:47 UTC (permalink / raw)
To: Yangbo Lu, linux-mmc, ulf.hansson, Arnd Bergmann
Cc: linuxppc-dev, devicetree, linux-arm-kernel, linux-kernel,
linux-clk, linux-i2c, iommu, netdev, Mark Rutland, Rob Herring,
Russell King, Jochen Friedrich, Joerg Roedel, Claudiu Manoil,
Bhupesh Sharma, Qiang Zhao, Kumar Gala, Santosh Shilimkar,
leoyang.li, xiaobo.xie
On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> The global utilities block controls power management, I/O device
> enabling, power-onreset(POR) configuration monitoring, alternate
> function selection for multiplexed signals,and clock control.
>
> This patch adds a driver to manage and access global utilities block.
> Initially only reading SVR and registering soc device are supported.
> Other guts accesses, such as reading RCW, should eventually be moved
> into this driver as well.
>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> Signed-off-by: Scott Wood <oss@buserror.net>
Don't put my signoff on patches that I didn't put it on myself. Definitely
don't put mine *after* yours on patches that were last modified by you.
If you want to mention that the soc_id encoding was my suggestion, then do so
explicitly.
> +/* SoC attribute definition for QorIQ platform */
> +static const struct soc_device_attribute qoriq_soc[] = {
> +#ifdef CONFIG_PPC
> + /*
> + * Power Architecture-based SoCs T Series
> + */
> +
> + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> + .revision = "1.0",
> + },
> + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> + .revision = "1.0",
> + },
Revision could be computed from the low 8 bits of SVR (just as you do for unknown SVRs).
We could move the die name into .family:
{
.soc_id = "svr:0x85490010,name:T1023E,",
.family = "QorIQ T1024",
}
I see you dropped svre (and the trailing comma), though I guess the vast
majority of potential users will be looking at .family. In which case do we
even need name? If we just make the soc_id be "svr:0xnnnnnnnn" then we could
shrink the table to an svr+mask that identifies each die. I'd still want to
keep the "svr:" even if we're giving up on the general tagging system, to make
it clear what the number refers to, and to provide some defense against users
who match only against soc_id rather than soc_id+family. Or we could go
further and format soc_id as "QorIQ SVR 0xnnnnnnnn" so that soc_id-only
matches are fully acceptable rather than just less dangerous.
> +static const struct soc_device_attribute *fsl_soc_device_match(
> + unsigned int svr, const struct soc_device_attribute *matches)
> +{
> + char svr_match[50];
> + int n;
> +
> + n = sprintf(svr_match, "*%08x*", svr);
n = sprintf(svr_match, "svr:0x%08x,*", svr);
(according to the current encoding)
> +
> + do {
> + if (!matches->soc_id)
> + return NULL;
> + if (glob_match(svr_match, matches->soc_id))
> + break;
> + } while (matches++);
Are you expecting "matches++" to ever evaluate as false?
> + /* Register soc device */
> + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> + if (!soc_dev_attr) {
> + ret = -ENOMEM;
> + goto out_unmap;
> + }
Couldn't this be statically allocated?
> +
> + machine = of_flat_dt_get_machine_name();
> + if (machine)
> + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> machine);
> +
> + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> +
> + svr = fsl_guts_get_svr();
> + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> + if (fsl_soc) {
> + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> + fsl_soc->soc_id);
You can use kstrdup() if you're just copying the string as is.
> + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> + fsl_soc->revision);
> + } else {
> + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> svr);
kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
> +
> + soc_dev = soc_device_register(soc_dev_attr);
> + if (IS_ERR(soc_dev)) {
> + ret = -ENODEV;
Why are you changing the error code?
> + goto out;
> + } else {
Unnecessary "else".
> + pr_info("Detected: %s\n", soc_dev_attr->machine);
Machine: %s
> + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> + pr_info("Detected SoC ID: %s, revision: %s\n",
> + soc_dev_attr->soc_id, soc_dev_attr->revision);
s/Detected //g
> + }
> + return 0;
> +out:
> + kfree(soc_dev_attr->machine);
> + kfree(soc_dev_attr->family);
> + kfree(soc_dev_attr->soc_id);
> + kfree(soc_dev_attr->revision);
> + kfree(soc_dev_attr);
> +out_unmap:
> + iounmap(guts->regs);
> +out_free:
> + kfree(guts);
devm
> +static int fsl_guts_remove(struct platform_device *dev)
> +{
> + kfree(soc_dev_attr->machine);
> + kfree(soc_dev_attr->family);
> + kfree(soc_dev_attr->soc_id);
> + kfree(soc_dev_attr->revision);
> + kfree(soc_dev_attr);
> + soc_device_unregister(soc_dev);
> + iounmap(guts->regs);
> + kfree(guts);
> + return 0;
> +}
Don't free the memory before you unregister the device that uses it (moot if
you use devm).
>
> +#ifdef CONFIG_FSL_GUTS
> +unsigned int fsl_guts_get_svr(void);
> +#endif
Don't ifdef prototypes (unless you're going to provide a stub alternative).
-Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-09 3:47 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-09 3:47 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> The global utilities block controls power management, I/O device
> enabling, power-onreset(POR) configuration monitoring, alternate
> function selection for multiplexed signals,and clock control.
>
> This patch adds a driver to manage and access global utilities block.
> Initially only reading SVR and registering soc device are supported.
> Other guts accesses, such as reading RCW, should eventually be moved
> into this driver as well.
>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> Signed-off-by: Scott Wood <oss@buserror.net>
Don't put my signoff on patches that I didn't put it on myself. ?Definitely
don't put mine *after* yours on patches that were last modified by you.
If you want to mention that the soc_id encoding was my suggestion, then do so
explicitly.
> +/* SoC attribute definition for QorIQ platform */
> +static const struct soc_device_attribute qoriq_soc[] = {
> +#ifdef CONFIG_PPC
> + /*
> + ?* Power Architecture-based SoCs T Series
> + ?*/
> +
> + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> + ??.revision = "1.0",
> + },
> + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> + ??.revision = "1.0",
> + },
Revision could be computed from the low 8 bits of SVR (just as you do for unknown SVRs).
We could move the die name into .family:
{
.soc_id = "svr:0x85490010,name:T1023E,",
.family = "QorIQ T1024",
}
I see you dropped svre (and the trailing comma), though I guess the vast
majority of potential users will be looking at .family. ?In which case do we
even need name? ?If we just make the soc_id be "svr:0xnnnnnnnn" then we could
shrink the table to an svr+mask that identifies each die. ?I'd still want to
keep the "svr:" even if we're giving up on the general tagging system, to make
it clear what the number refers to, and to provide some defense against users
who match only against soc_id rather than soc_id+family. ?Or we could go
further and format soc_id as "QorIQ SVR 0xnnnnnnnn" so that soc_id-only
matches are fully acceptable rather than just less dangerous.
> +static const struct soc_device_attribute *fsl_soc_device_match(
> + unsigned int svr, const struct soc_device_attribute *matches)
> +{
> + char svr_match[50];
> + int n;
> +
> + n = sprintf(svr_match, "*%08x*", svr);
n = sprintf(svr_match, "svr:0x%08x,*", svr);
(according to the current encoding)
> +
> + do {
> + if (!matches->soc_id)
> + return NULL;
> + if (glob_match(svr_match, matches->soc_id))
> + break;
> + } while (matches++);
Are you expecting "matches++" to ever evaluate as false?
> + /* Register soc device */
> + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> + if (!soc_dev_attr) {
> + ret = -ENOMEM;
> + goto out_unmap;
> + }
Couldn't this be statically allocated?
> +
> + machine = of_flat_dt_get_machine_name();
> + if (machine)
> + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> machine);
> +
> + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> +
> + svr = fsl_guts_get_svr();
> + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> + if (fsl_soc) {
> + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> + ?fsl_soc->soc_id);
You can use kstrdup() if you're just copying the string as is.
> + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> + ???fsl_soc->revision);
> + } else {
> + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> svr);
kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
> +
> + soc_dev = soc_device_register(soc_dev_attr);
> + if (IS_ERR(soc_dev)) {
> + ret = -ENODEV;
Why are you changing the error code?
> + goto out;
> + } else {
Unnecessary "else".
> + pr_info("Detected: %s\n", soc_dev_attr->machine);
Machine: %s
> + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> + pr_info("Detected SoC ID: %s, revision: %s\n",
> + soc_dev_attr->soc_id, soc_dev_attr->revision);
s/Detected //g
> + }
> + return 0;
> +out:
> + kfree(soc_dev_attr->machine);
> + kfree(soc_dev_attr->family);
> + kfree(soc_dev_attr->soc_id);
> + kfree(soc_dev_attr->revision);
> + kfree(soc_dev_attr);
> +out_unmap:
> + iounmap(guts->regs);
> +out_free:
> + kfree(guts);
devm
> +static int fsl_guts_remove(struct platform_device *dev)
> +{
> + kfree(soc_dev_attr->machine);
> + kfree(soc_dev_attr->family);
> + kfree(soc_dev_attr->soc_id);
> + kfree(soc_dev_attr->revision);
> + kfree(soc_dev_attr);
> + soc_device_unregister(soc_dev);
> + iounmap(guts->regs);
> + kfree(guts);
> + return 0;
> +}
Don't free the memory before you unregister the device that uses it (moot if
you use devm).
> ?
> +#ifdef CONFIG_FSL_GUTS
> +unsigned int fsl_guts_get_svr(void);
> +#endif
Don't ifdef prototypes (unless you're going to provide a stub alternative).
-Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-09 3:47 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-09 3:47 UTC (permalink / raw)
To: Yangbo Lu, linux-mmc-u79uwXL29TY76Z2rM5mHXA,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A, Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA, Russell King,
Bhupesh Sharma, netdev-u79uwXL29TY76Z2rM5mHXA, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Jochen Friedrich,
xiaobo.xie-3arQi8VN3Tc,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Rob Herring,
linux-i2c-u79uwXL29TY76Z2rM5mHXA, Claudiu Manoil, Kumar Gala,
leoyang.li-3arQi8VN3Tc, linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-clk-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Qiang Zhao
On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> The global utilities block controls power management, I/O device
> enabling, power-onreset(POR) configuration monitoring, alternate
> function selection for multiplexed signals,and clock control.
>
> This patch adds a driver to manage and access global utilities block.
> Initially only reading SVR and registering soc device are supported.
> Other guts accesses, such as reading RCW, should eventually be moved
> into this driver as well.
>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> Signed-off-by: Scott Wood <oss@buserror.net>
Don't put my signoff on patches that I didn't put it on myself. Definitely
don't put mine *after* yours on patches that were last modified by you.
If you want to mention that the soc_id encoding was my suggestion, then do so
explicitly.
> +/* SoC attribute definition for QorIQ platform */
> +static const struct soc_device_attribute qoriq_soc[] = {
> +#ifdef CONFIG_PPC
> + /*
> + * Power Architecture-based SoCs T Series
> + */
> +
> + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> + .revision = "1.0",
> + },
> + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> + .revision = "1.0",
> + },
Revision could be computed from the low 8 bits of SVR (just as you do for unknown SVRs).
We could move the die name into .family:
{
.soc_id = "svr:0x85490010,name:T1023E,",
.family = "QorIQ T1024",
}
I see you dropped svre (and the trailing comma), though I guess the vast
majority of potential users will be looking at .family. In which case do we
even need name? If we just make the soc_id be "svr:0xnnnnnnnn" then we could
shrink the table to an svr+mask that identifies each die. I'd still want to
keep the "svr:" even if we're giving up on the general tagging system, to make
it clear what the number refers to, and to provide some defense against users
who match only against soc_id rather than soc_id+family. Or we could go
further and format soc_id as "QorIQ SVR 0xnnnnnnnn" so that soc_id-only
matches are fully acceptable rather than just less dangerous.
> +static const struct soc_device_attribute *fsl_soc_device_match(
> + unsigned int svr, const struct soc_device_attribute *matches)
> +{
> + char svr_match[50];
> + int n;
> +
> + n = sprintf(svr_match, "*%08x*", svr);
n = sprintf(svr_match, "svr:0x%08x,*", svr);
(according to the current encoding)
> +
> + do {
> + if (!matches->soc_id)
> + return NULL;
> + if (glob_match(svr_match, matches->soc_id))
> + break;
> + } while (matches++);
Are you expecting "matches++" to ever evaluate as false?
> + /* Register soc device */
> + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> + if (!soc_dev_attr) {
> + ret = -ENOMEM;
> + goto out_unmap;
> + }
Couldn't this be statically allocated?
> +
> + machine = of_flat_dt_get_machine_name();
> + if (machine)
> + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> machine);
> +
> + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> +
> + svr = fsl_guts_get_svr();
> + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> + if (fsl_soc) {
> + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> + fsl_soc->soc_id);
You can use kstrdup() if you're just copying the string as is.
> + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> + fsl_soc->revision);
> + } else {
> + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> svr);
kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
> +
> + soc_dev = soc_device_register(soc_dev_attr);
> + if (IS_ERR(soc_dev)) {
> + ret = -ENODEV;
Why are you changing the error code?
> + goto out;
> + } else {
Unnecessary "else".
> + pr_info("Detected: %s\n", soc_dev_attr->machine);
Machine: %s
> + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> + pr_info("Detected SoC ID: %s, revision: %s\n",
> + soc_dev_attr->soc_id, soc_dev_attr->revision);
s/Detected //g
> + }
> + return 0;
> +out:
> + kfree(soc_dev_attr->machine);
> + kfree(soc_dev_attr->family);
> + kfree(soc_dev_attr->soc_id);
> + kfree(soc_dev_attr->revision);
> + kfree(soc_dev_attr);
> +out_unmap:
> + iounmap(guts->regs);
> +out_free:
> + kfree(guts);
devm
> +static int fsl_guts_remove(struct platform_device *dev)
> +{
> + kfree(soc_dev_attr->machine);
> + kfree(soc_dev_attr->family);
> + kfree(soc_dev_attr->soc_id);
> + kfree(soc_dev_attr->revision);
> + kfree(soc_dev_attr);
> + soc_device_unregister(soc_dev);
> + iounmap(guts->regs);
> + kfree(guts);
> + return 0;
> +}
Don't free the memory before you unregister the device that uses it (moot if
you use devm).
>
> +#ifdef CONFIG_FSL_GUTS
> +unsigned int fsl_guts_get_svr(void);
> +#endif
Don't ifdef prototypes (unless you're going to provide a stub alternative).
-Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 6:39 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-12 6:39 UTC (permalink / raw)
To: Scott Wood, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree@vger.kernel.org, Russell King,
Bhupesh Sharma, netdev@vger.kernel.org, Joerg Roedel,
Santosh Shilimkar, linux-kernel@vger.kernel.org, Jochen Friedrich,
X.B. Xie, iommu@lists.linux-foundation.org, Rob Herring,
linux-i2c@vger.kernel.org, Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev@lists.ozlabs.org, linux-clk@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, Qiang Zhao
SGkgU2NvdHQsDQoNClRoYW5rcyBmb3IgeW91ciByZXZpZXcgOikNClNlZSBteSBjb21tZW50IGlu
bGluZS4NCg0KPiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBTY290dCBXb29k
IFttYWlsdG86b3NzQGJ1c2Vycm9yLm5ldF0NCj4gU2VudDogRnJpZGF5LCBTZXB0ZW1iZXIgMDks
IDIwMTYgMTE6NDcgQU0NCj4gVG86IFkuQi4gTHU7IGxpbnV4LW1tY0B2Z2VyLmtlcm5lbC5vcmc7
IHVsZi5oYW5zc29uQGxpbmFyby5vcmc7IEFybmQNCj4gQmVyZ21hbm4NCj4gQ2M6IGxpbnV4cHBj
LWRldkBsaXN0cy5vemxhYnMub3JnOyBkZXZpY2V0cmVlQHZnZXIua2VybmVsLm9yZzsgbGludXgt
YXJtLQ0KPiBrZXJuZWxAbGlzdHMuaW5mcmFkZWFkLm9yZzsgbGludXgta2VybmVsQHZnZXIua2Vy
bmVsLm9yZzsgbGludXgtDQo+IGNsa0B2Z2VyLmtlcm5lbC5vcmc7IGxpbnV4LWkyY0B2Z2VyLmtl
cm5lbC5vcmc7IGlvbW11QGxpc3RzLmxpbnV4LQ0KPiBmb3VuZGF0aW9uLm9yZzsgbmV0ZGV2QHZn
ZXIua2VybmVsLm9yZzsgTWFyayBSdXRsYW5kOyBSb2IgSGVycmluZzsNCj4gUnVzc2VsbCBLaW5n
OyBKb2NoZW4gRnJpZWRyaWNoOyBKb2VyZyBSb2VkZWw7IENsYXVkaXUgTWFub2lsOyBCaHVwZXNo
DQo+IFNoYXJtYTsgUWlhbmcgWmhhbzsgS3VtYXIgR2FsYTsgU2FudG9zaCBTaGlsaW1rYXI7IExl
byBMaTsgWC5CLiBYaWUNCj4gU3ViamVjdDogUmU6IFt2MTEsIDUvOF0gc29jOiBmc2w6IGFkZCBH
VVRTIGRyaXZlciBmb3IgUW9ySVEgcGxhdGZvcm1zDQo+IA0KPiBPbiBUdWUsIDIwMTYtMDktMDYg
YXQgMTY6MjggKzA4MDAsIFlhbmdibyBMdSB3cm90ZToNCj4gPiBUaGUgZ2xvYmFsIHV0aWxpdGll
cyBibG9jayBjb250cm9scyBwb3dlciBtYW5hZ2VtZW50LCBJL08gZGV2aWNlDQo+ID4gZW5hYmxp
bmcsIHBvd2VyLW9ucmVzZXQoUE9SKSBjb25maWd1cmF0aW9uIG1vbml0b3JpbmcsIGFsdGVybmF0
ZQ0KPiA+IGZ1bmN0aW9uIHNlbGVjdGlvbiBmb3IgbXVsdGlwbGV4ZWQgc2lnbmFscyxhbmQgY2xv
Y2sgY29udHJvbC4NCj4gPg0KPiA+IFRoaXMgcGF0Y2ggYWRkcyBhIGRyaXZlciB0byBtYW5hZ2Ug
YW5kIGFjY2VzcyBnbG9iYWwgdXRpbGl0aWVzIGJsb2NrLg0KPiA+IEluaXRpYWxseSBvbmx5IHJl
YWRpbmcgU1ZSIGFuZCByZWdpc3RlcmluZyBzb2MgZGV2aWNlIGFyZSBzdXBwb3J0ZWQuDQo+ID4g
T3RoZXIgZ3V0cyBhY2Nlc3Nlcywgc3VjaCBhcyByZWFkaW5nIFJDVywgc2hvdWxkIGV2ZW50dWFs
bHkgYmUgbW92ZWQNCj4gPiBpbnRvIHRoaXMgZHJpdmVyIGFzIHdlbGwuDQo+ID4NCj4gPiBTaWdu
ZWQtb2ZmLWJ5OiBZYW5nYm8gTHUgPHlhbmdiby5sdUBueHAuY29tPg0KPiA+IFNpZ25lZC1vZmYt
Ynk6IFNjb3R0IFdvb2QgPG9zc0BidXNlcnJvci5uZXQ+DQo+IA0KPiBEb24ndCBwdXQgbXkgc2ln
bm9mZiBvbiBwYXRjaGVzIHRoYXQgSSBkaWRuJ3QgcHV0IGl0IG9uDQo+IG15c2VsZi4gwqBEZWZp
bml0ZWx5IGRvbid0IHB1dCBtaW5lICphZnRlciogeW91cnMgb24gcGF0Y2hlcyB0aGF0IHdlcmUN
Cj4gbGFzdCBtb2RpZmllZCBieSB5b3UuDQo+IA0KPiBJZiB5b3Ugd2FudCB0byBtZW50aW9uIHRo
YXQgdGhlIHNvY19pZCBlbmNvZGluZyB3YXMgbXkgc3VnZ2VzdGlvbiwgdGhlbg0KPiBkbyBzbyBl
eHBsaWNpdGx5Lg0KPiANCg0KW0x1IFlhbmdiby1CNDcwOTNdIEkgZm91bmQgeW91ciAnc2lnbm9m
Zicgb24gdGhpcyBwYXRjaCBhdCBiZWxvdyBsaW5rLg0KaHR0cDovL3BhdGNod29yay5vemxhYnMu
b3JnL3BhdGNoLzY0OTIxMS8NCg0KU28sIGxldCBtZSBqdXN0IGNoYW5nZSB0aGUgb3JkZXIgaW4g
bmV4dCB2ZXJzaW9uID8NClNpZ25lZC1vZmYtYnk6IFNjb3R0IFdvb2QgPG9zc0BidXNlcnJvci5u
ZXQ+DQpTaWduZWQtb2ZmLWJ5OiBZYW5nYm8gTHUgPHlhbmdiby5sdUBueHAuY29tPg0KDQo+ID4g
Ky8qIFNvQyBhdHRyaWJ1dGUgZGVmaW5pdGlvbiBmb3IgUW9ySVEgcGxhdGZvcm0gKi8gc3RhdGlj
IGNvbnN0IHN0cnVjdA0KPiA+ICtzb2NfZGV2aWNlX2F0dHJpYnV0ZSBxb3JpcV9zb2NbXSA9IHsg
I2lmZGVmIENPTkZJR19QUEMNCj4gPiArCS8qDQo+ID4gKwnCoCogUG93ZXIgQXJjaGl0ZWN0dXJl
LWJhc2VkIFNvQ3MgVCBTZXJpZXMNCj4gPiArCcKgKi8NCj4gPiArDQo+ID4gKwkvKiBTb0M6IFQx
MDI0L1QxMDE0L1QxMDIzL1QxMDEzIFJldjogMS4wICovDQo+ID4gKwl7IC5zb2NfaWQJPSAic3Zy
OjB4ODU0MDAwMTAsbmFtZTpUMTAyNCxkaWU6VDEwMjQiLA0KPiA+ICsJwqDCoC5yZXZpc2lvbgk9
ICIxLjAiLA0KPiA+ICsJfSwNCj4gPiArCXsgLnNvY19pZAk9ICJzdnI6MHg4NTQ4MDAxMCxuYW1l
OlQxMDI0RSxkaWU6VDEwMjQiLA0KPiA+ICsJwqDCoC5yZXZpc2lvbgk9ICIxLjAiLA0KPiA+ICsJ
fSwNCj4gDQo+IFJldmlzaW9uIGNvdWxkIGJlIGNvbXB1dGVkIGZyb20gdGhlIGxvdyA4IGJpdHMg
b2YgU1ZSIChqdXN0IGFzIHlvdSBkbyBmb3INCj4gdW5rbm93biBTVlJzKS4NCj4NCiANCltMdSBZ
YW5nYm8tQjQ3MDkzXSBZZXMsIHlvdSdyZSByaWdodC4gV2lsbCByZW1vdmUgaXQgaGVyZS4NCg0K
PiBXZSBjb3VsZCBtb3ZlIHRoZSBkaWUgbmFtZSBpbnRvIC5mYW1pbHk6DQo+IA0KPiAJew0KPiAJ
CS5zb2NfaWQgPSAic3ZyOjB4ODU0OTAwMTAsbmFtZTpUMTAyM0UsIiwNCj4gCQkuZmFtaWx5ID0g
IlFvcklRIFQxMDI0IiwNCj4gCX0NCj4gDQo+IEkgc2VlIHlvdSBkcm9wcGVkIHN2cmUgKGFuZCB0
aGUgdHJhaWxpbmcgY29tbWEpLCB0aG91Z2ggSSBndWVzcyB0aGUgdmFzdA0KPiBtYWpvcml0eSBv
ZiBwb3RlbnRpYWwgdXNlcnMgd2lsbCBiZSBsb29raW5nIGF0IC5mYW1pbHkuIMKgSW4gd2hpY2gg
Y2FzZSBkbw0KPiB3ZSBldmVuIG5lZWQgbmFtZT8gwqBJZiB3ZSBqdXN0IG1ha2UgdGhlIHNvY19p
ZCBiZSAic3ZyOjB4bm5ubm5ubm4iIHRoZW4NCj4gd2UgY291bGQgc2hyaW5rIHRoZSB0YWJsZSB0
byBhbiBzdnIrbWFzayB0aGF0IGlkZW50aWZpZXMgZWFjaCBkaWUuIMKgSSdkDQo+IHN0aWxsIHdh
bnQgdG8ga2VlcCB0aGUgInN2cjoiIGV2ZW4gaWYgd2UncmUgZ2l2aW5nIHVwIG9uIHRoZSBnZW5l
cmFsDQo+IHRhZ2dpbmcgc3lzdGVtLCB0byBtYWtlIGl0IGNsZWFyIHdoYXQgdGhlIG51bWJlciBy
ZWZlcnMgdG8sIGFuZCB0bw0KPiBwcm92aWRlIHNvbWUgZGVmZW5zZSBhZ2FpbnN0IHVzZXJzIHdo
byBtYXRjaCBvbmx5IGFnYWluc3Qgc29jX2lkIHJhdGhlcg0KPiB0aGFuIHNvY19pZCtmYW1pbHku
IMKgT3Igd2UgY291bGQgZ28gZnVydGhlciBhbmQgZm9ybWF0IHNvY19pZCBhcyAiUW9ySVENCj4g
U1ZSIDB4bm5ubm5ubm4iIHNvIHRoYXQgc29jX2lkLW9ubHkgbWF0Y2hlcyBhcmUgZnVsbHkgYWNj
ZXB0YWJsZSByYXRoZXINCj4gdGhhbiBqdXN0IGxlc3MgZGFuZ2Vyb3VzLg0KDQpbTHUgWWFuZ2Jv
LUI0NzA5M10gSXQncyBhIGdvb2QgaWRlYSB0byBtb3ZlIGRpZSBpbnRvIC5mYW1pbHkgSSB0aGlu
ay4NCkluIG15IG9waW5pb24sIGl0J3MgYmV0dGVyIHRvIGtlZXAgc3ZyIGFuZCBuYW1lIGluIHNv
Y19pZCBqdXN0IGxpa2UgeW91ciBzdWdnZXN0aW9uIGFib3ZlLg0KPiAJew0KPiAJCS5zb2NfaWQg
PSAic3ZyOjB4ODU0OTAwMTAsbmFtZTpUMTAyM0UsIiwNCj4gCQkuZmFtaWx5ID0gIlFvcklRIFQx
MDI0IiwNCj4gCX0NClRoZSB1c2VyIHByb2JhYmx5IGRvbuKAmXQgbGlrZSB0byBsZWFybiB0aGUg
c3ZyIHZhbHVlLiBXaGF0IHRoZXkgd2FudCBpcyBqdXN0IHRvIG1hdGNoIHRoZSBzb2MgdGhleSB1
c2UuDQpJdCdzIGNvbnZlbmllbnQgdG8gdXNlIG5hbWUrcmV2IGZvciB0aGVtIHRvIG1hdGNoIGEg
c29jLg0KDQpSZWdhcmRpbmcgc2hyaW5raW5nIHRoZSB0YWJsZSwgSSB0aGluayBpdCdzIGhhcmQg
dG8gdXNlIHN2cittYXNrLiBCZWNhdXNlIEkgZmluZCBtYW55IHBsYXRmb3JtcyB1c2UgZGlmZmVy
ZW50IG1hc2tzLg0KV2UgY291bGRu4oCZdCBrbm93IHRoZSBtYXNrIGFjY29yZGluZyBzdnIgdmFs
dWUuDQoNCj4gDQo+ID4gK3N0YXRpYyBjb25zdCBzdHJ1Y3Qgc29jX2RldmljZV9hdHRyaWJ1dGUg
KmZzbF9zb2NfZGV2aWNlX21hdGNoKA0KPiA+ICsJdW5zaWduZWQgaW50IHN2ciwgY29uc3Qgc3Ry
dWN0IHNvY19kZXZpY2VfYXR0cmlidXRlICptYXRjaGVzKSB7DQo+ID4gKwljaGFyIHN2cl9tYXRj
aFs1MF07DQo+ID4gKwlpbnQgbjsNCj4gPiArDQo+ID4gKwluID0gc3ByaW50ZihzdnJfbWF0Y2gs
ICIqJTA4eCoiLCBzdnIpOw0KPiANCj4gbiA9IHNwcmludGYoc3ZyX21hdGNoLCAic3ZyOjB4JTA4
eCwqIiwgc3ZyKTsNCj4gDQo+IChhY2NvcmRpbmcgdG8gdGhlIGN1cnJlbnQgZW5jb2RpbmcpDQo+
IA0KDQpbTHUgWWFuZ2JvLUI0NzA5M10gT2suIFdpbGwgZG8gdGhhdC4NCg0KPiA+ICsNCj4gPiAr
CWRvIHsNCj4gPiArCQlpZiAoIW1hdGNoZXMtPnNvY19pZCkNCj4gPiArCQkJcmV0dXJuIE5VTEw7
DQo+ID4gKwkJaWYgKGdsb2JfbWF0Y2goc3ZyX21hdGNoLCBtYXRjaGVzLT5zb2NfaWQpKQ0KPiA+
ICsJCQlicmVhazsNCj4gPiArCX0gd2hpbGUgKG1hdGNoZXMrKyk7DQo+IA0KPiBBcmUgeW91IGV4
cGVjdGluZyAibWF0Y2hlcysrIiB0byBldmVyIGV2YWx1YXRlIGFzIGZhbHNlPw0KDQpbTHUgWWFu
Z2JvLUI0NzA5M10gWWVzLCB0aGlzIGlzIHVzZWQgdG8gbWF0Y2ggdGhlIHNvYyB3ZSB1c2UgaW4g
cW9yaXFfc29jIGFycmF5IHVudGlsIGdldHRpbmcgdHJ1ZS4gDQpXZSBuZWVkIHRvIGdldCB0aGUg
bmFtZSBhbmQgZGllIGluZm9ybWF0aW9uIGRlZmluZWQgaW4gYXJyYXkuDQoNCj4gDQo+ID4gKwkv
KiBSZWdpc3RlciBzb2MgZGV2aWNlICovDQo+ID4gKwlzb2NfZGV2X2F0dHIgPSBremFsbG9jKHNp
emVvZigqc29jX2Rldl9hdHRyKSwgR0ZQX0tFUk5FTCk7DQo+ID4gKwlpZiAoIXNvY19kZXZfYXR0
cikgew0KPiA+ICsJCXJldCA9IC1FTk9NRU07DQo+ID4gKwkJZ290byBvdXRfdW5tYXA7DQo+ID4g
Kwl9DQo+IA0KPiBDb3VsZG4ndCB0aGlzIGJlIHN0YXRpY2FsbHkgYWxsb2NhdGVkPw0KDQpbTHUg
WWFuZ2JvLUI0NzA5M10gRG8geW91IG1lYW4gd2UgZGVmaW5lIHRoaXMgc3RydWN0IHN0YXRpY2Fs
bHkgPw0KDQpzdGF0aWMgc3RydWN0IHNvY19kZXZpY2VfYXR0cmlidXRlIHNvY19kZXZfYXR0cjsN
Cg0KPiANCj4gPiArDQo+ID4gKwltYWNoaW5lID0gb2ZfZmxhdF9kdF9nZXRfbWFjaGluZV9uYW1l
KCk7DQo+ID4gKwlpZiAobWFjaGluZSkNCj4gPiArCQlzb2NfZGV2X2F0dHItPm1hY2hpbmUgPSBr
YXNwcmludGYoR0ZQX0tFUk5FTCwgIiVzIiwNCj4gPiBtYWNoaW5lKTsNCj4gPiArDQo+ID4gKwlz
b2NfZGV2X2F0dHItPmZhbWlseSA9IGthc3ByaW50ZihHRlBfS0VSTkVMLCAiUW9ySVEiKTsNCj4g
PiArDQo+ID4gKwlzdnIgPSBmc2xfZ3V0c19nZXRfc3ZyKCk7DQo+ID4gKwlmc2xfc29jID0gZnNs
X3NvY19kZXZpY2VfbWF0Y2goc3ZyLCBxb3JpcV9zb2MpOw0KPiA+ICsJaWYgKGZzbF9zb2MpIHsN
Cj4gPiArCQlzb2NfZGV2X2F0dHItPnNvY19pZCA9IGthc3ByaW50ZihHRlBfS0VSTkVMLCAiJXMi
LA0KPiA+ICsJCQkJCQnCoGZzbF9zb2MtPnNvY19pZCk7DQo+IA0KPiBZb3UgY2FuIHVzZSBrc3Ry
ZHVwKCkgaWYgeW91J3JlIGp1c3QgY29weWluZyB0aGUgc3RyaW5nIGFzIGlzLg0KDQpbTHUgWWFu
Z2JvLUI0NzA5M10gT2suIFdpbGwgZG8gdGhhdC4NCg0KPiANCj4gPiArCQlzb2NfZGV2X2F0dHIt
PnJldmlzaW9uID0ga2FzcHJpbnRmKEdGUF9LRVJORUwsICIlcyIsDQo+ID4gKwkJCQkJCcKgwqDC
oGZzbF9zb2MtPnJldmlzaW9uKTsNCj4gPiArCX0gZWxzZSB7DQo+ID4gKwkJc29jX2Rldl9hdHRy
LT5zb2NfaWQgPSBrYXNwcmludGYoR0ZQX0tFUk5FTCwgIjB4JTA4eCIsDQo+ID4gc3ZyKTsNCj4g
DQo+IAlrYXNwcmludGYoR0ZQX0tFUk5FTCwgInN2cjoweCUwOHgsIiwgc3ZyKTsNCg0KW0x1IFlh
bmdiby1CNDcwOTNdIFNvcnJ5LCB3aWxsIGFkZCB0aGF0Lg0KDQo+IA0KPiANCj4gPiArDQo+ID4g
Kwlzb2NfZGV2ID0gc29jX2RldmljZV9yZWdpc3Rlcihzb2NfZGV2X2F0dHIpOw0KPiA+ICsJaWYg
KElTX0VSUihzb2NfZGV2KSkgew0KPiA+ICsJCXJldCA9IC1FTk9ERVY7DQo+IA0KPiBXaHkgYXJl
IHlvdSBjaGFuZ2luZyB0aGUgZXJyb3IgY29kZT8NCg0KW0x1IFlhbmdiby1CNDcwOTNdIFdoYXQg
ZXJyb3IgY29kZSBzaG91bGQgd2UgdXNlID8gOikNCg0KPiANCj4gPiArCQlnb3RvIG91dDsNCj4g
PiArCX0gZWxzZSB7DQo+IA0KPiBVbm5lY2Vzc2FyeSAiZWxzZSIuDQoNCltMdSBZYW5nYm8tQjQ3
MDkzXSBPaC4uIENvcnJlY3QhDQoNCj4gDQo+ID4gKwkJcHJfaW5mbygiRGV0ZWN0ZWQ6ICVzXG4i
LCBzb2NfZGV2X2F0dHItPm1hY2hpbmUpOw0KPiANCj4gTWFjaGluZTogJXMNCg0KW0x1IFlhbmdi
by1CNDcwOTNdIE9rLiBXaWxsIGRvIHRoYXQuDQoNCj4gDQo+ID4gKwkJcHJfaW5mbygiRGV0ZWN0
ZWQgU29DIGZhbWlseTogJXNcbiIsIHNvY19kZXZfYXR0ci0+ZmFtaWx5KTsNCj4gPiArCQlwcl9p
bmZvKCJEZXRlY3RlZCBTb0MgSUQ6ICVzLCByZXZpc2lvbjogJXNcbiIsDQo+ID4gKwkJCXNvY19k
ZXZfYXR0ci0+c29jX2lkLCBzb2NfZGV2X2F0dHItPnJldmlzaW9uKTsNCj4gDQo+IHMvRGV0ZWN0
ZWQgLy9nDQoNCltMdSBZYW5nYm8tQjQ3MDkzXSBPaywgd2lsbCBkbyB0aGF0Lg0KDQo+IA0KPiAN
Cj4gPiArCX0NCj4gPiArCXJldHVybiAwOw0KPiA+ICtvdXQ6DQo+ID4gKwlrZnJlZShzb2NfZGV2
X2F0dHItPm1hY2hpbmUpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+
ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5zb2NfaWQpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRy
LT5yZXZpc2lvbik7DQo+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ICtvdXRfdW5tYXA6
DQo+ID4gKwlpb3VubWFwKGd1dHMtPnJlZ3MpOw0KPiA+ICtvdXRfZnJlZToNCj4gPiArCWtmcmVl
KGd1dHMpOw0KPiANCj4gZGV2bQ0KDQpbTHUgWWFuZ2JvLUI0NzA5M10gV2hhdCdzIHRoZSBkZXZt
IG1lYW5pbmcgaGVyZSA6KQ0KIA0KPiANCj4gPiArc3RhdGljIGludCBmc2xfZ3V0c19yZW1vdmUo
c3RydWN0IHBsYXRmb3JtX2RldmljZSAqZGV2KSB7DQo+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIt
Pm1hY2hpbmUpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+ICsJa2Zy
ZWUoc29jX2Rldl9hdHRyLT5zb2NfaWQpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5yZXZp
c2lvbik7DQo+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ICsJc29jX2RldmljZV91bnJl
Z2lzdGVyKHNvY19kZXYpOw0KPiA+ICsJaW91bm1hcChndXRzLT5yZWdzKTsNCj4gPiArCWtmcmVl
KGd1dHMpOw0KPiA+ICsJcmV0dXJuIDA7DQo+ID4gK30NCj4gDQo+IERvbid0IGZyZWUgdGhlIG1l
bW9yeSBiZWZvcmUgeW91IHVucmVnaXN0ZXIgdGhlIGRldmljZSB0aGF0IHVzZXMgaXQgKG1vb3QN
Cj4gaWYgeW91IHVzZSBkZXZtKS4NCg0KW0x1IFlhbmdiby1CNDcwOTNdIFRoZSBzb2MuYyBkcml2
ZXIgbWVudGlvbnMgdGhhdC4NCkVuc3VyZSBzb2NfZGV2LT5hdHRyIGlzIGZyZWVkIHByaW9yIHRv
IGNhbGxpbmcgc29jX2RldmljZV91bnJlZ2lzdGVyLg0KDQo+IA0KPiA+DQo+ID4gKyNpZmRlZiBD
T05GSUdfRlNMX0dVVFMNCj4gPiArdW5zaWduZWQgaW50IGZzbF9ndXRzX2dldF9zdnIodm9pZCk7
DQo+ID4gKyNlbmRpZg0KPiANCj4gRG9uJ3QgaWZkZWYgcHJvdG90eXBlcyAodW5sZXNzIHlvdSdy
ZSBnb2luZyB0byBwcm92aWRlIGEgc3R1Yg0KPiBhbHRlcm5hdGl2ZSkuDQoNCltMdSBZYW5nYm8t
QjQ3MDkzXSBPaywgd2lsbCByZW1vdmUgaWZkZWYuDQoNCj4gDQo+IC1TY290dA0KDQpfX19fX19f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwpsaW51eC1hcm0ta2VybmVs
IG1haWxpbmcgbGlzdApsaW51eC1hcm0ta2VybmVsQGxpc3RzLmluZnJhZGVhZC5vcmcKaHR0cDov
L2xpc3RzLmluZnJhZGVhZC5vcmcvbWFpbG1hbi9saXN0aW5mby9saW51eC1hcm0ta2VybmVsCg==
^ permalink raw reply [flat|nested] 81+ messages in thread
* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 6:39 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-12 6:39 UTC (permalink / raw)
To: Scott Wood, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Hi Scott,
Thanks for your review :)
See my comment inline.
> -----Original Message-----
> From: Scott Wood [mailto:oss@buserror.net]
> Sent: Friday, September 09, 2016 11:47 AM
> To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > The global utilities block controls power management, I/O device
> > enabling, power-onreset(POR) configuration monitoring, alternate
> > function selection for multiplexed signals,and clock control.
> >
> > This patch adds a driver to manage and access global utilities block.
> > Initially only reading SVR and registering soc device are supported.
> > Other guts accesses, such as reading RCW, should eventually be moved
> > into this driver as well.
> >
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > Signed-off-by: Scott Wood <oss@buserror.net>
>
> Don't put my signoff on patches that I didn't put it on
> myself. Definitely don't put mine *after* yours on patches that were
> last modified by you.
>
> If you want to mention that the soc_id encoding was my suggestion, then
> do so explicitly.
>
[Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
http://patchwork.ozlabs.org/patch/649211/
So, let me just change the order in next version ?
Signed-off-by: Scott Wood <oss@buserror.net>
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > +/* SoC attribute definition for QorIQ platform */ static const struct
> > +soc_device_attribute qoriq_soc[] = { #ifdef CONFIG_PPC
> > + /*
> > + * Power Architecture-based SoCs T Series
> > + */
> > +
> > + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> > + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> > + .revision = "1.0",
> > + },
> > + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> > + .revision = "1.0",
> > + },
>
> Revision could be computed from the low 8 bits of SVR (just as you do for
> unknown SVRs).
>
[Lu Yangbo-B47093] Yes, you're right. Will remove it here.
> We could move the die name into .family:
>
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
>
> I see you dropped svre (and the trailing comma), though I guess the vast
> majority of potential users will be looking at .family. In which case do
> we even need name? If we just make the soc_id be "svr:0xnnnnnnnn" then
> we could shrink the table to an svr+mask that identifies each die. I'd
> still want to keep the "svr:" even if we're giving up on the general
> tagging system, to make it clear what the number refers to, and to
> provide some defense against users who match only against soc_id rather
> than soc_id+family. Or we could go further and format soc_id as "QorIQ
> SVR 0xnnnnnnnn" so that soc_id-only matches are fully acceptable rather
> than just less dangerous.
[Lu Yangbo-B47093] It's a good idea to move die into .family I think.
In my opinion, it's better to keep svr and name in soc_id just like your suggestion above.
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
The user probably don’t like to learn the svr value. What they want is just to match the soc they use.
It's convenient to use name+rev for them to match a soc.
Regarding shrinking the table, I think it's hard to use svr+mask. Because I find many platforms use different masks.
We couldn’t know the mask according svr value.
>
> > +static const struct soc_device_attribute *fsl_soc_device_match(
> > + unsigned int svr, const struct soc_device_attribute *matches) {
> > + char svr_match[50];
> > + int n;
> > +
> > + n = sprintf(svr_match, "*%08x*", svr);
>
> n = sprintf(svr_match, "svr:0x%08x,*", svr);
>
> (according to the current encoding)
>
[Lu Yangbo-B47093] Ok. Will do that.
> > +
> > + do {
> > + if (!matches->soc_id)
> > + return NULL;
> > + if (glob_match(svr_match, matches->soc_id))
> > + break;
> > + } while (matches++);
>
> Are you expecting "matches++" to ever evaluate as false?
[Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc array until getting true.
We need to get the name and die information defined in array.
>
> > + /* Register soc device */
> > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > + if (!soc_dev_attr) {
> > + ret = -ENOMEM;
> > + goto out_unmap;
> > + }
>
> Couldn't this be statically allocated?
[Lu Yangbo-B47093] Do you mean we define this struct statically ?
static struct soc_device_attribute soc_dev_attr;
>
> > +
> > + machine = of_flat_dt_get_machine_name();
> > + if (machine)
> > + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> > machine);
> > +
> > + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> > +
> > + svr = fsl_guts_get_svr();
> > + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> > + if (fsl_soc) {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> > + fsl_soc->soc_id);
>
> You can use kstrdup() if you're just copying the string as is.
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> > + fsl_soc->revision);
> > + } else {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> > svr);
>
> kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
[Lu Yangbo-B47093] Sorry, will add that.
>
>
> > +
> > + soc_dev = soc_device_register(soc_dev_attr);
> > + if (IS_ERR(soc_dev)) {
> > + ret = -ENODEV;
>
> Why are you changing the error code?
[Lu Yangbo-B47093] What error code should we use ? :)
>
> > + goto out;
> > + } else {
>
> Unnecessary "else".
[Lu Yangbo-B47093] Oh.. Correct!
>
> > + pr_info("Detected: %s\n", soc_dev_attr->machine);
>
> Machine: %s
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> > + pr_info("Detected SoC ID: %s, revision: %s\n",
> > + soc_dev_attr->soc_id, soc_dev_attr->revision);
>
> s/Detected //g
[Lu Yangbo-B47093] Ok, will do that.
>
>
> > + }
> > + return 0;
> > +out:
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > +out_unmap:
> > + iounmap(guts->regs);
> > +out_free:
> > + kfree(guts);
>
> devm
[Lu Yangbo-B47093] What's the devm meaning here :)
>
> > +static int fsl_guts_remove(struct platform_device *dev) {
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > + soc_device_unregister(soc_dev);
> > + iounmap(guts->regs);
> > + kfree(guts);
> > + return 0;
> > +}
>
> Don't free the memory before you unregister the device that uses it (moot
> if you use devm).
[Lu Yangbo-B47093] The soc.c driver mentions that.
Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> >
> > +#ifdef CONFIG_FSL_GUTS
> > +unsigned int fsl_guts_get_svr(void);
> > +#endif
>
> Don't ifdef prototypes (unless you're going to provide a stub
> alternative).
[Lu Yangbo-B47093] Ok, will remove ifdef.
>
> -Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 6:39 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-12 6:39 UTC (permalink / raw)
To: Scott Wood, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
linux-i2c@vger.kernel.org, iommu@lists.linux-foundation.org,
netdev@vger.kernel.org, Mark Rutland, Rob Herring, Russell King,
Jochen Friedrich, Joerg Roedel, Claudiu Manoil, Bhupesh Sharma,
Qiang Zhao, Kumar Gala, Santosh Shilimkar, Leo Li, X.B. Xie
Hi Scott,
Thanks for your review :)
See my comment inline.
> -----Original Message-----
> From: Scott Wood [mailto:oss@buserror.net]
> Sent: Friday, September 09, 2016 11:47 AM
> To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > The global utilities block controls power management, I/O device
> > enabling, power-onreset(POR) configuration monitoring, alternate
> > function selection for multiplexed signals,and clock control.
> >
> > This patch adds a driver to manage and access global utilities block.
> > Initially only reading SVR and registering soc device are supported.
> > Other guts accesses, such as reading RCW, should eventually be moved
> > into this driver as well.
> >
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > Signed-off-by: Scott Wood <oss@buserror.net>
>
> Don't put my signoff on patches that I didn't put it on
> myself. Definitely don't put mine *after* yours on patches that were
> last modified by you.
>
> If you want to mention that the soc_id encoding was my suggestion, then
> do so explicitly.
>
[Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
http://patchwork.ozlabs.org/patch/649211/
So, let me just change the order in next version ?
Signed-off-by: Scott Wood <oss@buserror.net>
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > +/* SoC attribute definition for QorIQ platform */ static const struct
> > +soc_device_attribute qoriq_soc[] = { #ifdef CONFIG_PPC
> > + /*
> > + * Power Architecture-based SoCs T Series
> > + */
> > +
> > + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> > + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> > + .revision = "1.0",
> > + },
> > + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> > + .revision = "1.0",
> > + },
>
> Revision could be computed from the low 8 bits of SVR (just as you do for
> unknown SVRs).
>
[Lu Yangbo-B47093] Yes, you're right. Will remove it here.
> We could move the die name into .family:
>
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
>
> I see you dropped svre (and the trailing comma), though I guess the vast
> majority of potential users will be looking at .family. In which case do
> we even need name? If we just make the soc_id be "svr:0xnnnnnnnn" then
> we could shrink the table to an svr+mask that identifies each die. I'd
> still want to keep the "svr:" even if we're giving up on the general
> tagging system, to make it clear what the number refers to, and to
> provide some defense against users who match only against soc_id rather
> than soc_id+family. Or we could go further and format soc_id as "QorIQ
> SVR 0xnnnnnnnn" so that soc_id-only matches are fully acceptable rather
> than just less dangerous.
[Lu Yangbo-B47093] It's a good idea to move die into .family I think.
In my opinion, it's better to keep svr and name in soc_id just like your suggestion above.
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
The user probably don’t like to learn the svr value. What they want is just to match the soc they use.
It's convenient to use name+rev for them to match a soc.
Regarding shrinking the table, I think it's hard to use svr+mask. Because I find many platforms use different masks.
We couldn’t know the mask according svr value.
>
> > +static const struct soc_device_attribute *fsl_soc_device_match(
> > + unsigned int svr, const struct soc_device_attribute *matches) {
> > + char svr_match[50];
> > + int n;
> > +
> > + n = sprintf(svr_match, "*%08x*", svr);
>
> n = sprintf(svr_match, "svr:0x%08x,*", svr);
>
> (according to the current encoding)
>
[Lu Yangbo-B47093] Ok. Will do that.
> > +
> > + do {
> > + if (!matches->soc_id)
> > + return NULL;
> > + if (glob_match(svr_match, matches->soc_id))
> > + break;
> > + } while (matches++);
>
> Are you expecting "matches++" to ever evaluate as false?
[Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc array until getting true.
We need to get the name and die information defined in array.
>
> > + /* Register soc device */
> > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > + if (!soc_dev_attr) {
> > + ret = -ENOMEM;
> > + goto out_unmap;
> > + }
>
> Couldn't this be statically allocated?
[Lu Yangbo-B47093] Do you mean we define this struct statically ?
static struct soc_device_attribute soc_dev_attr;
>
> > +
> > + machine = of_flat_dt_get_machine_name();
> > + if (machine)
> > + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> > machine);
> > +
> > + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> > +
> > + svr = fsl_guts_get_svr();
> > + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> > + if (fsl_soc) {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> > + fsl_soc->soc_id);
>
> You can use kstrdup() if you're just copying the string as is.
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> > + fsl_soc->revision);
> > + } else {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> > svr);
>
> kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
[Lu Yangbo-B47093] Sorry, will add that.
>
>
> > +
> > + soc_dev = soc_device_register(soc_dev_attr);
> > + if (IS_ERR(soc_dev)) {
> > + ret = -ENODEV;
>
> Why are you changing the error code?
[Lu Yangbo-B47093] What error code should we use ? :)
>
> > + goto out;
> > + } else {
>
> Unnecessary "else".
[Lu Yangbo-B47093] Oh.. Correct!
>
> > + pr_info("Detected: %s\n", soc_dev_attr->machine);
>
> Machine: %s
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> > + pr_info("Detected SoC ID: %s, revision: %s\n",
> > + soc_dev_attr->soc_id, soc_dev_attr->revision);
>
> s/Detected //g
[Lu Yangbo-B47093] Ok, will do that.
>
>
> > + }
> > + return 0;
> > +out:
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > +out_unmap:
> > + iounmap(guts->regs);
> > +out_free:
> > + kfree(guts);
>
> devm
[Lu Yangbo-B47093] What's the devm meaning here :)
>
> > +static int fsl_guts_remove(struct platform_device *dev) {
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > + soc_device_unregister(soc_dev);
> > + iounmap(guts->regs);
> > + kfree(guts);
> > + return 0;
> > +}
>
> Don't free the memory before you unregister the device that uses it (moot
> if you use devm).
[Lu Yangbo-B47093] The soc.c driver mentions that.
Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> >
> > +#ifdef CONFIG_FSL_GUTS
> > +unsigned int fsl_guts_get_svr(void);
> > +#endif
>
> Don't ifdef prototypes (unless you're going to provide a stub
> alternative).
[Lu Yangbo-B47093] Ok, will remove ifdef.
>
> -Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 6:39 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-12 6:39 UTC (permalink / raw)
To: linux-arm-kernel
Hi Scott,
Thanks for your review :)
See my comment inline.
> -----Original Message-----
> From: Scott Wood [mailto:oss at buserror.net]
> Sent: Friday, September 09, 2016 11:47 AM
> To: Y.B. Lu; linux-mmc at vger.kernel.org; ulf.hansson at linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev at lists.ozlabs.org; devicetree at vger.kernel.org; linux-arm-
> kernel at lists.infradead.org; linux-kernel at vger.kernel.org; linux-
> clk at vger.kernel.org; linux-i2c at vger.kernel.org; iommu at lists.linux-
> foundation.org; netdev at vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > The global utilities block controls power management, I/O device
> > enabling, power-onreset(POR) configuration monitoring, alternate
> > function selection for multiplexed signals,and clock control.
> >
> > This patch adds a driver to manage and access global utilities block.
> > Initially only reading SVR and registering soc device are supported.
> > Other guts accesses, such as reading RCW, should eventually be moved
> > into this driver as well.
> >
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > Signed-off-by: Scott Wood <oss@buserror.net>
>
> Don't put my signoff on patches that I didn't put it on
> myself. ?Definitely don't put mine *after* yours on patches that were
> last modified by you.
>
> If you want to mention that the soc_id encoding was my suggestion, then
> do so explicitly.
>
[Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
http://patchwork.ozlabs.org/patch/649211/
So, let me just change the order in next version ?
Signed-off-by: Scott Wood <oss@buserror.net>
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > +/* SoC attribute definition for QorIQ platform */ static const struct
> > +soc_device_attribute qoriq_soc[] = { #ifdef CONFIG_PPC
> > + /*
> > + ?* Power Architecture-based SoCs T Series
> > + ?*/
> > +
> > + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> > + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> > + ??.revision = "1.0",
> > + },
> > + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> > + ??.revision = "1.0",
> > + },
>
> Revision could be computed from the low 8 bits of SVR (just as you do for
> unknown SVRs).
>
[Lu Yangbo-B47093] Yes, you're right. Will remove it here.
> We could move the die name into .family:
>
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
>
> I see you dropped svre (and the trailing comma), though I guess the vast
> majority of potential users will be looking at .family. ?In which case do
> we even need name? ?If we just make the soc_id be "svr:0xnnnnnnnn" then
> we could shrink the table to an svr+mask that identifies each die. ?I'd
> still want to keep the "svr:" even if we're giving up on the general
> tagging system, to make it clear what the number refers to, and to
> provide some defense against users who match only against soc_id rather
> than soc_id+family. ?Or we could go further and format soc_id as "QorIQ
> SVR 0xnnnnnnnn" so that soc_id-only matches are fully acceptable rather
> than just less dangerous.
[Lu Yangbo-B47093] It's a good idea to move die into .family I think.
In my opinion, it's better to keep svr and name in soc_id just like your suggestion above.
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
The user probably don?t like to learn the svr value. What they want is just to match the soc they use.
It's convenient to use name+rev for them to match a soc.
Regarding shrinking the table, I think it's hard to use svr+mask. Because I find many platforms use different masks.
We couldn?t know the mask according svr value.
>
> > +static const struct soc_device_attribute *fsl_soc_device_match(
> > + unsigned int svr, const struct soc_device_attribute *matches) {
> > + char svr_match[50];
> > + int n;
> > +
> > + n = sprintf(svr_match, "*%08x*", svr);
>
> n = sprintf(svr_match, "svr:0x%08x,*", svr);
>
> (according to the current encoding)
>
[Lu Yangbo-B47093] Ok. Will do that.
> > +
> > + do {
> > + if (!matches->soc_id)
> > + return NULL;
> > + if (glob_match(svr_match, matches->soc_id))
> > + break;
> > + } while (matches++);
>
> Are you expecting "matches++" to ever evaluate as false?
[Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc array until getting true.
We need to get the name and die information defined in array.
>
> > + /* Register soc device */
> > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > + if (!soc_dev_attr) {
> > + ret = -ENOMEM;
> > + goto out_unmap;
> > + }
>
> Couldn't this be statically allocated?
[Lu Yangbo-B47093] Do you mean we define this struct statically ?
static struct soc_device_attribute soc_dev_attr;
>
> > +
> > + machine = of_flat_dt_get_machine_name();
> > + if (machine)
> > + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> > machine);
> > +
> > + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> > +
> > + svr = fsl_guts_get_svr();
> > + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> > + if (fsl_soc) {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> > + ?fsl_soc->soc_id);
>
> You can use kstrdup() if you're just copying the string as is.
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> > + ???fsl_soc->revision);
> > + } else {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> > svr);
>
> kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
[Lu Yangbo-B47093] Sorry, will add that.
>
>
> > +
> > + soc_dev = soc_device_register(soc_dev_attr);
> > + if (IS_ERR(soc_dev)) {
> > + ret = -ENODEV;
>
> Why are you changing the error code?
[Lu Yangbo-B47093] What error code should we use ? :)
>
> > + goto out;
> > + } else {
>
> Unnecessary "else".
[Lu Yangbo-B47093] Oh.. Correct!
>
> > + pr_info("Detected: %s\n", soc_dev_attr->machine);
>
> Machine: %s
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> > + pr_info("Detected SoC ID: %s, revision: %s\n",
> > + soc_dev_attr->soc_id, soc_dev_attr->revision);
>
> s/Detected //g
[Lu Yangbo-B47093] Ok, will do that.
>
>
> > + }
> > + return 0;
> > +out:
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > +out_unmap:
> > + iounmap(guts->regs);
> > +out_free:
> > + kfree(guts);
>
> devm
[Lu Yangbo-B47093] What's the devm meaning here :)
>
> > +static int fsl_guts_remove(struct platform_device *dev) {
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > + soc_device_unregister(soc_dev);
> > + iounmap(guts->regs);
> > + kfree(guts);
> > + return 0;
> > +}
>
> Don't free the memory before you unregister the device that uses it (moot
> if you use devm).
[Lu Yangbo-B47093] The soc.c driver mentions that.
Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> >
> > +#ifdef CONFIG_FSL_GUTS
> > +unsigned int fsl_guts_get_svr(void);
> > +#endif
>
> Don't ifdef prototypes (unless you're going to provide a stub
> alternative).
[Lu Yangbo-B47093] Ok, will remove ifdef.
>
> -Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 6:39 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-12 6:39 UTC (permalink / raw)
To: Scott Wood, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
linux-i2c@vger.kernel.org, iommu@lists.linux-foundation.org,
netdev@vger.kernel.org, Mark Rutland, Rob Herring, Russell King,
Jochen Friedrich, Joerg Roedel, Claudiu Manoil, Bhupesh Sharma,
Qiang Zhao, Kumar Gala, Santosh Shilimkar, Leo Li, X.B. Xie
SGkgU2NvdHQsDQoNClRoYW5rcyBmb3IgeW91ciByZXZpZXcgOikNClNlZSBteSBjb21tZW50IGlu
bGluZS4NCg0KPiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBTY290dCBXb29k
IFttYWlsdG86b3NzQGJ1c2Vycm9yLm5ldF0NCj4gU2VudDogRnJpZGF5LCBTZXB0ZW1iZXIgMDks
IDIwMTYgMTE6NDcgQU0NCj4gVG86IFkuQi4gTHU7IGxpbnV4LW1tY0B2Z2VyLmtlcm5lbC5vcmc7
IHVsZi5oYW5zc29uQGxpbmFyby5vcmc7IEFybmQNCj4gQmVyZ21hbm4NCj4gQ2M6IGxpbnV4cHBj
LWRldkBsaXN0cy5vemxhYnMub3JnOyBkZXZpY2V0cmVlQHZnZXIua2VybmVsLm9yZzsgbGludXgt
YXJtLQ0KPiBrZXJuZWxAbGlzdHMuaW5mcmFkZWFkLm9yZzsgbGludXgta2VybmVsQHZnZXIua2Vy
bmVsLm9yZzsgbGludXgtDQo+IGNsa0B2Z2VyLmtlcm5lbC5vcmc7IGxpbnV4LWkyY0B2Z2VyLmtl
cm5lbC5vcmc7IGlvbW11QGxpc3RzLmxpbnV4LQ0KPiBmb3VuZGF0aW9uLm9yZzsgbmV0ZGV2QHZn
ZXIua2VybmVsLm9yZzsgTWFyayBSdXRsYW5kOyBSb2IgSGVycmluZzsNCj4gUnVzc2VsbCBLaW5n
OyBKb2NoZW4gRnJpZWRyaWNoOyBKb2VyZyBSb2VkZWw7IENsYXVkaXUgTWFub2lsOyBCaHVwZXNo
DQo+IFNoYXJtYTsgUWlhbmcgWmhhbzsgS3VtYXIgR2FsYTsgU2FudG9zaCBTaGlsaW1rYXI7IExl
byBMaTsgWC5CLiBYaWUNCj4gU3ViamVjdDogUmU6IFt2MTEsIDUvOF0gc29jOiBmc2w6IGFkZCBH
VVRTIGRyaXZlciBmb3IgUW9ySVEgcGxhdGZvcm1zDQo+IA0KPiBPbiBUdWUsIDIwMTYtMDktMDYg
YXQgMTY6MjggKzA4MDAsIFlhbmdibyBMdSB3cm90ZToNCj4gPiBUaGUgZ2xvYmFsIHV0aWxpdGll
cyBibG9jayBjb250cm9scyBwb3dlciBtYW5hZ2VtZW50LCBJL08gZGV2aWNlDQo+ID4gZW5hYmxp
bmcsIHBvd2VyLW9ucmVzZXQoUE9SKSBjb25maWd1cmF0aW9uIG1vbml0b3JpbmcsIGFsdGVybmF0
ZQ0KPiA+IGZ1bmN0aW9uIHNlbGVjdGlvbiBmb3IgbXVsdGlwbGV4ZWQgc2lnbmFscyxhbmQgY2xv
Y2sgY29udHJvbC4NCj4gPg0KPiA+IFRoaXMgcGF0Y2ggYWRkcyBhIGRyaXZlciB0byBtYW5hZ2Ug
YW5kIGFjY2VzcyBnbG9iYWwgdXRpbGl0aWVzIGJsb2NrLg0KPiA+IEluaXRpYWxseSBvbmx5IHJl
YWRpbmcgU1ZSIGFuZCByZWdpc3RlcmluZyBzb2MgZGV2aWNlIGFyZSBzdXBwb3J0ZWQuDQo+ID4g
T3RoZXIgZ3V0cyBhY2Nlc3Nlcywgc3VjaCBhcyByZWFkaW5nIFJDVywgc2hvdWxkIGV2ZW50dWFs
bHkgYmUgbW92ZWQNCj4gPiBpbnRvIHRoaXMgZHJpdmVyIGFzIHdlbGwuDQo+ID4NCj4gPiBTaWdu
ZWQtb2ZmLWJ5OiBZYW5nYm8gTHUgPHlhbmdiby5sdUBueHAuY29tPg0KPiA+IFNpZ25lZC1vZmYt
Ynk6IFNjb3R0IFdvb2QgPG9zc0BidXNlcnJvci5uZXQ+DQo+IA0KPiBEb24ndCBwdXQgbXkgc2ln
bm9mZiBvbiBwYXRjaGVzIHRoYXQgSSBkaWRuJ3QgcHV0IGl0IG9uDQo+IG15c2VsZi4gwqBEZWZp
bml0ZWx5IGRvbid0IHB1dCBtaW5lICphZnRlciogeW91cnMgb24gcGF0Y2hlcyB0aGF0IHdlcmUN
Cj4gbGFzdCBtb2RpZmllZCBieSB5b3UuDQo+IA0KPiBJZiB5b3Ugd2FudCB0byBtZW50aW9uIHRo
YXQgdGhlIHNvY19pZCBlbmNvZGluZyB3YXMgbXkgc3VnZ2VzdGlvbiwgdGhlbg0KPiBkbyBzbyBl
eHBsaWNpdGx5Lg0KPiANCg0KW0x1IFlhbmdiby1CNDcwOTNdIEkgZm91bmQgeW91ciAnc2lnbm9m
Zicgb24gdGhpcyBwYXRjaCBhdCBiZWxvdyBsaW5rLg0KaHR0cDovL3BhdGNod29yay5vemxhYnMu
b3JnL3BhdGNoLzY0OTIxMS8NCg0KU28sIGxldCBtZSBqdXN0IGNoYW5nZSB0aGUgb3JkZXIgaW4g
bmV4dCB2ZXJzaW9uID8NClNpZ25lZC1vZmYtYnk6IFNjb3R0IFdvb2QgPG9zc0BidXNlcnJvci5u
ZXQ+DQpTaWduZWQtb2ZmLWJ5OiBZYW5nYm8gTHUgPHlhbmdiby5sdUBueHAuY29tPg0KDQo+ID4g
Ky8qIFNvQyBhdHRyaWJ1dGUgZGVmaW5pdGlvbiBmb3IgUW9ySVEgcGxhdGZvcm0gKi8gc3RhdGlj
IGNvbnN0IHN0cnVjdA0KPiA+ICtzb2NfZGV2aWNlX2F0dHJpYnV0ZSBxb3JpcV9zb2NbXSA9IHsg
I2lmZGVmIENPTkZJR19QUEMNCj4gPiArCS8qDQo+ID4gKwnCoCogUG93ZXIgQXJjaGl0ZWN0dXJl
LWJhc2VkIFNvQ3MgVCBTZXJpZXMNCj4gPiArCcKgKi8NCj4gPiArDQo+ID4gKwkvKiBTb0M6IFQx
MDI0L1QxMDE0L1QxMDIzL1QxMDEzIFJldjogMS4wICovDQo+ID4gKwl7IC5zb2NfaWQJPSAic3Zy
OjB4ODU0MDAwMTAsbmFtZTpUMTAyNCxkaWU6VDEwMjQiLA0KPiA+ICsJwqDCoC5yZXZpc2lvbgk9
ICIxLjAiLA0KPiA+ICsJfSwNCj4gPiArCXsgLnNvY19pZAk9ICJzdnI6MHg4NTQ4MDAxMCxuYW1l
OlQxMDI0RSxkaWU6VDEwMjQiLA0KPiA+ICsJwqDCoC5yZXZpc2lvbgk9ICIxLjAiLA0KPiA+ICsJ
fSwNCj4gDQo+IFJldmlzaW9uIGNvdWxkIGJlIGNvbXB1dGVkIGZyb20gdGhlIGxvdyA4IGJpdHMg
b2YgU1ZSIChqdXN0IGFzIHlvdSBkbyBmb3INCj4gdW5rbm93biBTVlJzKS4NCj4NCiANCltMdSBZ
YW5nYm8tQjQ3MDkzXSBZZXMsIHlvdSdyZSByaWdodC4gV2lsbCByZW1vdmUgaXQgaGVyZS4NCg0K
PiBXZSBjb3VsZCBtb3ZlIHRoZSBkaWUgbmFtZSBpbnRvIC5mYW1pbHk6DQo+IA0KPiAJew0KPiAJ
CS5zb2NfaWQgPSAic3ZyOjB4ODU0OTAwMTAsbmFtZTpUMTAyM0UsIiwNCj4gCQkuZmFtaWx5ID0g
IlFvcklRIFQxMDI0IiwNCj4gCX0NCj4gDQo+IEkgc2VlIHlvdSBkcm9wcGVkIHN2cmUgKGFuZCB0
aGUgdHJhaWxpbmcgY29tbWEpLCB0aG91Z2ggSSBndWVzcyB0aGUgdmFzdA0KPiBtYWpvcml0eSBv
ZiBwb3RlbnRpYWwgdXNlcnMgd2lsbCBiZSBsb29raW5nIGF0IC5mYW1pbHkuIMKgSW4gd2hpY2gg
Y2FzZSBkbw0KPiB3ZSBldmVuIG5lZWQgbmFtZT8gwqBJZiB3ZSBqdXN0IG1ha2UgdGhlIHNvY19p
ZCBiZSAic3ZyOjB4bm5ubm5ubm4iIHRoZW4NCj4gd2UgY291bGQgc2hyaW5rIHRoZSB0YWJsZSB0
byBhbiBzdnIrbWFzayB0aGF0IGlkZW50aWZpZXMgZWFjaCBkaWUuIMKgSSdkDQo+IHN0aWxsIHdh
bnQgdG8ga2VlcCB0aGUgInN2cjoiIGV2ZW4gaWYgd2UncmUgZ2l2aW5nIHVwIG9uIHRoZSBnZW5l
cmFsDQo+IHRhZ2dpbmcgc3lzdGVtLCB0byBtYWtlIGl0IGNsZWFyIHdoYXQgdGhlIG51bWJlciBy
ZWZlcnMgdG8sIGFuZCB0bw0KPiBwcm92aWRlIHNvbWUgZGVmZW5zZSBhZ2FpbnN0IHVzZXJzIHdo
byBtYXRjaCBvbmx5IGFnYWluc3Qgc29jX2lkIHJhdGhlcg0KPiB0aGFuIHNvY19pZCtmYW1pbHku
IMKgT3Igd2UgY291bGQgZ28gZnVydGhlciBhbmQgZm9ybWF0IHNvY19pZCBhcyAiUW9ySVENCj4g
U1ZSIDB4bm5ubm5ubm4iIHNvIHRoYXQgc29jX2lkLW9ubHkgbWF0Y2hlcyBhcmUgZnVsbHkgYWNj
ZXB0YWJsZSByYXRoZXINCj4gdGhhbiBqdXN0IGxlc3MgZGFuZ2Vyb3VzLg0KDQpbTHUgWWFuZ2Jv
LUI0NzA5M10gSXQncyBhIGdvb2QgaWRlYSB0byBtb3ZlIGRpZSBpbnRvIC5mYW1pbHkgSSB0aGlu
ay4NCkluIG15IG9waW5pb24sIGl0J3MgYmV0dGVyIHRvIGtlZXAgc3ZyIGFuZCBuYW1lIGluIHNv
Y19pZCBqdXN0IGxpa2UgeW91ciBzdWdnZXN0aW9uIGFib3ZlLg0KPiAJew0KPiAJCS5zb2NfaWQg
PSAic3ZyOjB4ODU0OTAwMTAsbmFtZTpUMTAyM0UsIiwNCj4gCQkuZmFtaWx5ID0gIlFvcklRIFQx
MDI0IiwNCj4gCX0NClRoZSB1c2VyIHByb2JhYmx5IGRvbuKAmXQgbGlrZSB0byBsZWFybiB0aGUg
c3ZyIHZhbHVlLiBXaGF0IHRoZXkgd2FudCBpcyBqdXN0IHRvIG1hdGNoIHRoZSBzb2MgdGhleSB1
c2UuDQpJdCdzIGNvbnZlbmllbnQgdG8gdXNlIG5hbWUrcmV2IGZvciB0aGVtIHRvIG1hdGNoIGEg
c29jLg0KDQpSZWdhcmRpbmcgc2hyaW5raW5nIHRoZSB0YWJsZSwgSSB0aGluayBpdCdzIGhhcmQg
dG8gdXNlIHN2cittYXNrLiBCZWNhdXNlIEkgZmluZCBtYW55IHBsYXRmb3JtcyB1c2UgZGlmZmVy
ZW50IG1hc2tzLg0KV2UgY291bGRu4oCZdCBrbm93IHRoZSBtYXNrIGFjY29yZGluZyBzdnIgdmFs
dWUuDQoNCj4gDQo+ID4gK3N0YXRpYyBjb25zdCBzdHJ1Y3Qgc29jX2RldmljZV9hdHRyaWJ1dGUg
KmZzbF9zb2NfZGV2aWNlX21hdGNoKA0KPiA+ICsJdW5zaWduZWQgaW50IHN2ciwgY29uc3Qgc3Ry
dWN0IHNvY19kZXZpY2VfYXR0cmlidXRlICptYXRjaGVzKSB7DQo+ID4gKwljaGFyIHN2cl9tYXRj
aFs1MF07DQo+ID4gKwlpbnQgbjsNCj4gPiArDQo+ID4gKwluID0gc3ByaW50ZihzdnJfbWF0Y2gs
ICIqJTA4eCoiLCBzdnIpOw0KPiANCj4gbiA9IHNwcmludGYoc3ZyX21hdGNoLCAic3ZyOjB4JTA4
eCwqIiwgc3ZyKTsNCj4gDQo+IChhY2NvcmRpbmcgdG8gdGhlIGN1cnJlbnQgZW5jb2RpbmcpDQo+
IA0KDQpbTHUgWWFuZ2JvLUI0NzA5M10gT2suIFdpbGwgZG8gdGhhdC4NCg0KPiA+ICsNCj4gPiAr
CWRvIHsNCj4gPiArCQlpZiAoIW1hdGNoZXMtPnNvY19pZCkNCj4gPiArCQkJcmV0dXJuIE5VTEw7
DQo+ID4gKwkJaWYgKGdsb2JfbWF0Y2goc3ZyX21hdGNoLCBtYXRjaGVzLT5zb2NfaWQpKQ0KPiA+
ICsJCQlicmVhazsNCj4gPiArCX0gd2hpbGUgKG1hdGNoZXMrKyk7DQo+IA0KPiBBcmUgeW91IGV4
cGVjdGluZyAibWF0Y2hlcysrIiB0byBldmVyIGV2YWx1YXRlIGFzIGZhbHNlPw0KDQpbTHUgWWFu
Z2JvLUI0NzA5M10gWWVzLCB0aGlzIGlzIHVzZWQgdG8gbWF0Y2ggdGhlIHNvYyB3ZSB1c2UgaW4g
cW9yaXFfc29jIGFycmF5IHVudGlsIGdldHRpbmcgdHJ1ZS4gDQpXZSBuZWVkIHRvIGdldCB0aGUg
bmFtZSBhbmQgZGllIGluZm9ybWF0aW9uIGRlZmluZWQgaW4gYXJyYXkuDQoNCj4gDQo+ID4gKwkv
KiBSZWdpc3RlciBzb2MgZGV2aWNlICovDQo+ID4gKwlzb2NfZGV2X2F0dHIgPSBremFsbG9jKHNp
emVvZigqc29jX2Rldl9hdHRyKSwgR0ZQX0tFUk5FTCk7DQo+ID4gKwlpZiAoIXNvY19kZXZfYXR0
cikgew0KPiA+ICsJCXJldCA9IC1FTk9NRU07DQo+ID4gKwkJZ290byBvdXRfdW5tYXA7DQo+ID4g
Kwl9DQo+IA0KPiBDb3VsZG4ndCB0aGlzIGJlIHN0YXRpY2FsbHkgYWxsb2NhdGVkPw0KDQpbTHUg
WWFuZ2JvLUI0NzA5M10gRG8geW91IG1lYW4gd2UgZGVmaW5lIHRoaXMgc3RydWN0IHN0YXRpY2Fs
bHkgPw0KDQpzdGF0aWMgc3RydWN0IHNvY19kZXZpY2VfYXR0cmlidXRlIHNvY19kZXZfYXR0cjsN
Cg0KPiANCj4gPiArDQo+ID4gKwltYWNoaW5lID0gb2ZfZmxhdF9kdF9nZXRfbWFjaGluZV9uYW1l
KCk7DQo+ID4gKwlpZiAobWFjaGluZSkNCj4gPiArCQlzb2NfZGV2X2F0dHItPm1hY2hpbmUgPSBr
YXNwcmludGYoR0ZQX0tFUk5FTCwgIiVzIiwNCj4gPiBtYWNoaW5lKTsNCj4gPiArDQo+ID4gKwlz
b2NfZGV2X2F0dHItPmZhbWlseSA9IGthc3ByaW50ZihHRlBfS0VSTkVMLCAiUW9ySVEiKTsNCj4g
PiArDQo+ID4gKwlzdnIgPSBmc2xfZ3V0c19nZXRfc3ZyKCk7DQo+ID4gKwlmc2xfc29jID0gZnNs
X3NvY19kZXZpY2VfbWF0Y2goc3ZyLCBxb3JpcV9zb2MpOw0KPiA+ICsJaWYgKGZzbF9zb2MpIHsN
Cj4gPiArCQlzb2NfZGV2X2F0dHItPnNvY19pZCA9IGthc3ByaW50ZihHRlBfS0VSTkVMLCAiJXMi
LA0KPiA+ICsJCQkJCQnCoGZzbF9zb2MtPnNvY19pZCk7DQo+IA0KPiBZb3UgY2FuIHVzZSBrc3Ry
ZHVwKCkgaWYgeW91J3JlIGp1c3QgY29weWluZyB0aGUgc3RyaW5nIGFzIGlzLg0KDQpbTHUgWWFu
Z2JvLUI0NzA5M10gT2suIFdpbGwgZG8gdGhhdC4NCg0KPiANCj4gPiArCQlzb2NfZGV2X2F0dHIt
PnJldmlzaW9uID0ga2FzcHJpbnRmKEdGUF9LRVJORUwsICIlcyIsDQo+ID4gKwkJCQkJCcKgwqDC
oGZzbF9zb2MtPnJldmlzaW9uKTsNCj4gPiArCX0gZWxzZSB7DQo+ID4gKwkJc29jX2Rldl9hdHRy
LT5zb2NfaWQgPSBrYXNwcmludGYoR0ZQX0tFUk5FTCwgIjB4JTA4eCIsDQo+ID4gc3ZyKTsNCj4g
DQo+IAlrYXNwcmludGYoR0ZQX0tFUk5FTCwgInN2cjoweCUwOHgsIiwgc3ZyKTsNCg0KW0x1IFlh
bmdiby1CNDcwOTNdIFNvcnJ5LCB3aWxsIGFkZCB0aGF0Lg0KDQo+IA0KPiANCj4gPiArDQo+ID4g
Kwlzb2NfZGV2ID0gc29jX2RldmljZV9yZWdpc3Rlcihzb2NfZGV2X2F0dHIpOw0KPiA+ICsJaWYg
KElTX0VSUihzb2NfZGV2KSkgew0KPiA+ICsJCXJldCA9IC1FTk9ERVY7DQo+IA0KPiBXaHkgYXJl
IHlvdSBjaGFuZ2luZyB0aGUgZXJyb3IgY29kZT8NCg0KW0x1IFlhbmdiby1CNDcwOTNdIFdoYXQg
ZXJyb3IgY29kZSBzaG91bGQgd2UgdXNlID8gOikNCg0KPiANCj4gPiArCQlnb3RvIG91dDsNCj4g
PiArCX0gZWxzZSB7DQo+IA0KPiBVbm5lY2Vzc2FyeSAiZWxzZSIuDQoNCltMdSBZYW5nYm8tQjQ3
MDkzXSBPaC4uIENvcnJlY3QhDQoNCj4gDQo+ID4gKwkJcHJfaW5mbygiRGV0ZWN0ZWQ6ICVzXG4i
LCBzb2NfZGV2X2F0dHItPm1hY2hpbmUpOw0KPiANCj4gTWFjaGluZTogJXMNCg0KW0x1IFlhbmdi
by1CNDcwOTNdIE9rLiBXaWxsIGRvIHRoYXQuDQoNCj4gDQo+ID4gKwkJcHJfaW5mbygiRGV0ZWN0
ZWQgU29DIGZhbWlseTogJXNcbiIsIHNvY19kZXZfYXR0ci0+ZmFtaWx5KTsNCj4gPiArCQlwcl9p
bmZvKCJEZXRlY3RlZCBTb0MgSUQ6ICVzLCByZXZpc2lvbjogJXNcbiIsDQo+ID4gKwkJCXNvY19k
ZXZfYXR0ci0+c29jX2lkLCBzb2NfZGV2X2F0dHItPnJldmlzaW9uKTsNCj4gDQo+IHMvRGV0ZWN0
ZWQgLy9nDQoNCltMdSBZYW5nYm8tQjQ3MDkzXSBPaywgd2lsbCBkbyB0aGF0Lg0KDQo+IA0KPiAN
Cj4gPiArCX0NCj4gPiArCXJldHVybiAwOw0KPiA+ICtvdXQ6DQo+ID4gKwlrZnJlZShzb2NfZGV2
X2F0dHItPm1hY2hpbmUpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+
ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5zb2NfaWQpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRy
LT5yZXZpc2lvbik7DQo+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ICtvdXRfdW5tYXA6
DQo+ID4gKwlpb3VubWFwKGd1dHMtPnJlZ3MpOw0KPiA+ICtvdXRfZnJlZToNCj4gPiArCWtmcmVl
KGd1dHMpOw0KPiANCj4gZGV2bQ0KDQpbTHUgWWFuZ2JvLUI0NzA5M10gV2hhdCdzIHRoZSBkZXZt
IG1lYW5pbmcgaGVyZSA6KQ0KIA0KPiANCj4gPiArc3RhdGljIGludCBmc2xfZ3V0c19yZW1vdmUo
c3RydWN0IHBsYXRmb3JtX2RldmljZSAqZGV2KSB7DQo+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIt
Pm1hY2hpbmUpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+ICsJa2Zy
ZWUoc29jX2Rldl9hdHRyLT5zb2NfaWQpOw0KPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5yZXZp
c2lvbik7DQo+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ICsJc29jX2RldmljZV91bnJl
Z2lzdGVyKHNvY19kZXYpOw0KPiA+ICsJaW91bm1hcChndXRzLT5yZWdzKTsNCj4gPiArCWtmcmVl
KGd1dHMpOw0KPiA+ICsJcmV0dXJuIDA7DQo+ID4gK30NCj4gDQo+IERvbid0IGZyZWUgdGhlIG1l
bW9yeSBiZWZvcmUgeW91IHVucmVnaXN0ZXIgdGhlIGRldmljZSB0aGF0IHVzZXMgaXQgKG1vb3QN
Cj4gaWYgeW91IHVzZSBkZXZtKS4NCg0KW0x1IFlhbmdiby1CNDcwOTNdIFRoZSBzb2MuYyBkcml2
ZXIgbWVudGlvbnMgdGhhdC4NCkVuc3VyZSBzb2NfZGV2LT5hdHRyIGlzIGZyZWVkIHByaW9yIHRv
IGNhbGxpbmcgc29jX2RldmljZV91bnJlZ2lzdGVyLg0KDQo+IA0KPiA+DQo+ID4gKyNpZmRlZiBD
T05GSUdfRlNMX0dVVFMNCj4gPiArdW5zaWduZWQgaW50IGZzbF9ndXRzX2dldF9zdnIodm9pZCk7
DQo+ID4gKyNlbmRpZg0KPiANCj4gRG9uJ3QgaWZkZWYgcHJvdG90eXBlcyAodW5sZXNzIHlvdSdy
ZSBnb2luZyB0byBwcm92aWRlIGEgc3R1Yg0KPiBhbHRlcm5hdGl2ZSkuDQoNCltMdSBZYW5nYm8t
QjQ3MDkzXSBPaywgd2lsbCByZW1vdmUgaWZkZWYuDQoNCj4gDQo+IC1TY290dA0KDQo=
^ permalink raw reply [flat|nested] 81+ messages in thread
* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 6:39 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-12 6:39 UTC (permalink / raw)
To: Scott Wood, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Hi Scott,
Thanks for your review :)
See my comment inline.
> -----Original Message-----
> From: Scott Wood [mailto:oss@buserror.net]
> Sent: Friday, September 09, 2016 11:47 AM
> To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > The global utilities block controls power management, I/O device
> > enabling, power-onreset(POR) configuration monitoring, alternate
> > function selection for multiplexed signals,and clock control.
> >
> > This patch adds a driver to manage and access global utilities block.
> > Initially only reading SVR and registering soc device are supported.
> > Other guts accesses, such as reading RCW, should eventually be moved
> > into this driver as well.
> >
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > Signed-off-by: Scott Wood <oss@buserror.net>
>
> Don't put my signoff on patches that I didn't put it on
> myself. Definitely don't put mine *after* yours on patches that were
> last modified by you.
>
> If you want to mention that the soc_id encoding was my suggestion, then
> do so explicitly.
>
[Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
http://patchwork.ozlabs.org/patch/649211/
So, let me just change the order in next version ?
Signed-off-by: Scott Wood <oss@buserror.net>
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > +/* SoC attribute definition for QorIQ platform */ static const struct
> > +soc_device_attribute qoriq_soc[] = { #ifdef CONFIG_PPC
> > + /*
> > + * Power Architecture-based SoCs T Series
> > + */
> > +
> > + /* SoC: T1024/T1014/T1023/T1013 Rev: 1.0 */
> > + { .soc_id = "svr:0x85400010,name:T1024,die:T1024",
> > + .revision = "1.0",
> > + },
> > + { .soc_id = "svr:0x85480010,name:T1024E,die:T1024",
> > + .revision = "1.0",
> > + },
>
> Revision could be computed from the low 8 bits of SVR (just as you do for
> unknown SVRs).
>
[Lu Yangbo-B47093] Yes, you're right. Will remove it here.
> We could move the die name into .family:
>
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
>
> I see you dropped svre (and the trailing comma), though I guess the vast
> majority of potential users will be looking at .family. In which case do
> we even need name? If we just make the soc_id be "svr:0xnnnnnnnn" then
> we could shrink the table to an svr+mask that identifies each die. I'd
> still want to keep the "svr:" even if we're giving up on the general
> tagging system, to make it clear what the number refers to, and to
> provide some defense against users who match only against soc_id rather
> than soc_id+family. Or we could go further and format soc_id as "QorIQ
> SVR 0xnnnnnnnn" so that soc_id-only matches are fully acceptable rather
> than just less dangerous.
[Lu Yangbo-B47093] It's a good idea to move die into .family I think.
In my opinion, it's better to keep svr and name in soc_id just like your suggestion above.
> {
> .soc_id = "svr:0x85490010,name:T1023E,",
> .family = "QorIQ T1024",
> }
The user probably don’t like to learn the svr value. What they want is just to match the soc they use.
It's convenient to use name+rev for them to match a soc.
Regarding shrinking the table, I think it's hard to use svr+mask. Because I find many platforms use different masks.
We couldn’t know the mask according svr value.
>
> > +static const struct soc_device_attribute *fsl_soc_device_match(
> > + unsigned int svr, const struct soc_device_attribute *matches) {
> > + char svr_match[50];
> > + int n;
> > +
> > + n = sprintf(svr_match, "*%08x*", svr);
>
> n = sprintf(svr_match, "svr:0x%08x,*", svr);
>
> (according to the current encoding)
>
[Lu Yangbo-B47093] Ok. Will do that.
> > +
> > + do {
> > + if (!matches->soc_id)
> > + return NULL;
> > + if (glob_match(svr_match, matches->soc_id))
> > + break;
> > + } while (matches++);
>
> Are you expecting "matches++" to ever evaluate as false?
[Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc array until getting true.
We need to get the name and die information defined in array.
>
> > + /* Register soc device */
> > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > + if (!soc_dev_attr) {
> > + ret = -ENOMEM;
> > + goto out_unmap;
> > + }
>
> Couldn't this be statically allocated?
[Lu Yangbo-B47093] Do you mean we define this struct statically ?
static struct soc_device_attribute soc_dev_attr;
>
> > +
> > + machine = of_flat_dt_get_machine_name();
> > + if (machine)
> > + soc_dev_attr->machine = kasprintf(GFP_KERNEL, "%s",
> > machine);
> > +
> > + soc_dev_attr->family = kasprintf(GFP_KERNEL, "QorIQ");
> > +
> > + svr = fsl_guts_get_svr();
> > + fsl_soc = fsl_soc_device_match(svr, qoriq_soc);
> > + if (fsl_soc) {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
> > + fsl_soc->soc_id);
>
> You can use kstrdup() if you're just copying the string as is.
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%s",
> > + fsl_soc->revision);
> > + } else {
> > + soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "0x%08x",
> > svr);
>
> kasprintf(GFP_KERNEL, "svr:0x%08x,", svr);
[Lu Yangbo-B47093] Sorry, will add that.
>
>
> > +
> > + soc_dev = soc_device_register(soc_dev_attr);
> > + if (IS_ERR(soc_dev)) {
> > + ret = -ENODEV;
>
> Why are you changing the error code?
[Lu Yangbo-B47093] What error code should we use ? :)
>
> > + goto out;
> > + } else {
>
> Unnecessary "else".
[Lu Yangbo-B47093] Oh.. Correct!
>
> > + pr_info("Detected: %s\n", soc_dev_attr->machine);
>
> Machine: %s
[Lu Yangbo-B47093] Ok. Will do that.
>
> > + pr_info("Detected SoC family: %s\n", soc_dev_attr->family);
> > + pr_info("Detected SoC ID: %s, revision: %s\n",
> > + soc_dev_attr->soc_id, soc_dev_attr->revision);
>
> s/Detected //g
[Lu Yangbo-B47093] Ok, will do that.
>
>
> > + }
> > + return 0;
> > +out:
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > +out_unmap:
> > + iounmap(guts->regs);
> > +out_free:
> > + kfree(guts);
>
> devm
[Lu Yangbo-B47093] What's the devm meaning here :)
>
> > +static int fsl_guts_remove(struct platform_device *dev) {
> > + kfree(soc_dev_attr->machine);
> > + kfree(soc_dev_attr->family);
> > + kfree(soc_dev_attr->soc_id);
> > + kfree(soc_dev_attr->revision);
> > + kfree(soc_dev_attr);
> > + soc_device_unregister(soc_dev);
> > + iounmap(guts->regs);
> > + kfree(guts);
> > + return 0;
> > +}
>
> Don't free the memory before you unregister the device that uses it (moot
> if you use devm).
[Lu Yangbo-B47093] The soc.c driver mentions that.
Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> >
> > +#ifdef CONFIG_FSL_GUTS
> > +unsigned int fsl_guts_get_svr(void);
> > +#endif
>
> Don't ifdef prototypes (unless you're going to provide a stub
> alternative).
[Lu Yangbo-B47093] Ok, will remove ifdef.
>
> -Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 23:25 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-12 23:25 UTC (permalink / raw)
To: Y.B. Lu, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
linux-i2c@vger.kernel.org, iommu@lists.linux-foundation.org,
netdev@vger.kernel.org, Mark Rutland, Rob Herring, Russell King,
Jochen Friedrich, Joerg Roedel, Claudiu Manoil, Bhupesh Sharma,
Qiang Zhao, Kumar Gala, Santosh Shilimkar, Leo Li, X.B. Xie
On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> Hi Scott,
>
> Thanks for your review :)
> See my comment inline.
>
> >
> > -----Original Message-----
> > From: Scott Wood [mailto:oss@buserror.net]
> > Sent: Friday, September 09, 2016 11:47 AM
> > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> > foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > >
> > > The global utilities block controls power management, I/O device
> > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > function selection for multiplexed signals,and clock control.
> > >
> > > This patch adds a driver to manage and access global utilities block.
> > > Initially only reading SVR and registering soc device are supported.
> > > Other guts accesses, such as reading RCW, should eventually be moved
> > > into this driver as well.
> > >
> > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > Signed-off-by: Scott Wood <oss@buserror.net>
> > Don't put my signoff on patches that I didn't put it on
> > myself. Definitely don't put mine *after* yours on patches that were
> > last modified by you.
> >
> > If you want to mention that the soc_id encoding was my suggestion, then
> > do so explicitly.
> >
> [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> http://patchwork.ozlabs.org/patch/649211/
>
> So, let me just change the order in next version ?
> Signed-off-by: Scott Wood <oss@buserror.net>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
No. This isn't my patch so my signoff shouldn't be on it.
> [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> In my opinion, it's better to keep svr and name in soc_id just like your
> suggestion above.
> >
> > {
> > .soc_id = "svr:0x85490010,name:T1023E,",
> > .family = "QorIQ T1024",
> > }
> The user probably don’t like to learn the svr value. What they want is just
> to match the soc they use.
> It's convenient to use name+rev for them to match a soc.
What the user should want 99% of the time is to match the die (plus revision),
not the soc.
> Regarding shrinking the table, I think it's hard to use svr+mask. Because I
> find many platforms use different masks.
> We couldn’t know the mask according svr value.
The mask would be part of the table:
{
{
.die = "T1024",
.svr = 0x85400000,
.mask = 0xfff00000,
},
{
.die = "T1040",
.svr = 0x85200000,
.mask = 0xfff00000,
},
{
.die = "LS1088A",
.svr = 0x87030000,
.mask = 0xffff0000,
},
...
}
There's a small risk that we get the mask wrong and a different die is created
that matches an existing table, but it doesn't seem too likely, and can easily
be fixed with a kernel update if it happens.
BTW, aren't ls2080a and ls2085a the same die? And is there no non-E version
of LS2080A/LS2040A?
> > > + do {
> > > + if (!matches->soc_id)
> > > + return NULL;
> > > + if (glob_match(svr_match, matches->soc_id))
> > > + break;
> > > + } while (matches++);
> > Are you expecting "matches++" to ever evaluate as false?
> [Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc
> array until getting true.
> We need to get the name and die information defined in array.
I'm not asking whether the glob_match will ever return true. I'm saying that
"matches++" will never become NULL.
> > > + /* Register soc device */
> > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > + if (!soc_dev_attr) {
> > > + ret = -ENOMEM;
> > > + goto out_unmap;
> > > + }
> > Couldn't this be statically allocated?
> [Lu Yangbo-B47093] Do you mean we define this struct statically ?
>
> static struct soc_device_attribute soc_dev_attr;
Yes.
> > > +
> > > + soc_dev = soc_device_register(soc_dev_attr);
> > > + if (IS_ERR(soc_dev)) {
> > > + ret = -ENODEV;
> > Why are you changing the error code?
> [Lu Yangbo-B47093] What error code should we use ? :)
ret = PTR_ERR(soc_dev);
+ }
> > > + return 0;
> > > +out:
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > +out_unmap:
> > > + iounmap(guts->regs);
> > > +out_free:
> > > + kfree(guts);
> > devm
> [Lu Yangbo-B47093] What's the devm meaning here :)
If you allocate these with devm_kzalloc(), devm_kasprintf(), devm_kstrdup(),
etc. then they will be freed automatically when the device is unbound.
>
> >
> >
> > >
> > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > + soc_device_unregister(soc_dev);
> > > + iounmap(guts->regs);
> > > + kfree(guts);
> > > + return 0;
> > > +}
> > Don't free the memory before you unregister the device that uses it (moot
> > if you use devm).
> [Lu Yangbo-B47093] The soc.c driver mentions that.
> Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
That comment is wrong. Freeing the memory first creates a race condition that
could result in accessing freed memory, if something accesses the soc device
in parallel with unbinding.
-Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 23:25 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-12 23:25 UTC (permalink / raw)
To: Y.B. Lu, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> Hi Scott,
>
> Thanks for your review :)
> See my comment inline.
>
> >
> > -----Original Message-----
> > From: Scott Wood [mailto:oss@buserror.net]
> > Sent: Friday, September 09, 2016 11:47 AM
> > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> > foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > >
> > > The global utilities block controls power management, I/O device
> > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > function selection for multiplexed signals,and clock control.
> > >
> > > This patch adds a driver to manage and access global utilities block.
> > > Initially only reading SVR and registering soc device are supported.
> > > Other guts accesses, such as reading RCW, should eventually be moved
> > > into this driver as well.
> > >
> > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > Signed-off-by: Scott Wood <oss@buserror.net>
> > Don't put my signoff on patches that I didn't put it on
> > myself. Definitely don't put mine *after* yours on patches that were
> > last modified by you.
> >
> > If you want to mention that the soc_id encoding was my suggestion, then
> > do so explicitly.
> >
> [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> http://patchwork.ozlabs.org/patch/649211/
>
> So, let me just change the order in next version ?
> Signed-off-by: Scott Wood <oss@buserror.net>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
No. This isn't my patch so my signoff shouldn't be on it.
> [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> In my opinion, it's better to keep svr and name in soc_id just like your
> suggestion above.
> >
> > {
> > .soc_id = "svr:0x85490010,name:T1023E,",
> > .family = "QorIQ T1024",
> > }
> The user probably don’t like to learn the svr value. What they want is just
> to match the soc they use.
> It's convenient to use name+rev for them to match a soc.
What the user should want 99% of the time is to match the die (plus revision),
not the soc.
> Regarding shrinking the table, I think it's hard to use svr+mask. Because I
> find many platforms use different masks.
> We couldn’t know the mask according svr value.
The mask would be part of the table:
{
{
.die = "T1024",
.svr = 0x85400000,
.mask = 0xfff00000,
},
{
.die = "T1040",
.svr = 0x85200000,
.mask = 0xfff00000,
},
{
.die = "LS1088A",
.svr = 0x87030000,
.mask = 0xffff0000,
},
...
}
There's a small risk that we get the mask wrong and a different die is created
that matches an existing table, but it doesn't seem too likely, and can easily
be fixed with a kernel update if it happens.
BTW, aren't ls2080a and ls2085a the same die? And is there no non-E version
of LS2080A/LS2040A?
> > > + do {
> > > + if (!matches->soc_id)
> > > + return NULL;
> > > + if (glob_match(svr_match, matches->soc_id))
> > > + break;
> > > + } while (matches++);
> > Are you expecting "matches++" to ever evaluate as false?
> [Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc
> array until getting true.
> We need to get the name and die information defined in array.
I'm not asking whether the glob_match will ever return true. I'm saying that
"matches++" will never become NULL.
> > > + /* Register soc device */
> > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > + if (!soc_dev_attr) {
> > > + ret = -ENOMEM;
> > > + goto out_unmap;
> > > + }
> > Couldn't this be statically allocated?
> [Lu Yangbo-B47093] Do you mean we define this struct statically ?
>
> static struct soc_device_attribute soc_dev_attr;
Yes.
> > > +
> > > + soc_dev = soc_device_register(soc_dev_attr);
> > > + if (IS_ERR(soc_dev)) {
> > > + ret = -ENODEV;
> > Why are you changing the error code?
> [Lu Yangbo-B47093] What error code should we use ? :)
ret = PTR_ERR(soc_dev);
+ }
> > > + return 0;
> > > +out:
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > +out_unmap:
> > > + iounmap(guts->regs);
> > > +out_free:
> > > + kfree(guts);
> > devm
> [Lu Yangbo-B47093] What's the devm meaning here :)
If you allocate these with devm_kzalloc(), devm_kasprintf(), devm_kstrdup(),
etc. then they will be freed automatically when the device is unbound.
>
> >
> >
> > >
> > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > + soc_device_unregister(soc_dev);
> > > + iounmap(guts->regs);
> > > + kfree(guts);
> > > + return 0;
> > > +}
> > Don't free the memory before you unregister the device that uses it (moot
> > if you use devm).
> [Lu Yangbo-B47093] The soc.c driver mentions that.
> Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
That comment is wrong. Freeing the memory first creates a race condition that
could result in accessing freed memory, if something accesses the soc device
in parallel with unbinding.
-Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 23:25 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-12 23:25 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> Hi Scott,
>
> Thanks for your review :)
> See my comment inline.
>
> >
> > -----Original Message-----
> > From: Scott Wood [mailto:oss at buserror.net]
> > Sent: Friday, September 09, 2016 11:47 AM
> > To: Y.B. Lu; linux-mmc at vger.kernel.org; ulf.hansson at linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev at lists.ozlabs.org; devicetree at vger.kernel.org; linux-arm-
> > kernel at lists.infradead.org; linux-kernel at vger.kernel.org; linux-
> > clk at vger.kernel.org; linux-i2c at vger.kernel.org; iommu at lists.linux-
> > foundation.org; netdev at vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > >
> > > The global utilities block controls power management, I/O device
> > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > function selection for multiplexed signals,and clock control.
> > >
> > > This patch adds a driver to manage and access global utilities block.
> > > Initially only reading SVR and registering soc device are supported.
> > > Other guts accesses, such as reading RCW, should eventually be moved
> > > into this driver as well.
> > >
> > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > Signed-off-by: Scott Wood <oss@buserror.net>
> > Don't put my signoff on patches that I didn't put it on
> > myself. ?Definitely don't put mine *after* yours on patches that were
> > last modified by you.
> >
> > If you want to mention that the soc_id encoding was my suggestion, then
> > do so explicitly.
> >
> [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> http://patchwork.ozlabs.org/patch/649211/
>
> So, let me just change the order in next version ?
> Signed-off-by: Scott Wood <oss@buserror.net>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
No. ?This isn't my patch so my signoff shouldn't be on it.
> [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> In my opinion, it's better to keep svr and name in soc_id just like your
> suggestion above.
> >
> > {
> > .soc_id = "svr:0x85490010,name:T1023E,",
> > .family = "QorIQ T1024",
> > }
> The user probably don?t like to learn the svr value. What they want is just
> to match the soc they use.
> It's convenient to use name+rev for them to match a soc.
What the user should want 99% of the time is to match the die (plus revision),
not the soc.
> Regarding shrinking the table, I think it's hard to use svr+mask. Because I
> find many platforms use different masks.
> We couldn?t know the mask according svr value.
The mask would be part of the table:
{
{
.die = "T1024",
.svr = 0x85400000,
.mask = 0xfff00000,
},
{
.die = "T1040",
.svr = 0x85200000,
.mask = 0xfff00000,
},
{
.die = "LS1088A",
.svr = 0x87030000,
.mask = 0xffff0000,
},
...
}
There's a small risk that we get the mask wrong and a different die is created
that matches an existing table, but it doesn't seem too likely, and can easily
be fixed with a kernel update if it happens.
BTW, aren't ls2080a and ls2085a the same die? ?And is there no non-E version
of LS2080A/LS2040A?
> > > + do {
> > > + if (!matches->soc_id)
> > > + return NULL;
> > > + if (glob_match(svr_match, matches->soc_id))
> > > + break;
> > > + } while (matches++);
> > Are you expecting "matches++" to ever evaluate as false?
> [Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc
> array until getting true.?
> We need to get the name and die information defined in array.
I'm not asking whether the glob_match will ever return true. ?I'm saying that
"matches++" will never become NULL.
> > > + /* Register soc device */
> > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > + if (!soc_dev_attr) {
> > > + ret = -ENOMEM;
> > > + goto out_unmap;
> > > + }
> > Couldn't this be statically allocated?
> [Lu Yangbo-B47093] Do you mean we define this struct statically ?
>
> static struct soc_device_attribute soc_dev_attr;
Yes.
> > > +
> > > + soc_dev = soc_device_register(soc_dev_attr);
> > > + if (IS_ERR(soc_dev)) {
> > > + ret = -ENODEV;
> > Why are you changing the error code?
> [Lu Yangbo-B47093] What error code should we use ? :)
ret = PTR_ERR(soc_dev);
+ }
> > > + return 0;
> > > +out:
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > +out_unmap:
> > > + iounmap(guts->regs);
> > > +out_free:
> > > + kfree(guts);
> > devm
> [Lu Yangbo-B47093] What's the devm meaning here :)
If you allocate these with devm_kzalloc(), devm_kasprintf(), devm_kstrdup(),
etc. then they will be freed automatically when the device is unbound.
> ?
> >
> >
> > >
> > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > + soc_device_unregister(soc_dev);
> > > + iounmap(guts->regs);
> > > + kfree(guts);
> > > + return 0;
> > > +}
> > Don't free the memory before you unregister the device that uses it (moot
> > if you use devm).
> [Lu Yangbo-B47093] The soc.c driver mentions that.
> Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
That comment is wrong. ?Freeing the memory first creates a race condition that
could result in accessing freed memory, if something accesses the soc device
in parallel with unbinding.
-Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-12 23:25 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-12 23:25 UTC (permalink / raw)
To: Y.B. Lu, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> Hi Scott,
>
> Thanks for your review :)
> See my comment inline.
>
> >
> > -----Original Message-----
> > From: Scott Wood [mailto:oss@buserror.net]
> > Sent: Friday, September 09, 2016 11:47 AM
> > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> > foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > >
> > > The global utilities block controls power management, I/O device
> > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > function selection for multiplexed signals,and clock control.
> > >
> > > This patch adds a driver to manage and access global utilities block.
> > > Initially only reading SVR and registering soc device are supported.
> > > Other guts accesses, such as reading RCW, should eventually be moved
> > > into this driver as well.
> > >
> > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > Signed-off-by: Scott Wood <oss@buserror.net>
> > Don't put my signoff on patches that I didn't put it on
> > myself. Definitely don't put mine *after* yours on patches that were
> > last modified by you.
> >
> > If you want to mention that the soc_id encoding was my suggestion, then
> > do so explicitly.
> >
> [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> http://patchwork.ozlabs.org/patch/649211/
>
> So, let me just change the order in next version ?
> Signed-off-by: Scott Wood <oss@buserror.net>
> Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
No. This isn't my patch so my signoff shouldn't be on it.
> [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> In my opinion, it's better to keep svr and name in soc_id just like your
> suggestion above.
> >
> > {
> > .soc_id = "svr:0x85490010,name:T1023E,",
> > .family = "QorIQ T1024",
> > }
> The user probably don’t like to learn the svr value. What they want is just
> to match the soc they use.
> It's convenient to use name+rev for them to match a soc.
What the user should want 99% of the time is to match the die (plus revision),
not the soc.
> Regarding shrinking the table, I think it's hard to use svr+mask. Because I
> find many platforms use different masks.
> We couldn’t know the mask according svr value.
The mask would be part of the table:
{
{
.die = "T1024",
.svr = 0x85400000,
.mask = 0xfff00000,
},
{
.die = "T1040",
.svr = 0x85200000,
.mask = 0xfff00000,
},
{
.die = "LS1088A",
.svr = 0x87030000,
.mask = 0xffff0000,
},
...
}
There's a small risk that we get the mask wrong and a different die is created
that matches an existing table, but it doesn't seem too likely, and can easily
be fixed with a kernel update if it happens.
BTW, aren't ls2080a and ls2085a the same die? And is there no non-E version
of LS2080A/LS2040A?
> > > + do {
> > > + if (!matches->soc_id)
> > > + return NULL;
> > > + if (glob_match(svr_match, matches->soc_id))
> > > + break;
> > > + } while (matches++);
> > Are you expecting "matches++" to ever evaluate as false?
> [Lu Yangbo-B47093] Yes, this is used to match the soc we use in qoriq_soc
> array until getting true.
> We need to get the name and die information defined in array.
I'm not asking whether the glob_match will ever return true. I'm saying that
"matches++" will never become NULL.
> > > + /* Register soc device */
> > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > + if (!soc_dev_attr) {
> > > + ret = -ENOMEM;
> > > + goto out_unmap;
> > > + }
> > Couldn't this be statically allocated?
> [Lu Yangbo-B47093] Do you mean we define this struct statically ?
>
> static struct soc_device_attribute soc_dev_attr;
Yes.
> > > +
> > > + soc_dev = soc_device_register(soc_dev_attr);
> > > + if (IS_ERR(soc_dev)) {
> > > + ret = -ENODEV;
> > Why are you changing the error code?
> [Lu Yangbo-B47093] What error code should we use ? :)
ret = PTR_ERR(soc_dev);
+ }
> > > + return 0;
> > > +out:
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > +out_unmap:
> > > + iounmap(guts->regs);
> > > +out_free:
> > > + kfree(guts);
> > devm
> [Lu Yangbo-B47093] What's the devm meaning here :)
If you allocate these with devm_kzalloc(), devm_kasprintf(), devm_kstrdup(),
etc. then they will be freed automatically when the device is unbound.
>
> >
> >
> > >
> > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > + kfree(soc_dev_attr->machine);
> > > + kfree(soc_dev_attr->family);
> > > + kfree(soc_dev_attr->soc_id);
> > > + kfree(soc_dev_attr->revision);
> > > + kfree(soc_dev_attr);
> > > + soc_device_unregister(soc_dev);
> > > + iounmap(guts->regs);
> > > + kfree(guts);
> > > + return 0;
> > > +}
> > Don't free the memory before you unregister the device that uses it (moot
> > if you use devm).
> [Lu Yangbo-B47093] The soc.c driver mentions that.
> Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
That comment is wrong. Freeing the memory first creates a race condition that
could result in accessing freed memory, if something accesses the soc device
in parallel with unbinding.
-Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 7:23 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-13 7:23 UTC (permalink / raw)
To: Scott Wood, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree@vger.kernel.org, Russell King,
Bhupesh Sharma, netdev@vger.kernel.org, Joerg Roedel,
Santosh Shilimkar, linux-kernel@vger.kernel.org, Jochen Friedrich,
X.B. Xie, iommu@lists.linux-foundation.org, Rob Herring,
linux-i2c@vger.kernel.org, Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev@lists.ozlabs.org, linux-clk@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, Qiang Zhao
PiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBsaW51eC1tbWMtb3duZXJAdmdl
ci5rZXJuZWwub3JnIFttYWlsdG86bGludXgtbW1jLQ0KPiBvd25lckB2Z2VyLmtlcm5lbC5vcmdd
IE9uIEJlaGFsZiBPZiBTY290dCBXb29kDQo+IFNlbnQ6IFR1ZXNkYXksIFNlcHRlbWJlciAxMywg
MjAxNiA3OjI1IEFNDQo+IFRvOiBZLkIuIEx1OyBsaW51eC1tbWNAdmdlci5rZXJuZWwub3JnOyB1
bGYuaGFuc3NvbkBsaW5hcm8ub3JnOyBBcm5kDQo+IEJlcmdtYW5uDQo+IENjOiBsaW51eHBwYy1k
ZXZAbGlzdHMub3psYWJzLm9yZzsgZGV2aWNldHJlZUB2Z2VyLmtlcm5lbC5vcmc7IGxpbnV4LWFy
bS0NCj4ga2VybmVsQGxpc3RzLmluZnJhZGVhZC5vcmc7IGxpbnV4LWtlcm5lbEB2Z2VyLmtlcm5l
bC5vcmc7IGxpbnV4LQ0KPiBjbGtAdmdlci5rZXJuZWwub3JnOyBsaW51eC1pMmNAdmdlci5rZXJu
ZWwub3JnOyBpb21tdUBsaXN0cy5saW51eC0NCj4gZm91bmRhdGlvbi5vcmc7IG5ldGRldkB2Z2Vy
Lmtlcm5lbC5vcmc7IE1hcmsgUnV0bGFuZDsgUm9iIEhlcnJpbmc7DQo+IFJ1c3NlbGwgS2luZzsg
Sm9jaGVuIEZyaWVkcmljaDsgSm9lcmcgUm9lZGVsOyBDbGF1ZGl1IE1hbm9pbDsgQmh1cGVzaA0K
PiBTaGFybWE7IFFpYW5nIFpoYW87IEt1bWFyIEdhbGE7IFNhbnRvc2ggU2hpbGlta2FyOyBMZW8g
TGk7IFguQi4gWGllDQo+IFN1YmplY3Q6IFJlOiBbdjExLCA1LzhdIHNvYzogZnNsOiBhZGQgR1VU
UyBkcml2ZXIgZm9yIFFvcklRIHBsYXRmb3Jtcw0KPiANCj4gT24gTW9uLCAyMDE2LTA5LTEyIGF0
IDA2OjM5ICswMDAwLCBZLkIuIEx1IHdyb3RlOg0KPiA+IEhpIFNjb3R0LA0KPiA+DQo+ID4gVGhh
bmtzIGZvciB5b3VyIHJldmlldyA6KQ0KPiA+IFNlZSBteSBjb21tZW50IGlubGluZS4NCj4gPg0K
PiA+ID4NCj4gPiA+IC0tLS0tT3JpZ2luYWwgTWVzc2FnZS0tLS0tDQo+ID4gPiBGcm9tOiBTY290
dCBXb29kIFttYWlsdG86b3NzQGJ1c2Vycm9yLm5ldF0NCj4gPiA+IFNlbnQ6IEZyaWRheSwgU2Vw
dGVtYmVyIDA5LCAyMDE2IDExOjQ3IEFNDQo+ID4gPiBUbzogWS5CLiBMdTsgbGludXgtbW1jQHZn
ZXIua2VybmVsLm9yZzsgdWxmLmhhbnNzb25AbGluYXJvLm9yZzsgQXJuZA0KPiA+ID4gQmVyZ21h
bm4NCj4gPiA+IENjOiBsaW51eHBwYy1kZXZAbGlzdHMub3psYWJzLm9yZzsgZGV2aWNldHJlZUB2
Z2VyLmtlcm5lbC5vcmc7DQo+ID4gPiBsaW51eC1hcm0tIGtlcm5lbEBsaXN0cy5pbmZyYWRlYWQu
b3JnOyBsaW51eC1rZXJuZWxAdmdlci5rZXJuZWwub3JnOw0KPiA+ID4gbGludXgtIGNsa0B2Z2Vy
Lmtlcm5lbC5vcmc7IGxpbnV4LWkyY0B2Z2VyLmtlcm5lbC5vcmc7DQo+ID4gPiBpb21tdUBsaXN0
cy5saW51eC0gZm91bmRhdGlvbi5vcmc7IG5ldGRldkB2Z2VyLmtlcm5lbC5vcmc7IE1hcmsNCj4g
PiA+IFJ1dGxhbmQ7IFJvYiBIZXJyaW5nOyBSdXNzZWxsIEtpbmc7IEpvY2hlbiBGcmllZHJpY2g7
IEpvZXJnIFJvZWRlbDsNCj4gPiA+IENsYXVkaXUgTWFub2lsOyBCaHVwZXNoIFNoYXJtYTsgUWlh
bmcgWmhhbzsgS3VtYXIgR2FsYTsgU2FudG9zaA0KPiA+ID4gU2hpbGlta2FyOyBMZW8gTGk7IFgu
Qi4gWGllDQo+ID4gPiBTdWJqZWN0OiBSZTogW3YxMSwgNS84XSBzb2M6IGZzbDogYWRkIEdVVFMg
ZHJpdmVyIGZvciBRb3JJUQ0KPiA+ID4gcGxhdGZvcm1zDQo+ID4gPg0KPiA+ID4gT24gVHVlLCAy
MDE2LTA5LTA2IGF0IDE2OjI4ICswODAwLCBZYW5nYm8gTHUgd3JvdGU6DQo+ID4gPiA+DQo+ID4g
PiA+IFRoZSBnbG9iYWwgdXRpbGl0aWVzIGJsb2NrIGNvbnRyb2xzIHBvd2VyIG1hbmFnZW1lbnQs
IEkvTyBkZXZpY2UNCj4gPiA+ID4gZW5hYmxpbmcsIHBvd2VyLW9ucmVzZXQoUE9SKSBjb25maWd1
cmF0aW9uIG1vbml0b3JpbmcsIGFsdGVybmF0ZQ0KPiA+ID4gPiBmdW5jdGlvbiBzZWxlY3Rpb24g
Zm9yIG11bHRpcGxleGVkIHNpZ25hbHMsYW5kIGNsb2NrIGNvbnRyb2wuDQo+ID4gPiA+DQo+ID4g
PiA+IFRoaXMgcGF0Y2ggYWRkcyBhIGRyaXZlciB0byBtYW5hZ2UgYW5kIGFjY2VzcyBnbG9iYWwg
dXRpbGl0aWVzDQo+IGJsb2NrLg0KPiA+ID4gPiBJbml0aWFsbHkgb25seSByZWFkaW5nIFNWUiBh
bmQgcmVnaXN0ZXJpbmcgc29jIGRldmljZSBhcmUgc3VwcG9ydGVkLg0KPiA+ID4gPiBPdGhlciBn
dXRzIGFjY2Vzc2VzLCBzdWNoIGFzIHJlYWRpbmcgUkNXLCBzaG91bGQgZXZlbnR1YWxseSBiZQ0K
PiA+ID4gPiBtb3ZlZCBpbnRvIHRoaXMgZHJpdmVyIGFzIHdlbGwuDQo+ID4gPiA+DQo+ID4gPiA+
IFNpZ25lZC1vZmYtYnk6IFlhbmdibyBMdSA8eWFuZ2JvLmx1QG54cC5jb20+DQo+ID4gPiA+IFNp
Z25lZC1vZmYtYnk6IFNjb3R0IFdvb2QgPG9zc0BidXNlcnJvci5uZXQ+DQo+ID4gPiBEb24ndCBw
dXQgbXkgc2lnbm9mZiBvbiBwYXRjaGVzIHRoYXQgSSBkaWRuJ3QgcHV0IGl0IG9uIG15c2VsZi4N
Cj4gPiA+IERlZmluaXRlbHkgZG9uJ3QgcHV0IG1pbmUgKmFmdGVyKiB5b3VycyBvbiBwYXRjaGVz
IHRoYXQgd2VyZSBsYXN0DQo+ID4gPiBtb2RpZmllZCBieSB5b3UuDQo+ID4gPg0KPiA+ID4gSWYg
eW91IHdhbnQgdG8gbWVudGlvbiB0aGF0IHRoZSBzb2NfaWQgZW5jb2Rpbmcgd2FzIG15IHN1Z2dl
c3Rpb24sDQo+ID4gPiB0aGVuIGRvIHNvIGV4cGxpY2l0bHkuDQo+ID4gPg0KPiA+IFtMdSBZYW5n
Ym8tQjQ3MDkzXSBJIGZvdW5kIHlvdXIgJ3NpZ25vZmYnIG9uIHRoaXMgcGF0Y2ggYXQgYmVsb3cg
bGluay4NCj4gPiBodHRwOi8vcGF0Y2h3b3JrLm96bGFicy5vcmcvcGF0Y2gvNjQ5MjExLw0KPiA+
DQo+ID4gU28sIGxldCBtZSBqdXN0IGNoYW5nZSB0aGUgb3JkZXIgaW4gbmV4dCB2ZXJzaW9uID8N
Cj4gPiBTaWduZWQtb2ZmLWJ5OiBTY290dCBXb29kIDxvc3NAYnVzZXJyb3IubmV0Pg0KPiA+IFNp
Z25lZC1vZmYtYnk6IFlhbmdibyBMdSA8eWFuZ2JvLmx1QG54cC5jb20+DQo+IA0KPiBOby4gwqBU
aGlzIGlzbid0IG15IHBhdGNoIHNvIG15IHNpZ25vZmYgc2hvdWxkbid0IGJlIG9uIGl0Lg0KDQpb
THUgWWFuZ2JvLUI0NzA5M10gT2ssIHdpbGwgcmVtb3ZlIGl0Lg0KDQo+IA0KPiA+IFtMdSBZYW5n
Ym8tQjQ3MDkzXSBJdCdzIGEgZ29vZCBpZGVhIHRvIG1vdmUgZGllIGludG8gLmZhbWlseSBJIHRo
aW5rLg0KPiA+IEluIG15IG9waW5pb24sIGl0J3MgYmV0dGVyIHRvIGtlZXAgc3ZyIGFuZCBuYW1l
IGluIHNvY19pZCBqdXN0IGxpa2UNCj4gPiB5b3VyIHN1Z2dlc3Rpb24gYWJvdmUuDQo+ID4gPg0K
PiA+ID4gCXsNCj4gPiA+IAkJLnNvY19pZCA9ICJzdnI6MHg4NTQ5MDAxMCxuYW1lOlQxMDIzRSwi
LA0KPiA+ID4gCQkuZmFtaWx5ID0gIlFvcklRIFQxMDI0IiwNCj4gPiA+IAl9DQo+ID4gVGhlIHVz
ZXIgcHJvYmFibHkgZG9u4oCZdCBsaWtlIHRvIGxlYXJuIHRoZSBzdnIgdmFsdWUuIFdoYXQgdGhl
eSB3YW50IGlzDQo+ID4ganVzdCB0byBtYXRjaCB0aGUgc29jIHRoZXkgdXNlLg0KPiA+IEl0J3Mg
Y29udmVuaWVudCB0byB1c2UgbmFtZStyZXYgZm9yIHRoZW0gdG8gbWF0Y2ggYSBzb2MuDQo+IA0K
PiBXaGF0IHRoZSB1c2VyIHNob3VsZCB3YW50IDk5JSBvZiB0aGUgdGltZSBpcyB0byBtYXRjaCB0
aGUgZGllIChwbHVzDQo+IHJldmlzaW9uKSwgbm90IHRoZSBzb2MuDQo+IA0KPiA+IFJlZ2FyZGlu
ZyBzaHJpbmtpbmcgdGhlIHRhYmxlLCBJIHRoaW5rIGl0J3MgaGFyZCB0byB1c2Ugc3ZyK21hc2su
DQo+ID4gQmVjYXVzZSBJIGZpbmQgbWFueSBwbGF0Zm9ybXMgdXNlIGRpZmZlcmVudCBtYXNrcy4N
Cj4gPiBXZSBjb3VsZG7igJl0IGtub3cgdGhlIG1hc2sgYWNjb3JkaW5nIHN2ciB2YWx1ZS4NCj4g
DQo+IFRoZSBtYXNrIHdvdWxkIGJlIHBhcnQgb2YgdGhlIHRhYmxlOg0KPiANCj4gew0KPiAJew0K
PiAJCS5kaWUgPSAiVDEwMjQiLA0KPiAJCS5zdnIgPSAweDg1NDAwMDAwLA0KPiAJCS5tYXNrID0g
MHhmZmYwMDAwMCwNCj4gCX0sDQo+IAl7DQo+IAkJLmRpZSA9ICJUMTA0MCIsDQo+IAkJLnN2ciA9
IDB4ODUyMDAwMDAsDQo+IAkJLm1hc2sgPSAweGZmZjAwMDAwLA0KPiAJfSwNCj4gCXsNCj4gCQku
ZGllID0gIkxTMTA4OEEiLA0KPiAJCS5zdnIgPSAweDg3MDMwMDAwLA0KPiAJCS5tYXNrID0gMHhm
ZmZmMDAwMCwNCj4gCX0sDQo+IAkuLi4NCj4gfQ0KPiANCj4gVGhlcmUncyBhIHNtYWxsIHJpc2sg
dGhhdCB3ZSBnZXQgdGhlIG1hc2sgd3JvbmcgYW5kIGEgZGlmZmVyZW50IGRpZSBpcw0KPiBjcmVh
dGVkIHRoYXQgbWF0Y2hlcyBhbiBleGlzdGluZyB0YWJsZSwgYnV0IGl0IGRvZXNuJ3Qgc2VlbSB0
b28gbGlrZWx5LA0KPiBhbmQgY2FuIGVhc2lseSBiZSBmaXhlZCB3aXRoIGEga2VybmVsIHVwZGF0
ZSBpZiBpdCBoYXBwZW5zLg0KPiANCg0KW0x1IFlhbmdiby1CNDcwOTNdIFlvdSBtZWFuIHdlIHdp
bGwgbm90IGRlZmluZSBzb2MgZGV2aWNlIGF0dHJpYnV0ZSBmb3IgZWFjaCBzb2MgYW5kIHdlIHdp
bGwgZGVmaW5lIGF0dHJpYnV0ZSBmb3IgZWFjaCBkaWUgaW5zdGVhZCwgcmlnaHQ/DQpJZiBzbywg
d2hlbiB3ZSB3YW50IHRvIG1hdGNoIGEgc3BlY2lmaWMgc29jIHdlIG5lZWQgdG8gdXNlIGl0cyBz
dnIgdmFsdWUgaW4gY29kZS4gSWYgaXQncyBhY2NlcHRhYmxlLCBJIGNhbiB0cnkgaW4gbmV4dCB2
ZXJzaW9uLg0KDQo+IEJUVywgYXJlbid0IGxzMjA4MGEgYW5kIGxzMjA4NWEgdGhlIHNhbWUgZGll
PyDCoEFuZCBpcyB0aGVyZSBubyBub24tRQ0KPiB2ZXJzaW9uIG9mIExTMjA4MEEvTFMyMDQwQT8N
Cg0KW0x1IFlhbmdiby1CNDcwOTNdIEkgY2hlY2tlZCBhbGwgdGhlIHN2ciB2YWx1ZXMgaW4gY2hp
cCBlcnJhdGEgZG9jICJSZXZpc2lvbiBsZXZlbCB0byBwYXJ0IG1hcmtpbmcgY3Jvc3MtcmVmZXJl
bmNlIiB0YWJsZS4NCkkgZm91bmQgbHMyMDgwYSBhbmQgbHMyMDg1YSB3ZXJlIGluIHR3byBzZXBh
cmF0ZSBkb2MuIEFuZCBJIGRpZG7igJl0IGZpbmQgbm9uLUUgdmVyc2lvbiBvZiBMUzIwODBBL0xT
MjA0MEEgaW4gY2hpcCBlcnJhdGEgZG9jLg0KRG8geW91IGtub3cgaXMgdGhlcmUgYW55IG90aGVy
IGRvYyB3ZSBjYW4gY29uZmlybSB0aGlzPw0KDQo+IA0KPiA+ID4gPiArCWRvIHsNCj4gPiA+ID4g
KwkJaWYgKCFtYXRjaGVzLT5zb2NfaWQpDQo+ID4gPiA+ICsJCQlyZXR1cm4gTlVMTDsNCj4gPiA+
ID4gKwkJaWYgKGdsb2JfbWF0Y2goc3ZyX21hdGNoLCBtYXRjaGVzLT5zb2NfaWQpKQ0KPiA+ID4g
PiArCQkJYnJlYWs7DQo+ID4gPiA+ICsJfSB3aGlsZSAobWF0Y2hlcysrKTsNCj4gPiA+IEFyZSB5
b3UgZXhwZWN0aW5nICJtYXRjaGVzKysiIHRvIGV2ZXIgZXZhbHVhdGUgYXMgZmFsc2U/DQo+ID4g
W0x1IFlhbmdiby1CNDcwOTNdIFllcywgdGhpcyBpcyB1c2VkIHRvIG1hdGNoIHRoZSBzb2Mgd2Ug
dXNlIGluDQo+ID4gcW9yaXFfc29jIGFycmF5IHVudGlsIGdldHRpbmcgdHJ1ZS4NCj4gPiBXZSBu
ZWVkIHRvIGdldCB0aGUgbmFtZSBhbmQgZGllIGluZm9ybWF0aW9uIGRlZmluZWQgaW4gYXJyYXku
DQo+IA0KPiBJJ20gbm90IGFza2luZyB3aGV0aGVyIHRoZSBnbG9iX21hdGNoIHdpbGwgZXZlciBy
ZXR1cm4gdHJ1ZS4gwqBJJ20gc2F5aW5nDQo+IHRoYXQgIm1hdGNoZXMrKyIgd2lsbCBuZXZlciBi
ZWNvbWUgTlVMTC4NCg0KW0x1IFlhbmdiby1CNDcwOTNdIFRoZSBtYXRjaGVzKysgd2lsbCBuZXZl
ciBiZWNvbWUgTlVMTCB3aGlsZSBpdCB3aWxsIHJldHVybiBOVUxMIGFmdGVyIG1hdGNoaW5nIGZv
ciBhbGwgdGhlIG1lbWJlcnMgaW4gYXJyYXkuDQoNCj4gDQo+ID4gPiA+ICsJLyogUmVnaXN0ZXIg
c29jIGRldmljZSAqLw0KPiA+ID4gPiArCXNvY19kZXZfYXR0ciA9IGt6YWxsb2Moc2l6ZW9mKCpz
b2NfZGV2X2F0dHIpLCBHRlBfS0VSTkVMKTsNCj4gPiA+ID4gKwlpZiAoIXNvY19kZXZfYXR0cikg
ew0KPiA+ID4gPiArCQlyZXQgPSAtRU5PTUVNOw0KPiA+ID4gPiArCQlnb3RvIG91dF91bm1hcDsN
Cj4gPiA+ID4gKwl9DQo+ID4gPiBDb3VsZG4ndCB0aGlzIGJlIHN0YXRpY2FsbHkgYWxsb2NhdGVk
Pw0KPiA+IFtMdSBZYW5nYm8tQjQ3MDkzXSBEbyB5b3UgbWVhbiB3ZSBkZWZpbmUgdGhpcyBzdHJ1
Y3Qgc3RhdGljYWxseSA/DQo+ID4NCj4gPiBzdGF0aWMgc3RydWN0IHNvY19kZXZpY2VfYXR0cmli
dXRlIHNvY19kZXZfYXR0cjsNCj4gDQo+IFllcy4NCj4gDQoNCltMdSBZYW5nYm8tQjQ3MDkzXSBJ
dCdzIG9rIHRvIGRlZmluZSBpdCBzdGF0aWNhbGx5LiBJcyB0aGVyZSBhbnkgbmVlZCB0byBkbyB0
aGF0Pw0KDQo+ID4gPiA+ICsNCj4gPiA+ID4gKwlzb2NfZGV2ID0gc29jX2RldmljZV9yZWdpc3Rl
cihzb2NfZGV2X2F0dHIpOw0KPiA+ID4gPiArCWlmIChJU19FUlIoc29jX2RldikpIHsNCj4gPiA+
ID4gKwkJcmV0ID0gLUVOT0RFVjsNCj4gPiA+IFdoeSBhcmUgeW91IGNoYW5naW5nIHRoZSBlcnJv
ciBjb2RlPw0KPiA+IFtMdSBZYW5nYm8tQjQ3MDkzXSBXaGF0IGVycm9yIGNvZGUgc2hvdWxkIHdl
IHVzZSA/IDopDQo+IA0KPiByZXQgPSBQVFJfRVJSKHNvY19kZXYpOw0KDQpbTHUgWWFuZ2JvLUI0
NzA5M10gT2suLiB3aWxsIGRvIHRoYXQuDQoNCj4gDQo+ICsJfQ0KPiA+ID4gPiArCXJldHVybiAw
Ow0KPiA+ID4gPiArb3V0Og0KPiA+ID4gPiArCWtmcmVlKHNvY19kZXZfYXR0ci0+bWFjaGluZSk7
DQo+ID4gPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+ID4gPiArCWtmcmVl
KHNvY19kZXZfYXR0ci0+c29jX2lkKTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHItPnJl
dmlzaW9uKTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ID4gPiArb3V0X3Vu
bWFwOg0KPiA+ID4gPiArCWlvdW5tYXAoZ3V0cy0+cmVncyk7DQo+ID4gPiA+ICtvdXRfZnJlZToN
Cj4gPiA+ID4gKwlrZnJlZShndXRzKTsNCj4gPiA+IGRldm0NCj4gPiBbTHUgWWFuZ2JvLUI0NzA5
M10gV2hhdCdzIHRoZSBkZXZtIG1lYW5pbmcgaGVyZSA6KQ0KPiANCj4gSWYgeW91IGFsbG9jYXRl
IHRoZXNlIHdpdGggZGV2bV9remFsbG9jKCksIGRldm1fa2FzcHJpbnRmKCksDQo+IGRldm1fa3N0
cmR1cCgpLCBldGMuIHRoZW4gdGhleSB3aWxsIGJlIGZyZWVkIGF1dG9tYXRpY2FsbHkgd2hlbiB0
aGUNCj4gZGV2aWNlIGlzIHVuYm91bmQuDQo+IA0KPiA+DQo+ID4gPg0KPiA+ID4NCj4gPiA+ID4N
Cj4gPiA+ID4gK3N0YXRpYyBpbnQgZnNsX2d1dHNfcmVtb3ZlKHN0cnVjdCBwbGF0Zm9ybV9kZXZp
Y2UgKmRldikgew0KPiA+ID4gPiArCWtmcmVlKHNvY19kZXZfYXR0ci0+bWFjaGluZSk7DQo+ID4g
PiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+ID4gPiArCWtmcmVlKHNvY19k
ZXZfYXR0ci0+c29jX2lkKTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHItPnJldmlzaW9u
KTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ID4gPiArCXNvY19kZXZpY2Vf
dW5yZWdpc3Rlcihzb2NfZGV2KTsNCj4gPiA+ID4gKwlpb3VubWFwKGd1dHMtPnJlZ3MpOw0KPiA+
ID4gPiArCWtmcmVlKGd1dHMpOw0KPiA+ID4gPiArCXJldHVybiAwOw0KPiA+ID4gPiArfQ0KPiA+
ID4gRG9uJ3QgZnJlZSB0aGUgbWVtb3J5IGJlZm9yZSB5b3UgdW5yZWdpc3RlciB0aGUgZGV2aWNl
IHRoYXQgdXNlcyBpdA0KPiA+ID4gKG1vb3QgaWYgeW91IHVzZSBkZXZtKS4NCj4gPiBbTHUgWWFu
Z2JvLUI0NzA5M10gVGhlIHNvYy5jIGRyaXZlciBtZW50aW9ucyB0aGF0Lg0KPiA+IEVuc3VyZSBz
b2NfZGV2LT5hdHRyIGlzIGZyZWVkIHByaW9yIHRvIGNhbGxpbmcgc29jX2RldmljZV91bnJlZ2lz
dGVyLg0KPiANCj4gVGhhdCBjb21tZW50IGlzIHdyb25nLiDCoEZyZWVpbmcgdGhlIG1lbW9yeSBm
aXJzdCBjcmVhdGVzIGEgcmFjZSBjb25kaXRpb24NCj4gdGhhdCBjb3VsZCByZXN1bHQgaW4gYWNj
ZXNzaW5nIGZyZWVkIG1lbW9yeSwgaWYgc29tZXRoaW5nIGFjY2Vzc2VzIHRoZQ0KPiBzb2MgZGV2
aWNlIGluIHBhcmFsbGVsIHdpdGggdW5iaW5kaW5nLg0KPiANCg0KW0x1IFlhbmdiby1CNDcwOTNd
IE9rLCB3aWxsIHVucmVnaXN0ZXIgdGhlIGRldmljZSBmaXJzdC4gVGhhbmtzLg0KDQo+IC1TY290
dA0KPiANCj4gLS0NCj4gVG8gdW5zdWJzY3JpYmUgZnJvbSB0aGlzIGxpc3Q6IHNlbmQgdGhlIGxp
bmUgInVuc3Vic2NyaWJlIGxpbnV4LW1tYyIgaW4NCj4gdGhlIGJvZHkgb2YgYSBtZXNzYWdlIHRv
IG1ham9yZG9tb0B2Z2VyLmtlcm5lbC5vcmcgTW9yZSBtYWpvcmRvbW8gaW5mbyBhdA0KPiBodHRw
Oi8vdmdlci5rZXJuZWwub3JnL21ham9yZG9tby1pbmZvLmh0bWwNCl9fX19fX19fX19fX19fX19f
X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCmxpbnV4LWFybS1rZXJuZWwgbWFpbGluZyBs
aXN0CmxpbnV4LWFybS1rZXJuZWxAbGlzdHMuaW5mcmFkZWFkLm9yZwpodHRwOi8vbGlzdHMuaW5m
cmFkZWFkLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xpbnV4LWFybS1rZXJuZWwK
^ permalink raw reply [flat|nested] 81+ messages in thread
* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 7:23 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-13 7:23 UTC (permalink / raw)
To: Scott Wood, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> owner@vger.kernel.org] On Behalf Of Scott Wood
> Sent: Tuesday, September 13, 2016 7:25 AM
> To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> > Hi Scott,
> >
> > Thanks for your review :)
> > See my comment inline.
> >
> > >
> > > -----Original Message-----
> > > From: Scott Wood [mailto:oss@buserror.net]
> > > Sent: Friday, September 09, 2016 11:47 AM
> > > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > > Bergmann
> > > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org;
> > > linux-arm- kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > > linux- clk@vger.kernel.org; linux-i2c@vger.kernel.org;
> > > iommu@lists.linux- foundation.org; netdev@vger.kernel.org; Mark
> > > Rutland; Rob Herring; Russell King; Jochen Friedrich; Joerg Roedel;
> > > Claudiu Manoil; Bhupesh Sharma; Qiang Zhao; Kumar Gala; Santosh
> > > Shilimkar; Leo Li; X.B. Xie
> > > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ
> > > platforms
> > >
> > > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > > >
> > > > The global utilities block controls power management, I/O device
> > > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > > function selection for multiplexed signals,and clock control.
> > > >
> > > > This patch adds a driver to manage and access global utilities
> block.
> > > > Initially only reading SVR and registering soc device are supported.
> > > > Other guts accesses, such as reading RCW, should eventually be
> > > > moved into this driver as well.
> > > >
> > > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > > Signed-off-by: Scott Wood <oss@buserror.net>
> > > Don't put my signoff on patches that I didn't put it on myself.
> > > Definitely don't put mine *after* yours on patches that were last
> > > modified by you.
> > >
> > > If you want to mention that the soc_id encoding was my suggestion,
> > > then do so explicitly.
> > >
> > [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> > http://patchwork.ozlabs.org/patch/649211/
> >
> > So, let me just change the order in next version ?
> > Signed-off-by: Scott Wood <oss@buserror.net>
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
>
> No. This isn't my patch so my signoff shouldn't be on it.
[Lu Yangbo-B47093] Ok, will remove it.
>
> > [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> > In my opinion, it's better to keep svr and name in soc_id just like
> > your suggestion above.
> > >
> > > {
> > > .soc_id = "svr:0x85490010,name:T1023E,",
> > > .family = "QorIQ T1024",
> > > }
> > The user probably don’t like to learn the svr value. What they want is
> > just to match the soc they use.
> > It's convenient to use name+rev for them to match a soc.
>
> What the user should want 99% of the time is to match the die (plus
> revision), not the soc.
>
> > Regarding shrinking the table, I think it's hard to use svr+mask.
> > Because I find many platforms use different masks.
> > We couldn’t know the mask according svr value.
>
> The mask would be part of the table:
>
> {
> {
> .die = "T1024",
> .svr = 0x85400000,
> .mask = 0xfff00000,
> },
> {
> .die = "T1040",
> .svr = 0x85200000,
> .mask = 0xfff00000,
> },
> {
> .die = "LS1088A",
> .svr = 0x87030000,
> .mask = 0xffff0000,
> },
> ...
> }
>
> There's a small risk that we get the mask wrong and a different die is
> created that matches an existing table, but it doesn't seem too likely,
> and can easily be fixed with a kernel update if it happens.
>
[Lu Yangbo-B47093] You mean we will not define soc device attribute for each soc and we will define attribute for each die instead, right?
If so, when we want to match a specific soc we need to use its svr value in code. If it's acceptable, I can try in next version.
> BTW, aren't ls2080a and ls2085a the same die? And is there no non-E
> version of LS2080A/LS2040A?
[Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision level to part marking cross-reference" table.
I found ls2080a and ls2085a were in two separate doc. And I didn’t find non-E version of LS2080A/LS2040A in chip errata doc.
Do you know is there any other doc we can confirm this?
>
> > > > + do {
> > > > + if (!matches->soc_id)
> > > > + return NULL;
> > > > + if (glob_match(svr_match, matches->soc_id))
> > > > + break;
> > > > + } while (matches++);
> > > Are you expecting "matches++" to ever evaluate as false?
> > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > qoriq_soc array until getting true.
> > We need to get the name and die information defined in array.
>
> I'm not asking whether the glob_match will ever return true. I'm saying
> that "matches++" will never become NULL.
[Lu Yangbo-B47093] The matches++ will never become NULL while it will return NULL after matching for all the members in array.
>
> > > > + /* Register soc device */
> > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > + if (!soc_dev_attr) {
> > > > + ret = -ENOMEM;
> > > > + goto out_unmap;
> > > > + }
> > > Couldn't this be statically allocated?
> > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> >
> > static struct soc_device_attribute soc_dev_attr;
>
> Yes.
>
[Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do that?
> > > > +
> > > > + soc_dev = soc_device_register(soc_dev_attr);
> > > > + if (IS_ERR(soc_dev)) {
> > > > + ret = -ENODEV;
> > > Why are you changing the error code?
> > [Lu Yangbo-B47093] What error code should we use ? :)
>
> ret = PTR_ERR(soc_dev);
[Lu Yangbo-B47093] Ok.. will do that.
>
> + }
> > > > + return 0;
> > > > +out:
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > +out_unmap:
> > > > + iounmap(guts->regs);
> > > > +out_free:
> > > > + kfree(guts);
> > > devm
> > [Lu Yangbo-B47093] What's the devm meaning here :)
>
> If you allocate these with devm_kzalloc(), devm_kasprintf(),
> devm_kstrdup(), etc. then they will be freed automatically when the
> device is unbound.
>
> >
> > >
> > >
> > > >
> > > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > + soc_device_unregister(soc_dev);
> > > > + iounmap(guts->regs);
> > > > + kfree(guts);
> > > > + return 0;
> > > > +}
> > > Don't free the memory before you unregister the device that uses it
> > > (moot if you use devm).
> > [Lu Yangbo-B47093] The soc.c driver mentions that.
> > Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> That comment is wrong. Freeing the memory first creates a race condition
> that could result in accessing freed memory, if something accesses the
> soc device in parallel with unbinding.
>
[Lu Yangbo-B47093] Ok, will unregister the device first. Thanks.
> -Scott
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 7:23 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-13 7:23 UTC (permalink / raw)
To: Scott Wood, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
linux-i2c@vger.kernel.org, iommu@lists.linux-foundation.org,
netdev@vger.kernel.org, Mark Rutland, Rob Herring, Russell King,
Jochen Friedrich, Joerg Roedel, Claudiu Manoil, Bhupesh Sharma,
Qiang Zhao, Kumar Gala, Santosh Shilimkar, Leo Li, X.B. Xie
> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> owner@vger.kernel.org] On Behalf Of Scott Wood
> Sent: Tuesday, September 13, 2016 7:25 AM
> To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> > Hi Scott,
> >
> > Thanks for your review :)
> > See my comment inline.
> >
> > >
> > > -----Original Message-----
> > > From: Scott Wood [mailto:oss@buserror.net]
> > > Sent: Friday, September 09, 2016 11:47 AM
> > > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > > Bergmann
> > > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org;
> > > linux-arm- kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > > linux- clk@vger.kernel.org; linux-i2c@vger.kernel.org;
> > > iommu@lists.linux- foundation.org; netdev@vger.kernel.org; Mark
> > > Rutland; Rob Herring; Russell King; Jochen Friedrich; Joerg Roedel;
> > > Claudiu Manoil; Bhupesh Sharma; Qiang Zhao; Kumar Gala; Santosh
> > > Shilimkar; Leo Li; X.B. Xie
> > > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ
> > > platforms
> > >
> > > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > > >
> > > > The global utilities block controls power management, I/O device
> > > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > > function selection for multiplexed signals,and clock control.
> > > >
> > > > This patch adds a driver to manage and access global utilities
> block.
> > > > Initially only reading SVR and registering soc device are supported.
> > > > Other guts accesses, such as reading RCW, should eventually be
> > > > moved into this driver as well.
> > > >
> > > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > > Signed-off-by: Scott Wood <oss@buserror.net>
> > > Don't put my signoff on patches that I didn't put it on myself.
> > > Definitely don't put mine *after* yours on patches that were last
> > > modified by you.
> > >
> > > If you want to mention that the soc_id encoding was my suggestion,
> > > then do so explicitly.
> > >
> > [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> > http://patchwork.ozlabs.org/patch/649211/
> >
> > So, let me just change the order in next version ?
> > Signed-off-by: Scott Wood <oss@buserror.net>
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
>
> No. This isn't my patch so my signoff shouldn't be on it.
[Lu Yangbo-B47093] Ok, will remove it.
>
> > [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> > In my opinion, it's better to keep svr and name in soc_id just like
> > your suggestion above.
> > >
> > > {
> > > .soc_id = "svr:0x85490010,name:T1023E,",
> > > .family = "QorIQ T1024",
> > > }
> > The user probably don’t like to learn the svr value. What they want is
> > just to match the soc they use.
> > It's convenient to use name+rev for them to match a soc.
>
> What the user should want 99% of the time is to match the die (plus
> revision), not the soc.
>
> > Regarding shrinking the table, I think it's hard to use svr+mask.
> > Because I find many platforms use different masks.
> > We couldn’t know the mask according svr value.
>
> The mask would be part of the table:
>
> {
> {
> .die = "T1024",
> .svr = 0x85400000,
> .mask = 0xfff00000,
> },
> {
> .die = "T1040",
> .svr = 0x85200000,
> .mask = 0xfff00000,
> },
> {
> .die = "LS1088A",
> .svr = 0x87030000,
> .mask = 0xffff0000,
> },
> ...
> }
>
> There's a small risk that we get the mask wrong and a different die is
> created that matches an existing table, but it doesn't seem too likely,
> and can easily be fixed with a kernel update if it happens.
>
[Lu Yangbo-B47093] You mean we will not define soc device attribute for each soc and we will define attribute for each die instead, right?
If so, when we want to match a specific soc we need to use its svr value in code. If it's acceptable, I can try in next version.
> BTW, aren't ls2080a and ls2085a the same die? And is there no non-E
> version of LS2080A/LS2040A?
[Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision level to part marking cross-reference" table.
I found ls2080a and ls2085a were in two separate doc. And I didn’t find non-E version of LS2080A/LS2040A in chip errata doc.
Do you know is there any other doc we can confirm this?
>
> > > > + do {
> > > > + if (!matches->soc_id)
> > > > + return NULL;
> > > > + if (glob_match(svr_match, matches->soc_id))
> > > > + break;
> > > > + } while (matches++);
> > > Are you expecting "matches++" to ever evaluate as false?
> > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > qoriq_soc array until getting true.
> > We need to get the name and die information defined in array.
>
> I'm not asking whether the glob_match will ever return true. I'm saying
> that "matches++" will never become NULL.
[Lu Yangbo-B47093] The matches++ will never become NULL while it will return NULL after matching for all the members in array.
>
> > > > + /* Register soc device */
> > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > + if (!soc_dev_attr) {
> > > > + ret = -ENOMEM;
> > > > + goto out_unmap;
> > > > + }
> > > Couldn't this be statically allocated?
> > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> >
> > static struct soc_device_attribute soc_dev_attr;
>
> Yes.
>
[Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do that?
> > > > +
> > > > + soc_dev = soc_device_register(soc_dev_attr);
> > > > + if (IS_ERR(soc_dev)) {
> > > > + ret = -ENODEV;
> > > Why are you changing the error code?
> > [Lu Yangbo-B47093] What error code should we use ? :)
>
> ret = PTR_ERR(soc_dev);
[Lu Yangbo-B47093] Ok.. will do that.
>
> + }
> > > > + return 0;
> > > > +out:
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > +out_unmap:
> > > > + iounmap(guts->regs);
> > > > +out_free:
> > > > + kfree(guts);
> > > devm
> > [Lu Yangbo-B47093] What's the devm meaning here :)
>
> If you allocate these with devm_kzalloc(), devm_kasprintf(),
> devm_kstrdup(), etc. then they will be freed automatically when the
> device is unbound.
>
> >
> > >
> > >
> > > >
> > > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > + soc_device_unregister(soc_dev);
> > > > + iounmap(guts->regs);
> > > > + kfree(guts);
> > > > + return 0;
> > > > +}
> > > Don't free the memory before you unregister the device that uses it
> > > (moot if you use devm).
> > [Lu Yangbo-B47093] The soc.c driver mentions that.
> > Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> That comment is wrong. Freeing the memory first creates a race condition
> that could result in accessing freed memory, if something accesses the
> soc device in parallel with unbinding.
>
[Lu Yangbo-B47093] Ok, will unregister the device first. Thanks.
> -Scott
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 7:23 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-13 7:23 UTC (permalink / raw)
To: linux-arm-kernel
> -----Original Message-----
> From: linux-mmc-owner at vger.kernel.org [mailto:linux-mmc-
> owner at vger.kernel.org] On Behalf Of Scott Wood
> Sent: Tuesday, September 13, 2016 7:25 AM
> To: Y.B. Lu; linux-mmc at vger.kernel.org; ulf.hansson at linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev at lists.ozlabs.org; devicetree at vger.kernel.org; linux-arm-
> kernel at lists.infradead.org; linux-kernel at vger.kernel.org; linux-
> clk at vger.kernel.org; linux-i2c at vger.kernel.org; iommu at lists.linux-
> foundation.org; netdev at vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> > Hi Scott,
> >
> > Thanks for your review :)
> > See my comment inline.
> >
> > >
> > > -----Original Message-----
> > > From: Scott Wood [mailto:oss at buserror.net]
> > > Sent: Friday, September 09, 2016 11:47 AM
> > > To: Y.B. Lu; linux-mmc at vger.kernel.org; ulf.hansson at linaro.org; Arnd
> > > Bergmann
> > > Cc: linuxppc-dev at lists.ozlabs.org; devicetree at vger.kernel.org;
> > > linux-arm- kernel at lists.infradead.org; linux-kernel at vger.kernel.org;
> > > linux- clk at vger.kernel.org; linux-i2c at vger.kernel.org;
> > > iommu at lists.linux- foundation.org; netdev at vger.kernel.org; Mark
> > > Rutland; Rob Herring; Russell King; Jochen Friedrich; Joerg Roedel;
> > > Claudiu Manoil; Bhupesh Sharma; Qiang Zhao; Kumar Gala; Santosh
> > > Shilimkar; Leo Li; X.B. Xie
> > > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ
> > > platforms
> > >
> > > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > > >
> > > > The global utilities block controls power management, I/O device
> > > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > > function selection for multiplexed signals,and clock control.
> > > >
> > > > This patch adds a driver to manage and access global utilities
> block.
> > > > Initially only reading SVR and registering soc device are supported.
> > > > Other guts accesses, such as reading RCW, should eventually be
> > > > moved into this driver as well.
> > > >
> > > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > > Signed-off-by: Scott Wood <oss@buserror.net>
> > > Don't put my signoff on patches that I didn't put it on myself.
> > > Definitely don't put mine *after* yours on patches that were last
> > > modified by you.
> > >
> > > If you want to mention that the soc_id encoding was my suggestion,
> > > then do so explicitly.
> > >
> > [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> > http://patchwork.ozlabs.org/patch/649211/
> >
> > So, let me just change the order in next version ?
> > Signed-off-by: Scott Wood <oss@buserror.net>
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
>
> No. ?This isn't my patch so my signoff shouldn't be on it.
[Lu Yangbo-B47093] Ok, will remove it.
>
> > [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> > In my opinion, it's better to keep svr and name in soc_id just like
> > your suggestion above.
> > >
> > > {
> > > .soc_id = "svr:0x85490010,name:T1023E,",
> > > .family = "QorIQ T1024",
> > > }
> > The user probably don?t like to learn the svr value. What they want is
> > just to match the soc they use.
> > It's convenient to use name+rev for them to match a soc.
>
> What the user should want 99% of the time is to match the die (plus
> revision), not the soc.
>
> > Regarding shrinking the table, I think it's hard to use svr+mask.
> > Because I find many platforms use different masks.
> > We couldn?t know the mask according svr value.
>
> The mask would be part of the table:
>
> {
> {
> .die = "T1024",
> .svr = 0x85400000,
> .mask = 0xfff00000,
> },
> {
> .die = "T1040",
> .svr = 0x85200000,
> .mask = 0xfff00000,
> },
> {
> .die = "LS1088A",
> .svr = 0x87030000,
> .mask = 0xffff0000,
> },
> ...
> }
>
> There's a small risk that we get the mask wrong and a different die is
> created that matches an existing table, but it doesn't seem too likely,
> and can easily be fixed with a kernel update if it happens.
>
[Lu Yangbo-B47093] You mean we will not define soc device attribute for each soc and we will define attribute for each die instead, right?
If so, when we want to match a specific soc we need to use its svr value in code. If it's acceptable, I can try in next version.
> BTW, aren't ls2080a and ls2085a the same die? ?And is there no non-E
> version of LS2080A/LS2040A?
[Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision level to part marking cross-reference" table.
I found ls2080a and ls2085a were in two separate doc. And I didn?t find non-E version of LS2080A/LS2040A in chip errata doc.
Do you know is there any other doc we can confirm this?
>
> > > > + do {
> > > > + if (!matches->soc_id)
> > > > + return NULL;
> > > > + if (glob_match(svr_match, matches->soc_id))
> > > > + break;
> > > > + } while (matches++);
> > > Are you expecting "matches++" to ever evaluate as false?
> > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > qoriq_soc array until getting true.
> > We need to get the name and die information defined in array.
>
> I'm not asking whether the glob_match will ever return true. ?I'm saying
> that "matches++" will never become NULL.
[Lu Yangbo-B47093] The matches++ will never become NULL while it will return NULL after matching for all the members in array.
>
> > > > + /* Register soc device */
> > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > + if (!soc_dev_attr) {
> > > > + ret = -ENOMEM;
> > > > + goto out_unmap;
> > > > + }
> > > Couldn't this be statically allocated?
> > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> >
> > static struct soc_device_attribute soc_dev_attr;
>
> Yes.
>
[Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do that?
> > > > +
> > > > + soc_dev = soc_device_register(soc_dev_attr);
> > > > + if (IS_ERR(soc_dev)) {
> > > > + ret = -ENODEV;
> > > Why are you changing the error code?
> > [Lu Yangbo-B47093] What error code should we use ? :)
>
> ret = PTR_ERR(soc_dev);
[Lu Yangbo-B47093] Ok.. will do that.
>
> + }
> > > > + return 0;
> > > > +out:
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > +out_unmap:
> > > > + iounmap(guts->regs);
> > > > +out_free:
> > > > + kfree(guts);
> > > devm
> > [Lu Yangbo-B47093] What's the devm meaning here :)
>
> If you allocate these with devm_kzalloc(), devm_kasprintf(),
> devm_kstrdup(), etc. then they will be freed automatically when the
> device is unbound.
>
> >
> > >
> > >
> > > >
> > > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > + soc_device_unregister(soc_dev);
> > > > + iounmap(guts->regs);
> > > > + kfree(guts);
> > > > + return 0;
> > > > +}
> > > Don't free the memory before you unregister the device that uses it
> > > (moot if you use devm).
> > [Lu Yangbo-B47093] The soc.c driver mentions that.
> > Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> That comment is wrong. ?Freeing the memory first creates a race condition
> that could result in accessing freed memory, if something accesses the
> soc device in parallel with unbinding.
>
[Lu Yangbo-B47093] Ok, will unregister the device first. Thanks.
> -Scott
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo at vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 81+ messages in thread* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 7:23 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-13 7:23 UTC (permalink / raw)
To: Scott Wood, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
linux-i2c@vger.kernel.org, iommu@lists.linux-foundation.org,
netdev@vger.kernel.org, Mark Rutland, Rob Herring, Russell King,
Jochen Friedrich, Joerg Roedel, Claudiu Manoil, Bhupesh Sharma,
Qiang Zhao, Kumar Gala, Santosh Shilimkar, Leo Li, X.B. Xie
PiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBsaW51eC1tbWMtb3duZXJAdmdl
ci5rZXJuZWwub3JnIFttYWlsdG86bGludXgtbW1jLQ0KPiBvd25lckB2Z2VyLmtlcm5lbC5vcmdd
IE9uIEJlaGFsZiBPZiBTY290dCBXb29kDQo+IFNlbnQ6IFR1ZXNkYXksIFNlcHRlbWJlciAxMywg
MjAxNiA3OjI1IEFNDQo+IFRvOiBZLkIuIEx1OyBsaW51eC1tbWNAdmdlci5rZXJuZWwub3JnOyB1
bGYuaGFuc3NvbkBsaW5hcm8ub3JnOyBBcm5kDQo+IEJlcmdtYW5uDQo+IENjOiBsaW51eHBwYy1k
ZXZAbGlzdHMub3psYWJzLm9yZzsgZGV2aWNldHJlZUB2Z2VyLmtlcm5lbC5vcmc7IGxpbnV4LWFy
bS0NCj4ga2VybmVsQGxpc3RzLmluZnJhZGVhZC5vcmc7IGxpbnV4LWtlcm5lbEB2Z2VyLmtlcm5l
bC5vcmc7IGxpbnV4LQ0KPiBjbGtAdmdlci5rZXJuZWwub3JnOyBsaW51eC1pMmNAdmdlci5rZXJu
ZWwub3JnOyBpb21tdUBsaXN0cy5saW51eC0NCj4gZm91bmRhdGlvbi5vcmc7IG5ldGRldkB2Z2Vy
Lmtlcm5lbC5vcmc7IE1hcmsgUnV0bGFuZDsgUm9iIEhlcnJpbmc7DQo+IFJ1c3NlbGwgS2luZzsg
Sm9jaGVuIEZyaWVkcmljaDsgSm9lcmcgUm9lZGVsOyBDbGF1ZGl1IE1hbm9pbDsgQmh1cGVzaA0K
PiBTaGFybWE7IFFpYW5nIFpoYW87IEt1bWFyIEdhbGE7IFNhbnRvc2ggU2hpbGlta2FyOyBMZW8g
TGk7IFguQi4gWGllDQo+IFN1YmplY3Q6IFJlOiBbdjExLCA1LzhdIHNvYzogZnNsOiBhZGQgR1VU
UyBkcml2ZXIgZm9yIFFvcklRIHBsYXRmb3Jtcw0KPiANCj4gT24gTW9uLCAyMDE2LTA5LTEyIGF0
IDA2OjM5ICswMDAwLCBZLkIuIEx1IHdyb3RlOg0KPiA+IEhpIFNjb3R0LA0KPiA+DQo+ID4gVGhh
bmtzIGZvciB5b3VyIHJldmlldyA6KQ0KPiA+IFNlZSBteSBjb21tZW50IGlubGluZS4NCj4gPg0K
PiA+ID4NCj4gPiA+IC0tLS0tT3JpZ2luYWwgTWVzc2FnZS0tLS0tDQo+ID4gPiBGcm9tOiBTY290
dCBXb29kIFttYWlsdG86b3NzQGJ1c2Vycm9yLm5ldF0NCj4gPiA+IFNlbnQ6IEZyaWRheSwgU2Vw
dGVtYmVyIDA5LCAyMDE2IDExOjQ3IEFNDQo+ID4gPiBUbzogWS5CLiBMdTsgbGludXgtbW1jQHZn
ZXIua2VybmVsLm9yZzsgdWxmLmhhbnNzb25AbGluYXJvLm9yZzsgQXJuZA0KPiA+ID4gQmVyZ21h
bm4NCj4gPiA+IENjOiBsaW51eHBwYy1kZXZAbGlzdHMub3psYWJzLm9yZzsgZGV2aWNldHJlZUB2
Z2VyLmtlcm5lbC5vcmc7DQo+ID4gPiBsaW51eC1hcm0tIGtlcm5lbEBsaXN0cy5pbmZyYWRlYWQu
b3JnOyBsaW51eC1rZXJuZWxAdmdlci5rZXJuZWwub3JnOw0KPiA+ID4gbGludXgtIGNsa0B2Z2Vy
Lmtlcm5lbC5vcmc7IGxpbnV4LWkyY0B2Z2VyLmtlcm5lbC5vcmc7DQo+ID4gPiBpb21tdUBsaXN0
cy5saW51eC0gZm91bmRhdGlvbi5vcmc7IG5ldGRldkB2Z2VyLmtlcm5lbC5vcmc7IE1hcmsNCj4g
PiA+IFJ1dGxhbmQ7IFJvYiBIZXJyaW5nOyBSdXNzZWxsIEtpbmc7IEpvY2hlbiBGcmllZHJpY2g7
IEpvZXJnIFJvZWRlbDsNCj4gPiA+IENsYXVkaXUgTWFub2lsOyBCaHVwZXNoIFNoYXJtYTsgUWlh
bmcgWmhhbzsgS3VtYXIgR2FsYTsgU2FudG9zaA0KPiA+ID4gU2hpbGlta2FyOyBMZW8gTGk7IFgu
Qi4gWGllDQo+ID4gPiBTdWJqZWN0OiBSZTogW3YxMSwgNS84XSBzb2M6IGZzbDogYWRkIEdVVFMg
ZHJpdmVyIGZvciBRb3JJUQ0KPiA+ID4gcGxhdGZvcm1zDQo+ID4gPg0KPiA+ID4gT24gVHVlLCAy
MDE2LTA5LTA2IGF0IDE2OjI4ICswODAwLCBZYW5nYm8gTHUgd3JvdGU6DQo+ID4gPiA+DQo+ID4g
PiA+IFRoZSBnbG9iYWwgdXRpbGl0aWVzIGJsb2NrIGNvbnRyb2xzIHBvd2VyIG1hbmFnZW1lbnQs
IEkvTyBkZXZpY2UNCj4gPiA+ID4gZW5hYmxpbmcsIHBvd2VyLW9ucmVzZXQoUE9SKSBjb25maWd1
cmF0aW9uIG1vbml0b3JpbmcsIGFsdGVybmF0ZQ0KPiA+ID4gPiBmdW5jdGlvbiBzZWxlY3Rpb24g
Zm9yIG11bHRpcGxleGVkIHNpZ25hbHMsYW5kIGNsb2NrIGNvbnRyb2wuDQo+ID4gPiA+DQo+ID4g
PiA+IFRoaXMgcGF0Y2ggYWRkcyBhIGRyaXZlciB0byBtYW5hZ2UgYW5kIGFjY2VzcyBnbG9iYWwg
dXRpbGl0aWVzDQo+IGJsb2NrLg0KPiA+ID4gPiBJbml0aWFsbHkgb25seSByZWFkaW5nIFNWUiBh
bmQgcmVnaXN0ZXJpbmcgc29jIGRldmljZSBhcmUgc3VwcG9ydGVkLg0KPiA+ID4gPiBPdGhlciBn
dXRzIGFjY2Vzc2VzLCBzdWNoIGFzIHJlYWRpbmcgUkNXLCBzaG91bGQgZXZlbnR1YWxseSBiZQ0K
PiA+ID4gPiBtb3ZlZCBpbnRvIHRoaXMgZHJpdmVyIGFzIHdlbGwuDQo+ID4gPiA+DQo+ID4gPiA+
IFNpZ25lZC1vZmYtYnk6IFlhbmdibyBMdSA8eWFuZ2JvLmx1QG54cC5jb20+DQo+ID4gPiA+IFNp
Z25lZC1vZmYtYnk6IFNjb3R0IFdvb2QgPG9zc0BidXNlcnJvci5uZXQ+DQo+ID4gPiBEb24ndCBw
dXQgbXkgc2lnbm9mZiBvbiBwYXRjaGVzIHRoYXQgSSBkaWRuJ3QgcHV0IGl0IG9uIG15c2VsZi4N
Cj4gPiA+IERlZmluaXRlbHkgZG9uJ3QgcHV0IG1pbmUgKmFmdGVyKiB5b3VycyBvbiBwYXRjaGVz
IHRoYXQgd2VyZSBsYXN0DQo+ID4gPiBtb2RpZmllZCBieSB5b3UuDQo+ID4gPg0KPiA+ID4gSWYg
eW91IHdhbnQgdG8gbWVudGlvbiB0aGF0IHRoZSBzb2NfaWQgZW5jb2Rpbmcgd2FzIG15IHN1Z2dl
c3Rpb24sDQo+ID4gPiB0aGVuIGRvIHNvIGV4cGxpY2l0bHkuDQo+ID4gPg0KPiA+IFtMdSBZYW5n
Ym8tQjQ3MDkzXSBJIGZvdW5kIHlvdXIgJ3NpZ25vZmYnIG9uIHRoaXMgcGF0Y2ggYXQgYmVsb3cg
bGluay4NCj4gPiBodHRwOi8vcGF0Y2h3b3JrLm96bGFicy5vcmcvcGF0Y2gvNjQ5MjExLw0KPiA+
DQo+ID4gU28sIGxldCBtZSBqdXN0IGNoYW5nZSB0aGUgb3JkZXIgaW4gbmV4dCB2ZXJzaW9uID8N
Cj4gPiBTaWduZWQtb2ZmLWJ5OiBTY290dCBXb29kIDxvc3NAYnVzZXJyb3IubmV0Pg0KPiA+IFNp
Z25lZC1vZmYtYnk6IFlhbmdibyBMdSA8eWFuZ2JvLmx1QG54cC5jb20+DQo+IA0KPiBOby4gwqBU
aGlzIGlzbid0IG15IHBhdGNoIHNvIG15IHNpZ25vZmYgc2hvdWxkbid0IGJlIG9uIGl0Lg0KDQpb
THUgWWFuZ2JvLUI0NzA5M10gT2ssIHdpbGwgcmVtb3ZlIGl0Lg0KDQo+IA0KPiA+IFtMdSBZYW5n
Ym8tQjQ3MDkzXSBJdCdzIGEgZ29vZCBpZGVhIHRvIG1vdmUgZGllIGludG8gLmZhbWlseSBJIHRo
aW5rLg0KPiA+IEluIG15IG9waW5pb24sIGl0J3MgYmV0dGVyIHRvIGtlZXAgc3ZyIGFuZCBuYW1l
IGluIHNvY19pZCBqdXN0IGxpa2UNCj4gPiB5b3VyIHN1Z2dlc3Rpb24gYWJvdmUuDQo+ID4gPg0K
PiA+ID4gCXsNCj4gPiA+IAkJLnNvY19pZCA9ICJzdnI6MHg4NTQ5MDAxMCxuYW1lOlQxMDIzRSwi
LA0KPiA+ID4gCQkuZmFtaWx5ID0gIlFvcklRIFQxMDI0IiwNCj4gPiA+IAl9DQo+ID4gVGhlIHVz
ZXIgcHJvYmFibHkgZG9u4oCZdCBsaWtlIHRvIGxlYXJuIHRoZSBzdnIgdmFsdWUuIFdoYXQgdGhl
eSB3YW50IGlzDQo+ID4ganVzdCB0byBtYXRjaCB0aGUgc29jIHRoZXkgdXNlLg0KPiA+IEl0J3Mg
Y29udmVuaWVudCB0byB1c2UgbmFtZStyZXYgZm9yIHRoZW0gdG8gbWF0Y2ggYSBzb2MuDQo+IA0K
PiBXaGF0IHRoZSB1c2VyIHNob3VsZCB3YW50IDk5JSBvZiB0aGUgdGltZSBpcyB0byBtYXRjaCB0
aGUgZGllIChwbHVzDQo+IHJldmlzaW9uKSwgbm90IHRoZSBzb2MuDQo+IA0KPiA+IFJlZ2FyZGlu
ZyBzaHJpbmtpbmcgdGhlIHRhYmxlLCBJIHRoaW5rIGl0J3MgaGFyZCB0byB1c2Ugc3ZyK21hc2su
DQo+ID4gQmVjYXVzZSBJIGZpbmQgbWFueSBwbGF0Zm9ybXMgdXNlIGRpZmZlcmVudCBtYXNrcy4N
Cj4gPiBXZSBjb3VsZG7igJl0IGtub3cgdGhlIG1hc2sgYWNjb3JkaW5nIHN2ciB2YWx1ZS4NCj4g
DQo+IFRoZSBtYXNrIHdvdWxkIGJlIHBhcnQgb2YgdGhlIHRhYmxlOg0KPiANCj4gew0KPiAJew0K
PiAJCS5kaWUgPSAiVDEwMjQiLA0KPiAJCS5zdnIgPSAweDg1NDAwMDAwLA0KPiAJCS5tYXNrID0g
MHhmZmYwMDAwMCwNCj4gCX0sDQo+IAl7DQo+IAkJLmRpZSA9ICJUMTA0MCIsDQo+IAkJLnN2ciA9
IDB4ODUyMDAwMDAsDQo+IAkJLm1hc2sgPSAweGZmZjAwMDAwLA0KPiAJfSwNCj4gCXsNCj4gCQku
ZGllID0gIkxTMTA4OEEiLA0KPiAJCS5zdnIgPSAweDg3MDMwMDAwLA0KPiAJCS5tYXNrID0gMHhm
ZmZmMDAwMCwNCj4gCX0sDQo+IAkuLi4NCj4gfQ0KPiANCj4gVGhlcmUncyBhIHNtYWxsIHJpc2sg
dGhhdCB3ZSBnZXQgdGhlIG1hc2sgd3JvbmcgYW5kIGEgZGlmZmVyZW50IGRpZSBpcw0KPiBjcmVh
dGVkIHRoYXQgbWF0Y2hlcyBhbiBleGlzdGluZyB0YWJsZSwgYnV0IGl0IGRvZXNuJ3Qgc2VlbSB0
b28gbGlrZWx5LA0KPiBhbmQgY2FuIGVhc2lseSBiZSBmaXhlZCB3aXRoIGEga2VybmVsIHVwZGF0
ZSBpZiBpdCBoYXBwZW5zLg0KPiANCg0KW0x1IFlhbmdiby1CNDcwOTNdIFlvdSBtZWFuIHdlIHdp
bGwgbm90IGRlZmluZSBzb2MgZGV2aWNlIGF0dHJpYnV0ZSBmb3IgZWFjaCBzb2MgYW5kIHdlIHdp
bGwgZGVmaW5lIGF0dHJpYnV0ZSBmb3IgZWFjaCBkaWUgaW5zdGVhZCwgcmlnaHQ/DQpJZiBzbywg
d2hlbiB3ZSB3YW50IHRvIG1hdGNoIGEgc3BlY2lmaWMgc29jIHdlIG5lZWQgdG8gdXNlIGl0cyBz
dnIgdmFsdWUgaW4gY29kZS4gSWYgaXQncyBhY2NlcHRhYmxlLCBJIGNhbiB0cnkgaW4gbmV4dCB2
ZXJzaW9uLg0KDQo+IEJUVywgYXJlbid0IGxzMjA4MGEgYW5kIGxzMjA4NWEgdGhlIHNhbWUgZGll
PyDCoEFuZCBpcyB0aGVyZSBubyBub24tRQ0KPiB2ZXJzaW9uIG9mIExTMjA4MEEvTFMyMDQwQT8N
Cg0KW0x1IFlhbmdiby1CNDcwOTNdIEkgY2hlY2tlZCBhbGwgdGhlIHN2ciB2YWx1ZXMgaW4gY2hp
cCBlcnJhdGEgZG9jICJSZXZpc2lvbiBsZXZlbCB0byBwYXJ0IG1hcmtpbmcgY3Jvc3MtcmVmZXJl
bmNlIiB0YWJsZS4NCkkgZm91bmQgbHMyMDgwYSBhbmQgbHMyMDg1YSB3ZXJlIGluIHR3byBzZXBh
cmF0ZSBkb2MuIEFuZCBJIGRpZG7igJl0IGZpbmQgbm9uLUUgdmVyc2lvbiBvZiBMUzIwODBBL0xT
MjA0MEEgaW4gY2hpcCBlcnJhdGEgZG9jLg0KRG8geW91IGtub3cgaXMgdGhlcmUgYW55IG90aGVy
IGRvYyB3ZSBjYW4gY29uZmlybSB0aGlzPw0KDQo+IA0KPiA+ID4gPiArCWRvIHsNCj4gPiA+ID4g
KwkJaWYgKCFtYXRjaGVzLT5zb2NfaWQpDQo+ID4gPiA+ICsJCQlyZXR1cm4gTlVMTDsNCj4gPiA+
ID4gKwkJaWYgKGdsb2JfbWF0Y2goc3ZyX21hdGNoLCBtYXRjaGVzLT5zb2NfaWQpKQ0KPiA+ID4g
PiArCQkJYnJlYWs7DQo+ID4gPiA+ICsJfSB3aGlsZSAobWF0Y2hlcysrKTsNCj4gPiA+IEFyZSB5
b3UgZXhwZWN0aW5nICJtYXRjaGVzKysiIHRvIGV2ZXIgZXZhbHVhdGUgYXMgZmFsc2U/DQo+ID4g
W0x1IFlhbmdiby1CNDcwOTNdIFllcywgdGhpcyBpcyB1c2VkIHRvIG1hdGNoIHRoZSBzb2Mgd2Ug
dXNlIGluDQo+ID4gcW9yaXFfc29jIGFycmF5IHVudGlsIGdldHRpbmcgdHJ1ZS4NCj4gPiBXZSBu
ZWVkIHRvIGdldCB0aGUgbmFtZSBhbmQgZGllIGluZm9ybWF0aW9uIGRlZmluZWQgaW4gYXJyYXku
DQo+IA0KPiBJJ20gbm90IGFza2luZyB3aGV0aGVyIHRoZSBnbG9iX21hdGNoIHdpbGwgZXZlciBy
ZXR1cm4gdHJ1ZS4gwqBJJ20gc2F5aW5nDQo+IHRoYXQgIm1hdGNoZXMrKyIgd2lsbCBuZXZlciBi
ZWNvbWUgTlVMTC4NCg0KW0x1IFlhbmdiby1CNDcwOTNdIFRoZSBtYXRjaGVzKysgd2lsbCBuZXZl
ciBiZWNvbWUgTlVMTCB3aGlsZSBpdCB3aWxsIHJldHVybiBOVUxMIGFmdGVyIG1hdGNoaW5nIGZv
ciBhbGwgdGhlIG1lbWJlcnMgaW4gYXJyYXkuDQoNCj4gDQo+ID4gPiA+ICsJLyogUmVnaXN0ZXIg
c29jIGRldmljZSAqLw0KPiA+ID4gPiArCXNvY19kZXZfYXR0ciA9IGt6YWxsb2Moc2l6ZW9mKCpz
b2NfZGV2X2F0dHIpLCBHRlBfS0VSTkVMKTsNCj4gPiA+ID4gKwlpZiAoIXNvY19kZXZfYXR0cikg
ew0KPiA+ID4gPiArCQlyZXQgPSAtRU5PTUVNOw0KPiA+ID4gPiArCQlnb3RvIG91dF91bm1hcDsN
Cj4gPiA+ID4gKwl9DQo+ID4gPiBDb3VsZG4ndCB0aGlzIGJlIHN0YXRpY2FsbHkgYWxsb2NhdGVk
Pw0KPiA+IFtMdSBZYW5nYm8tQjQ3MDkzXSBEbyB5b3UgbWVhbiB3ZSBkZWZpbmUgdGhpcyBzdHJ1
Y3Qgc3RhdGljYWxseSA/DQo+ID4NCj4gPiBzdGF0aWMgc3RydWN0IHNvY19kZXZpY2VfYXR0cmli
dXRlIHNvY19kZXZfYXR0cjsNCj4gDQo+IFllcy4NCj4gDQoNCltMdSBZYW5nYm8tQjQ3MDkzXSBJ
dCdzIG9rIHRvIGRlZmluZSBpdCBzdGF0aWNhbGx5LiBJcyB0aGVyZSBhbnkgbmVlZCB0byBkbyB0
aGF0Pw0KDQo+ID4gPiA+ICsNCj4gPiA+ID4gKwlzb2NfZGV2ID0gc29jX2RldmljZV9yZWdpc3Rl
cihzb2NfZGV2X2F0dHIpOw0KPiA+ID4gPiArCWlmIChJU19FUlIoc29jX2RldikpIHsNCj4gPiA+
ID4gKwkJcmV0ID0gLUVOT0RFVjsNCj4gPiA+IFdoeSBhcmUgeW91IGNoYW5naW5nIHRoZSBlcnJv
ciBjb2RlPw0KPiA+IFtMdSBZYW5nYm8tQjQ3MDkzXSBXaGF0IGVycm9yIGNvZGUgc2hvdWxkIHdl
IHVzZSA/IDopDQo+IA0KPiByZXQgPSBQVFJfRVJSKHNvY19kZXYpOw0KDQpbTHUgWWFuZ2JvLUI0
NzA5M10gT2suLiB3aWxsIGRvIHRoYXQuDQoNCj4gDQo+ICsJfQ0KPiA+ID4gPiArCXJldHVybiAw
Ow0KPiA+ID4gPiArb3V0Og0KPiA+ID4gPiArCWtmcmVlKHNvY19kZXZfYXR0ci0+bWFjaGluZSk7
DQo+ID4gPiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+ID4gPiArCWtmcmVl
KHNvY19kZXZfYXR0ci0+c29jX2lkKTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHItPnJl
dmlzaW9uKTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ID4gPiArb3V0X3Vu
bWFwOg0KPiA+ID4gPiArCWlvdW5tYXAoZ3V0cy0+cmVncyk7DQo+ID4gPiA+ICtvdXRfZnJlZToN
Cj4gPiA+ID4gKwlrZnJlZShndXRzKTsNCj4gPiA+IGRldm0NCj4gPiBbTHUgWWFuZ2JvLUI0NzA5
M10gV2hhdCdzIHRoZSBkZXZtIG1lYW5pbmcgaGVyZSA6KQ0KPiANCj4gSWYgeW91IGFsbG9jYXRl
IHRoZXNlIHdpdGggZGV2bV9remFsbG9jKCksIGRldm1fa2FzcHJpbnRmKCksDQo+IGRldm1fa3N0
cmR1cCgpLCBldGMuIHRoZW4gdGhleSB3aWxsIGJlIGZyZWVkIGF1dG9tYXRpY2FsbHkgd2hlbiB0
aGUNCj4gZGV2aWNlIGlzIHVuYm91bmQuDQo+IA0KPiA+DQo+ID4gPg0KPiA+ID4NCj4gPiA+ID4N
Cj4gPiA+ID4gK3N0YXRpYyBpbnQgZnNsX2d1dHNfcmVtb3ZlKHN0cnVjdCBwbGF0Zm9ybV9kZXZp
Y2UgKmRldikgew0KPiA+ID4gPiArCWtmcmVlKHNvY19kZXZfYXR0ci0+bWFjaGluZSk7DQo+ID4g
PiA+ICsJa2ZyZWUoc29jX2Rldl9hdHRyLT5mYW1pbHkpOw0KPiA+ID4gPiArCWtmcmVlKHNvY19k
ZXZfYXR0ci0+c29jX2lkKTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHItPnJldmlzaW9u
KTsNCj4gPiA+ID4gKwlrZnJlZShzb2NfZGV2X2F0dHIpOw0KPiA+ID4gPiArCXNvY19kZXZpY2Vf
dW5yZWdpc3Rlcihzb2NfZGV2KTsNCj4gPiA+ID4gKwlpb3VubWFwKGd1dHMtPnJlZ3MpOw0KPiA+
ID4gPiArCWtmcmVlKGd1dHMpOw0KPiA+ID4gPiArCXJldHVybiAwOw0KPiA+ID4gPiArfQ0KPiA+
ID4gRG9uJ3QgZnJlZSB0aGUgbWVtb3J5IGJlZm9yZSB5b3UgdW5yZWdpc3RlciB0aGUgZGV2aWNl
IHRoYXQgdXNlcyBpdA0KPiA+ID4gKG1vb3QgaWYgeW91IHVzZSBkZXZtKS4NCj4gPiBbTHUgWWFu
Z2JvLUI0NzA5M10gVGhlIHNvYy5jIGRyaXZlciBtZW50aW9ucyB0aGF0Lg0KPiA+IEVuc3VyZSBz
b2NfZGV2LT5hdHRyIGlzIGZyZWVkIHByaW9yIHRvIGNhbGxpbmcgc29jX2RldmljZV91bnJlZ2lz
dGVyLg0KPiANCj4gVGhhdCBjb21tZW50IGlzIHdyb25nLiDCoEZyZWVpbmcgdGhlIG1lbW9yeSBm
aXJzdCBjcmVhdGVzIGEgcmFjZSBjb25kaXRpb24NCj4gdGhhdCBjb3VsZCByZXN1bHQgaW4gYWNj
ZXNzaW5nIGZyZWVkIG1lbW9yeSwgaWYgc29tZXRoaW5nIGFjY2Vzc2VzIHRoZQ0KPiBzb2MgZGV2
aWNlIGluIHBhcmFsbGVsIHdpdGggdW5iaW5kaW5nLg0KPiANCg0KW0x1IFlhbmdiby1CNDcwOTNd
IE9rLCB3aWxsIHVucmVnaXN0ZXIgdGhlIGRldmljZSBmaXJzdC4gVGhhbmtzLg0KDQo+IC1TY290
dA0KPiANCj4gLS0NCj4gVG8gdW5zdWJzY3JpYmUgZnJvbSB0aGlzIGxpc3Q6IHNlbmQgdGhlIGxp
bmUgInVuc3Vic2NyaWJlIGxpbnV4LW1tYyIgaW4NCj4gdGhlIGJvZHkgb2YgYSBtZXNzYWdlIHRv
IG1ham9yZG9tb0B2Z2VyLmtlcm5lbC5vcmcgTW9yZSBtYWpvcmRvbW8gaW5mbyBhdA0KPiBodHRw
Oi8vdmdlci5rZXJuZWwub3JnL21ham9yZG9tby1pbmZvLmh0bWwNCg==
^ permalink raw reply [flat|nested] 81+ messages in thread
* RE: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 7:23 ` Y.B. Lu
0 siblings, 0 replies; 81+ messages in thread
From: Y.B. Lu @ 2016-09-13 7:23 UTC (permalink / raw)
To: Scott Wood, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> owner@vger.kernel.org] On Behalf Of Scott Wood
> Sent: Tuesday, September 13, 2016 7:25 AM
> To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> Bergmann
> Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
>
> On Mon, 2016-09-12 at 06:39 +0000, Y.B. Lu wrote:
> > Hi Scott,
> >
> > Thanks for your review :)
> > See my comment inline.
> >
> > >
> > > -----Original Message-----
> > > From: Scott Wood [mailto:oss@buserror.net]
> > > Sent: Friday, September 09, 2016 11:47 AM
> > > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > > Bergmann
> > > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org;
> > > linux-arm- kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > > linux- clk@vger.kernel.org; linux-i2c@vger.kernel.org;
> > > iommu@lists.linux- foundation.org; netdev@vger.kernel.org; Mark
> > > Rutland; Rob Herring; Russell King; Jochen Friedrich; Joerg Roedel;
> > > Claudiu Manoil; Bhupesh Sharma; Qiang Zhao; Kumar Gala; Santosh
> > > Shilimkar; Leo Li; X.B. Xie
> > > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ
> > > platforms
> > >
> > > On Tue, 2016-09-06 at 16:28 +0800, Yangbo Lu wrote:
> > > >
> > > > The global utilities block controls power management, I/O device
> > > > enabling, power-onreset(POR) configuration monitoring, alternate
> > > > function selection for multiplexed signals,and clock control.
> > > >
> > > > This patch adds a driver to manage and access global utilities
> block.
> > > > Initially only reading SVR and registering soc device are supported.
> > > > Other guts accesses, such as reading RCW, should eventually be
> > > > moved into this driver as well.
> > > >
> > > > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
> > > > Signed-off-by: Scott Wood <oss@buserror.net>
> > > Don't put my signoff on patches that I didn't put it on myself.
> > > Definitely don't put mine *after* yours on patches that were last
> > > modified by you.
> > >
> > > If you want to mention that the soc_id encoding was my suggestion,
> > > then do so explicitly.
> > >
> > [Lu Yangbo-B47093] I found your 'signoff' on this patch at below link.
> > http://patchwork.ozlabs.org/patch/649211/
> >
> > So, let me just change the order in next version ?
> > Signed-off-by: Scott Wood <oss@buserror.net>
> > Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
>
> No. This isn't my patch so my signoff shouldn't be on it.
[Lu Yangbo-B47093] Ok, will remove it.
>
> > [Lu Yangbo-B47093] It's a good idea to move die into .family I think.
> > In my opinion, it's better to keep svr and name in soc_id just like
> > your suggestion above.
> > >
> > > {
> > > .soc_id = "svr:0x85490010,name:T1023E,",
> > > .family = "QorIQ T1024",
> > > }
> > The user probably don’t like to learn the svr value. What they want is
> > just to match the soc they use.
> > It's convenient to use name+rev for them to match a soc.
>
> What the user should want 99% of the time is to match the die (plus
> revision), not the soc.
>
> > Regarding shrinking the table, I think it's hard to use svr+mask.
> > Because I find many platforms use different masks.
> > We couldn’t know the mask according svr value.
>
> The mask would be part of the table:
>
> {
> {
> .die = "T1024",
> .svr = 0x85400000,
> .mask = 0xfff00000,
> },
> {
> .die = "T1040",
> .svr = 0x85200000,
> .mask = 0xfff00000,
> },
> {
> .die = "LS1088A",
> .svr = 0x87030000,
> .mask = 0xffff0000,
> },
> ...
> }
>
> There's a small risk that we get the mask wrong and a different die is
> created that matches an existing table, but it doesn't seem too likely,
> and can easily be fixed with a kernel update if it happens.
>
[Lu Yangbo-B47093] You mean we will not define soc device attribute for each soc and we will define attribute for each die instead, right?
If so, when we want to match a specific soc we need to use its svr value in code. If it's acceptable, I can try in next version.
> BTW, aren't ls2080a and ls2085a the same die? And is there no non-E
> version of LS2080A/LS2040A?
[Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision level to part marking cross-reference" table.
I found ls2080a and ls2085a were in two separate doc. And I didn’t find non-E version of LS2080A/LS2040A in chip errata doc.
Do you know is there any other doc we can confirm this?
>
> > > > + do {
> > > > + if (!matches->soc_id)
> > > > + return NULL;
> > > > + if (glob_match(svr_match, matches->soc_id))
> > > > + break;
> > > > + } while (matches++);
> > > Are you expecting "matches++" to ever evaluate as false?
> > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > qoriq_soc array until getting true.
> > We need to get the name and die information defined in array.
>
> I'm not asking whether the glob_match will ever return true. I'm saying
> that "matches++" will never become NULL.
[Lu Yangbo-B47093] The matches++ will never become NULL while it will return NULL after matching for all the members in array.
>
> > > > + /* Register soc device */
> > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > + if (!soc_dev_attr) {
> > > > + ret = -ENOMEM;
> > > > + goto out_unmap;
> > > > + }
> > > Couldn't this be statically allocated?
> > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> >
> > static struct soc_device_attribute soc_dev_attr;
>
> Yes.
>
[Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do that?
> > > > +
> > > > + soc_dev = soc_device_register(soc_dev_attr);
> > > > + if (IS_ERR(soc_dev)) {
> > > > + ret = -ENODEV;
> > > Why are you changing the error code?
> > [Lu Yangbo-B47093] What error code should we use ? :)
>
> ret = PTR_ERR(soc_dev);
[Lu Yangbo-B47093] Ok.. will do that.
>
> + }
> > > > + return 0;
> > > > +out:
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > +out_unmap:
> > > > + iounmap(guts->regs);
> > > > +out_free:
> > > > + kfree(guts);
> > > devm
> > [Lu Yangbo-B47093] What's the devm meaning here :)
>
> If you allocate these with devm_kzalloc(), devm_kasprintf(),
> devm_kstrdup(), etc. then they will be freed automatically when the
> device is unbound.
>
> >
> > >
> > >
> > > >
> > > > +static int fsl_guts_remove(struct platform_device *dev) {
> > > > + kfree(soc_dev_attr->machine);
> > > > + kfree(soc_dev_attr->family);
> > > > + kfree(soc_dev_attr->soc_id);
> > > > + kfree(soc_dev_attr->revision);
> > > > + kfree(soc_dev_attr);
> > > > + soc_device_unregister(soc_dev);
> > > > + iounmap(guts->regs);
> > > > + kfree(guts);
> > > > + return 0;
> > > > +}
> > > Don't free the memory before you unregister the device that uses it
> > > (moot if you use devm).
> > [Lu Yangbo-B47093] The soc.c driver mentions that.
> > Ensure soc_dev->attr is freed prior to calling soc_device_unregister.
>
> That comment is wrong. Freeing the memory first creates a race condition
> that could result in accessing freed memory, if something accesses the
> soc device in parallel with unbinding.
>
[Lu Yangbo-B47093] Ok, will unregister the device first. Thanks.
> -Scott
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 22:24 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-13 22:24 UTC (permalink / raw)
To: Y.B. Lu, linux-mmc@vger.kernel.org, ulf.hansson@linaro.org,
Arnd Bergmann
Cc: linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
linux-i2c@vger.kernel.org, iommu@lists.linux-foundation.org,
netdev@vger.kernel.org, Mark Rutland, Rob Herring, Russell King,
Jochen Friedrich, Joerg Roedel, Claudiu Manoil, Bhupesh Sharma,
Qiang Zhao, Kumar Gala, Santosh Shilimkar, Leo Li, X.B. Xie
On Tue, 2016-09-13 at 07:23 +0000, Y.B. Lu wrote:
> >
> >
> > -----Original Message-----
> > From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> > owner@vger.kernel.org] On Behalf Of Scott Wood
> > Sent: Tuesday, September 13, 2016 7:25 AM
> > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> > foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > BTW, aren't ls2080a and ls2085a the same die? And is there no non-E
> > version of LS2080A/LS2040A?
> [Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision
> level to part marking cross-reference" table.
> I found ls2080a and ls2085a were in two separate doc. And I didn’t find non-
> E version of LS2080A/LS2040A in chip errata doc.
> Do you know is there any other doc we can confirm this?
No. Traditionally we've always had E and non-E versions of each chip, but I
have no knowledge of whether that has changed (I do note that the way that E-
status is indicated in SVR has changed).
But please label LS2080A and LS2085A as the same die (or provide strong
evidence that they are not).
>
> >
> >
> > >
> > > > >
> > > > > + do {
> > > > > + if (!matches->soc_id)
> > > > > + return NULL;
> > > > > + if (glob_match(svr_match, matches->soc_id))
> > > > > + break;
> > > > > + } while (matches++);
> > > > Are you expecting "matches++" to ever evaluate as false?
> > > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > > qoriq_soc array until getting true.
> > > We need to get the name and die information defined in array.
> > I'm not asking whether the glob_match will ever return true. I'm saying
> > that "matches++" will never become NULL.
> [Lu Yangbo-B47093] The matches++ will never become NULL while it will return
> NULL after matching for all the members in array.
"matches++" will never "return NULL". It's just an incrementing address. It
won't be null until you wrap around the address space, and even if the other
loop terminators never kicked in you'd crash long before that happens.
Please rewrite the loop as something like:
while (matches->soc_id) {
if (glob_match(...))
return matches;
matches++;
}
return NULL;
> > > > > + /* Register soc device */
> > > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > > + if (!soc_dev_attr) {
> > > > > + ret = -ENOMEM;
> > > > > + goto out_unmap;
> > > > > + }
> > > > Couldn't this be statically allocated?
> > > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> > >
> > > static struct soc_device_attribute soc_dev_attr;
> > Yes.
> >
> [Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do
> that?
It's simpler.
-Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 22:24 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-13 22:24 UTC (permalink / raw)
To: Y.B. Lu, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
On Tue, 2016-09-13 at 07:23 +0000, Y.B. Lu wrote:
> >
> >
> > -----Original Message-----
> > From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> > owner@vger.kernel.org] On Behalf Of Scott Wood
> > Sent: Tuesday, September 13, 2016 7:25 AM
> > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> > foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > BTW, aren't ls2080a and ls2085a the same die? And is there no non-E
> > version of LS2080A/LS2040A?
> [Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision
> level to part marking cross-reference" table.
> I found ls2080a and ls2085a were in two separate doc. And I didn’t find non-
> E version of LS2080A/LS2040A in chip errata doc.
> Do you know is there any other doc we can confirm this?
No. Traditionally we've always had E and non-E versions of each chip, but I
have no knowledge of whether that has changed (I do note that the way that E-
status is indicated in SVR has changed).
But please label LS2080A and LS2085A as the same die (or provide strong
evidence that they are not).
>
> >
> >
> > >
> > > > >
> > > > > + do {
> > > > > + if (!matches->soc_id)
> > > > > + return NULL;
> > > > > + if (glob_match(svr_match, matches->soc_id))
> > > > > + break;
> > > > > + } while (matches++);
> > > > Are you expecting "matches++" to ever evaluate as false?
> > > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > > qoriq_soc array until getting true.
> > > We need to get the name and die information defined in array.
> > I'm not asking whether the glob_match will ever return true. I'm saying
> > that "matches++" will never become NULL.
> [Lu Yangbo-B47093] The matches++ will never become NULL while it will return
> NULL after matching for all the members in array.
"matches++" will never "return NULL". It's just an incrementing address. It
won't be null until you wrap around the address space, and even if the other
loop terminators never kicked in you'd crash long before that happens.
Please rewrite the loop as something like:
while (matches->soc_id) {
if (glob_match(...))
return matches;
matches++;
}
return NULL;
> > > > > + /* Register soc device */
> > > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > > + if (!soc_dev_attr) {
> > > > > + ret = -ENOMEM;
> > > > > + goto out_unmap;
> > > > > + }
> > > > Couldn't this be statically allocated?
> > > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> > >
> > > static struct soc_device_attribute soc_dev_attr;
> > Yes.
> >
> [Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do
> that?
It's simpler.
-Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread* [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 22:24 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-13 22:24 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, 2016-09-13 at 07:23 +0000, Y.B. Lu wrote:
> >
> >
> > -----Original Message-----
> > From: linux-mmc-owner at vger.kernel.org [mailto:linux-mmc-
> > owner at vger.kernel.org] On Behalf Of Scott Wood
> > Sent: Tuesday, September 13, 2016 7:25 AM
> > To: Y.B. Lu; linux-mmc at vger.kernel.org; ulf.hansson at linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev at lists.ozlabs.org; devicetree at vger.kernel.org; linux-arm-
> > kernel at lists.infradead.org; linux-kernel at vger.kernel.org; linux-
> > clk at vger.kernel.org; linux-i2c at vger.kernel.org; iommu at lists.linux-
> > foundation.org; netdev at vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > BTW, aren't ls2080a and ls2085a the same die? ?And is there no non-E
> > version of LS2080A/LS2040A?
> [Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision
> level to part marking cross-reference" table.
> I found ls2080a and ls2085a were in two separate doc. And I didn?t find non-
> E version of LS2080A/LS2040A in chip errata doc.
> Do you know is there any other doc we can confirm this?
No. ?Traditionally we've always had E and non-E versions of each chip, but I
have no knowledge of whether that has changed (I do note that the way that E-
status is indicated in SVR has changed).
But please label LS2080A and LS2085A as the same die (or provide strong
evidence that they are not).
>
> >
> >
> > >
> > > > >
> > > > > + do {
> > > > > + if (!matches->soc_id)
> > > > > + return NULL;
> > > > > + if (glob_match(svr_match, matches->soc_id))
> > > > > + break;
> > > > > + } while (matches++);
> > > > Are you expecting "matches++" to ever evaluate as false?
> > > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > > qoriq_soc array until getting true.
> > > We need to get the name and die information defined in array.
> > I'm not asking whether the glob_match will ever return true. ?I'm saying
> > that "matches++" will never become NULL.
> [Lu Yangbo-B47093] The matches++ will never become NULL while it will return
> NULL after matching for all the members in array.
"matches++" will never "return NULL". ?It's just an incrementing address. ?It
won't be null until you wrap around the address space, and even if the other
loop terminators never kicked in you'd crash long before that happens.
Please rewrite the loop as something like:
while (matches->soc_id) {
if (glob_match(...))
return matches;
matches++;
}
return NULL;
> > > > > + /* Register soc device */
> > > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > > + if (!soc_dev_attr) {
> > > > > + ret = -ENOMEM;
> > > > > + goto out_unmap;
> > > > > + }
> > > > Couldn't this be statically allocated?
> > > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> > >
> > > static struct soc_device_attribute soc_dev_attr;
> > Yes.
> >
> [Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do
> that?
It's simpler.
-Scott
^ permalink raw reply [flat|nested] 81+ messages in thread* Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
@ 2016-09-13 22:24 ` Scott Wood
0 siblings, 0 replies; 81+ messages in thread
From: Scott Wood @ 2016-09-13 22:24 UTC (permalink / raw)
To: Y.B. Lu, linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Arnd Bergmann
Cc: Mark Rutland, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King, Bhupesh Sharma,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Santosh Shilimkar,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Jochen Friedrich, X.B. Xie,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
Rob Herring, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Claudiu Manoil, Kumar Gala, Leo Li,
linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
On Tue, 2016-09-13 at 07:23 +0000, Y.B. Lu wrote:
> >
> >
> > -----Original Message-----
> > From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> > owner@vger.kernel.org] On Behalf Of Scott Wood
> > Sent: Tuesday, September 13, 2016 7:25 AM
> > To: Y.B. Lu; linux-mmc@vger.kernel.org; ulf.hansson@linaro.org; Arnd
> > Bergmann
> > Cc: linuxppc-dev@lists.ozlabs.org; devicetree@vger.kernel.org; linux-arm-
> > kernel@lists.infradead.org; linux-kernel@vger.kernel.org; linux-
> > clk@vger.kernel.org; linux-i2c@vger.kernel.org; iommu@lists.linux-
> > foundation.org; netdev@vger.kernel.org; Mark Rutland; Rob Herring;
> > Russell King; Jochen Friedrich; Joerg Roedel; Claudiu Manoil; Bhupesh
> > Sharma; Qiang Zhao; Kumar Gala; Santosh Shilimkar; Leo Li; X.B. Xie
> > Subject: Re: [v11, 5/8] soc: fsl: add GUTS driver for QorIQ platforms
> >
> > BTW, aren't ls2080a and ls2085a the same die? And is there no non-E
> > version of LS2080A/LS2040A?
> [Lu Yangbo-B47093] I checked all the svr values in chip errata doc "Revision
> level to part marking cross-reference" table.
> I found ls2080a and ls2085a were in two separate doc. And I didn’t find non-
> E version of LS2080A/LS2040A in chip errata doc.
> Do you know is there any other doc we can confirm this?
No. Traditionally we've always had E and non-E versions of each chip, but I
have no knowledge of whether that has changed (I do note that the way that E-
status is indicated in SVR has changed).
But please label LS2080A and LS2085A as the same die (or provide strong
evidence that they are not).
>
> >
> >
> > >
> > > > >
> > > > > + do {
> > > > > + if (!matches->soc_id)
> > > > > + return NULL;
> > > > > + if (glob_match(svr_match, matches->soc_id))
> > > > > + break;
> > > > > + } while (matches++);
> > > > Are you expecting "matches++" to ever evaluate as false?
> > > [Lu Yangbo-B47093] Yes, this is used to match the soc we use in
> > > qoriq_soc array until getting true.
> > > We need to get the name and die information defined in array.
> > I'm not asking whether the glob_match will ever return true. I'm saying
> > that "matches++" will never become NULL.
> [Lu Yangbo-B47093] The matches++ will never become NULL while it will return
> NULL after matching for all the members in array.
"matches++" will never "return NULL". It's just an incrementing address. It
won't be null until you wrap around the address space, and even if the other
loop terminators never kicked in you'd crash long before that happens.
Please rewrite the loop as something like:
while (matches->soc_id) {
if (glob_match(...))
return matches;
matches++;
}
return NULL;
> > > > > + /* Register soc device */
> > > > > + soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
> > > > > + if (!soc_dev_attr) {
> > > > > + ret = -ENOMEM;
> > > > > + goto out_unmap;
> > > > > + }
> > > > Couldn't this be statically allocated?
> > > [Lu Yangbo-B47093] Do you mean we define this struct statically ?
> > >
> > > static struct soc_device_attribute soc_dev_attr;
> > Yes.
> >
> [Lu Yangbo-B47093] It's ok to define it statically. Is there any need to do
> that?
It's simpler.
-Scott
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply [flat|nested] 81+ messages in thread