Skip to content

Commit

Permalink
imxrt-flash: Add IS25LP256 NOR flash support
Browse files Browse the repository at this point in the history
Adds IS25LP256 and IS25WP256 flash to the supported devices.

JIRA: NIL-539
  • Loading branch information
gerard5 committed Mar 28, 2024
1 parent 90d34df commit 6c9baf3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion devices/flash-imxrt/nor/nor.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* i.MX RT NOR flash device driver
*
* Copyright 2021-2023 Phoenix Systems
* Copyright 2021-2024 Phoenix Systems
* Author: Gerard Swiderski
*
* This file is part of Phoenix-RTOS.
Expand Down Expand Up @@ -50,6 +50,8 @@ static const struct nor_info flashInfo[] = {
{ FLASH_ID(0x9d, 0x7016), "IS25WP032", 4 * 1024 * 1024, 0x100, 0x1000, NOR_CAPS_GENERIC, lutGeneric3Byte, NULL },
{ FLASH_ID(0x9d, 0x7017), "IS25WP064", 8 * 1024 * 1024, 0x100, 0x1000, NOR_CAPS_GENERIC, lutGeneric3Byte, NULL },
{ FLASH_ID(0x9d, 0x7018), "IS25WP128", 16 * 1024 * 1024, 0x100, 0x1000, NOR_CAPS_GENERIC, lutGeneric3Byte, NULL },
{ FLASH_ID(0x9d, 0x7019), "IS25WP256", 32 * 1024 * 1024, 0x100, 0x1000, NOR_CAPS_GENERIC, lutGeneric4Byte, NULL },
{ FLASH_ID(0x9d, 0x6019), "IS25LP256", 32 * 1024 * 1024, 0x100, 0x1000, NOR_CAPS_GENERIC, lutGeneric4Byte, NULL },

/* Micron */
{ FLASH_ID(0x20, 0xba19), "MT25QL256", 32 * 1024 * 1024, 0x100, 0x1000, NOR_CAPS_GENERIC | NOR_CAPS_EN4B, lutMicronMono, NULL },
Expand Down

0 comments on commit 6c9baf3

Please sign in to comment.