* [PATCH] soc: brcmstb: consolidate initcall functions
@ 2026-03-25 17:46 justin.chen
2026-03-25 21:54 ` Florian Fainelli
2026-03-30 21:54 ` Florian Fainelli
0 siblings, 2 replies; 3+ messages in thread
From: justin.chen @ 2026-03-25 17:46 UTC (permalink / raw)
To: linux-arm-kernel
Cc: kees, bcm-kernel-feedback-list, florian.fainelli, Justin Chen
From: Justin Chen <justin.chen@broadcom.com>
Merge the separate early_initcall and arch_initcall functions into a
single early_initcall. This is possible thanks to commit 6e12db376b60
("base: soc: Allow early registration of a single SoC device"), which
allows soc_device_register() to be called during early_initcall by
deferring the actual registration until the soc_bus is ready.
Replace static family_id/product_id variables with a dynamically
allocated brcmstb_soc_info structure.
Signed-off-by: Justin Chen <justin.chen@broadcom.com>
---
drivers/soc/bcm/brcmstb/common.c | 88 +++++++++++++++++---------------
1 file changed, 46 insertions(+), 42 deletions(-)
diff --git a/drivers/soc/bcm/brcmstb/common.c b/drivers/soc/bcm/brcmstb/common.c
index 2da79bd42930..7be0374f5943 100644
--- a/drivers/soc/bcm/brcmstb/common.c
+++ b/drivers/soc/bcm/brcmstb/common.c
@@ -11,18 +11,22 @@
#include <linux/soc/brcmstb/brcmstb.h>
#include <linux/sys_soc.h>
-static u32 family_id;
-static u32 product_id;
+struct brcmstb_soc_info {
+ u32 family_id;
+ u32 product_id;
+};
+
+static struct brcmstb_soc_info *soc_info;
u32 brcmstb_get_family_id(void)
{
- return family_id;
+ return soc_info ? soc_info->family_id : 0;
}
EXPORT_SYMBOL(brcmstb_get_family_id);
u32 brcmstb_get_product_id(void)
{
- return product_id;
+ return soc_info ? soc_info->product_id : 0;
}
EXPORT_SYMBOL(brcmstb_get_product_id);
@@ -40,10 +44,12 @@ static const struct of_device_id sun_top_ctrl_match[] = {
{ }
};
-static int __init brcmstb_soc_device_early_init(void)
+static int __init brcmstb_soc_device_init(void)
{
+ struct soc_device_attribute *soc_dev_attr;
struct device_node *sun_top_ctrl;
void __iomem *sun_top_ctrl_base;
+ struct soc_device *soc_dev;
int ret = 0;
/* We could be on a multi-platform kernel, don't make this fatal but
@@ -51,63 +57,61 @@ static int __init brcmstb_soc_device_early_init(void)
*/
sun_top_ctrl = of_find_matching_node(NULL, sun_top_ctrl_match);
if (!sun_top_ctrl)
- return ret;
+ return 0;
sun_top_ctrl_base = of_iomap(sun_top_ctrl, 0);
if (!sun_top_ctrl_base) {
ret = -ENODEV;
- goto out;
+ goto out_put_node;
}
- family_id = readl(sun_top_ctrl_base);
- product_id = readl(sun_top_ctrl_base + 0x4);
- iounmap(sun_top_ctrl_base);
-out:
- of_node_put(sun_top_ctrl);
- return ret;
-}
-early_initcall(brcmstb_soc_device_early_init);
-
-static int __init brcmstb_soc_device_init(void)
-{
- struct soc_device_attribute *soc_dev_attr;
- struct device_node *sun_top_ctrl;
- struct soc_device *soc_dev;
- int ret = 0;
+ soc_info = kzalloc(sizeof(*soc_info), GFP_KERNEL);
+ if (!soc_info) {
+ ret = -ENOMEM;
+ goto out_unmap;
+ }
- /* We could be on a multi-platform kernel, don't make this fatal but
- * bail out early
- */
- sun_top_ctrl = of_find_matching_node(NULL, sun_top_ctrl_match);
- if (!sun_top_ctrl)
- return ret;
+ soc_info->family_id = readl(sun_top_ctrl_base);
+ soc_info->product_id = readl(sun_top_ctrl_base + 0x4);
soc_dev_attr = kzalloc_obj(*soc_dev_attr);
if (!soc_dev_attr) {
ret = -ENOMEM;
- goto out;
+ goto out_free_info;
}
soc_dev_attr->family = kasprintf(GFP_KERNEL, "%x",
- family_id >> 28 ?
- family_id >> 16 : family_id >> 8);
+ soc_info->family_id >> 28 ?
+ soc_info->family_id >> 16 : soc_info->family_id >> 8);
soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%x",
- product_id >> 28 ?
- product_id >> 16 : product_id >> 8);
+ soc_info->product_id >> 28 ?
+ soc_info->product_id >> 16 : soc_info->product_id >> 8);
soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c%d",
- ((product_id & 0xf0) >> 4) + 'A',
- product_id & 0xf);
+ ((soc_info->product_id & 0xf0) >> 4) + 'A',
+ soc_info->product_id & 0xf);
soc_dev = soc_device_register(soc_dev_attr);
if (IS_ERR(soc_dev)) {
- kfree(soc_dev_attr->family);
- kfree(soc_dev_attr->soc_id);
- kfree(soc_dev_attr->revision);
- kfree(soc_dev_attr);
- ret = -ENOMEM;
+ ret = PTR_ERR(soc_dev);
+ goto out_free_attr;
}
-out:
+
+ iounmap(sun_top_ctrl_base);
+ of_node_put(sun_top_ctrl);
+ return 0;
+
+out_free_attr:
+ kfree(soc_dev_attr->revision);
+ kfree(soc_dev_attr->soc_id);
+ kfree(soc_dev_attr->family);
+ kfree(soc_dev_attr);
+out_free_info:
+ kfree(soc_info);
+ soc_info = NULL;
+out_unmap:
+ iounmap(sun_top_ctrl_base);
+out_put_node:
of_node_put(sun_top_ctrl);
return ret;
}
-arch_initcall(brcmstb_soc_device_init);
+early_initcall(brcmstb_soc_device_init);
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] soc: brcmstb: consolidate initcall functions
2026-03-25 17:46 [PATCH] soc: brcmstb: consolidate initcall functions justin.chen
@ 2026-03-25 21:54 ` Florian Fainelli
2026-03-30 21:54 ` Florian Fainelli
1 sibling, 0 replies; 3+ messages in thread
From: Florian Fainelli @ 2026-03-25 21:54 UTC (permalink / raw)
To: justin.chen, linux-arm-kernel; +Cc: kees, bcm-kernel-feedback-list
On 3/25/26 10:46, justin.chen@broadcom.com wrote:
> From: Justin Chen <justin.chen@broadcom.com>
>
> Merge the separate early_initcall and arch_initcall functions into a
> single early_initcall. This is possible thanks to commit 6e12db376b60
> ("base: soc: Allow early registration of a single SoC device"), which
> allows soc_device_register() to be called during early_initcall by
> deferring the actual registration until the soc_bus is ready.
>
> Replace static family_id/product_id variables with a dynamically
> allocated brcmstb_soc_info structure.
>
> Signed-off-by: Justin Chen <justin.chen@broadcom.com>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Will wait a couple of days before applying it to the Broadcom SoC tree.
Thanks!
--
Florian
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] soc: brcmstb: consolidate initcall functions
2026-03-25 17:46 [PATCH] soc: brcmstb: consolidate initcall functions justin.chen
2026-03-25 21:54 ` Florian Fainelli
@ 2026-03-30 21:54 ` Florian Fainelli
1 sibling, 0 replies; 3+ messages in thread
From: Florian Fainelli @ 2026-03-30 21:54 UTC (permalink / raw)
To: bcm-kernel-feedback-list, justin.chen, linux-arm-kernel
Cc: Florian Fainelli, kees, florian.fainelli
From: Florian Fainelli <f.fainelli@gmail.com>
On Wed, 25 Mar 2026 10:46:19 -0700, justin.chen@broadcom.com wrote:
> From: Justin Chen <justin.chen@broadcom.com>
>
> Merge the separate early_initcall and arch_initcall functions into a
> single early_initcall. This is possible thanks to commit 6e12db376b60
> ("base: soc: Allow early registration of a single SoC device"), which
> allows soc_device_register() to be called during early_initcall by
> deferring the actual registration until the soc_bus is ready.
>
> Replace static family_id/product_id variables with a dynamically
> allocated brcmstb_soc_info structure.
>
> Signed-off-by: Justin Chen <justin.chen@broadcom.com>
> ---
Applied to https://github.com/Broadcom/stblinux/commits/drivers/next, thanks!
--
Florian
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-30 21:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-25 17:46 [PATCH] soc: brcmstb: consolidate initcall functions justin.chen
2026-03-25 21:54 ` Florian Fainelli
2026-03-30 21:54 ` Florian Fainelli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox