help
          Enable support for the NVIDIA Tegra234 SoC.
 
+config ARCH_TEGRA_241_SOC
+       bool "NVIDIA Tegra241 SoC"
+       help
+         Enable support for the NVIDIA Tegra241 SoC.
+
 endif
 endif
 
 
                case TEGRA234:
                        fuse->soc = &tegra234_fuse_soc;
                        break;
+#endif
+#if defined(CONFIG_ARCH_TEGRA_241_SOC)
+               case TEGRA241:
+                       fuse->soc = &tegra241_fuse_soc;
+                       break;
 #endif
                default:
                        return dev_err_probe(&pdev->dev, -EINVAL, "Unsupported SoC: %02x\n", chip);
 
        .clk_suspend_on = false,
 };
 #endif
+
+#if defined(CONFIG_ARCH_TEGRA_241_SOC)
+static const struct tegra_fuse_info tegra241_fuse_info = {
+       .read = tegra30_fuse_read,
+       .size = 0x16008,
+       .spare = 0xcf0,
+};
+
+static const struct nvmem_keepout tegra241_fuse_keepouts[] = {
+       { .start = 0xc, .end = 0x1600c }
+};
+
+const struct tegra_fuse_soc tegra241_fuse_soc = {
+       .init = tegra30_fuse_init,
+       .info = &tegra241_fuse_info,
+       .keepouts = tegra241_fuse_keepouts,
+       .num_keepouts = ARRAY_SIZE(tegra241_fuse_keepouts),
+       .soc_attr_group = &tegra194_soc_attr_group,
+};
+#endif