Hi,
Just want to report a non-working board - the Asrock K7S41GX, tested with flashrom r711 and superiotool r4623.
first some brief details ...
Board: Asrock K7S1GX Bios Vendor: AMI Bios Version: P1.90
root@ubuntu:~# lspci 00:00.0 Host bridge: Silicon Integrated Systems [SiS] 741/741GX/M741 Host (rev 03) 00:01.0 PCI bridge: Silicon Integrated Systems [SiS] SiS AGP Port (virtual PCI-to-PCI bridge) 00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS963 [MuTIOL Media IO] (rev 25) 00:02.1 SMBus: Silicon Integrated Systems [SiS] SiS961/2 SMBus Controller 00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] 00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] AC'97 Sound Controller (rev a0) 00:03.0 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller (rev 0f) 00:03.1 USB Controller: Silicon Integrated Systems [SiS] USB 1.1 Controller (rev 0f) 00:03.2 USB Controller: Silicon Integrated Systems [SiS] USB 2.0 Controller 00:04.0 Ethernet controller: Silicon Integrated Systems [SiS] SiS900 PCI Fast Ethernet (rev 90) 01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 661/741/760 PCI/AGP or 662/761Gx PCIE VGA Display Adapter
flashrom v0.9.1-r711 No coreboot table found. This chipset supports the following protocols: Non-SPI. WARNING: No chipset found. Flash detection will most likely fail. Calibrating delay loop... OK. No EEPROM/flash device found. If you know which flash chip you have, and if this version of flashrom supports a similar flash chip, you can try to force read your chip. Run: flashrom -f -r -c similar_supported_flash_chip filename Note: flashrom can never write when the flash chip isn't found automatically.
root@ubuntu:~# ./superiotool/superiotool superiotool r4623 Found Winbond W83697HF/F/HG (id=0x60, rev=0x12) at 0x2e
Cheers,
On Thu, Sep 03, 2009 at 12:29:46AM +0100, Putlinuxonit wrote:
Hi,
Just want to report a non-working board - the Asrock K7S41GX, tested with flashrom r711 and superiotool r4623.
first some brief details ...
Board: Asrock K7S1GX Bios Vendor: AMI Bios Version: P1.90
Cheers,
-- Udu Ogah
Another AMI, so i will once again need the F segment dumped.
Please run: dd if=/dev/mem of=/tmp/asrock_k7s41gx_f_segment.rom bs=64k count=1 skip=15
Thanks,
Luc Verhaegen.
On Thu, Sep 03, 2009 at 12:29:46AM +0100, Putlinuxonit wrote:
Hi,
Just want to report a non-working board - the Asrock K7S41GX, tested with flashrom r711 and superiotool r4623.
first some brief details ...
Board: Asrock K7S1GX Bios Vendor: AMI Bios Version: P1.90
root@ubuntu:~# lspci 00:00.0 Host bridge: Silicon Integrated Systems [SiS] 741/741GX/M741 Host (rev 03)
WARNING: No chipset found. Flash detection will most likely fail.
Aha. This is an SiS 741 without even chipset support. Let's dig that one out of an award based board somewhere.
Luc Verhaegen.
On Tue, Oct 06, 2009 at 12:49:13PM +0200, Luc Verhaegen wrote:
On Thu, Sep 03, 2009 at 12:29:46AM +0100, Putlinuxonit wrote:
Hi,
Just want to report a non-working board - the Asrock K7S41GX, tested with flashrom r711 and superiotool r4623.
first some brief details ...
Board: Asrock K7S1GX Bios Vendor: AMI Bios Version: P1.90
root@ubuntu:~# lspci 00:00.0 Host bridge: Silicon Integrated Systems [SiS] 741/741GX/M741 Host (rev 03)
WARNING: No chipset found. Flash detection will most likely fail.
Aha. This is an SiS 741 without even chipset support. Let's dig that one out of an award based board somewhere.
Luc Verhaegen.
Give this one a whirl.
Luc Verhaegen.
On Tue, Oct 06, 2009 at 01:30:56PM +0200, Luc Verhaegen wrote:
Give this one a whirl.
Luc Verhaegen.
Add chipset support for SiS963.
Just touches two bits, but no docs as per SiS usual.
Signed-off-by: Luc Verhaegen libv@skynet.be Index: chipset_enable.c =================================================================== --- chipset_enable.c (revision 744) +++ chipset_enable.c (working copy) @@ -624,6 +624,18 @@ return 0; }
+static int enable_flash_sis963(struct pci_dev *dev, const char *name) +{
- uint8_t tmp;
- tmp = pci_read_byte(dev, 0x45);
- tmp &= ~0x80;
- tmp |= 0x40;
- pci_write_byte(dev, 0x45, tmp);
- return 0;
+}
/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ static int enable_flash_amd8111(struct pci_dev *dev, const char *name) { @@ -1039,6 +1051,7 @@ {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp55}, {0x1039, 0x0008, OK, "SiS", "SiS5595", enable_flash_sis5595}, {0x1039, 0x0630, NT, "SiS", "SiS630", enable_flash_sis630},
- {0x1039, 0x0963, OK, "SiS", "SiS963", enable_flash_sis963}, {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x},
Any update on this one?
Luc Verhaegen.
On 21.10.2009 17:53, Luc Verhaegen wrote:
On Tue, Oct 06, 2009 at 01:30:56PM +0200, Luc Verhaegen wrote:
Add chipset support for SiS963.
Just touches two bits, but no docs as per SiS usual.
Signed-off-by: Luc Verhaegen libv@skynet.be
Any update on this one?
A patch adding a boatload of SiS chipset enables has been merged in r759. This patch might be no longer necessary. A check would be appreciated, though.
Regards, Carl-Daniel
On Thu, Nov 19, 2009 at 05:53:51PM +0100, Carl-Daniel Hailfinger wrote:
On 21.10.2009 17:53, Luc Verhaegen wrote:
On Tue, Oct 06, 2009 at 01:30:56PM +0200, Luc Verhaegen wrote:
Add chipset support for SiS963.
Just touches two bits, but no docs as per SiS usual.
Signed-off-by: Luc Verhaegen libv@skynet.be
Any update on this one?
A patch adding a boatload of SiS chipset enables has been merged in r759. This patch might be no longer necessary. A check would be appreciated, though.
Regards, Carl-Daniel
The pci-id that this patch adds does not seem to be in the list. So it all depends on the reporter.
Luc Verhaegen.