Author: stefanct
Date: Wed Sep 26 02:46:02 2012
New Revision: 1608
URL: http://flashrom.org/trac/flashrom/changeset/1608
Log:
Add support for all 4 possible channels to the ft2232_spi programmer.
Add a check to validate the selected channel/interface, which not even
libftdi seems to do yet.
This patch changes default behavior: the new default channel/interface is A.
Also, this patch uses the word 'channel' in addition or in place of 'interface'
where possible without too much hassle because …
[View More]it is the term FTDI uses.
Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
Modified:
trunk/flashrom.8
trunk/ft2232_spi.c
Modified: trunk/flashrom.8
==============================================================================
--- trunk/flashrom.8 Tue Sep 25 23:24:55 2012 (r1607)
+++ trunk/flashrom.8 Wed Sep 26 02:46:02 2012 (r1608)
@@ -555,7 +555,7 @@
.SS
.BR "ft2232_spi " programmer
An optional parameter specifies the controller
-type and interface/port it should support. For that you have to use the
+type and channel/interface/port it should support. For that you have to use the
.sp
.B " flashrom \-p ft2232_spi:type=model,port=interface"
.sp
@@ -568,11 +568,11 @@
and
.B interface
can be
-.BR A ", or " B .
+.BR A ", " B ", " C ", or " D .
The default model is
.B 4232H
and the default interface is
-.BR B .
+.BR A .
.sp
If there is more than one ft2232_spi-compatible device connected, you can select which one should be used by
specifying its serial number with the
Modified: trunk/ft2232_spi.c
==============================================================================
--- trunk/ft2232_spi.c Tue Sep 25 23:24:55 2012 (r1607)
+++ trunk/ft2232_spi.c Wed Sep 26 02:46:02 2012 (r1608)
@@ -161,7 +161,8 @@
unsigned char buf[512];
int ft2232_vid = FTDI_VID;
int ft2232_type = FTDI_FT4232H_PID;
- enum ftdi_interface ft2232_interface = INTERFACE_B;
+ int channel_count = 4; /* Stores the number of channels of the device. */
+ enum ftdi_interface ft2232_interface = INTERFACE_A;
/*
* The 'H' chips can run with an internal clock of either 12 MHz or 60 MHz,
* but the non-H chips can only run at 12 MHz. We enable the divide-by-5
@@ -183,53 +184,55 @@
arg = extract_programmer_param("type");
if (arg) {
- if (!strcasecmp(arg, "2232H"))
+ if (!strcasecmp(arg, "2232H")) {
ft2232_type = FTDI_FT2232H_PID;
- else if (!strcasecmp(arg, "4232H"))
+ channel_count = 2;
+ } else if (!strcasecmp(arg, "4232H")) {
ft2232_type = FTDI_FT4232H_PID;
- else if (!strcasecmp(arg, "jtagkey")) {
+ channel_count = 4;
+ } else if (!strcasecmp(arg, "jtagkey")) {
ft2232_type = AMONTEC_JTAGKEY_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
cs_bits = 0x18;
pindir = 0x1b;
} else if (!strcasecmp(arg, "picotap")) {
ft2232_vid = GOEPEL_VID;
ft2232_type = GOEPEL_PICOTAP_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
} else if (!strcasecmp(arg, "tumpa")) {
/* Interface A is SPI1, B is SPI2. */
ft2232_type = TIAO_TUMPA_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
} else if (!strcasecmp(arg, "busblaster")) {
/* In its default configuration it is a jtagkey clone */
ft2232_type = FTDI_FT2232H_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
cs_bits = 0x18;
pindir = 0x1b;
} else if (!strcasecmp(arg, "openmoko")) {
ft2232_vid = FIC_VID;
ft2232_type = OPENMOKO_DBGBOARD_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
} else if (!strcasecmp(arg, "arm-usb-ocd")) {
ft2232_vid = OLIMEX_VID;
ft2232_type = OLIMEX_ARM_OCD_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
cs_bits = 0x08;
pindir = 0x1b;
} else if (!strcasecmp(arg, "arm-usb-tiny")) {
ft2232_vid = OLIMEX_VID;
ft2232_type = OLIMEX_ARM_TINY_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
} else if (!strcasecmp(arg, "arm-usb-ocd-h")) {
ft2232_vid = OLIMEX_VID;
ft2232_type = OLIMEX_ARM_OCD_H_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
cs_bits = 0x08;
pindir = 0x1b;
} else if (!strcasecmp(arg, "arm-usb-tiny-h")) {
ft2232_vid = OLIMEX_VID;
ft2232_type = OLIMEX_ARM_TINY_H_PID;
- ft2232_interface = INTERFACE_A;
+ channel_count = 2;
} else {
msg_perr("Error: Invalid device type specified.\n");
free(arg);
@@ -245,14 +248,31 @@
break;
case 'B':
ft2232_interface = INTERFACE_B;
+ if (channel_count < 2)
+ channel_count = -1;
+ break;
+ case 'C':
+ ft2232_interface = INTERFACE_C;
+ if (channel_count < 3)
+ channel_count = -1;
+ break;
+ case 'D':
+ ft2232_interface = INTERFACE_D;
+ if (channel_count < 4)
+ channel_count = -1;
break;
default:
- msg_perr("Error: Invalid port/interface specified.\n");
- free(arg);
- return -2;
+ channel_count = -1;
+ break;
}
}
+ if (channel_count < 0 || strlen(arg) != 1) {
+ msg_perr("Error: Invalid channel/port/interface specified: \"%s\".\n", arg);
+ free(arg);
+ return -2;
+ }
free(arg);
+
arg = extract_programmer_param("divisor");
if (arg && strlen(arg)) {
unsigned int temp = 0;
@@ -271,8 +291,10 @@
msg_pdbg("Using device type %s %s ",
get_ft2232_vendorname(ft2232_vid, ft2232_type),
get_ft2232_devicename(ft2232_vid, ft2232_type));
- msg_pdbg("interface %s\n",
- (ft2232_interface == INTERFACE_A) ? "A" : "B");
+ msg_pdbg("channel %s\n",
+ (ft2232_interface == INTERFACE_A) ? "A" :
+ (ft2232_interface == INTERFACE_B) ? "B" :
+ (ft2232_interface == INTERFACE_C) ? "C" : "D");
if (ftdi_init(ftdic) < 0) {
msg_perr("ftdi_init failed\n");
@@ -280,7 +302,7 @@
}
if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
- msg_perr("Unable to select interface: %s\n", ftdic->error_str);
+ msg_perr("Unable to select channel: %s\n", ftdic->error_str);
}
arg = extract_programmer_param("serial");
[View Less]
Stefan Tauner wrote:
> Heavily influenced by a discussion with (and based on code from) Peter Stuge.
> ---
> Peter Stuge argued all evening with me that the mandatory -p parameter
> is a regression and should be fixed, because the common case is -p internal
> and that was the default programmer for most of the installations especially
> those users that dont know what they are doing. While i don't think that the
> internal programmer should be the new default default (sic) …
[View More]programmer
> i do see the point in having a default programmer and don't think that the
> "some user used to one default programmer could easily break $stuff when
> using another build" outweighs the freedom of maintainers to shoot their
> users in the foot especially if they are the same person. ;)
>
> We can not force any distributor to have no default programmer anyway, a
> patch that adds one is trivial. Having this build time option does not
> neccessarily make us endorsing this option either: If we deem it worth it,
> we could add a build warning and add a note in the Makefile/README to
> make maintainers consider our arguments.
>
> Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
Acked-by: Peter Stuge <peter(a)stuge.se>
[View Less]
Author: stefanct
Date: Tue Sep 25 23:24:55 2012
New Revision: 1607
URL: http://flashrom.org/trac/flashrom/changeset/1607
Log:
Introduce a compile time option to select a default programmer.
Heavily influenced by a discussion with (and based on code from) Peter Stuge.
Please read the comment in the Makefile before using this option.
Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
Acked-by: Peter Stuge <peter(a)stuge.se>
Modified:
trunk/Makefile
trunk/…
[View More]cli_classic.c
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile Tue Sep 25 23:08:41 2012 (r1606)
+++ trunk/Makefile Tue Sep 25 23:24:55 2012 (r1607)
@@ -39,6 +39,18 @@
EXPORTDIR ?= .
AR ?= ar
RANLIB ?= ranlib
+# The following parameter changes the default programmer that will be used if there is no -p/--programmer
+# argument given when running flashrom. The predefined setting does not enable any default so that every
+# user has to declare the programmer he wants to use on every run. The rationale for this to be not set
+# (to e.g. the internal programmer) is that forgetting to specify this when working with another programmer
+# easily puts the system attached to the default programmer at risk (e.g. you want to flash coreboot to another
+# system attached to an external programmer while the default programmer is set to the internal programmer, and
+# you forget to use the -p parameter. This would (try to) overwrite the existing firmware of the computer
+# running flashrom). Please do not enable this without thinking about the possible consequences. Possible
+# values are those specified in enum programmer in programmer.h (which depend on other CONFIG_* options
+# evaluated below, namely those that enable/disable the various programmers).
+# Compilation will fail for unspecified values.
+CONFIG_DEFAULT_PROGRAMMER ?= PROGRAMMER_INVALID
# If your compiler spits out excessive warnings, run make WARNERROR=no
# You shouldn't have to change this flag.
@@ -399,6 +411,8 @@
###############################################################################
# Programmer drivers and programmer support infrastructure.
+FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)'
+
ifeq ($(CONFIG_INTERNAL), yes)
FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
Modified: trunk/cli_classic.c
==============================================================================
--- trunk/cli_classic.c Tue Sep 25 23:08:41 2012 (r1606)
+++ trunk/cli_classic.c Tue Sep 25 23:24:55 2012 (r1607)
@@ -402,11 +402,17 @@
}
if (prog == PROGRAMMER_INVALID) {
- msg_perr("Please select a programmer with the --programmer parameter.\n"
- "Valid choices are:\n");
- list_programmers_linebreak(0, 80, 0);
- ret = 1;
- goto out;
+ if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
+ prog = CONFIG_DEFAULT_PROGRAMMER;
+ msg_pinfo("Using default programmer \"%s\".\n",
+ programmer_table[CONFIG_DEFAULT_PROGRAMMER].name);
+ } else {
+ msg_perr("Please select a programmer with the --programmer parameter.\n"
+ "Valid choices are:\n");
+ list_programmers_linebreak(0, 80, 0);
+ ret = 1;
+ goto out;
+ }
}
/* FIXME: Delay calibration should happen in programmer code. */
[View Less]
Hello!
I am sending this email to you because you have send logs regarding the
M2N-MX mainboard. For a long time we were missing the necessary
infrastructure to add support for that board easily and later it seems
to have been forgotten. To this day it was only possible to read
from the flash chip but not to write to it. Sorry about that!
I have attached a patch that hopefully enables erase/write on that board
and would like you to test if it works if you still have access to that
board.
The …
[View More]patch has to be applied to the latest development code (r1573) of
flashrom that can be found here:
http://flashrom.org/Downloads
After saving the patch file to the flashrom directory please run the
following inside the flashrom directory to apply it:
patch < 0001-Add-board-enable-for-ASUS-M2N-MX.patch
After that you can compile with "make". It should create an executable
file named "flashrom in that directory.
Although i think it is pretty safe to try, please make at least a
backup of the original flash contents with -r before trying to erase or
write! If anything unexpected happens don't reboot or shut down, but
contact us please. If you try to write please reply with the output of
./flashrom -V -p internal -w <new bios image>
--
Kind regards/Mit freundlichen Grüßen, Stefan Tauner
[View Less]
Heavily influenced by a discussion with (and based on code from) Peter Stuge.
---
Peter Stuge argued all evening with me that the mandatory -p parameter
is a regression and should be fixed, because the common case is -p internal
and that was the default programmer for most of the installations especially
those users that dont know what they are doing. While i don't think that the
internal programmer should be the new default default (sic) programmer
i do see the point in having a default …
[View More]programmer and don't think that the
"some user used to one default programmer could easily break $stuff when
using another build" outweighs the freedom of maintainers to shoot their
users in the foot especially if they are the same person. ;)
We can not force any distributor to have no default programmer anyway, a
patch that adds one is trivial. Having this build time option does not
neccessarily make us endorsing this option either: If we deem it worth it,
we could add a build warning and add a note in the Makefile/README to
make maintainers consider our arguments.
Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
---
Makefile | 3 +++
cli_classic.c | 16 +++++++++++-----
2 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index 9309ce5..dc435b7 100644
--- a/Makefile
+++ b/Makefile
@@ -39,6 +39,7 @@ CFLAGS ?= -Os -Wall -Wshadow
EXPORTDIR ?= .
AR ?= ar
RANLIB ?= ranlib
+CONFIG_DEFAULT_PROGRAMMER ?= PROGRAMMER_INVALID
# If your compiler spits out excessive warnings, run make WARNERROR=no
# You shouldn't have to change this flag.
@@ -399,6 +400,8 @@ endif
###############################################################################
# Programmer drivers and programmer support infrastructure.
+FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)'
+
ifeq ($(CONFIG_INTERNAL), yes)
FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o dmi.o internal.o
diff --git a/cli_classic.c b/cli_classic.c
index 58696ad..4ae375c 100644
--- a/cli_classic.c
+++ b/cli_classic.c
@@ -402,11 +402,17 @@ int main(int argc, char *argv[])
}
if (prog == PROGRAMMER_INVALID) {
- msg_perr("Please select a programmer with the --programmer parameter.\n"
- "Valid choices are:\n");
- list_programmers_linebreak(0, 80, 0);
- ret = 1;
- goto out;
+ if (CONFIG_DEFAULT_PROGRAMMER != PROGRAMMER_INVALID) {
+ prog = CONFIG_DEFAULT_PROGRAMMER;
+ msg_pinfo("Using default programmer \"%s\".\n",
+ programmer_table[CONFIG_DEFAULT_PROGRAMMER].name);
+ } else {
+ msg_perr("Please select a programmer with the --programmer parameter.\n"
+ "Valid choices are:\n");
+ list_programmers_linebreak(0, 80, 0);
+ ret = 1;
+ goto out;
+ }
}
/* FIXME: Delay calibration should happen in programmer code. */
--
Kind regards, Stefan Tauner
[View Less]
On Sun, 16 Sep 2012 02:56:15 +0200
Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at> wrote:
> + if (board == NULL && cb_vendor != NULL && cb_model != NULL) {
> + board = board_match_name(cb_vendor, cb_model);
> + if (!board) { /* Failure is an option here, because many cb boards don't require an enable. */
> + msg_pdbg2("No board enable found matching coreboot IDs vendor=\"%s\", model=\"%s\".\n",
> + vendor, model);
> + }
> + }
I should …
[View More]have used cb_vendor and cb_model there, as Idwer pointed out.
It was committed with this refinement in r1605 with Idwer's consent on
IRC, thanks.
--
Kind regards/Mit freundlichen Grüßen, Stefan Tauner
[View Less]