2005-11-26 22:55:36 +01:00
|
|
|
/*
|
2007-08-29 19:52:32 +02:00
|
|
|
* This file is part of the flashrom project.
|
2005-11-26 22:55:36 +01:00
|
|
|
*
|
2007-08-29 19:52:32 +02:00
|
|
|
* Copyright (C) 2000 Silicon Integrated System Corporation
|
|
|
|
* Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
|
|
|
|
* Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
|
2005-11-26 22:55:36 +01:00
|
|
|
*
|
2007-08-29 19:52:32 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
2005-11-26 22:55:36 +01:00
|
|
|
*
|
2007-08-29 19:52:32 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Contains the chipset specific flash enables.
|
2005-11-26 22:55:36 +01:00
|
|
|
*/
|
|
|
|
|
2007-11-13 17:45:22 +01:00
|
|
|
#define _LARGEFILE64_SOURCE
|
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <pci/pci.h>
|
|
|
|
#include <stdlib.h>
|
2007-11-13 17:45:22 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2007-02-06 20:47:50 +01:00
|
|
|
#include "flash.h"
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2007-05-20 18:16:13 +02:00
|
|
|
static int enable_flash_ali_m1533(struct pci_dev *dev, char *name)
|
|
|
|
{
|
|
|
|
uint8_t tmp;
|
|
|
|
|
|
|
|
/* ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
|
|
|
|
0xFFFE0000-0xFFFFFFFF ROM select enable. */
|
|
|
|
tmp = pci_read_byte(dev, 0x47);
|
|
|
|
tmp |= 0x46;
|
|
|
|
pci_write_byte(dev, 0x47, tmp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-03-20 17:46:10 +01:00
|
|
|
static int enable_flash_sis630(struct pci_dev *dev, char *name)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
|
|
|
char b;
|
|
|
|
|
|
|
|
/* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630 */
|
2007-09-11 17:58:18 +02:00
|
|
|
b = pci_read_byte(dev, 0x40);
|
|
|
|
pci_write_byte(dev, 0x40, b | 0xb);
|
2004-03-17 23:22:08 +01:00
|
|
|
/* Flash write enable on SiS 540/630 */
|
2007-09-11 17:58:18 +02:00
|
|
|
b = pci_read_byte(dev, 0x45);
|
|
|
|
pci_write_byte(dev, 0x45, b | 0x40);
|
2004-03-17 23:22:08 +01:00
|
|
|
|
|
|
|
/* The same thing on SiS 950 SuperIO side */
|
|
|
|
outb(0x87, 0x2e);
|
|
|
|
outb(0x01, 0x2e);
|
|
|
|
outb(0x55, 0x2e);
|
|
|
|
outb(0x55, 0x2e);
|
|
|
|
|
|
|
|
if (inb(0x2f) != 0x87) {
|
|
|
|
outb(0x87, 0x4e);
|
|
|
|
outb(0x01, 0x4e);
|
|
|
|
outb(0x55, 0x4e);
|
|
|
|
outb(0xaa, 0x4e);
|
|
|
|
if (inb(0x4f) != 0x87) {
|
|
|
|
printf("Can not access SiS 950\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
outb(0x24, 0x4e);
|
|
|
|
b = inb(0x4f) | 0xfc;
|
|
|
|
outb(0x24, 0x4e);
|
|
|
|
outb(b, 0x4f);
|
|
|
|
outb(0x02, 0x4e);
|
2004-03-20 17:46:10 +01:00
|
|
|
outb(0x02, 0x4f);
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
outb(0x24, 0x2e);
|
|
|
|
printf("2f is %#x\n", inb(0x2f));
|
|
|
|
b = inb(0x2f) | 0xfc;
|
|
|
|
outb(0x24, 0x2e);
|
|
|
|
outb(b, 0x2f);
|
|
|
|
|
|
|
|
outb(0x02, 0x2e);
|
|
|
|
outb(0x02, 0x2f);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-07 12:16:21 +01:00
|
|
|
/* Datasheet:
|
|
|
|
* - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
|
|
|
|
* - URL: http://www.intel.com/design/intarch/datashts/290562.htm
|
|
|
|
* - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
|
|
|
|
* - Order Number: 290562-001
|
|
|
|
*/
|
2006-11-05 19:26:08 +01:00
|
|
|
static int enable_flash_piix4(struct pci_dev *dev, char *name)
|
|
|
|
{
|
|
|
|
uint16_t old, new;
|
2007-05-09 12:17:44 +02:00
|
|
|
uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
|
2006-11-05 19:26:08 +01:00
|
|
|
|
|
|
|
old = pci_read_word(dev, xbcs);
|
|
|
|
|
|
|
|
/* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
|
2007-05-09 12:17:44 +02:00
|
|
|
* FFF00000-FFF7FFFF are forwarded to ISA).
|
|
|
|
* Set bit 7: Extended BIOS Enable (PCI master accesses to
|
|
|
|
* FFF80000-FFFDFFFF are forwarded to ISA).
|
|
|
|
* Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
|
|
|
|
* the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
|
|
|
|
* of 1 Mbyte, or the aliases at the top of 4 Gbyte
|
|
|
|
* (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
|
|
|
|
* Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
|
|
|
|
* Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
|
|
|
|
*/
|
2006-11-05 19:26:08 +01:00
|
|
|
new = old | 0x2c4;
|
|
|
|
|
|
|
|
if (new == old)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pci_write_word(dev, xbcs, new);
|
|
|
|
|
|
|
|
if (pci_read_word(dev, xbcs) != new) {
|
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-08-23 18:08:21 +02:00
|
|
|
|
2006-11-05 19:26:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:48:48 +02:00
|
|
|
static int enable_flash_ich(struct pci_dev *dev, char *name, int bios_cntl)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
|
|
|
/* register 4e.b gets or'ed with one */
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t old, new;
|
2006-09-06 17:48:48 +02:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
/* if it fails, it fails. There are so many variations of broken mobos
|
2007-04-05 00:45:58 +02:00
|
|
|
* that it is hard to argue that we should quit at this point.
|
2004-03-17 23:22:08 +01:00
|
|
|
*/
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2006-09-06 17:48:48 +02:00
|
|
|
/* Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
|
2007-05-09 12:17:44 +02:00
|
|
|
* just treating it as 8 bit wide seems to work fine in practice.
|
2006-09-06 17:48:48 +02:00
|
|
|
*/
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2006-09-06 17:48:48 +02:00
|
|
|
/* see ie. page 375 of "Intel ICH7 External Design Specification"
|
2007-04-05 00:45:58 +02:00
|
|
|
* http://download.intel.com/design/chipsets/datashts/30701302.pdf
|
2004-09-28 22:09:06 +02:00
|
|
|
*/
|
|
|
|
|
2006-03-31 13:26:55 +02:00
|
|
|
old = pci_read_byte(dev, bios_cntl);
|
2004-09-28 22:09:06 +02:00
|
|
|
|
|
|
|
new = old | 1;
|
|
|
|
|
|
|
|
if (new == old)
|
|
|
|
return 0;
|
|
|
|
|
2006-03-31 13:26:55 +02:00
|
|
|
pci_write_byte(dev, bios_cntl, new);
|
2004-09-28 22:09:06 +02:00
|
|
|
|
2006-03-31 13:26:55 +02:00
|
|
|
if (pci_read_byte(dev, bios_cntl) != new) {
|
2007-05-09 12:17:44 +02:00
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", bios_cntl, new, name);
|
2004-09-28 22:09:06 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2007-08-23 18:08:21 +02:00
|
|
|
|
2004-09-28 22:09:06 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-06 17:48:48 +02:00
|
|
|
static int enable_flash_ich_4e(struct pci_dev *dev, char *name)
|
2006-03-31 13:26:55 +02:00
|
|
|
{
|
2006-09-06 17:48:48 +02:00
|
|
|
return enable_flash_ich(dev, name, 0x4e);
|
2006-03-31 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
2006-09-06 17:48:48 +02:00
|
|
|
static int enable_flash_ich_dc(struct pci_dev *dev, char *name)
|
2006-03-31 13:26:55 +02:00
|
|
|
{
|
2006-09-06 17:48:48 +02:00
|
|
|
return enable_flash_ich(dev, name, 0xdc);
|
2006-03-31 13:26:55 +02:00
|
|
|
}
|
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
static int enable_flash_vt823x(struct pci_dev *dev, char *name)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t val;
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2007-08-23 18:08:21 +02:00
|
|
|
/* ROM write enable */
|
2004-03-17 23:22:08 +01:00
|
|
|
val = pci_read_byte(dev, 0x40);
|
|
|
|
val |= 0x10;
|
|
|
|
pci_write_byte(dev, 0x40, val);
|
|
|
|
|
|
|
|
if (pci_read_byte(dev, 0x40) != val) {
|
2007-04-05 00:45:58 +02:00
|
|
|
printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n",
|
2007-05-09 12:17:44 +02:00
|
|
|
name);
|
2007-04-05 00:45:58 +02:00
|
|
|
return -1;
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|
2007-03-02 23:16:38 +01:00
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
return 0;
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int enable_flash_cs5530(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2007-06-06 23:35:45 +02:00
|
|
|
uint8_t reg8;
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2007-06-06 23:35:45 +02:00
|
|
|
#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
|
|
|
|
#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2007-06-06 23:35:45 +02:00
|
|
|
#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
|
|
|
|
#define ROM_WRITE_ENABLE (1 << 1)
|
|
|
|
#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
|
|
|
|
#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2007-06-06 23:35:45 +02:00
|
|
|
/* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and
|
|
|
|
* decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB.
|
|
|
|
* Make the configured ROM areas writable.
|
|
|
|
*/
|
|
|
|
reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
|
|
|
|
reg8 |= LOWER_ROM_ADDRESS_RANGE;
|
|
|
|
reg8 |= UPPER_ROM_ADDRESS_RANGE;
|
|
|
|
reg8 |= ROM_WRITE_ENABLE;
|
|
|
|
pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
|
2007-04-05 00:45:58 +02:00
|
|
|
|
2007-06-06 23:35:45 +02:00
|
|
|
/* Set positive decode on ROM. */
|
|
|
|
reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
|
|
|
|
reg8 |= BIOS_ROM_POSITIVE_DECODE;
|
|
|
|
pci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
|
2007-04-05 00:45:58 +02:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-13 17:45:22 +01:00
|
|
|
static int enable_flash_cs5536(struct pci_dev *dev, char *name)
|
|
|
|
{
|
|
|
|
int fd_msr;
|
|
|
|
unsigned char buf[8];
|
|
|
|
unsigned int addr = 0x1808;
|
|
|
|
|
|
|
|
/* Geode systems write protect the BIOS via RCONFs (cache
|
|
|
|
* settings similar to MTRRs). To unlock, change MSR 0x1808
|
|
|
|
* top byte to 0x22. Reading and writing to msr, however
|
|
|
|
* requires instrucitons rdmsr/wrmsr, which are ring0 privileged
|
|
|
|
* instructions so only the kernel can do the read/write. This
|
|
|
|
* function, therefore, requires that the msr kernel module be
|
|
|
|
* loaded to access these instructions from user space using
|
|
|
|
* device /dev/cpu/0/msr. This hard-coded driver location
|
|
|
|
* could have potential problems on SMP machines since it
|
|
|
|
* assumes cpu0, but it is safe on the geode which is not SMP.
|
|
|
|
*
|
|
|
|
* This is probably not portable beyond linux.
|
|
|
|
*/
|
|
|
|
|
|
|
|
fd_msr = open("/dev/cpu/0/msr", O_RDONLY);
|
|
|
|
if (!fd_msr) {
|
|
|
|
perror("open msr");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
lseek64(fd_msr, (off64_t) addr, SEEK_SET);
|
|
|
|
read(fd_msr, buf, 8);
|
|
|
|
close(fd_msr);
|
|
|
|
if (buf[7] != 0x22) {
|
|
|
|
printf("Enabling Geode MSR to write to flash.\n");
|
|
|
|
buf[7] = 0x22;
|
|
|
|
fd_msr = open("/dev/cpu/0/msr", O_WRONLY);
|
|
|
|
if (!fd_msr) {
|
|
|
|
perror("open msr");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
lseek64(fd_msr, (off64_t) addr, SEEK_SET);
|
|
|
|
if (write(fd_msr, buf, 8) < 0) {
|
|
|
|
perror("msr write");
|
|
|
|
printf
|
|
|
|
("Cannot write to MSR. Make sure msr kernel is loaded: 'modprobe msr'\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
close(fd_msr);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
static int enable_flash_sc1100(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t new;
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
pci_write_byte(dev, 0x52, 0xee);
|
|
|
|
|
|
|
|
new = pci_read_byte(dev, 0x52);
|
|
|
|
|
|
|
|
if (new != 0xee) {
|
2007-05-09 12:17:44 +02:00
|
|
|
printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x52, new, name);
|
2004-03-17 23:22:08 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2007-08-23 18:08:21 +02:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int enable_flash_sis5595(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t new, newer;
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
new = pci_read_byte(dev, 0x45);
|
|
|
|
|
|
|
|
/* clear bit 5 */
|
2004-03-20 17:46:10 +01:00
|
|
|
new &= (~0x20);
|
2004-03-17 23:22:08 +01:00
|
|
|
/* set bit 2 */
|
|
|
|
new |= 0x4;
|
|
|
|
|
|
|
|
pci_write_byte(dev, 0x45, new);
|
|
|
|
|
|
|
|
newer = pci_read_byte(dev, 0x45);
|
|
|
|
if (newer != new) {
|
2007-05-09 12:17:44 +02:00
|
|
|
printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name);
|
2004-03-17 23:22:08 +01:00
|
|
|
printf("Stuck at 0x%x\n", newer);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-08-23 18:08:21 +02:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-03-20 17:46:10 +01:00
|
|
|
static int enable_flash_amd8111(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2004-03-17 23:22:08 +01:00
|
|
|
/* register 4e.b gets or'ed with one */
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t old, new;
|
2007-05-09 12:17:44 +02:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
/* if it fails, it fails. There are so many variations of broken mobos
|
2007-04-05 00:45:58 +02:00
|
|
|
* that it is hard to argue that we should quit at this point.
|
2004-03-17 23:22:08 +01:00
|
|
|
*/
|
|
|
|
|
2004-12-07 18:19:04 +01:00
|
|
|
/* enable decoding at 0xffb00000 to 0xffffffff */
|
2004-03-17 23:22:08 +01:00
|
|
|
old = pci_read_byte(dev, 0x43);
|
2004-12-07 18:19:04 +01:00
|
|
|
new = old | 0xC0;
|
2004-03-17 23:22:08 +01:00
|
|
|
if (new != old) {
|
|
|
|
pci_write_byte(dev, 0x43, new);
|
|
|
|
if (pci_read_byte(dev, 0x43) != new) {
|
2007-05-09 12:17:44 +02:00
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name);
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-20 17:46:10 +01:00
|
|
|
old = pci_read_byte(dev, 0x40);
|
2004-03-17 23:22:08 +01:00
|
|
|
new = old | 0x01;
|
|
|
|
if (new == old)
|
|
|
|
return 0;
|
|
|
|
pci_write_byte(dev, 0x40, new);
|
|
|
|
|
|
|
|
if (pci_read_byte(dev, 0x40) != new) {
|
2007-05-09 12:17:44 +02:00
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
|
2004-03-17 23:22:08 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2007-08-23 18:08:21 +02:00
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-07-06 19:13:46 +02:00
|
|
|
static int enable_flash_ck804(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2007-05-09 12:17:44 +02:00
|
|
|
/* register 4e.b gets or'ed with one */
|
|
|
|
uint8_t old, new;
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* dump_pci_device(dev); */
|
|
|
|
|
|
|
|
old = pci_read_byte(dev, 0x88);
|
|
|
|
new = old | 0xc0;
|
|
|
|
if (new != old) {
|
|
|
|
pci_write_byte(dev, 0x88, new);
|
|
|
|
if (pci_read_byte(dev, 0x88) != new) {
|
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
old = pci_read_byte(dev, 0x6d);
|
|
|
|
new = old | 0x01;
|
|
|
|
if (new == old)
|
|
|
|
return 0;
|
|
|
|
pci_write_byte(dev, 0x6d, new);
|
|
|
|
|
|
|
|
if (pci_read_byte(dev, 0x6d) != new) {
|
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-08-23 18:08:21 +02:00
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
return 0;
|
2005-07-06 19:13:46 +02:00
|
|
|
}
|
|
|
|
|
2006-03-31 13:26:55 +02:00
|
|
|
static int enable_flash_sb400(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2007-05-09 12:17:44 +02:00
|
|
|
uint8_t tmp;
|
2006-03-31 13:26:55 +02:00
|
|
|
|
|
|
|
struct pci_filter f;
|
|
|
|
struct pci_dev *smbusdev;
|
|
|
|
|
|
|
|
/* then look for the smbus device */
|
2007-05-09 12:17:44 +02:00
|
|
|
pci_filter_init((struct pci_access *)0, &f);
|
2006-03-31 13:26:55 +02:00
|
|
|
f.vendor = 0x1002;
|
|
|
|
f.device = 0x4372;
|
2007-04-05 00:45:58 +02:00
|
|
|
|
2006-03-31 13:26:55 +02:00
|
|
|
for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) {
|
|
|
|
if (pci_filter_match(&f, smbusdev)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-04-05 00:45:58 +02:00
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
if (!smbusdev) {
|
2007-04-05 00:45:58 +02:00
|
|
|
fprintf(stderr, "ERROR: SMBus device not found. aborting\n");
|
2006-03-31 13:26:55 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2007-04-05 00:45:58 +02:00
|
|
|
|
|
|
|
/* enable some smbus stuff */
|
2007-05-09 12:17:44 +02:00
|
|
|
tmp = pci_read_byte(smbusdev, 0x79);
|
|
|
|
tmp |= 0x01;
|
2006-03-31 13:26:55 +02:00
|
|
|
pci_write_byte(smbusdev, 0x79, tmp);
|
|
|
|
|
2007-04-05 00:45:58 +02:00
|
|
|
/* change southbridge */
|
2007-05-09 12:17:44 +02:00
|
|
|
tmp = pci_read_byte(dev, 0x48);
|
|
|
|
tmp |= 0x21;
|
2006-03-31 13:26:55 +02:00
|
|
|
pci_write_byte(dev, 0x48, tmp);
|
|
|
|
|
2007-04-05 00:45:58 +02:00
|
|
|
/* now become a bit silly. */
|
2007-05-09 12:17:44 +02:00
|
|
|
tmp = inb(0xc6f);
|
|
|
|
outb(tmp, 0xeb);
|
2006-03-31 13:26:55 +02:00
|
|
|
outb(tmp, 0xeb);
|
2007-05-09 12:17:44 +02:00
|
|
|
tmp |= 0x40;
|
2006-03-31 13:26:55 +02:00
|
|
|
outb(tmp, 0xc6f);
|
|
|
|
outb(tmp, 0xeb);
|
|
|
|
outb(tmp, 0xeb);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-22 21:21:17 +01:00
|
|
|
static int enable_flash_mcp55(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2007-05-09 12:17:44 +02:00
|
|
|
/* register 4e.b gets or'ed with one */
|
|
|
|
unsigned char old, new, byte;
|
|
|
|
unsigned short word;
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* dump_pci_device(dev); */
|
|
|
|
|
2007-10-18 00:30:07 +02:00
|
|
|
/* Set the 0-16 MB enable bits */
|
2007-05-09 12:17:44 +02:00
|
|
|
byte = pci_read_byte(dev, 0x88);
|
|
|
|
byte |= 0xff; /* 256K */
|
|
|
|
pci_write_byte(dev, 0x88, byte);
|
|
|
|
byte = pci_read_byte(dev, 0x8c);
|
|
|
|
byte |= 0xff; /* 1M */
|
|
|
|
pci_write_byte(dev, 0x8c, byte);
|
|
|
|
word = pci_read_word(dev, 0x90);
|
2007-10-18 00:30:07 +02:00
|
|
|
word |= 0x7fff; /* 16M */
|
2007-05-09 12:17:44 +02:00
|
|
|
pci_write_word(dev, 0x90, word);
|
|
|
|
|
|
|
|
old = pci_read_byte(dev, 0x6d);
|
|
|
|
new = old | 0x01;
|
|
|
|
if (new == old)
|
|
|
|
return 0;
|
|
|
|
pci_write_byte(dev, 0x6d, new);
|
|
|
|
|
|
|
|
if (pci_read_byte(dev, 0x6d) != new) {
|
|
|
|
printf
|
|
|
|
("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n",
|
|
|
|
0x6d, new, name);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-01-22 21:21:17 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-05 12:28:39 +02:00
|
|
|
static int enable_flash_ht1000(struct pci_dev *dev, char *name)
|
|
|
|
{
|
2007-06-05 17:02:18 +02:00
|
|
|
uint8_t byte;
|
2007-06-05 12:28:39 +02:00
|
|
|
|
2007-06-05 17:02:18 +02:00
|
|
|
/* Set the 4MB enable bit. */
|
2007-06-05 12:28:39 +02:00
|
|
|
byte = pci_read_byte(dev, 0x41);
|
|
|
|
byte |= 0x0e;
|
|
|
|
pci_write_byte(dev, 0x41, byte);
|
|
|
|
|
|
|
|
byte = pci_read_byte(dev, 0x43);
|
2007-08-23 18:08:21 +02:00
|
|
|
byte |= (1 << 4);
|
2007-06-05 12:28:39 +02:00
|
|
|
pci_write_byte(dev, 0x43, byte);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
typedef struct penable {
|
2004-03-20 17:46:10 +01:00
|
|
|
unsigned short vendor, device;
|
2004-03-17 23:22:08 +01:00
|
|
|
char *name;
|
2004-03-20 17:46:10 +01:00
|
|
|
int (*doit) (struct pci_dev * dev, char *name);
|
2004-03-17 23:22:08 +01:00
|
|
|
} FLASH_ENABLE;
|
|
|
|
|
|
|
|
static FLASH_ENABLE enables[] = {
|
2006-09-06 17:48:48 +02:00
|
|
|
{0x1039, 0x0630, "SIS630", enable_flash_sis630},
|
2006-11-05 19:26:08 +01:00
|
|
|
{0x8086, 0x7110, "PIIX4/PIIX4E/PIIX4M", enable_flash_piix4},
|
2007-10-30 01:56:50 +01:00
|
|
|
{0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
|
2006-09-06 17:48:48 +02:00
|
|
|
{0x8086, 0x2410, "ICH", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2420, "ICH0", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2440, "ICH2", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x244c, "ICH2-M", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2480, "ICH3-S", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x248c, "ICH3-M", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x24c0, "ICH4/ICH4-L", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x24cc, "ICH4-M", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x24d0, "ICH5/ICH5R", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2640, "ICH6/ICH6R", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x2641, "ICH6-M", enable_flash_ich_dc},
|
2007-03-31 21:48:38 +02:00
|
|
|
{0x8086, 0x27b0, "ICH7DH", enable_flash_ich_dc},
|
2006-09-06 17:48:48 +02:00
|
|
|
{0x8086, 0x27b8, "ICH7/ICH7R", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x27b9, "ICH7M", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x27bd, "ICH7MDH", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x2810, "ICH8/ICH8R", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x2812, "ICH8DH", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x2814, "ICH8DO", enable_flash_ich_dc},
|
2007-03-02 23:16:38 +01:00
|
|
|
{0x1106, 0x8231, "VT8231", enable_flash_vt823x},
|
|
|
|
{0x1106, 0x3177, "VT8235", enable_flash_vt823x},
|
|
|
|
{0x1106, 0x3227, "VT8237", enable_flash_vt823x},
|
2007-05-09 12:17:44 +02:00
|
|
|
{0x1106, 0x8324, "CX700", enable_flash_vt823x},
|
2006-11-07 11:22:20 +01:00
|
|
|
{0x1106, 0x0686, "VT82C686", enable_flash_amd8111},
|
2007-06-06 23:35:45 +02:00
|
|
|
{0x1078, 0x0100, "CS5530/CS5530A", enable_flash_cs5530},
|
2004-03-20 17:46:10 +01:00
|
|
|
{0x100b, 0x0510, "SC1100", enable_flash_sc1100},
|
2004-03-17 23:22:08 +01:00
|
|
|
{0x1039, 0x0008, "SIS5595", enable_flash_sis5595},
|
2007-11-13 17:45:22 +01:00
|
|
|
{0x1022, 0x2080, "AMD GEODE CS5536", enable_flash_cs5536},
|
2004-03-17 23:22:08 +01:00
|
|
|
{0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
|
2007-05-20 18:16:13 +02:00
|
|
|
{0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
|
2007-04-05 00:45:58 +02:00
|
|
|
/* this fallthrough looks broken. */
|
2007-05-09 12:17:44 +02:00
|
|
|
{0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
|
|
|
|
{0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
|
|
|
|
{0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804}, /* Slave, should not be here, to fix known bug for A01. */
|
|
|
|
|
|
|
|
{0x10de, 0x0260, "NVidia MCP51", enable_flash_ck804},
|
|
|
|
{0x10de, 0x0261, "NVidia MCP51", enable_flash_ck804},
|
|
|
|
{0x10de, 0x0262, "NVidia MCP51", enable_flash_ck804},
|
|
|
|
{0x10de, 0x0263, "NVidia MCP51", enable_flash_ck804},
|
|
|
|
|
|
|
|
{0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* Gigabyte m57sli-s4 */
|
|
|
|
{0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
|
|
|
|
{0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
|
|
|
|
{0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
|
|
|
|
{0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
|
|
|
|
{0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
|
|
|
|
{0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */
|
|
|
|
{0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */
|
|
|
|
|
|
|
|
{0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
|
2007-06-05 12:28:39 +02:00
|
|
|
|
2007-06-05 17:02:18 +02:00
|
|
|
{0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
|
2004-03-17 23:22:08 +01:00
|
|
|
};
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
int chipset_flash_enable(void)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
2007-05-09 12:17:44 +02:00
|
|
|
struct pci_dev *dev = 0;
|
|
|
|
int ret = -2; /* nothing! */
|
|
|
|
int i;
|
2007-02-06 20:47:50 +01:00
|
|
|
|
2007-04-05 00:45:58 +02:00
|
|
|
/* now let's try to find the chipset we have ... */
|
|
|
|
for (i = 0; i < sizeof(enables) / sizeof(enables[0]); i++) {
|
2007-05-09 12:17:44 +02:00
|
|
|
dev = pci_dev_find(enables[i].vendor, enables[i].device);
|
|
|
|
if (dev)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev) {
|
2007-10-18 01:55:15 +02:00
|
|
|
printf("Found chipset \"%s\", enabling flash write... ",
|
2007-05-09 12:17:44 +02:00
|
|
|
enables[i].name);
|
|
|
|
|
|
|
|
ret = enables[i].doit(dev, enables[i].name);
|
|
|
|
if (ret)
|
2007-10-18 01:55:15 +02:00
|
|
|
printf("FAILED!\n");
|
2007-05-09 12:17:44 +02:00
|
|
|
else
|
2007-10-10 19:42:20 +02:00
|
|
|
printf("OK.\n");
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
return ret;
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|