Convert all messages in it87spi.c to the new message infrastructure.
Signed-off-by: Sean Nelson audiohacked@gmail.com
On 09.01.2010 20:24, Sean Nelson wrote:
Convert all messages in it87spi.c to the new message infrastructure.
Signed-off-by: Sean Nelson audiohacked@gmail.com diff --git a/it87spi.c b/it87spi.c index 9c86075..6140964 100644 --- a/it87spi.c +++ b/it87spi.c @@ -80,7 +80,7 @@ struct superio probe_superio_ite(void) case 0x82: case 0x86: case 0x87:
printf_debug("Found ITE SuperI/O, id %04hx\n",
msg_pdbg("Found ITE SuperI/O, id %04hx\n",
This one should be pinfo to be on the same level as chipset detection.
ret.model); return ret; }
@@ -105,31 +105,31 @@ static uint16_t find_ite_spi_flash_port(uint16_t port, uint16_t id) enter_conf_mode_ite(port); /* NOLDN, reg 0x24, mask out lowest bit (suspend) */ tmp = sio_read(port, 0x24) & 0xFE;
printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
msg_pinfo("Serial flash segment 0x%08x-0x%08x %sabled\n", 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
msg_pinfo("Serial flash segment 0x%08x-0x%08x %sabled\n", 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
msg_pinfo("Serial flash segment 0x%08x-0x%08x %sabled\n", 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
msg_pinfo("Serial flash segment 0x%08x-0x%08x %sabled\n", 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
printf("LPC write to serial flash %sabled\n",
/* The LPC->SPI force write enable below only makes sense formsg_pinfo("LPC write to serial flash %sabled\n", (tmp & 1 << 4) ? "en" : "dis");
*/ /* If any serial flash segment is enabled, enable writing. */ if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
- non-programmer mode.
printf("Enabling LPC write to serial flash\n");
}msg_pinfo("Enabling LPC write to serial flash\n"); tmp |= 1 << 4; sio_write(port, 0x24, tmp);
printf("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
/* LDN 0x7, reg 0x64/0x65 */ sio_write(port, 0x07, 0x7); flashport = sio_read(port, 0x64) << 8; flashport |= sio_read(port, 0x65);msg_pinfo("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
printf("Serial flash port 0x%04x\n", flashport);
if (programmer_param && !strlen(programmer_param)) { free(programmer_param); programmer_param = NULL;msg_pinfo("Serial flash port 0x%04x\n", flashport);
All of the messages above -> pdbg
@@ -137,7 +137,7 @@ static uint16_t find_ite_spi_flash_port(uint16_t port, uint16_t id) if (programmer_param && (portpos = strstr(programmer_param, "port="))) { portpos += 5; flashport = strtol(portpos, (char **)NULL, 0);
printf("Forcing serial flash port 0x%04x\n", flashport);
}msg_pinfo("Forcing serial flash port 0x%04x\n", flashport); sio_write(port, 0x64, (flashport >> 8)); sio_write(port, 0x65, (flashport & 0xff));
@@ -145,7 +145,7 @@ static uint16_t find_ite_spi_flash_port(uint16_t port, uint16_t id) break; /* TODO: Handle more IT87xx if they support flash translation */ default:
printf("SuperI/O ID %04hx is not on the controller list.\n", id);
} return flashport;msg_pinfo("SuperI/O ID %04hx is not on the controller list.\n", id);
} @@ -209,7 +209,7 @@ int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt, busy = INB(it8716f_flashport) & 0x80; } while (busy); if (readcnt > 3) {
printf("%s called with unsupported readcnt %i.\n",
return SPI_INVALID_LENGTH; }msg_pinfo("%s called with unsupported readcnt %i.\n", __func__, readcnt);
@@ -239,7 +239,7 @@ int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt, writeenc = 0x3; break; default:
printf("%s called with unsupported writecnt %i.\n",
return SPI_INVALID_LENGTH; }msg_pinfo("%s called with unsupported writecnt %i.\n", __func__, writecnt);
@@ -320,12 +320,12 @@ int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf) } else { spi_disable_blockprotect(); /* Erase first */
printf("Erasing flash before programming... ");
if (erase_flash(flash)) {msg_pinfo("Erasing flash before programming... ");
fprintf(stderr, "ERASE FAILED!\n");
}msg_perr("ERASE FAILED!\n"); return -1;
printf("done.\n");
for (i = 0; i < total_size / 256; i++) { it8716f_spi_page_program(flash, i, buf); }msg_pinfo("done.\n");
Regards, Carl-Daniel
Convert all messages in it87spi.c to the new message infrastructure. Change one msg_pdbg to msg_pinfo, change 7 msg_pinfo to msg_pdbg.
Signed-off-by: Sean Nelson audiohacked@gmail.com
On 10.01.2010 01:09, Sean Nelson wrote:
Convert all messages in it87spi.c to the new message infrastructure. Change one msg_pdbg to msg_pinfo, change 7 msg_pinfo to msg_pdbg.
Signed-off-by: Sean Nelson audiohacked@gmail.com
Acked-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Regards, Carl-Daniel
On 1/9/2010 5:06 PM, Carl-Daniel Hailfinger wrote:
On 10.01.2010 01:09, Sean Nelson wrote:
Convert all messages in it87spi.c to the new message infrastructure. Change one msg_pdbg to msg_pinfo, change 7 msg_pinfo to msg_pdbg.
Signed-off-by: Sean Nelsonaudiohacked@gmail.com
Acked-by: Carl-Daniel Hailfingerc-d.hailfinger.devel.2006@gmx.net
Regards, Carl-Daniel
Committed in r855.