Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HydraBus hangs when using flashrom (fixed) #76

Closed
pedrib opened this issue Aug 30, 2017 · 15 comments
Closed

HydraBus hangs when using flashrom (fixed) #76

pedrib opened this issue Aug 30, 2017 · 15 comments
Assignees

Comments

@pedrib
Copy link
Contributor

pedrib commented Aug 30, 2017

HydraBus is supposed to be binary compatible with the Bus Pirate, so flashrom should work out of the box (flashrom has a bus pirate mode).

However, when trying to ID a chip using flashrom (the most basic operation before a read or write), flashrom just hangs:

tools > sudo flashrom -p buspirate_spi:dev=/dev/ttyACM0,spispeed=8M
flashrom v0.9.9-r1954 on Linux 4.4.76-grsec+ (x86_64)
flashrom is free software, get the source code at https://flashrom.org

Calibrating delay loop... OK.
<HANGS FOREVER>

Issue requested by "Balda" in IRC.

@pedrib
Copy link
Contributor Author

pedrib commented Aug 30, 2017

Using different speeds doesn't seem to make a difference.

@Baldanos Baldanos self-assigned this Aug 30, 2017
@Baldanos
Copy link
Collaborator

Baldanos commented Sep 12, 2017

Changes have to be made both in HydraFW and FlashROM.

You can test it on (https://github.com/Baldanos/flashrom)

@pedrib
Copy link
Contributor Author

pedrib commented Sep 12, 2017

Thanks!
I'm travelling at the moment, give me 10 days and I'll get back to you.

@bvernoux
Copy link
Member

Do you have any news about that ? any feedback is welcome

@dr0pd34d
Copy link

Hey there @Baldanos do you have a HydraBus?
Can you recommend it for firmware dumping and JTAG?
Does you fork work for reading flash memory correctly?

thank you :)

@afiskon
Copy link

afiskon commented Jul 4, 2018

Unfortunately the problem still exists:

eax@e733:~$ flashrom -p buspirate_spi:dev=/dev/ttyACM0,spispeed=1M --read flash.dump -VV
flashrom v1.0 on Linux 4.17.3-1-ARCH (x86_64)
flashrom is free software, get the source code at https://flashrom.org

flashrom was built with libpci 3.5.6, GCC 7.2.1 20171224, little endian
Command line (5 args): flashrom -p buspirate_spi:dev=/dev/ttyACM0,spispeed=1M --read flash.dump -VV
Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Initializing buspirate_spi programmer
(HANGS FOREVER)

BusPirate dumps the same SPI flash (AT45DB041D) with the same flashrom without any problems. The chip is connected properly, I can read device id on spi1:

spi1> [ 0x9F r:5 ]
/CS ENABLED
WRITE: 0x9F
READ: 0x1F 0x24 0x00 0x00 0x00 
/CS DISABLED

Here is an output of strace: https://afiskon.ru/s/29/b16555a066_strace.txt

I'm using relatively new HydraFW compiled from cb077a7 (Thu May 24 08:21:25 2018 +0200).

@Baldanos
Copy link
Collaborator

Baldanos commented Jul 7, 2018

Hi !

The official revision of Flashrom still does not includes our patch to support Hydrabus (see flashrom/flashrom#21)

I have a (outdated) fork here if you want to test : https://github.com/Baldanos/flashrom

Tell me if it works for you as well, so we can ask the PR to be merged.

@afiskon
Copy link

afiskon commented Jul 7, 2018

Hello @Baldanos,

The fork compiles and doesn't hang. However it doesn't recognize the flash chip:

No EEPROM/flash device found.
Note: flashrom can never write if the flash chip isn't found automatically.
Raw bitbang mode version 1
Shutdown completed.

If I specify chip explicitly it fails like this:

$ ./flashrom -f -c 'AT45DB041D' -p buspirate_spi:dev=/dev/ttyACM0,spispeed=1M   --read flash.dump -VV
flashrom v0.9.9-55-g7bb811f-dirty on Linux 4.17.3-1-ARCH (x86_64)
flashrom is free software, get the source code at https://flashrom.org

flashrom was built with libpci 3.5.6, GCC 8.1.1 20180531, little endian
Command line (8 args): ./flashrom -f -c AT45DB041D -p buspirate_spi:dev=/dev/ttyACM0,spispeed=1M --read flash.dump -VV
Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Initializing buspirate_spi programmer
Detected Hydrabus hardware
Invalid SPI speed, using default.
SPI speed is 21MHz
Raw bitbang mode version 1
Raw SPI mode version 1
The following protocols are supported: SPI.
Probing for Atmel AT45DB041D, 512 kB: RDID byte 0 parity violation. probe_spi_rdid_generic: id1 0x00, id2 0x00
No EEPROM/flash device found.
Force read (-f -r -c) requested, pretending the chip is there:
Probing for Atmel AT45DB041D, 512 kB: Assuming Atmel flash chip "AT45DB041D" (512 kB, SPI) on buspirate_spi.
Please note that forced reads most likely contain garbage.
Reading flash... spi_read_at45db: error sending read command!
Read operation failed!
FAILED.
Raw bitbang mode version 1
Shutdown completed.

Same story with AT45DB161E (which should be compatible with AT45DB161D supported in the fork).

The connection is OK. As previously I can read chip id.

@Baldanos
Copy link
Collaborator

Baldanos commented Jul 7, 2018

Thanks for the feedback.

Unfortunately, I don't have EEPROMs at hand to test, could you try to connect your EEPROM to SPI2 ?

CS:   PC1 (SW)
SCK:  PB10
MISO: PC2
MOSI: PC3

Long story short, we had to use SPI2 by default in binary SPI instead of SPI1 because of AVR programming uses very low speeds. See the Wiki for this : https://github.com/hydrabus/hydrafw/wiki/HydraFW-Binary-SPI-mode-guide#configure-spi-port-0b10000xyz

If that doesn't work, could you please run the same commands with the -VVV switch to flashrom and paste the results here ? I'll see if I can reproduce this next week.

@afiskon
Copy link

afiskon commented Jul 8, 2018

Hello @Baldanos,

If I connect the chip to SPI2 flashrom (the forked one) recognizes the chip however it can't dump it:

$ ./flashrom -p buspirate_spi:dev=/dev/ttyACM0 --read flash.dump
flashrom v0.9.9-55-g7bb811f-dirty on Linux 4.17.3-1-ARCH (x86_64)
flashrom is free software, get the source code at https://flashrom.org

Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Found Atmel flash chip "AT45DB041D" (528 kB, SPI) on buspirate_spi.
Reading flash... spi_read_at45db: error sending read command!
Read operation failed!
FAILED.

Here is a full -VVV log:

$ ./flashrom -p buspirate_spi:dev=/dev/ttyACM0 --read flash.dump -VVV
flashrom v0.9.9-55-g7bb811f-dirty on Linux 4.17.3-1-ARCH (x86_64)
flashrom is free software, get the source code at https://flashrom.org

flashrom was built with libpci 3.5.6, GCC 8.1.1 20180531, little endian
Command line (5 args): ./flashrom -p buspirate_spi:dev=/dev/ttyACM0 --read flash.dump -VVV
Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Initializing buspirate_spi programmer
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 0, read 4 , receiving 0x42 0x42 0x49 0x4f
buspirate_sendrecv: write 1, read 6 Sending 0x0f, receiving 0x31 0x48 0x79 0x64 0x72 0x61
Detected Hydrabus hardware
SPI speed is 21MHz
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 0, read 4 , receiving 0x62 0x75 0x73 0x0d
buspirate_sendrecv: write 0, read 1 , receiving 0x0a
buspirate_sendrecv: write 0, read 1 , receiving 0x42
buspirate_sendrecv: write 0, read 1 , receiving 0x42
buspirate_sendrecv: write 0, read 1 , receiving 0x49
buspirate_sendrecv: write 0, read 1 , receiving 0x4f
buspirate_sendrecv: write 0, read 1 , receiving 0x31
Raw bitbang mode version 1
buspirate_sendrecv: write 1, read 0 Sending 0x01
buspirate_sendrecv: write 0, read 3 , receiving 0x53 0x50 0x49
buspirate_sendrecv: write 0, read 1 , receiving 0x31
Raw SPI mode version 1
buspirate_sendrecv: write 1, read 1 Sending 0x4b, receiving 0x01
buspirate_sendrecv: write 1, read 1 Sending 0x67, receiving 0x01
buspirate_sendrecv: write 1, read 1 Sending 0x8a, receiving 0x01
buspirate_sendrecv: write 1, read 1 Sending 0x03, receiving 0x01
The following protocols are supported: SPI.
Probing for AMIC A25L05PT, 64 kB: programmer_map_flash_region: mapping A25L05PT from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L05PU, 64 kB: programmer_map_flash_region: mapping A25L05PU from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L10PT, 128 kB: programmer_map_flash_region: mapping A25L10PT from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L10PU, 128 kB: programmer_map_flash_region: mapping A25L10PU from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L20PT, 256 kB: programmer_map_flash_region: mapping A25L20PT from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L20PU, 256 kB: programmer_map_flash_region: mapping A25L20PU from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L40PT, 512 kB: programmer_map_flash_region: mapping A25L40PT from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L40PU, 512 kB: programmer_map_flash_region: mapping A25L40PU from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L80P, 1024 kB: programmer_map_flash_region: mapping A25L80P from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L16PT, 2048 kB: programmer_map_flash_region: mapping A25L16PT from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L16PU, 2048 kB: programmer_map_flash_region: mapping A25L16PU from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L512, 64 kB: programmer_map_flash_region: mapping A25L512 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L010, 128 kB: programmer_map_flash_region: mapping A25L010 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L020, 256 kB: programmer_map_flash_region: mapping A25L020 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L040, 512 kB: programmer_map_flash_region: mapping A25L040 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L080, 1024 kB: programmer_map_flash_region: mapping A25L080 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L016, 2048 kB: programmer_map_flash_region: mapping A25L016 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25L032, 4096 kB: programmer_map_flash_region: mapping A25L032 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25LQ16, 2048 kB: programmer_map_flash_region: mapping A25LQ16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25LQ032/A25LQ32A, 4096 kB: programmer_map_flash_region: mapping A25LQ032/A25LQ32A from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for AMIC A25LQ64, 8192 kB: programmer_map_flash_region: mapping A25LQ64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF021, 256 kB: programmer_map_flash_region: mapping AT25DF021 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF041A, 512 kB: programmer_map_flash_region: mapping AT25DF041A from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF081, 1024 kB: programmer_map_flash_region: mapping AT25DF081 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF081A, 1024 kB: programmer_map_flash_region: mapping AT25DF081A from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF161, 2048 kB: programmer_map_flash_region: mapping AT25DF161 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF321, 4096 kB: programmer_map_flash_region: mapping AT25DF321 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF321A, 4096 kB: programmer_map_flash_region: mapping AT25DF321A from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DF641(A), 8192 kB: programmer_map_flash_region: mapping AT25DF641(A) from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DL081, 1024 kB: programmer_map_flash_region: mapping AT25DL081 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DL161, 2048 kB: programmer_map_flash_region: mapping AT25DL161 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25DQ161, 2048 kB: programmer_map_flash_region: mapping AT25DQ161 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25F512, 64 kB: programmer_map_flash_region: mapping AT25F512 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 3 Sending 0x04 0x00 0x01 0x00 0x02 0x15, receiving 0x01 0x00 0x00
probe_spi_at25f: id1 0x00, id2 0x00
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25F512A, 64 kB: programmer_map_flash_region: mapping AT25F512A from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 3 Sending 0x04 0x00 0x01 0x00 0x02 0x15, receiving 0x01 0x00 0x00
probe_spi_at25f: id1 0x00, id2 0x00
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25F512B, 64 kB: programmer_map_flash_region: mapping AT25F512B from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25F1024(A), 128 kB: programmer_map_flash_region: mapping AT25F1024(A) from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 3 Sending 0x04 0x00 0x01 0x00 0x02 0x15, receiving 0x01 0x00 0x00
probe_spi_at25f: id1 0x00, id2 0x00
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25F2048, 256 kB: programmer_map_flash_region: mapping AT25F2048 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 3 Sending 0x04 0x00 0x01 0x00 0x02 0x15, receiving 0x01 0x00 0x00
probe_spi_at25f: id1 0x00, id2 0x00
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25F4096, 512 kB: programmer_map_flash_region: mapping AT25F4096 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 3 Sending 0x04 0x00 0x01 0x00 0x02 0x15, receiving 0x01 0x00 0x00
probe_spi_at25f: id1 0x00, id2 0x00
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25FS010, 128 kB: programmer_map_flash_region: mapping AT25FS010 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT25FS040, 512 kB: programmer_map_flash_region: mapping AT25FS040 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT26DF041, 512 kB: programmer_map_flash_region: mapping AT26DF041 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT26DF081A, 1024 kB: programmer_map_flash_region: mapping AT26DF081A from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT26DF161, 2048 kB: programmer_map_flash_region: mapping AT26DF161 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT26DF161A, 2048 kB: programmer_map_flash_region: mapping AT26DF161A from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT26F004, 512 kB: programmer_map_flash_region: mapping AT26F004 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45CS1282, 16896 kB: programmer_map_flash_region: mapping AT45CS1282 from 0x00000000fef80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB011D, 128 kB: programmer_map_flash_region: mapping AT45DB011D from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB021D, 256 kB: programmer_map_flash_region: mapping AT45DB021D from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB041D, 512 kB: programmer_map_flash_region: mapping AT45DB041D from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
buspirate_sendrecv: write 6, read 2 Sending 0x04 0x00 0x01 0x00 0x01 0xd7, receiving 0x01 0x9c
Status register: 0x9c.
probe_spi_at45db: total size 540672 kB, page size 264 B
Found Atmel flash chip "AT45DB041D" (528 kB, SPI) on buspirate_spi.
buspirate_sendrecv: write 6, read 2 Sending 0x04 0x00 0x01 0x00 0x01 0xd7, receiving 0x01 0x9c
Status register: 0x9c.
Chip status register is 0x9c
Chip status register: Bit 7 / Ready is set
Chip status register: Bit 6 / Compare match is not set
Chip status register: Bit 5 is not set
Chip status register: Bit 4 is set
Chip status register: Bit 3 is set
Chip status register: Bit 2 is set
Chip status register: Density is 4 Mb
Chip status register: Bit 1 / Protection is not set
Chip status register: Bit 0 / "Power of 2" is not set
at45db_get_sector_count: number of sectors=9
at45db_get_sector_count: number of sectors=9
buspirate_sendrecv: write 9, read 9 Sending 0x04 0x00 0x04 0x00 0x08 0x35 0x00 0x00 0x00, receiving 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
No Sector is locked.
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB081D, 1024 kB: programmer_map_flash_region: mapping AT45DB081D from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB161D, 2048 kB: programmer_map_flash_region: mapping AT45DB161D from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB321C, 4224 kB: programmer_map_flash_region: mapping AT45DB321C from 0x00000000ffbe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB321D, 4096 kB: programmer_map_flash_region: mapping AT45DB321D from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB321E, 4096 kB: programmer_map_flash_region: mapping AT45DB321E from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Atmel AT45DB642D, 8192 kB: programmer_map_flash_region: mapping AT45DB642D from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for ESMT F25L008A, 1024 kB: programmer_map_flash_region: mapping F25L008A from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for ESMT F25L32PA, 4096 kB: programmer_map_flash_region: mapping F25L32PA from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B05, 64 kB: programmer_map_flash_region: mapping EN25B05 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B05T, 64 kB: programmer_map_flash_region: mapping EN25B05T from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P05, 64 kB: programmer_map_flash_region: mapping EN25P05 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B10, 128 kB: programmer_map_flash_region: mapping EN25B10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B10T, 128 kB: programmer_map_flash_region: mapping EN25B10T from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P10, 128 kB: programmer_map_flash_region: mapping EN25P10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B20, 256 kB: programmer_map_flash_region: mapping EN25B20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B20T, 256 kB: programmer_map_flash_region: mapping EN25B20T from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P20, 256 kB: programmer_map_flash_region: mapping EN25P20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B40, 512 kB: programmer_map_flash_region: mapping EN25B40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B40T, 512 kB: programmer_map_flash_region: mapping EN25B40T from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P40, 512 kB: programmer_map_flash_region: mapping EN25P40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B80, 1024 kB: programmer_map_flash_region: mapping EN25B80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B80T, 1024 kB: programmer_map_flash_region: mapping EN25B80T from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P80, 1024 kB: programmer_map_flash_region: mapping EN25P80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B16, 2048 kB: programmer_map_flash_region: mapping EN25B16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B16T, 2048 kB: programmer_map_flash_region: mapping EN25B16T from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P16, 2048 kB: programmer_map_flash_region: mapping EN25P16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B32, 4096 kB: programmer_map_flash_region: mapping EN25B32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B32T, 4096 kB: programmer_map_flash_region: mapping EN25B32T from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P32, 4096 kB: programmer_map_flash_region: mapping EN25P32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B64, 8192 kB: programmer_map_flash_region: mapping EN25B64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25B64T, 8192 kB: programmer_map_flash_region: mapping EN25B64T from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25P64, 8192 kB: programmer_map_flash_region: mapping EN25P64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F05, 64 kB: programmer_map_flash_region: mapping EN25F05 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F10, 128 kB: programmer_map_flash_region: mapping EN25F10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F20, 256 kB: programmer_map_flash_region: mapping EN25F20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F40, 512 kB: programmer_map_flash_region: mapping EN25F40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F80, 1024 kB: programmer_map_flash_region: mapping EN25F80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F16, 2048 kB: programmer_map_flash_region: mapping EN25F16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F32, 4096 kB: programmer_map_flash_region: mapping EN25F32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25F64, 8192 kB: programmer_map_flash_region: mapping EN25F64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25Q40, 512 kB: programmer_map_flash_region: mapping EN25Q40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25Q80(A), 1024 kB: programmer_map_flash_region: mapping EN25Q80(A) from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25Q16, 2048 kB: programmer_map_flash_region: mapping EN25Q16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25Q32(A/B), 4096 kB: programmer_map_flash_region: mapping EN25Q32(A/B) from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25Q64, 8192 kB: programmer_map_flash_region: mapping EN25Q64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25Q128, 16384 kB: programmer_map_flash_region: mapping EN25Q128 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25QH16, 2048 kB: programmer_map_flash_region: mapping EN25QH16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25QH32, 4096 kB: programmer_map_flash_region: mapping EN25QH32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25QH64, 8192 kB: programmer_map_flash_region: mapping EN25QH64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25QH128, 16384 kB: programmer_map_flash_region: mapping EN25QH128 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S10, 128 kB: programmer_map_flash_region: mapping EN25S10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S20, 256 kB: programmer_map_flash_region: mapping EN25S20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S40, 512 kB: programmer_map_flash_region: mapping EN25S40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S80, 1024 kB: programmer_map_flash_region: mapping EN25S80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S16, 2048 kB: programmer_map_flash_region: mapping EN25S16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S32, 4096 kB: programmer_map_flash_region: mapping EN25S32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Eon EN25S64, 8192 kB: programmer_map_flash_region: mapping EN25S64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for ESI ES25P40, 512 kB: programmer_map_flash_region: mapping ES25P40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for ESI ES25P80, 1024 kB: programmer_map_flash_region: mapping ES25P80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for ESI ES25P16, 2048 kB: programmer_map_flash_region: mapping ES25P16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25LQ40, 512 kB: programmer_map_flash_region: mapping GD25LQ40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25LQ80, 1024 kB: programmer_map_flash_region: mapping GD25LQ80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25LQ16, 2048 kB: programmer_map_flash_region: mapping GD25LQ16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25LQ32, 4096 kB: programmer_map_flash_region: mapping GD25LQ32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25LQ64(B), 8192 kB: programmer_map_flash_region: mapping GD25LQ64(B) from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25LQ128, 16384 kB: programmer_map_flash_region: mapping GD25LQ128 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q512, 64 kB: programmer_map_flash_region: mapping GD25Q512 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q10, 128 kB: programmer_map_flash_region: mapping GD25Q10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q20(B), 256 kB: programmer_map_flash_region: mapping GD25Q20(B) from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q40(B), 512 kB: programmer_map_flash_region: mapping GD25Q40(B) from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q80(B), 1024 kB: programmer_map_flash_region: mapping GD25Q80(B) from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q16(B), 2048 kB: programmer_map_flash_region: mapping GD25Q16(B) from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q32(B), 4096 kB: programmer_map_flash_region: mapping GD25Q32(B) from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q64(B), 8192 kB: programmer_map_flash_region: mapping GD25Q64(B) from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q128B, 16384 kB: programmer_map_flash_region: mapping GD25Q128B from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25Q128C, 16384 kB: programmer_map_flash_region: mapping GD25Q128C from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25T80, 1024 kB: programmer_map_flash_region: mapping GD25T80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25VQ21B, 256 kB: programmer_map_flash_region: mapping GD25VQ21B from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25VQ40C, 512 kB: programmer_map_flash_region: mapping GD25VQ40C from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25VQ41B, 512 kB: programmer_map_flash_region: mapping GD25VQ41B from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25VQ80C, 1024 kB: programmer_map_flash_region: mapping GD25VQ80C from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for GigaDevice GD25VQ16C, 2048 kB: programmer_map_flash_region: mapping GD25VQ16C from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Intel 25F160S33B8, 2048 kB: programmer_map_flash_region: mapping 25F160S33B8 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Intel 25F160S33T8, 2048 kB: programmer_map_flash_region: mapping 25F160S33T8 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Intel 25F320S33B8, 4096 kB: programmer_map_flash_region: mapping 25F320S33B8 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Intel 25F320S33T8, 4096 kB: programmer_map_flash_region: mapping 25F320S33T8 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Intel 25F640S33B8, 8192 kB: programmer_map_flash_region: mapping 25F640S33B8 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Intel 25F640S33T8, 8192 kB: programmer_map_flash_region: mapping 25F640S33T8 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX23L1654, 2048 kB: programmer_map_flash_region: mapping MX23L1654 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX23L3254, 4096 kB: programmer_map_flash_region: mapping MX23L3254 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX23L6454, 8192 kB: programmer_map_flash_region: mapping MX23L6454 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX23L12854, 16384 kB: programmer_map_flash_region: mapping MX23L12854 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L512(E)/MX25V512(C), 64 kB: programmer_map_flash_region: mapping MX25L512(E)/MX25V512(C) from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L1005(C)/MX25L1006E, 128 kB: programmer_map_flash_region: mapping MX25L1005(C)/MX25L1006E from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L2005(C)/MX25L2006E, 256 kB: programmer_map_flash_region: mapping MX25L2005(C)/MX25L2006E from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L4005(A/C)/MX25L4006E, 512 kB: programmer_map_flash_region: mapping MX25L4005(A/C)/MX25L4006E from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L8005/MX25L8006E/MX25L8008E/MX25V8005, 1024 kB: programmer_map_flash_region: mapping MX25L8005/MX25L8006E/MX25L8008E/MX25V8005 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L1605, 2048 kB: programmer_map_flash_region: mapping MX25L1605 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L1605A/MX25L1606E/MX25L1608E, 2048 kB: programmer_map_flash_region: mapping MX25L1605A/MX25L1606E/MX25L1608E from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L1605D/MX25L1608D/MX25L1673E, 2048 kB: programmer_map_flash_region: mapping MX25L1605D/MX25L1608D/MX25L1673E from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L1635D, 2048 kB: programmer_map_flash_region: mapping MX25L1635D from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L1635E, 2048 kB: programmer_map_flash_region: mapping MX25L1635E from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L3205(A), 4096 kB: programmer_map_flash_region: mapping MX25L3205(A) from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L3205D/MX25L3208D, 4096 kB: programmer_map_flash_region: mapping MX25L3205D/MX25L3208D from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L3206E/MX25L3208E, 4096 kB: programmer_map_flash_region: mapping MX25L3206E/MX25L3208E from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L3273E, 4096 kB: programmer_map_flash_region: mapping MX25L3273E from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L3235D, 4096 kB: programmer_map_flash_region: mapping MX25L3235D from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L6405, 8192 kB: programmer_map_flash_region: mapping MX25L6405 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L6405D, 8192 kB: programmer_map_flash_region: mapping MX25L6405D from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L6406E/MX25L6408E, 8192 kB: programmer_map_flash_region: mapping MX25L6406E/MX25L6408E from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L6436E/MX25L6445E/MX25L6465E/MX25L6473E, 8192 kB: programmer_map_flash_region: mapping MX25L6436E/MX25L6445E/MX25L6465E/MX25L6473E from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L12805D, 16384 kB: programmer_map_flash_region: mapping MX25L12805D from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L12835F/MX25L12845E/MX25L12865E, 16384 kB: programmer_map_flash_region: mapping MX25L12835F/MX25L12845E/MX25L12865E from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25U1635E, 2048 kB: programmer_map_flash_region: mapping MX25U1635E from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25U3235E/F, 4096 kB: programmer_map_flash_region: mapping MX25U3235E/F from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25U6435E/F, 8192 kB: programmer_map_flash_region: mapping MX25U6435E/F from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25U12835F, 16384 kB: programmer_map_flash_region: mapping MX25U12835F from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Macronix MX25L6495F, 8192 kB: programmer_map_flash_region: mapping MX25L6495F from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P05-A, 64 kB: programmer_map_flash_region: mapping M25P05-A from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P05, 64 kB: programmer_map_flash_region: mapping M25P05 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. Ignoring RES in favour of RDID.
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P10-A, 128 kB: programmer_map_flash_region: mapping M25P10-A from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P10, 128 kB: programmer_map_flash_region: mapping M25P10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. Ignoring RES in favour of RDID.
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P20, 256 kB: programmer_map_flash_region: mapping M25P20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P20-old, 256 kB: programmer_map_flash_region: mapping M25P20-old from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. Ignoring RES in favour of RDID.
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P40, 512 kB: programmer_map_flash_region: mapping M25P40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P40-old, 512 kB: programmer_map_flash_region: mapping M25P40-old from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. Ignoring RES in favour of RDID.
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P80, 1024 kB: programmer_map_flash_region: mapping M25P80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P16, 2048 kB: programmer_map_flash_region: mapping M25P16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P32, 4096 kB: programmer_map_flash_region: mapping M25P32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P64, 8192 kB: programmer_map_flash_region: mapping M25P64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25P128, 16384 kB: programmer_map_flash_region: mapping M25P128 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PE10, 128 kB: programmer_map_flash_region: mapping M25PE10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PE20, 256 kB: programmer_map_flash_region: mapping M25PE20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PE40, 512 kB: programmer_map_flash_region: mapping M25PE40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PE80, 1024 kB: programmer_map_flash_region: mapping M25PE80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PE16, 2048 kB: programmer_map_flash_region: mapping M25PE16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PX80, 1024 kB: programmer_map_flash_region: mapping M25PX80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PX16, 2048 kB: programmer_map_flash_region: mapping M25PX16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PX32, 4096 kB: programmer_map_flash_region: mapping M25PX32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M25PX64, 8192 kB: programmer_map_flash_region: mapping M25PX64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M45PE10, 128 kB: programmer_map_flash_region: mapping M45PE10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M45PE20, 256 kB: programmer_map_flash_region: mapping M45PE20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M45PE40, 512 kB: programmer_map_flash_region: mapping M45PE40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M45PE80, 1024 kB: programmer_map_flash_region: mapping M45PE80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST M45PE16, 2048 kB: programmer_map_flash_region: mapping M45PE16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q016, 2048 kB: programmer_map_flash_region: mapping N25Q016 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q032..1E, 4096 kB: programmer_map_flash_region: mapping N25Q032..1E from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q032..3E, 4096 kB: programmer_map_flash_region: mapping N25Q032..3E from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q064..1E, 8192 kB: programmer_map_flash_region: mapping N25Q064..1E from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q064..3E, 8192 kB: programmer_map_flash_region: mapping N25Q064..3E from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q128..1E, 16384 kB: programmer_map_flash_region: mapping N25Q128..1E from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Micron/Numonyx/ST N25Q128..3E, 16384 kB: programmer_map_flash_region: mapping N25Q128..3E from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Nantronics N25S10, 128 kB: programmer_map_flash_region: mapping N25S10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Nantronics N25S20, 256 kB: programmer_map_flash_region: mapping N25S20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Nantronics N25S40, 512 kB: programmer_map_flash_region: mapping N25S40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Nantronics N25S80, 1024 kB: programmer_map_flash_region: mapping N25S80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Nantronics N25S16, 2048 kB: programmer_map_flash_region: mapping N25S16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LD256C, 32 kB: programmer_map_flash_region: mapping Pm25LD256C from 0x00000000ffff8000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LD512(C), 64 kB: programmer_map_flash_region: mapping Pm25LD512(C) from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LD010(C), 128 kB: programmer_map_flash_region: mapping Pm25LD010(C) from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LD020(C), 256 kB: programmer_map_flash_region: mapping Pm25LD020(C) from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LD040(C), 512 kB: programmer_map_flash_region: mapping Pm25LD040(C) from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LQ020, 256 kB: programmer_map_flash_region: mapping Pm25LQ020 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LQ040, 512 kB: programmer_map_flash_region: mapping Pm25LQ040 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LQ080, 1024 kB: programmer_map_flash_region: mapping Pm25LQ080 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LQ016, 2048 kB: programmer_map_flash_region: mapping Pm25LQ016 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LQ032C, 4096 kB: programmer_map_flash_region: mapping Pm25LQ032C from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV512(A), 64 kB: programmer_map_flash_region: mapping Pm25LV512(A) from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV010, 128 kB: programmer_map_flash_region: mapping Pm25LV010 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV010A, 128 kB: programmer_map_flash_region: mapping Pm25LV010A from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV020, 256 kB: programmer_map_flash_region: mapping Pm25LV020 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV040, 512 kB: programmer_map_flash_region: mapping Pm25LV040 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV080B, 1024 kB: programmer_map_flash_region: mapping Pm25LV080B from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for PMC Pm25LV016B, 2048 kB: programmer_map_flash_region: mapping Pm25LV016B from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW106, 128 kB: programmer_map_flash_region: mapping LE25FW106 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW406A, 512 kB: programmer_map_flash_region: mapping LE25FW406A from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FU406B, 512 kB: programmer_map_flash_region: mapping LE25FU406B from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FU406C/LE25U40CMC, 512 kB: programmer_map_flash_region: mapping LE25FU406C/LE25U40CMC from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW203A, 256 kB: programmer_map_flash_region: mapping LE25FW203A from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW403A, 512 kB: programmer_map_flash_region: mapping LE25FW403A from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW418A, 512 kB: programmer_map_flash_region: mapping LE25FW418A from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW806, 1024 kB: programmer_map_flash_region: mapping LE25FW806 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Sanyo LE25FW808, 1024 kB: programmer_map_flash_region: mapping LE25FW808 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL004A, 512 kB: programmer_map_flash_region: mapping S25FL004A from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL008A, 1024 kB: programmer_map_flash_region: mapping S25FL008A from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL016A, 2048 kB: programmer_map_flash_region: mapping S25FL016A from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL032A/P, 4096 kB: programmer_map_flash_region: mapping S25FL032A/P from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL064A/P, 8192 kB: programmer_map_flash_region: mapping S25FL064A/P from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL204K, 512 kB: programmer_map_flash_region: mapping S25FL204K from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL208K, 1024 kB: programmer_map_flash_region: mapping S25FL208K from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL116K/S25FL216K, 2048 kB: programmer_map_flash_region: mapping S25FL116K/S25FL216K from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL132K, 4096 kB: programmer_map_flash_region: mapping S25FL132K from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL164K, 8192 kB: programmer_map_flash_region: mapping S25FL164K from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL127S-64kB, 16384 kB: programmer_map_flash_region: mapping S25FL127S-64kB from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL127S-256kB, 16384 kB: programmer_map_flash_region: mapping S25FL127S-256kB from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL128P......0, 16384 kB: programmer_map_flash_region: mapping S25FL128P......0 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL128P......1, 16384 kB: programmer_map_flash_region: mapping S25FL128P......1 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL128S......0, 16384 kB: programmer_map_flash_region: mapping S25FL128S......0 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL128S......1, 16384 kB: programmer_map_flash_region: mapping S25FL128S......1 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL129P......0, 16384 kB: programmer_map_flash_region: mapping S25FL129P......0 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Spansion S25FL129P......1, 16384 kB: programmer_map_flash_region: mapping S25FL129P......1 from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25LF020A, 256 kB: programmer_map_flash_region: mapping SST25LF020A from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25LF040A, 512 kB: programmer_map_flash_region: mapping SST25LF040A from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25LF080(A), 1024 kB: programmer_map_flash_region: mapping SST25LF080(A) from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0xab 0x00 0x00 0x00, receiving 0x01 0x00 0x00
RES returned 0x00 0x00. probe_spi_res2: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF512(A), 64 kB: programmer_map_flash_region: mapping SST25VF512(A) from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF010(A), 128 kB: programmer_map_flash_region: mapping SST25VF010(A) from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF020, 256 kB: programmer_map_flash_region: mapping SST25VF020 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF020B, 256 kB: programmer_map_flash_region: mapping SST25VF020B from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF040, 512 kB: programmer_map_flash_region: mapping SST25VF040 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF040B, 512 kB: programmer_map_flash_region: mapping SST25VF040B from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF040B.REMS, 512 kB: programmer_map_flash_region: mapping SST25VF040B.REMS from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF020A, 256 kB: programmer_map_flash_region: mapping SST25WF020A from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF040B, 512 kB: programmer_map_flash_region: mapping SST25WF040B from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF080B, 1024 kB: programmer_map_flash_region: mapping SST25WF080B from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF080B, 1024 kB: programmer_map_flash_region: mapping SST25VF080B from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF016B, 2048 kB: programmer_map_flash_region: mapping SST25VF016B from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF032B, 4096 kB: programmer_map_flash_region: mapping SST25VF032B from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25VF064C, 8192 kB: programmer_map_flash_region: mapping SST25VF064C from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF512, 64 kB: programmer_map_flash_region: mapping SST25WF512 from 0x00000000ffff0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF010, 128 kB: programmer_map_flash_region: mapping SST25WF010 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF020, 256 kB: programmer_map_flash_region: mapping SST25WF020 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF040, 512 kB: programmer_map_flash_region: mapping SST25WF040 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for SST SST25WF080, 1024 kB: programmer_map_flash_region: mapping SST25WF080 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q40.V, 512 kB: programmer_map_flash_region: mapping W25Q40.V from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q80.V, 1024 kB: programmer_map_flash_region: mapping W25Q80.V from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q16.V, 2048 kB: programmer_map_flash_region: mapping W25Q16.V from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q32.V, 4096 kB: programmer_map_flash_region: mapping W25Q32.V from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q64.V, 8192 kB: programmer_map_flash_region: mapping W25Q64.V from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q128.V, 16384 kB: programmer_map_flash_region: mapping W25Q128.V from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q20.W, 256 kB: programmer_map_flash_region: mapping W25Q20.W from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q40.W, 512 kB: programmer_map_flash_region: mapping W25Q40.W from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q80.W, 1024 kB: programmer_map_flash_region: mapping W25Q80.W from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q16.W, 2048 kB: programmer_map_flash_region: mapping W25Q16.W from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q32.W, 4096 kB: programmer_map_flash_region: mapping W25Q32.W from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q64.W, 8192 kB: programmer_map_flash_region: mapping W25Q64.W from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25Q128.W, 16384 kB: programmer_map_flash_region: mapping W25Q128.W from 0x00000000ff000000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X10, 128 kB: programmer_map_flash_region: mapping W25X10 from 0x00000000fffe0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X20, 256 kB: programmer_map_flash_region: mapping W25X20 from 0x00000000fffc0000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X40, 512 kB: programmer_map_flash_region: mapping W25X40 from 0x00000000fff80000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X80, 1024 kB: programmer_map_flash_region: mapping W25X80 from 0x00000000fff00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X16, 2048 kB: programmer_map_flash_region: mapping W25X16 from 0x00000000ffe00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X32, 4096 kB: programmer_map_flash_region: mapping W25X32 from 0x00000000ffc00000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Winbond W25X64, 8192 kB: programmer_map_flash_region: mapping W25X64 from 0x00000000ff800000 to 0x0000000000000000
buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
programmer_unmap_flash_region: unmapped 0x0000000000000000
Probing for Unknown SFDP-capable chip, 0 kB: spi_sfdp_read_sfdp_chunk: addr=0x0, len=2, data:
buspirate_sendrecv: write 9, read 4 Sending 0x04 0x00 0x04 0x00 0x03 0x5a 0x00 0x00 0x00, receiving 0x01 0x00 0x00 0x00
 0x00 0x00
spi_sfdp_read_sfdp_chunk: addr=0x2, len=2, data:
buspirate_sendrecv: write 9, read 4 Sending 0x04 0x00 0x04 0x00 0x03 0x5a 0x00 0x00 0x02, receiving 0x01 0x00 0x00 0x00
 0x00 0x00
Signature = 0x00000000 (should be 0x50444653)
No SFDP signature found.
Probing for AMIC unknown AMIC SPI chip, 0 kB: buspirate_sendrecv: write 6, read 5 Sending 0x04 0x00 0x01 0x00 0x04 0x9f, receiving 0x01 0x1f 0x24 0x00 0x00
RDID returned 0x1f 0x24 0x00 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Atmel unknown Atmel SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Eon unknown Eon SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Macronix unknown Macronix SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for PMC unknown PMC SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for SST unknown SST SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for ST unknown ST SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Sanyo unknown Sanyo SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Winbond unknown Winbond (ex Nexcom) SPI chip, 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Generic unknown SPI chip (RDID), 0 kB: buspirate_sendrecv: write 6, read 4 Sending 0x04 0x00 0x01 0x00 0x03 0x9f, receiving 0x01 0x1f 0x24 0x00
RDID returned 0x1f 0x24 0x00. probe_spi_rdid_generic: id1 0x1f, id2 0x2400
Probing for Generic unknown SPI chip (REMS), 0 kB: buspirate_sendrecv: write 9, read 3 Sending 0x04 0x00 0x04 0x00 0x02 0x90 0x00 0x00 0x00, receiving 0x01 0x00 0x00
REMS returned 0x00 0x00. probe_spi_rems: id1 0x0, id2 0x0
Found Atmel flash chip "AT45DB041D" (528 kB, SPI).
This chip may contain one-time programmable memory. flashrom cannot read
and may never be able to write it, hence it may not be able to completely
clone the contents of this chip (see man page for details).
programmer_map_flash_region: mapping AT45DB041D from 0x00000000fff7c000 to 0x0000000000000000
buspirate_sendrecv: write 9, read 1 Sending 0x04 0x00 0x04 0x00 0x00 0x3d 0x2a 0x7f 0x9a, receiving 0x01
buspirate_sendrecv: write 6, read 2 Sending 0x04 0x00 0x01 0x00 0x01 0xd7, receiving 0x01 0x9c
Status register: 0x9c.
Reading flash... at45db_convert_addr: addr=0x0, page_size=264, page_bits=9 -> at45db_addr=0x0
spi_read_at45db: error sending read command!
Read operation failed!
FAILED.
programmer_unmap_flash_region: unmapped 0x0000000000000000
buspirate_sendrecv: write 1, read 0 Sending 0x00
buspirate_sendrecv: write 0, read 4 , receiving 0x42 0x42 0x49 0x4f
buspirate_sendrecv: write 0, read 1 , receiving 0x31
Raw bitbang mode version 1
buspirate_sendrecv: write 1, read 0 Sending 0x0f
Shutdown completed.

@Baldanos
Copy link
Collaborator

Baldanos commented Aug 6, 2018

Hello @afiskon !

I found a bug in my flashrom patch. It should be fixed now.
Can you please test again ?

> ./flashrom -p buspirate_spi:dev=/dev/ttyACM0 --read flash.dump                                [staging]
flashrom p1.0-26-g524bbe3-dirty on Linux 4.17.11-arch1 (x86_64)
flashrom is free software, get the source code at https://flashrom.org

Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Found GigaDevice flash chip "GD25Q32(B)" (4096 kB, SPI) on buspirate_spi.
Reading flash... done.

@afiskon
Copy link

afiskon commented Aug 7, 2018

Hello @Baldanos,

I tested updated flashrom on AT45DB041D chip connected to SPI2 and it works:

$ ./flashrom -p buspirate_spi:dev=/dev/ttyACM0 --read flash.dump
flashrom v0.9.9-96-g6cbe42f-dirty on Linux 4.17.10-1-ARCH (x86_64)
flashrom is free software, get the source code at https://flashrom.org

Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Found Atmel flash chip "AT45DB041D" (528 kB, SPI) on buspirate_spi.
Reading flash... done.

$ hexdump -C flash.dump | less
...
00025830  54 68 69 73 20 69 73 20  61 20 74 65 73 74 20 6d  |This is a test m|
00025840  65 73 73 61 67 65 00 ff  77 c8 07 f8 ba fe 35 d0  |essage..w.....5.|
...

Thank you a lot!

@Baldanos
Copy link
Collaborator

Baldanos commented Aug 8, 2018

@afiskon Great news !

FYI, I ported the patch to the current flashrom revision here : https://github.com/Baldanos/flashrom/tree/master

I hope the PR will get merged soon.

@bvernoux bvernoux changed the title HydraBus hangs when using flashrom HydraBus hangs when using flashrom (fixed) Oct 17, 2018
@Baldanos
Copy link
Collaborator

Since the PR (flashrom/flashrom#21) is open for nearly three years now, I took some time to reimplement the Serprog protocol in HydraFW.

This works on any recent flashrom :

$ flashrom -V --programmer serprog:dev=/dev/hydrabus
flashrom v1.2 on Linux 5.8.3-arch1-1 (x86_64)
flashrom is free software, get the source code at https://flashrom.org

flashrom was built with libpci 3.6.4, GCC 9.3.0, little endian
Command line (3 args): flashrom -V --programmer serprog:dev=/dev/hydrabus
Using clock_gettime for delay loops (clk_id: 1, resolution: 1ns).
Initializing serprog programmer
No baudrate specified, using the hardware's defaults.
serprog: connected - attempting to synchronize
..
serprog: Synchronized
serprog: Interface version ok.
serprog: Bus support: parallel=off, LPC=off, FWH=off, SPI=on
serprog: Maximum write-n length is 4096
serprog: Maximum read-n length is 4096
serprog: Programmer name is "Hydrabus"
serprog: Serial buffer size is 16
serprog: Output drivers enabled
The following protocols are supported: SPI.
[...]

@bvernoux
Copy link
Member

Thanks for the commit c10868f
Which implement flashrom serprog

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants