1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

SONE's changes

Corresponding to coreboot v1 svn r863.
This commit is contained in:
Ronald G. Minnich 2003-07-25 04:37:41 +00:00
parent afe44a97fd
commit ceec420c3d
3 changed files with 34 additions and 23 deletions

View File

@ -33,6 +33,7 @@
#include <unistd.h> #include <unistd.h>
#include <stdio.h> #include <stdio.h>
#include <pci/pci.h> #include <pci/pci.h>
#include <string.h>
#include "flash.h" #include "flash.h"
#include "jedec.h" #include "jedec.h"
@ -69,6 +70,8 @@ struct flashchip flashchips[] = {
{NULL,} {NULL,}
}; };
char *chip_to_probe = NULL;
int enable_flash_sis630 (struct pci_dev *dev, char *name) int enable_flash_sis630 (struct pci_dev *dev, char *name)
{ {
char b; char b;
@ -127,7 +130,6 @@ int
enable_flash_e7500(struct pci_dev *dev, char *name) { enable_flash_e7500(struct pci_dev *dev, char *name) {
/* register 4e.b gets or'ed with one */ /* register 4e.b gets or'ed with one */
unsigned char old, new; unsigned char old, new;
int ok;
/* if it fails, it fails. There are so many variations of broken mobos /* if it fails, it fails. There are so many variations of broken mobos
* that it is hard to argue that we should quit at this point. * that it is hard to argue that we should quit at this point.
*/ */
@ -139,11 +141,11 @@ enable_flash_e7500(struct pci_dev *dev, char *name) {
if (new == old) if (new == old)
return 0; return 0;
ok = pci_write_byte(dev, 0x4e, new); pci_write_byte(dev, 0x4e, new);
if (ok != new) { if (pci_read_byte(dev, 0x4e) != new) {
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
old, new, name); 0x4e, new, name);
return -1; return -1;
} }
return 0; return 0;
@ -189,21 +191,15 @@ enable_flash_vt8235(struct pci_dev *dev, char *name) {
int int
enable_flash_vt8231(struct pci_dev *dev, char *name) { enable_flash_vt8231(struct pci_dev *dev, char *name) {
unsigned char old, new; unsigned char val;
int ok;
old = pci_read_byte(dev, 0x40); val = pci_read_byte(dev, 0x40);
val |= 0x10;
pci_write_byte(dev, 0x40, val);
new = old | 0x10; if (pci_read_byte(dev, 0x40) != val) {
if (new == old)
return 0;
ok = pci_write_byte(dev, 0x40, new);
if (ok != 0) {
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
old, new, name); 0x40, val, name);
return -1; return -1;
} }
return 0; return 0;
@ -278,6 +274,10 @@ struct flashchip * probe_flash(struct flashchip * flash)
} }
while (flash->name != NULL) { while (flash->name != NULL) {
if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0) {
flash++;
continue;
}
printf("Trying %s, %d KB\n", flash->name, flash->total_size); printf("Trying %s, %d KB\n", flash->name, flash->total_size);
size = flash->total_size * 1024; size = flash->total_size * 1024;
bios = mmap (0, size, PROT_WRITE | PROT_READ, MAP_SHARED, bios = mmap (0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
@ -425,10 +425,11 @@ enable_flash_write() {
void usage(const char *name) void usage(const char *name)
{ {
printf("usage: %s [-rwv] [file]\n", name); printf("usage: %s [-rwv] [-c chipname][file]\n", name);
printf("-r: read flash and save into file\n" printf("-r: read flash and save into file\n"
"-w: write file into flash (default when file is specified)\n" "-w: write file into flash (default when file is specified)\n"
"-v: verify flash against file\n" "-v: verify flash against file\n"
"-c: probe only for specified flash chip\n"
" If no file is specified, then all that happens\n" " If no file is specified, then all that happens\n"
" is that flash info is dumped\n"); " is that flash info is dumped\n");
exit(1); exit(1);
@ -444,7 +445,10 @@ main (int argc, char * argv[])
int opt; int opt;
int read_it = 0, write_it = 0, verify_it = 0; int read_it = 0, write_it = 0, verify_it = 0;
char *filename = NULL; char *filename = NULL;
while ((opt = getopt(argc, argv, "rwv")) != EOF) {
setbuf(stdout, NULL);
while ((opt = getopt(argc, argv, "rwvc:")) != EOF) {
switch (opt) { switch (opt) {
case 'r': case 'r':
read_it = 1; read_it = 1;
@ -455,6 +459,9 @@ main (int argc, char * argv[])
case 'v': case 'v':
verify_it = 1; verify_it = 1;
break; break;
case 'c':
chip_to_probe = strdup(optarg);
break;
default: default:
usage(argv[0]); usage(argv[0]);
break; break;
@ -509,7 +516,7 @@ main (int argc, char * argv[])
fclose(image); fclose(image);
} }
if (write_it) if (write_it || (!read_it && !verify_it))
flash->write (flash, buf); flash->write (flash, buf);
if (verify_it) if (verify_it)
verify_flash (flash, buf, /* verbose = */ 0); verify_flash (flash, buf, /* verbose = */ 0);

View File

@ -97,6 +97,7 @@ int write_29f002 (struct flashchip * flash, char * buf)
printf ("Programming Page: "); printf ("Programming Page: ");
for (i = 0; i < total_size; i++) { for (i = 0; i < total_size; i++) {
/* write to the sector */ /* write to the sector */
if ((i & 0xfff) == 0)
printf ("address: 0x%08lx", i); printf ("address: 0x%08lx", i);
*(bios + 0x5555) = 0xAA; *(bios + 0x5555) = 0xAA;
*(bios + 0x2AAA) = 0x55; *(bios + 0x2AAA) = 0x55;
@ -106,6 +107,7 @@ int write_29f002 (struct flashchip * flash, char * buf)
/* wait for Toggle bit ready */ /* wait for Toggle bit ready */
toggle_ready_jedec(dst); toggle_ready_jedec(dst);
if ((i & 0xfff) == 0)
printf ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"); printf ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
} }
#endif #endif

View File

@ -97,6 +97,7 @@ int write_49f002 (struct flashchip * flash, char * buf)
printf ("Programming Page: "); printf ("Programming Page: ");
for (i = 0; i < total_size; i++) { for (i = 0; i < total_size; i++) {
/* write to the sector */ /* write to the sector */
if ((i & 0xfff) == 0)
printf ("address: 0x%08lx", i); printf ("address: 0x%08lx", i);
*(bios + 0x5555) = 0xAA; *(bios + 0x5555) = 0xAA;
*(bios + 0x2AAA) = 0x55; *(bios + 0x2AAA) = 0x55;
@ -106,6 +107,7 @@ int write_49f002 (struct flashchip * flash, char * buf)
/* wait for Toggle bit ready */ /* wait for Toggle bit ready */
toggle_ready_jedec(dst); toggle_ready_jedec(dst);
if ((i & 0xfff) == 0)
printf ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"); printf ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
} }
#endif #endif