mtd: spi-nor-ids: Add s28hl512t, s28hl01gt, and s28hs01gt IDs
authorTakahiro Kuwano <Takahiro.Kuwano@infineon.com>
Thu, 25 Aug 2022 07:48:48 +0000 (16:48 +0900)
committerJagan Teki <jagan@edgeble.ai>
Sun, 23 Oct 2022 05:14:43 +0000 (10:44 +0530)
Add flash info table entries for s28hl512gt, s28hl01gt, and s28hs01gt.
These devices have the same functionality as s28hs512t.

In spi-nor-core, use device ID byte to detect S28 family instead of
device name.

Signed-off-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
drivers/mtd/spi/spi-nor-core.c
drivers/mtd/spi/spi-nor-ids.c

index a787994..ec9b07a 100644 (file)
@@ -3835,6 +3835,13 @@ void spi_nor_set_fixups(struct spi_nor *nor)
                        nor->fixups = &s25hx_t_fixups;
                        break;
 
+#ifdef CONFIG_SPI_FLASH_S28HX_T
+               case 0x5a: /* S28HL (Octal, 3.3V) */
+               case 0x5b: /* S28HS (Octal, 1.8V) */
+                       nor->fixups = &s28hx_t_fixups;
+                       break;
+#endif
+
                default:
                        break;
                }
@@ -3845,11 +3852,6 @@ void spi_nor_set_fixups(struct spi_nor *nor)
                nor->fixups = &s25fl256l_fixups;
 #endif
 
-#ifdef CONFIG_SPI_FLASH_S28HX_T
-       if (!strcmp(nor->info->name, "s28hs512t"))
-               nor->fixups = &s28hx_t_fixups;
-#endif
-
 #ifdef CONFIG_SPI_FLASH_MT35XU
        if (!strcmp(nor->info->name, "mt35xu512aba"))
                nor->fixups = &mt35xu512aba_fixups;
index e146d24..5f8f3ec 100644 (file)
@@ -295,7 +295,10 @@ const struct flash_info spi_nor_ids[] = {
        { INFO6("s25hs02gt",  0x342b1c, 0x0f0090, 256 * 1024, 1024,
                SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
 #ifdef CONFIG_SPI_FLASH_S28HX_T
+       { INFO("s28hl512t",  0x345a1a,      0, 256 * 1024, 256, SPI_NOR_OCTAL_DTR_READ) },
+       { INFO("s28hl01gt",  0x345a1b,      0, 256 * 1024, 512, SPI_NOR_OCTAL_DTR_READ) },
        { INFO("s28hs512t",  0x345b1a,      0, 256 * 1024, 256, SPI_NOR_OCTAL_DTR_READ) },
+       { INFO("s28hs01gt",  0x345b1b,      0, 256 * 1024, 512, SPI_NOR_OCTAL_DTR_READ) },
 #endif
 #endif
 #ifdef CONFIG_SPI_FLASH_SST            /* SST */