#4: pciutils-dev and Mac OSX
-------------------------------------+-------------------------------
Reporter: roufignouf@… | Owner: hailfinger
Type: defect | Status: new
Priority: major | Milestone: flashrom 0.9.2
Component: flashrom | Version:
Keywords: | Dependencies:
Patch Status: there is no patch |
-------------------------------------+---------------------…
[View More]----------
Hi,
I try to build flashrom on my macbook but i can't find pciutils-dev for it
could you help me ?
{{{
Checking for a C compiler... ld: warning: in
/System/Library/Frameworks//DirectIO.framework/DirectIO, file was built
for i386 which is not the architecture being linked (x86_64)
found.
Checking for libpci headers... not found.
Please install libpci headers (package pciutils-devel).
See README for more information.
make: *** [pciutils] Error 1
}}}
--
Ticket URL: <http://www.flashrom.org/trac/flashrom/ticket/4>
flashrom <http://www.flashrom.org/>
[View Less]
I was able to upgrade a Gigabyte GA-MA780G-UD3H with flashrom 0.9.2+r114
(from Debian Testing, AM64) to the newest BIOS.
No additional options were required, everything worked as it should.
The OEM BIOS on the EPoX EP-8PA7I clears byte 0x92 in the LPC bridge
configuration space. Do the same for all CK804 chips, assuming this to
be some sort of chipset-generic write-enable.
Signed-off-by: Jonathan Kollasch <jakllsch(a)kollasch.net>
---
Dear Donald,
thanks a lot for your patch. I will review it as soon as possible, and I
will work with you to ensure a speedy integration of the patch.
Right now we are in the process of finalizing the flashrom 0.9.3
release, and such a big new feature needs to be reviewed in depth before
being merged, so it won't be part of 0.9.3. I'm very confident this
patch will be fully integrated before flashrom 0.9.4.
On 09.08.2010 05:06, Donald.Huang(a)ite.com.tw wrote:
> The attached patch adds …
[View More]generalized support for IT8500/IT8502 embedded controllers.
> The patch was developed by Google for Flashrom r1082, but applies cleanly against r1130.
> It was tested for IT8500E on a Chrome OS platform and may require modification
> depending on ODM/OEM customization and EC firmware version.
>
> Signed-off by: Donald Huang (donald.huang(a)ite.com.tw)
> Signed-off by: Yung-chieh Lo (yjlou(a)google.com)
> Signed-off by: David Hendricks (dhendrix(a)google.com)
>
Regards,
Carl-Daniel
--
http://www.hailfinger.org/
[View Less]
Handle erase failure in partial write.
Clean up erase function checking.
Update a few comments and messages to improve readability.
The erase failure handling is a genuine bugfix which is needed on locked
down chipsets and in the unlikely case that write fails halfway through
or an incorrect chip definition is used.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006(a)gmx.net>
Index: flashrom-cleanup_erase_and_write/flashrom.c
==============================================…
[View More]=====================
--- flashrom-cleanup_erase_and_write/flashrom.c (Revision 1236)
+++ flashrom-cleanup_erase_and_write/flashrom.c (Arbeitskopie)
@@ -1429,57 +1429,84 @@
return 0;
}
+static int check_block_eraser(struct flashchip *flash, int k, int log)
+{
+ struct block_eraser eraser = flash->block_erasers[k];
+
+ if (log)
+ msg_cdbg("Looking at blockwise erase function %i... ", k);
+ if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
+ if (log)
+ msg_cdbg("not defined. ");
+ return 1;
+ }
+ if (!eraser.block_erase && eraser.eraseblocks[0].count) {
+ if (log)
+ msg_cdbg("eraseblock layout is known, but no "
+ "matching block erase function found. ");
+ return 1;
+ }
+ if (eraser.block_erase && !eraser.eraseblocks[0].count) {
+ if (log)
+ msg_cdbg("block erase function found, but "
+ "eraseblock layout is unknown. ");
+ return 1;
+ }
+ return 0;
+}
+
int erase_and_write_flash(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents)
{
- int k, ret = 0, found = 0;
+ int k, ret = 0;
uint8_t *curcontents;
unsigned long size = flash->total_size * 1024;
+ int usable_erasefunctions = 0;
+ for (k = 0; k < NUM_ERASEFUNCTIONS; k++)
+ if (!check_block_eraser(flash, k, 0))
+ usable_erasefunctions++;
+ msg_cinfo("Erasing and writing flash chip... ");
+ if (!usable_erasefunctions) {
+ msg_cerr("ERROR: flashrom has no erase function for this flash "
+ "chip.\n");
+ return 1;
+ }
+
curcontents = (uint8_t *) malloc(size);
/* Copy oldcontents to curcontents to avoid clobbering oldcontents. */
memcpy(curcontents, oldcontents, size);
- msg_cinfo("Erasing and writing flash chip... ");
for (k = 0; k < NUM_ERASEFUNCTIONS; k++) {
- struct block_eraser eraser = flash->block_erasers[k];
-
- msg_cdbg("Looking at blockwise erase function %i... ", k);
- if (!eraser.block_erase && !eraser.eraseblocks[0].count) {
- msg_cdbg("not defined. "
- "Looking for another erase function.\n");
+ if (check_block_eraser(flash, k, 1) && usable_erasefunctions) {
+ msg_cdbg("Looking for another erase function.\n");
continue;
}
- if (!eraser.block_erase && eraser.eraseblocks[0].count) {
- msg_cdbg("eraseblock layout is known, but no "
- "matching block erase function found. "
- "Looking for another erase function.\n");
- continue;
- }
- if (eraser.block_erase && !eraser.eraseblocks[0].count) {
- msg_cdbg("block erase function found, but "
- "eraseblock layout is unknown. "
- "Looking for another erase function.\n");
- continue;
- }
- found = 1;
+ usable_erasefunctions--;
msg_cdbg("trying... ");
ret = walk_eraseregions(flash, k, &erase_and_write_block_helper, curcontents, newcontents);
msg_cdbg("\n");
/* If everything is OK, don't try another erase function. */
if (!ret)
break;
- /* FIXME: Reread the whole chip here so we know the current
- * chip contents? curcontents might be up to date, but this
- * code is only reached if something failed, and then we don't
- * know exactly what failed, and how.
+ /* Write/erase failed, so try to find out what the current chip
+ * contents are. If no usable erase functions remain, we could
+ * abort the loop instead of continuing, the effect is the same.
+ * The only difference is whether the reason for other unusable
+ * functions is printed or not. If in doubt, verbosity wins.
*/
+ if (!usable_erasefunctions)
+ continue;
+ if (flash->read(flash, curcontents, 0, size)) {
+ /* Now we are truly screwed. Read failed as well. */
+ msg_cerr("Can't read anymore!\n");
+ /* We have no idea about the flash chip contents, so
+ * retrying with another erase function is pointless.
+ */
+ break;
+ }
}
/* Free the scratchpad. */
free(curcontents);
- if (!found) {
- msg_cerr("ERROR: flashrom has no erase function for this flash chip.\n");
- return 1;
- }
if (ret) {
msg_cerr("FAILED!\n");
@@ -1827,18 +1854,15 @@
* preserved, but in that case we might perform unneeded erase which
* takes time as well.
*/
- msg_cdbg("Reading old flash chip contents...\n");
+ msg_cdbg("Reading current flash chip contents...\n");
if (flash->read(flash, oldcontents, 0, size)) {
ret = 1;
goto out;
}
- // This should be moved into each flash part's code to do it
- // cleanly. This does the job.
+ /* Build a new image from the given layout. */
handle_romentries(flash, oldcontents, newcontents);
- // ////////////////////////////////////////////////////////////
-
if (write_it) {
if (erase_and_write_flash(flash, oldcontents, newcontents)) {
msg_cerr("Uh oh. Erase/write failed. Checking if "
--
http://www.hailfinger.org/
[View Less]
Hello list,
I've a board with a AT26DF081A on it but flashrom also detects a
AT25DF081A at the same physical address which obviously can't be there.
Digging through the source I figured out why this is the case. The probe
function for those to chips, probe_spi_rdid(), reads the first three
bytes to get the manufacturer and device id. The problem is that Atmel
decided to use the same device id for both chips - *sigh*. Though they
differ in there EDI, so the 4th byte is different. For the …
[View More]AT26DF081A
it's 0x00, for the AT25DF081A it's 0x01 (see the "Read Manufacturer and
Device ID" section in [1] and [2]).
Since I'm not that familiar with the flashrom code I'm unable to present
a patch but I would recommend, the flashchip structure gets enhanced by
a new member to make it possible that probe_spi_rdid() can differentiate
those chips (and probably others, too) when the EDI member is set.
Something like this:
struct flashchip {
...
struct edi {
int length;
char* string;
} edi;
...
};
For the AT26DF081A (and probably all other chips supported by flashrom)
it would be empty and can be left out due to the default initialization
being what we want. For the AT25DF081A it would be the empty string,
i.e. '.edi = { .length = 1, .string = "" }'.
Nevertheless the probe functions for the AT26DF081A and the AT25DF081A
must be changed so for the former it reads 4 and for the latter it reads
5 bytes to trigger the EDI compare. Otherwise the AT26DF081A would still
be detected on a board equipped with a AT25DF081A.
Maybe a more straight forward patch would be to implement a special case
probe function for those chips that just reads 4 bytes and
differentiates them by there 4th byte. But since maybe other chips
suffer from the same problem I would suggest implementing the EDI aware
solution.
For now I've to specify the chip explicitly on the command line, which
works so far, though.
Regards,
Mathias
PS: Please keep me on CC since I'm not subscribed to the list.
[1] AT26DF081A spec:
http://www.atmel.com/dyn/resources/prod_documents/doc3600.pdf
[2] AT25DF081A spec:
http://www.atmel.com/dyn/resources/prod_documents/doc8715.pdf
[View Less]
flashrom -V
flashrom v0.9.1-r946No coreboot table found.DMI string system-manufacturer: "Foxconn"DMI string system-product-name: "BLOODRAGE"DMI string system-version: "Fab 1.1"DMI string baseboard-manufacturer: "Foxconn"DMI string baseboard-product-name: "BLOODRAGE"DMI string baseboard-version: "Fab
1.1"DMI string chassis-type: "Desktop"Found ITE Super I/O, id 8720Found chipset "Intel ICH10R", enabling flash write... 0xfff80000/0xffb80000 FWH IDSEL: 0x00xfff00000/0xffb00000 FWH IDSEL: …
[View More]0x00xffe80000/0xffa80000 FWH IDSEL: 0x10xffe00000/0xffa00000 FWH IDSEL: 0x10xffd80000/0xff980000 FWH IDSEL: 0x20xffd00000/0xff900000 FWH IDSEL: 0x20xffc80000/0xff880000 FWH IDSEL: 0x30xffc00000/0xff800000 FWH IDSEL: 0x30xff700000/0xff300000 FWH IDSEL: 0x40xff600000/0xff200000 FWH IDSEL: 0x50xff500000/0xff100000 FWH IDSEL: 0x60xff400000/0xff000000 FWH IDSEL: 0x70xfff80000/0xffb80000 FWH decode enabled0xfff00000/0xffb00000 FWH decode enabled0xffe80000/0xffa80000 FWH decode disabled0xffe00000/0xffa00000 FWH decode disabled0xffd80000/0xff980000 FWH decode disabled0xffd00000/0xff900000 FWH decode disabled0xffc80000/0xff880000 FWH decode disabled0xffc00000/0xff800000 FWH decode disabled0xff700000/0xff300000 FWH decode disabled0xff600000/0xff200000 FWH decode
disabled0xff500000/0xff100000 FWH decode disabled0xff400000/0xff000000 FWH decode disabledMaximum FWH chip size: 0x100000 bytesBIOS Lock Enable: enabled, BIOS Write Enable: enabled, BIOS_CNTL is 0x3
Root Complex Register Block address = 0xfed1c000GCS = 0x200461: BIOS Interface Lock-Down: enabled, BOOT BIOS Straps: 0x1 (SPI)Top Swap : not enabledSPIBAR = 0xfed1c000 + 0x38000x04: 0x6008
(HSFS)FLOCKDN 0, FDV 1, FDOPSS 1, SCIP 0, BERASE 1, AEL 0, FCERR 0, FDONE 00x50: 0x0000ffff (FRAP)BMWAG 0, BMRAG 0, BRWA 255, BRRA 2550x54: 0x00000000 (FREG0)0x58: 0x00ff0005 (FREG1)0x5C:
0x00040003 (FREG2)0x60: 0x00020001 (FREG3)0x64: 0x00000fff (FREG4)0x74: 0x00000000 (PR0)0x78: 0x00000000 (PR1)0x7C: 0x00000000 (PR2)0x80: 0x00000000 (PR3)0x84: 0x00000000 (PR4)0x90: 0x00414004 (SSFS, SSFC)0x94: 0x5006 (PREOP)0x96: 0x463b (OPTYPE)0x98: 0x05d80302 (OPMENU)0x9C: 0xc79f0190 (OPMENU+4)0xA0: 0x00000000 (BBAR)0xB0: 0x00000004 (FDOC)Programming OPCODES... program_opcodes: preop=5006 optype=463b opmenu=05d80302c79f0190doneSPI Read Configuration: prefetching disabled, caching enabled,
OK.This chipset supports the following protocols: FWH,SPI.Calibrating delay loop... 808M loops per second, 100 myus = 193 us. OK.Probing for AMD Am29F010A/B, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMD Am29F002(N)BB, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing
for AMD Am29F002(N)BT, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMD Am29F016D, 2048 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMD Am29F040B, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMD Am29F080B, 1024 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing
for AMD Am29LV040B, 512 KB: skipped.
Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMD Am29LV081B, 1024 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for ASD AE49F2008, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Atmel AT25DF021, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT25DF041A, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT25DF081, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2,
id2 0x2014Probing for Atmel AT25DF161, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel
AT25DF321, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT25DF321A, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT25DF641, 8192 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT25F512B, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel
AT25FS010, 128 KB: RDID returned
0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT25FS040, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Atmel AT26DF041, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT26DF081A, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT26DF161, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT26DF161A, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2,
id2 0x2014Probing for Atmel AT26F004, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT29C512, 64
KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Atmel AT29C010A, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Atmel AT29C020, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Atmel AT29C040A, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Atmel AT45CS1282,
16896 KB: RDID returned 0xc2 0x20 0x14.
probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT45DB011D, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Atmel AT45DB021D, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT45DB041D, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT45DB081D, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT45DB161D, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2,
id2 0x2014Probing for Atmel AT45DB321C, 4224 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel
AT45DB321D, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT45DB642D, 8192 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Atmel AT49BV512, 64 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Atmel AT49F002(N), 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for
Atmel AT49F002(N)T, 256 KB: skipped.
Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMIC A25L40PT, 512 KB: RDID returned 0xc2 0x20 0x14 0xc2. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for AMIC A25L40PU, 512 KB: RDID returned 0xc2 0x20 0x14 0xc2. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for AMIC A29002B, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMIC A29002T, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for AMIC A29040B, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for AMIC A49LF040A, 512 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for EMST F49B002UA, 256 KB:
skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Eon EN25B05, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B05T, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B10, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B10T, 128 KB: RDID returned 0xc2
0x20 0x14. probe_spi_rdid_generic:
id1 0xc2, id2 0x2014Probing for Eon EN25B20, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B20T, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B40, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B40T, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Eon EN25B80, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B80T, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B16, 2048 KB: RDID returned 0xc2 0x20 0x14.
probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B16T, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B32, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B32T, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25B64, 8192 KB: RDID returned 0xc2 0x20 0x14.
probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Eon EN25B64T, 8192 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing
for Eon EN25D16, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25F05, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25F10, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25F20, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25F40,
512 KB: RDID returned 0xc2 0x20 0x14.
probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25F80, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Eon EN25F16, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN25F32, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Eon EN29F010, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for EON EN29F002(A)(N)B, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for EON EN29F002(A)(N)T, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Fujitsu MBM29F004BC,
512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Fujitsu MBM29F004TC, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Fujitsu MBM29F400BC, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Fujitsu MBM29F400TC, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for
Intel 28F001BX-B, 128 KB: skipped. Host
bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Intel 28F001BX-T, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for Intel 28F004S5, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Intel 82802AB, 512 KB: probe_82802ab: id1 0x10, id2 0x8bProbing for Intel 82802AC, 1024 KB: probe_82802ab: id1 0xff, id2 0xffProbing for Macronix MX25L512, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L1005, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L2005, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Macronix MX25L4005, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L8005, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Chip status register is 00Chip status register: Status Register Write Disable (SRWD) is not setChip status register: Bit 6 is
not setChip status register: Bit 5 / Block Protect 3 (BP3) is not setChip status register: Bit 4 / Block Protect 2 (BP2) is not setChip status register: Bit 3 / Block Protect 1 (BP1) is not setChip status register: Bit 2 / Block Protect 0 (BP0) is not setChip status register: Write Enable Latch (WEL) is not
setChip status register: Write In Progress (WIP/BUSY) is not setFound chip "Macronix MX25L8005" (1024 KB, SPI) at physical address 0xfff00000.Probing for Macronix MX25L1605, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L1635D, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Macronix MX25L3205, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L3235D, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L6405, 8192 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Macronix MX25L12805, 16384 KB: RDID returned 0xc2 0x20 0x14.
probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Macronix MX29F001B, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for
Macronix MX29F001T, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Macronix MX29F002B, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Macronix MX29F002T, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Macronix MX29LV040, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Numonyx M25PE10, 128
KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Numonyx M25PE20, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1
0xc2, id2 0x2014Probing for Numonyx M25PE40, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Numonyx M25PE80, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Numonyx M25PE16, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for PMC Pm25LV010, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1
0xc2, id2 0x2014Probing for PMC Pm25LV016B, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for PMC
Pm25LV020, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for PMC Pm25LV040, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for PMC Pm25LV080B, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for PMC Pm25LV512, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for PMC Pm29F002T,
256 KB: skipped. Host bus type
FWH,SPI and chip bus type Parallel are incompatible.Probing for PMC Pm29F002B, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for PMC Pm39LV010, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for PMC Pm49FL002, 256 KB: probe_jedec_common: id1 0x1b, id2 0x81, id1 parity violation, id1 is normal flash content, id2 is normal flash contentProbing for PMC Pm49FL004, 512 KB: probe_jedec_common: id1 0x10, id2 0x8b, id1 is normal flash content, id2 is normal flash contentProbing for Sanyo LF25FW203A, 2048 KB:
RDID returned 0xc2 0x20 0x14.
probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Sharp LHF00L04, 1024 KB: probe_82802ab: id1 0xff, id2 0xffProbing for Spansion S25FL008A, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Spansion S25FL016A, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for SST SST25VF016B, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2,
id2 0x2014Probing for SST SST25VF032B, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for SST SST25VF040.REMS, 512 KB: REMS returned c2 13. probe_spi_rems: id1 0xc2, id2 0x13Probing for SST SST25VF040B, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1
0xc2, id2 0x2014Probing for SST SST25VF040B.REMS, 512 KB: REMS returned c2 13. probe_spi_rems: id1 0xc2, id2 0x13Probing for SST SST25VF080B, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for SST SST28SF040A, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST29EE010, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for SST SST29LE010, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST29EE020A, 256 KB:
skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST29LE020, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39SF512, 64 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39SF010A, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39SF020A, 256 KB:
skipped. Host bus type FWH,SPI and
chip bus type Parallel are incompatible.Probing for SST SST39SF040, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39VF512, 64 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39VF010, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39VF020, 256 KB: skipped. Host bus type FWH,SPI and chip
bus type Parallel are
incompatible.Probing for SST SST39VF040, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST39VF080, 1024 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SST SST49LF002A/B, 256 KB: probe_jedec_common: id1
0x1b, id2 0x81, id1 parity violation, id1 is normal flash content, id2 is normal flash contentProbing for SST SST49LF003A/B, 384 KB: probe_jedec_common: id1 0x27, id2 0x7c, id1 parity violation, id1 is normal flash content, id2 is normal flash contentProbing for SST SST49LF004A/B, 512 KB: probe_jedec_common: id1 0x10, id2 0x8b, id1 is normal flash content, id2 is normal flash contentProbing for SST SST49LF004C, 512 KB: probe_82802ab: id1 0x10, id2 0x8bProbing for SST
SST49LF008A, 1024 KB: probe_jedec_common: id1 0xff, id2 0xff, id1 parity violation, id1 is normal flash content, id2 is normal flash contentProbing for SST SST49LF008C, 1024 KB:
probe_82802ab: id1 0xff, id2 0xffProbing for SST SST49LF016C, 2048 KB: Chip size 2048 kB is bigger than supported size 1024 kB of chipset/board/programmer for FWH interface, probe/read/erase/write may fail. probe_82802ab: id1 0xff, id2 0xffProbing for SST SST49LF020, 256 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for SST SST49LF020A, 256 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for SST SST49LF040,
512 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for SST SST49LF040B, 512 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are
incompatible.Probing for SST SST49LF080A, 1024 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for SST SST49LF160C, 2048 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for ST M25P05-A, 64 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P05.RES, 64 KB: RDID returned 0xc2 0x20 0x14. Ignoring RES in favour of RDID.Probing for ST M25P10-A, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P10.RES, 128 KB: RDID returned 0xc2 0x20
0x14. Ignoring RES in favour of RDID.Probing for ST M25P20, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P40, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P40-old, 512 KB: RDID returned 0xc2 0x20 0x14. Ignoring RES in favour of RDID.Probing for ST M25P80, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for ST M25P16, 2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P32, 4096 KB: RDID
returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P64, 8192 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M25P128, 16384 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for ST M29F002B, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for ST M29F002T/NT, 256 KB: skipped. Host bus
type FWH,SPI and chip bus type
Parallel are incompatible.Probing for ST M29F040B, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for ST M29F400BT, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for ST M29W010B, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for ST M29W040B, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for ST M29W512B, 64 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for ST M50FLW040A, 512 KB: probe_82802ab: id1 0x10, id2 0x8bProbing for ST M50FLW040B, 512 KB: probe_82802ab: id1 0x10, id2 0x8bProbing for ST M50FLW080A, 1024 KB: probe_82802ab: id1 0xff, id2 0xffProbing for ST M50FLW080B, 1024 KB: probe_82802ab: id1 0xff, id2
0xffProbing for ST M50FW002, 256 KB: probe_82802ab: id1 0x1b, id2 0x81Probing for ST M50FW016, 2048 KB: Chip size 2048 kB is bigger than supported size 1024 kB of chipset/board/programmer for FWH interface, probe/read/erase/write may fail. probe_82802ab: id1 0xff, id2 0xffProbing for ST M50FW040, 512 KB: probe_82802ab: id1 0x10, id2 0x8bProbing for ST M50FW080, 1024 KB: probe_82802ab: id1 0xff, id2 0xffProbing for ST M50LPW116, 2048 KB:
skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for SyncMOS S29C31004T, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SyncMOS S29C51001T, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SyncMOS S29C51002T, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for SyncMOS S29C51004T,
512 KB: skipped. Host bus type
FWH,SPI and chip bus type Parallel are incompatible.Probing for TI TMS29F002RB, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for TI TMS29F002RT, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Winbond W25x10, 128 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Winbond W25x20, 256 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Winbond W25x40, 512 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Probing for Winbond W25x80, 1024 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Winbond W25x16,
2048 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Winbond W25x32, 4096 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Winbond W25x64, 8192 KB: RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Probing for Winbond W29C011, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Winbond W29C020C,
256 KB: skipped. Host bus type
FWH,SPI and chip bus type Parallel are incompatible.Probing for Winbond W29C040P, 512 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are
incompatible.Probing for Winbond W29EE011, 128 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Winbond W39V040A, 512 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for Winbond W39V040B, 512 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for Winbond W39V040C, 512 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are
incompatible.Probing for Winbond W39V040FA, 512 KB: probe_jedec_common: id1 0x10, id2 0x8b, id1 is normal flash content, id2 is normal flash contentProbing
for Winbond W39V080A, 1024 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for Winbond W49F002U, 256 KB: skipped. Host bus type FWH,SPI and chip bus type Parallel are incompatible.Probing for Winbond W49V002A, 256 KB: skipped. Host bus type FWH,SPI and chip bus type LPC are incompatible.Probing for Winbond W49V002FA, 256 KB: probe_jedec_common: id1 0x1b, id2 0x81, id1 parity violation, id1 is normal flash content, id2 is normal flash contentProbing for Winbond W39V080FA, 1024 KB: Chip lacks correct probe timing information, using default 10mS/40uS. probe_jedec_common: id1 0xff, id2 0xff, id1 parity violation, id1 is normal flash content, id2 is normal flash
contentProbing for Winbond W39V080FA (dual mode), 512 KB: Chip lacks correct probe timing information, using default 10mS/40uS. probe_jedec_common: id1 0x10, id2 0x8b, id1 is normal flash content, id2 is normal flash contentProbing for Atmel unknown Atmel SPI chip, 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Not unmapping zero size at (nil)Probing for EON unknown EON SPI chip, 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Not unmapping zero size at (nil)Probing for Macronix unknown Macronix SPI chip, 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Not unmapping zero size at (nil)Probing for PMC unknown PMC SPI chip, 0 KB: Not mapping flash chip,
zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Not unmapping zero size at (nil)Probing for SST unknown SST
SPI chip, 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Not unmapping zero size at (nil)Probing for ST unknown ST SPI chip, 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Not unmapping zero size at
(nil)Probing for Sanyo unknown Sanyo SPI chip, 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2
0x2014Not unmapping zero size at (nil)Probing for Generic unknown SPI chip (RDID), 0 KB: Not mapping flash chip, zero size at 0x00000000.RDID returned 0xc2 0x20 0x14. probe_spi_rdid_generic: id1 0xc2, id2 0x2014Not unmapping zero size at (nil)Probing for Generic unknown SPI chip (REMS), 0 KB: Not mapping flash chip,
zero size at 0x00000000.REMS returned c2 13. probe_spi_rems: id1 0xc2, id2 0x13Not unmapping zero size at (nil)===This flash part has status UNTESTED for operations: ERASEPlease email a report to flashrom(a)flashrom.org if any of the above operationswork correctly for you with this
flash part. Please include the flashromoutput with the additional -V option for all operations you tested (-V, -rV,-wV, -EV), and mention which mainboard or programmer you tested.Thanks for your help!===No operations were specified.
superiotool -deV
superiotool r3844Probing for ALi Super I/O at 0x3f0... Failed. Returned data: id=0xffff, rev=0xffProbing for ALi Super I/O at 0x370... Failed. Returned data: id=0xffff, rev=0xffProbing for Fintek Super I/O at 0x2e... Failed. Returned data: vid=0xffff, id=0xffffProbing for Fintek Super I/O at 0x4e... Failed. Returned data: vid=0xffff, id=0xffffProbing for ITE Super I/O (init=standard) at 0x2e...Found ITE IT8720F (id=0x8720, rev=0x5) at 0x2eNo dump available for this Super
I/OEnvironment controller (0x0295)Probing for ITE Super I/O (init=it8761e) at 0x2e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=it8228e) at 0x2e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=0x87,0x87) at 0x2e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=standard) at 0x4e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=it8761e) at 0x4e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=it8228e) at 0x4e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=0x87,0x87) at 0x4e... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=legacy/it8661f) at 0x370... Failed. Returned data: id=0xffff, rev=0xfProbing for ITE Super I/O (init=legacy/it8671f) at 0x370... Failed. Returned data: id=0xffff, rev=0xfProbing for NSC Super I/O at 0x2e... Failed.
Returned data: port=0xff, port+1=0xffProbing for NSC
Super I/O at 0x4e... Failed. Returned data: port=0xff, port+1=0xffProbing for NSC Super I/O at 0x15c... Failed. Returned data: port=0xff, port+1=0xffProbing for SMSC Super I/O (idregs=0x20/0x21) at
0x2e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x0d/0x0e) at 0x2e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x20/0x21) at
0x4e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x0d/0x0e) at 0x4e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x20/0x21) at
0x162e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x0d/0x0e) at 0x162e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x20/0x21) at
0x164e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x0d/0x0e) at 0x164e... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x20/0x21) at
0x3f0... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x0d/0x0e) at 0x3f0... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x20/0x21) at
0x370... Failed. Returned data: id=0xff, rev=0xffProbing for SMSC Super I/O (idregs=0x0d/0x0e) at 0x370... Failed. Returned data: id=0xff, rev=0xffProbing for Winbond Super I/O (init=0x88) at
0x2e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x89) at 0x2e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O
(init=0x86,0x86) at 0x2e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x87,0x87) at 0x2e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for
Winbond Super I/O (init=0x88) at 0x4e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x89) at 0x4e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing
for Winbond Super I/O (init=0x86,0x86) at 0x4e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x87,0x87) at 0x4e... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x88) at 0x3f0... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x89) at 0x3f0... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x86,0x86) at 0x3f0... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x87,0x87) at 0x3f0... Failed. Returned data: id/oldid=0xff/0x0f,
rev=0xffProbing for Winbond Super I/O (init=0x88) at 0x370... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x89) at 0x370... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x86,0x86) at 0x370... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x87,0x87) at 0x370... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x88) at 0x250... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond
Super I/O (init=0x89) at 0x250... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x86,0x86) at 0x250... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xffProbing for Winbond Super I/O (init=0x87,0x87) at 0x250... Failed. Returned data: id/oldid=0xff/0x0f, rev=0xff
lspci -nn
00:00.0 Host bridge [0600]: Intel Corporation 5520/5500/X58 I/O Hub to ESI Port [8086:3405] (rev 12)00:03.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 3 [8086:340a] (rev 12)00:14.0 PIC [0800]: Intel Corporation 5520/5500/X58 I/O Hub System Management Registers [8086:342e] (rev 12)00:14.1 PIC [0800]: Intel Corporation 5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers [8086:3422] (rev 12)00:14.2 PIC [0800]: Intel Corporation 5520/5500/X58 I/O Hub Control Status and
RAS Registers [8086:3423] (rev 12)00:1a.0 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #4 [8086:3a37]00:1a.1 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #5 [8086:3a38]00:1a.2 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #6 [8086:3a39]00:1a.7 USB Controller [0c03]: Intel Corporation
82801JI (ICH10 Family) USB2 EHCI Controller #2 [8086:3a3c]00:1b.0 Audio device [0403]: Intel Corporation 82801JI (ICH10 Family) HD Audio Controller [8086:3a3e]00:1c.0 PCI bridge [0604]: Intel Corporation 82801JI (ICH10 Family) PCI Express Root Port 1 [8086:3a40]00:1c.2 PCI bridge [0604]: Intel Corporation 82801JI (ICH10 Family) PCI Express Root Port 3 [8086:3a44]00:1d.0 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #1 [8086:3a34]00:1d.1 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #2 [8086:3a35]00:1d.2 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #3 [8086:3a36]00:1d.7 USB Controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB2
EHCI Controller #1 [8086:3a3a]00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 90)00:1f.0 ISA bridge [0601]: Intel Corporation 82801JIR (ICH10R) LPC Interface Controller [8086:3a16]00:1f.2 IDE interface [0101]: Intel Corporation 82801JI (ICH10 Family) 4 port SATA IDE Controller #1 [8086:3a20]00:1f.3 SMBus [0c05]: Intel Corporation 82801JI (ICH10 Family) SMBus
Controller [8086:3a30]00:1f.5 IDE interface [0101]: Intel Corporation 82801JI (ICH10 Family) 2 port SATA IDE Controller #2 [8086:3a26]01:00.0 VGA compatible controller [0300]: nVidia Corporation Device [10de:0e22] (rev a1)01:00.1 Audio device [0403]: nVidia Corporation Device [10de:0beb] (rev a1)03:00.0 SATA controller [0106]: JMicron
Technology Corp. JMB362/JMB363 Serial ATA Controller [197b:2363] (rev 02)03:00.1 IDE interface [0101]: JMicron Technology Corp. JMB362/JMB363 Serial ATA Controller [197b:2363] (rev 02)
Flashrom rules!... thanks again!
CV
[View Less]