]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
imx: hab: rename imx_sec_config_fuse_t to imx_fuse
authorPaul Geurts <paul.geurts@prodrive-technologies.com>
Fri, 1 Nov 2024 08:49:20 +0000 (09:49 +0100)
committerFabio Estevam <festevam@gmail.com>
Sat, 9 Nov 2024 11:53:36 +0000 (08:53 -0300)
The imx_sec_config_fuse_t structure is not specific to the sec_config
fuse, but can be used for all fuse words.

Rename the structure to a more generic name to be reused for other
fuses.

Signed-off-by: Paul Geurts <paul.geurts@prodrive-technologies.com>
arch/arm/include/asm/mach-imx/hab.h
arch/arm/mach-imx/hab.c
arch/arm/mach-imx/imx8m/soc.c
arch/arm/mach-imx/mx6/soc.c
arch/arm/mach-imx/mx7/soc.c
arch/arm/mach-imx/mx7ulp/soc.c

index 2abf28ea45bc6da08b050972584d2d6b36f04af8..9410f30eef2e0b7f64e4c7a4bcee45444ee5ed97 100644 (file)
@@ -132,13 +132,13 @@ enum hab_target {
        HAB_TGT_ANY             = 0x55,
 };
 
-struct imx_sec_config_fuse_t {
+struct imx_fuse {
        int bank;
        int word;
 };
 
 #if defined(CONFIG_IMX_HAB)
-extern struct imx_sec_config_fuse_t const imx_sec_config_fuse;
+extern struct imx_fuse const imx_sec_config_fuse;
 #endif
 
 /*Function prototype description*/
index a8107f46ae5ee630ea8c0c3229b1d393f7d3a737..7e4eaa4b14fba5c584ea9edd9ae32863ab853768 100644 (file)
@@ -870,8 +870,8 @@ static int validate_ivt(struct ivt *ivt_initial)
 
 bool imx_hab_is_enabled(void)
 {
-       struct imx_sec_config_fuse_t *fuse =
-               (struct imx_sec_config_fuse_t *)&imx_sec_config_fuse;
+       struct imx_fuse *fuse =
+               (struct imx_fuse *)&imx_sec_config_fuse;
        uint32_t reg;
        int ret;
 
index a72329ea919da4048e9e8509445c5a7ee4d85f06..e6c00e85412be72114134242f172e65c9dcddbcf 100644 (file)
@@ -37,7 +37,7 @@
 DECLARE_GLOBAL_DATA_PTR;
 
 #if defined(CONFIG_IMX_HAB)
-struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
+struct imx_fuse const imx_sec_config_fuse = {
        .bank = 1,
        .word = 3,
 };
index 9b40fe9235a4cb1c8c10aa463d4dd4fdbce5e0fb..e9dd33845635481a74c49f928c6aa59dc967fff8 100644 (file)
@@ -51,7 +51,7 @@ U_BOOT_DRVINFO(imx6_thermal) = {
 #endif
 
 #if defined(CONFIG_IMX_HAB)
-struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
+struct imx_fuse const imx_sec_config_fuse = {
        .bank = 0,
        .word = 6,
 };
index 1b891a2db3d407277c14d4b144a6479c031d126c..11e8ac066086eeda8f861947eefd483ffd6ae0e4 100644 (file)
@@ -127,7 +127,7 @@ static void isolate_resource(void)
 #endif
 
 #if defined(CONFIG_IMX_HAB)
-struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
+struct imx_fuse const imx_sec_config_fuse = {
        .bank = 1,
        .word = 3,
 };
index 980e02261563a8c2d6c56c1c3ddcdfd2b0527bc8..b50ad1cfa195dc0f9e1ebbd2b77f1d2a1ec2920a 100644 (file)
@@ -38,7 +38,7 @@
 static char *get_reset_cause(char *);
 
 #if defined(CONFIG_IMX_HAB)
-struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
+struct imx_fuse const imx_sec_config_fuse = {
        .bank = 29,
        .word = 6,
 };