There is no sign of BBAR (BIOS Base Address Configuration Register)
in the public datasheet (or specification update) of the ICH8. Also,
the offset of that register has changed between ICH7 (SPIBAR + 50h)
and ICH9 (SPIBAR + A0h), so we have no clue if or where it is on
ICH8. Better don't try to touch it at all and assume/hope it is 0.
---
Until now we implicitly accessed it via the ICH9 offset. I think
this is an evident sign that the naming of the spi controller types
in ichspi.c (…
[View More]SPI_CONTROLLER_VIA, SPI_CONTROLLER_ICH7,
SPI_CONTROLLER_ICH9) might not cut it and we should think about
introducing a special ICH8 one, even if its struct is identical to
the ICH9. having most of the ICH8 code path guarded/controlled by
SPI_CONTROLLER_ICH7 or SPI_CONTROLLER_ICH9 (depending on which is
more similar in one situation), is an open invitation to similar
bugs because one easily forgets that ICH8 is very special.
Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
---
ichspi.c | 25 ++++++++++++-------------
1 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/ichspi.c b/ichspi.c
index 343a0af..d51a6b2 100644
--- a/ichspi.c
+++ b/ichspi.c
@@ -558,20 +558,19 @@ static int program_opcodes(OPCODES *op, int enable_undo)
* Try to set BBAR (BIOS Base Address Register), but read back the value in case
* it didn't stick.
*/
-static void ich_set_bbar(uint32_t min_addr)
+static void ich_set_bbar(int ich_generation, uint32_t min_addr)
{
int bbar_off;
- switch (spi_programmer->type) {
- case SPI_CONTROLLER_ICH7:
- case SPI_CONTROLLER_VIA:
+ switch (ich_generation) {
+ case 7:
bbar_off = 0x50;
break;
- case SPI_CONTROLLER_ICH9:
+ case 8:
+ msg_perr("BBAR offset is unknown on ICH8!\n");
+ return;
+ default: /* Future version might behave the same */
bbar_off = ICH9_REG_BBAR;
break;
- default:
- msg_perr("Unknown chipset for BBAR setting!\n");
- return;
}
ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & ~BBAR_MASK;
@@ -589,6 +588,8 @@ static void ich_set_bbar(uint32_t min_addr)
*/
if (ichspi_bbar != min_addr)
msg_perr("Setting BBAR failed!\n");
+ else
+ msg_pspew("Setting BBAR succeeded!\n");
}
/* Read len bytes from the fdata/spid register into the data array.
@@ -657,11 +658,6 @@ static int ich_init_opcodes(void)
msg_pdbg("Programming OPCODES... ");
curopcodes_done = &O_ST_M25P;
rc = program_opcodes(curopcodes_done, 1);
- /* Technically not part of opcode init, but it allows opcodes
- * to run without transaction errors by setting the lowest
- * allowed address to zero.
- */
- ich_set_bbar(0);
}
if (rc) {
@@ -1268,6 +1264,7 @@ int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb,
msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
ichspi_lock = 1;
}
+ ich_set_bbar(ich_generation, 0);
ich_init_opcodes();
break;
case SPI_CONTROLLER_ICH9:
@@ -1349,6 +1346,7 @@ int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb,
tmp = mmio_readl(ich_spibar + ICH9_REG_FPB);
msg_pdbg("0xD0: 0x%08x (FPB)\n", tmp);
+ ich_set_bbar(ich_generation, 0);
}
msg_pdbg("\n");
@@ -1439,6 +1437,7 @@ int via_init_spi(struct pci_dev *dev)
ichspi_lock = 1;
}
+ ich_set_bbar(7, 0);
ich_init_opcodes();
return 0;
--
1.7.1
[View Less]
Until we are able to unlock regions or at least understand better what
consequences writing single regions have, disable writing completely
whenever a non-writeable region is detected.
NB: the registers might not always reflect the real access status.
http://www.flashrom.org/pipermail/flashrom/2011-April/006309.html
(this is the sole such report i can remember)
---
Might not be the best location to do this, but currently i don't recognize a better
one. The warnings are repeated for each non-…
[View More]writeable region. We could
surpress it by checking if programmer_may_write is already 0 before printing.
the output on my thinkpad is:
[…]
Proceeding anyway because user specified laptop=force_I_want_a_brick
Found chipset "Intel QS57". Enabling flash write... WARNING: SPI Configuration Lockdown activated.
WARNING: Flash Descriptor region is read-only. Disabling writes.
WARNING: Management Engine region is locked. Disabling writes.
OK.
This chipset supports the following protocols: FWH, SPI.
Found Winbond flash chip "W25X64" (8192 kB, SPI) at physical address 0xff800000.
[…]
verbose output is:
[…]
0x54: 0x00000000 (FREG0: Flash Descriptor)
0x00000000-0x00000fff is read-only
WARNING: Flash Descriptor region is read-only. Disabling writes.
0x58: 0x07ff0500 (FREG1: BIOS)
0x00500000-0x007fffff is read-write
0x5C: 0x04ff0003 (FREG2: Management Engine)
0x00003000-0x004fffff is locked
WARNING: Management Engine region is locked. Disabling writes.
0x60: 0x00020001 (FREG3: Gigabit Ethernet)
0x00001000-0x00002fff is read-write
0x64: 0x00000fff (FREG4: Platform Data)
Platform Data region is unused.
[…]
i think that is ok.
Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
---
ichspi.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/ichspi.c b/ichspi.c
index 09af2b3..343a0af 100644
--- a/ichspi.c
+++ b/ichspi.c
@@ -1168,6 +1168,15 @@ static void do_ich9_spi_frap(uint32_t frap, int i)
msg_pdbg("0x%08x-0x%08x is %s\n", base, (limit | 0x0fff),
access_names[rwperms]);
+ if (rwperms <= 0x1) {
+ msg_pinfo("WARNING: %s region is %s. Disabling writes.\n",
+ region_names[i], access_names[rwperms]);
+ /* FIXME: This needs some refinement when we know how unlocking
+ * of region works.
+ */
+ programmer_may_write = 0;
+ }
+
}
static const struct spi_programmer spi_programmer_ich7 = {
--
1.7.1
[View Less]
Oops, disregard that last message. I was looking at find_romentry() and
indeed it makes sense to return a negative value to indicate error since it
returns an index otherwise.
Acked-by: David Hendricks <dhendrix(a)google.com>
On Fri, Aug 19, 2011 at 2:53 PM, David Hendricks <dhendrix(a)google.com>wrote:
> Did you want to fix the inconsistent use of -1 instead of 1 as the return
> code for some functions?
>
> Other than that it looks good (i'm biased, of course :-))
&…
[View More]gt;
> --
> David Hendricks (dhendrix)
> Systems Software Engineer, Google Inc.
>
--
David Hendricks (dhendrix)
Systems Software Engineer, Google Inc.
[View Less]
Did you want to fix the inconsistent use of -1 instead of 1 as the return
code for some functions?
Other than that it looks good (i'm biased, of course :-))
--
David Hendricks (dhendrix)
Systems Software Engineer, Google Inc.