Sorry, forgot to CC.the list.
Updated patch to apply cleanly against latest revision (1151) and
changed the string as pointed out by Rudolf Marek.
Regards,
David
>-----BEGIN PGP SIGNED MESSAGE-----
>Hash: SHA1
>
>Hi thanks for doing that.
>
>Carl-Daniel Hailfinger wrote:
>> Make the satasii driver more robust.
>>
>> Untested.
>>
>> Signed-off-by: Carl-Daniel Hailfinger <[email protected]>
>>
>> Index: flashrom-satasii_robust/satasii.c
>> ===================================================================
>> --- flashrom-satasii_robust/satasii.c (Revision 1005)
>> +++ flashrom-satasii_robust/satasii.c (Arbeitskopie)
>> @@ -44,6 +44,7 @@
>> {
>> uint32_t addr;
>> uint16_t reg_offset;
>> + uint32_t tmp;
>>
>> get_io_perms();
>>
>> @@ -59,12 +60,19 @@
>> reg_offset = 0x50;
>> }
>>
>> - sii_bar = physmap("SATA SIL registers", addr, 0x100) + reg_offset;
>> + sii_bar = physmap("SATA SiI registers", addr, 0x100) + reg_offset;
>>
>> /* Check if ROM cycle are OK. */
>> if ((id != 0x0680) && (!(mmio_readl(sii_bar) & (1 << 26))))
>> msg_pinfo("Warning: Flash seems unconnected.\n");
>>
>> + msg_pdbg("Using BAR5 access method.\n");
>> + tmp = pci_read_long(pcidev_dev, 0x40) & (1 << 1);
>> + msg_pdbg("BAR5 Indirect Access is %snabled\n", tmp ? "en" : "dis");
>> + /* This bit has contradicting definitions in the 3512 datasheet. */
>
>this looks strange you get dissnabled or ensabled ;)
>
>> + tmp = pci_read_long(pcidev_dev, 0x88) & (1 << 16);
>> + msg_pdbg("BAR5 Access is %snabled\n", tmp ? "en" : "dis");
>
>This Reg is EN_66 in other controllers so I guess it just this and not the
>BA5_EN. It looks like it is driven by strap resistor only anyway.
>
>Interesting would be to test if BA5_EN is not enabled if you can access it
>through indirect access through C0/C4 regs.
>
>Thanks,
>Rudolf
>
>
>> +
>> buses_supported = CHIP_BUSTYPE_PARALLEL;
>>
>> return 0;
>> @@ -81,6 +89,7 @@
>> void satasii_chip_writeb(uint8_t val, chipaddr addr)
>> {
>> uint32_t ctrl_reg, data_reg;
>> + int i = 0;
>>
>> while ((ctrl_reg = mmio_readl(sii_bar)) & (1 << 25)) ;
>>
>> @@ -92,12 +101,19 @@
>> mmio_writel(data_reg, (sii_bar + 4));
>> mmio_writel(ctrl_reg, sii_bar);
>>
>> - while (mmio_readl(sii_bar) & (1 << 25)) ;
>> + while (mmio_readl(sii_bar) & (1 << 25)) {
>> + if (++i > 10000) {
>> + msg_perr("%s: control reg stuck at %08x, aborting\n",
>> + __func__, mmio_readl(sii_bar));
>> + break;
>> + }
>> + }
>> }
>>
>> uint8_t satasii_chip_readb(const chipaddr addr)
>> {
>> uint32_t ctrl_reg;
>> + int i = 0;
>>
>> while ((ctrl_reg = mmio_readl(sii_bar)) & (1 << 25)) ;
>>
>> @@ -107,7 +123,13 @@
>>
>> mmio_writel(ctrl_reg, sii_bar);
>>
>> - while (mmio_readl(sii_bar) & (1 << 25)) ;
>> + while (mmio_readl(sii_bar) & (1 << 25)) {
>> + if (++i > 10000) {
>> + msg_perr("%s: control reg stuck at %08x, aborting\n",
>> + __func__, mmio_readl(sii_bar));
>> + break;
>> + }
>> + }
>>
>> return (mmio_readl(sii_bar + 4)) & 0xff;
>> }
>>
>>
>-----BEGIN PGP SIGNATURE-----
>Version: GnuPG v1.4.10 (GNU/Linux)
>Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
>
>iEYEARECAAYFAkv4VwUACgkQ3J9wPJqZRNU4BQCfYmc1fp2kmy5SjQHjirrsKP82
>enkAoKQLbvmaCGs6/qNfawamobV7RayX
>=7NEj
>-----END PGP SIGNATURE-----
>
--
David Borg
Index: satasii.c
===================================================================
--- satasii.c (revision 1151)
+++ satasii.c (working copy)
@@ -44,6 +44,7 @@
{
uint32_t addr;
uint16_t reg_offset;
+ uint32_t tmp;
get_io_perms();
@@ -59,12 +60,19 @@
reg_offset = 0x50;
}
- sii_bar = physmap("SATA SIL registers", addr, 0x100) + reg_offset;
+ sii_bar = physmap("SATA SiI registers", addr, 0x100) + reg_offset;
/* Check if ROM cycle are OK. */
if ((id != 0x0680) && (!(pci_mmio_readl(sii_bar) & (1 << 26))))
msg_pinfo("Warning: Flash seems unconnected.\n");
+ msg_pdbg("Using BAR5 access method.\n");
+ tmp = pci_read_long(pcidev_dev, 0x40) & (1 << 1);
+ msg_pdbg("BAR5 Indirect Access is %snabled\n", tmp ? "en" : "dis");
+ /* This bit has contradicting definitions in the 3512 datasheet. */
+ tmp = pci_read_long(pcidev_dev, 0x88) & (1 << 16);
+ msg_pdbg("BAR5 Access is %snabled\n", tmp ? "en" : "dis");
+
buses_supported = CHIP_BUSTYPE_PARALLEL;
return 0;
@@ -80,6 +88,7 @@
void satasii_chip_writeb(uint8_t val, chipaddr addr)
{
uint32_t ctrl_reg, data_reg;
+ int i = 0;
while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) ;
@@ -91,12 +100,19 @@
pci_mmio_writel(data_reg, (sii_bar + 4));
pci_mmio_writel(ctrl_reg, sii_bar);
- while (pci_mmio_readl(sii_bar) & (1 << 25)) ;
+ while (pci_mmio_readl(sii_bar) & (1 << 25)) {
+ if (++i > 10000) {
+ msg_perr("%s: control reg stuck at %08x, aborting\n",
+ __func__, pci_mmio_readl(sii_bar));
+ break;
+ }
+ }
}
uint8_t satasii_chip_readb(const chipaddr addr)
{
uint32_t ctrl_reg;
+ int i = 0;
while ((ctrl_reg = pci_mmio_readl(sii_bar)) & (1 << 25)) ;
@@ -106,7 +122,13 @@
pci_mmio_writel(ctrl_reg, sii_bar);
- while (pci_mmio_readl(sii_bar) & (1 << 25)) ;
+ while (pci_mmio_readl(sii_bar) & (1 << 25)) {
+ if (++i > 10000) {
+ msg_perr("%s: control reg stuck at %08x, aborting\n",
+ __func__, pci_mmio_readl(sii_bar));
+ break;
+ }
+ }
return (pci_mmio_readl(sii_bar + 4)) & 0xff;
}
_______________________________________________
flashrom mailing list
[email protected]
http://www.flashrom.org/mailman/listinfo/flashrom