Skip to content

Commit

Permalink
add NOR flash series Zetta ZD25QXXX
Browse files Browse the repository at this point in the history
  • Loading branch information
McMCCRU committed Apr 2, 2024
1 parent 90e6601 commit 1f93d65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/spi_nor_flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,16 @@ static struct chip_info chips_data [] = {
{ "P25Q32H", 0x85, 0x60160000, 64 * 1024, 64, 0 },
{ "P25Q64H", 0x85, 0x60170000, 64 * 1024, 128, 0 },
{ "P25Q128H", 0x85, 0x60180000, 64 * 1024, 256, 0 },

/* Zetta */
{ "ZD25Q16A", 0xba, 0x40150000, 64 * 1024, 32, 0 },
{ "ZD25Q32A", 0xba, 0x40160000, 64 * 1024, 64, 0 },
{ "ZD25Q64A", 0xba, 0x40170000, 64 * 1024, 128, 0 },
{ "ZD25Q128A", 0xba, 0x40180000, 64 * 1024, 256, 0 },
{ "ZD25Q16B", 0xba, 0x32150000, 64 * 1024, 32, 0 },
{ "ZD25Q32B", 0xba, 0x32160000, 64 * 1024, 64, 0 },
{ "ZD25Q64B", 0xba, 0x32170000, 64 * 1024, 128, 0 },
{ "ZD25Q128B", 0xba, 0x32180000, 64 * 1024, 256, 0 },
};

/*
Expand Down

4 comments on commit 1f93d65

@Droid-MAX
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Droid-MAX
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some spi nor chips jedec id is wrong

@McMCCRU
Copy link
Owner Author

@McMCCRU McMCCRU commented on 1f93d65 Apr 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the list of tested chips that I am working with and it is correct.
Screenshot_20240403_121802
Screenshot_20240403_122239

@McMCCRU
Copy link
Owner Author

@McMCCRU McMCCRU commented on 1f93d65 Apr 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ZD25Q16B ID = BA 32 15, not BA 60 15, this is an error in the datasheet!
BA 60 15 is ZD25Q16C
Screenshot_20240403_124531
This is your error for ZD25Q16B!

Please sign in to comment.