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>
|
2008-03-14 18:20:59 +01:00
|
|
|
#include <sys/mman.h>
|
2007-11-13 17:45:22 +01:00
|
|
|
#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
|
|
|
|
2008-12-03 22:24:40 +01:00
|
|
|
unsigned long flashbase = 0;
|
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
/**
|
|
|
|
* flashrom defaults to LPC flash devices. If a known SPI controller is found
|
|
|
|
* and the SPI strappings are set, this will be overwritten by the probing code.
|
|
|
|
*
|
|
|
|
* Eventually, this will become an array when multiple flash support works.
|
|
|
|
*/
|
|
|
|
|
|
|
|
flashbus_t flashbus = BUS_TYPE_LPC;
|
|
|
|
void *spibar = NULL;
|
|
|
|
|
2008-12-08 19:16:58 +01:00
|
|
|
extern int ichspi_lock;
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
|
2007-05-20 18:16:13 +02:00
|
|
|
{
|
|
|
|
uint8_t tmp;
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/*
|
|
|
|
* ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
|
|
|
|
* 0xFFFE0000-0xFFFFFFFF ROM select enable.
|
|
|
|
*/
|
2007-05-20 18:16:13 +02:00
|
|
|
tmp = pci_read_byte(dev, 0x47);
|
|
|
|
tmp |= 0x46;
|
|
|
|
pci_write_byte(dev, 0x47, tmp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_sis630(struct pci_dev *dev, const char *name)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
2007-12-04 22:49:06 +01:00
|
|
|
uint8_t b;
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/* 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);
|
2007-12-04 22:49:06 +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
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/* The same thing on SiS 950 Super I/O side... */
|
|
|
|
|
|
|
|
/* First probe for Super I/O on config port 0x2e. */
|
2008-05-22 15:22:45 +02:00
|
|
|
OUTB(0x87, 0x2e);
|
|
|
|
OUTB(0x01, 0x2e);
|
|
|
|
OUTB(0x55, 0x2e);
|
|
|
|
OUTB(0x55, 0x2e);
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2008-05-22 15:22:45 +02:00
|
|
|
if (INB(0x2f) != 0x87) {
|
2007-12-04 22:49:06 +01:00
|
|
|
/* If that failed, try config port 0x4e. */
|
2008-05-22 15:22:45 +02:00
|
|
|
OUTB(0x87, 0x4e);
|
|
|
|
OUTB(0x01, 0x4e);
|
|
|
|
OUTB(0x55, 0x4e);
|
|
|
|
OUTB(0xaa, 0x4e);
|
|
|
|
if (INB(0x4f) != 0x87) {
|
2004-03-17 23:22:08 +01:00
|
|
|
printf("Can not access SiS 950\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-05-22 15:22:45 +02:00
|
|
|
OUTB(0x24, 0x4e);
|
|
|
|
b = INB(0x4f) | 0xfc;
|
|
|
|
OUTB(0x24, 0x4e);
|
|
|
|
OUTB(b, 0x4f);
|
|
|
|
OUTB(0x02, 0x4e);
|
|
|
|
OUTB(0x02, 0x4f);
|
2004-03-17 23:22:08 +01:00
|
|
|
}
|
|
|
|
|
2008-05-22 15:22:45 +02:00
|
|
|
OUTB(0x24, 0x2e);
|
|
|
|
printf("2f is %#x\n", INB(0x2f));
|
|
|
|
b = INB(0x2f) | 0xfc;
|
|
|
|
OUTB(0x24, 0x2e);
|
|
|
|
OUTB(b, 0x2f);
|
2004-03-17 23:22:08 +01:00
|
|
|
|
2008-05-22 15:22:45 +02:00
|
|
|
OUTB(0x02, 0x2e);
|
|
|
|
OUTB(0x02, 0x2f);
|
2004-03-17 23:22:08 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_piix4(struct pci_dev *dev, const char *name)
|
2006-11-05 19:26:08 +01:00
|
|
|
{
|
|
|
|
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).
|
2008-10-28 12:50:05 +01:00
|
|
|
* Note: This bit is reserved on PIIX/PIIX3/MPIIX.
|
2007-05-09 12:17:44 +02:00
|
|
|
* 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).
|
|
|
|
*/
|
2008-10-28 12:50:05 +01:00
|
|
|
if (dev->device_id == 0x122e || dev->device_id == 0x7000
|
|
|
|
|| dev->device_id == 0x1234)
|
|
|
|
new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
|
2008-10-26 19:40:42 +01:00
|
|
|
else
|
|
|
|
new = old | 0x02c4;
|
2006-11-05 19:26:08 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/*
|
2008-03-14 18:20:59 +01:00
|
|
|
* See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
|
|
|
|
* http://download.intel.com/design/chipsets/datashts/30701303.pdf
|
2007-12-04 22:49:06 +01:00
|
|
|
*/
|
|
|
|
static int enable_flash_ich(struct pci_dev *dev, const char *name,
|
|
|
|
int bios_cntl)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t old, new;
|
2006-09-06 17:48:48 +02:00
|
|
|
|
2007-12-04 22:49:06 +01: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
|
|
|
*/
|
2006-03-31 13:26:55 +02:00
|
|
|
old = pci_read_byte(dev, bios_cntl);
|
2004-09-28 22:09:06 +02:00
|
|
|
|
2008-05-23 00:47:04 +02:00
|
|
|
printf_debug("\nBIOS Lock Enable: %sabled, ",
|
2008-03-14 18:20:59 +01:00
|
|
|
(old & (1 << 1)) ? "en" : "dis");
|
|
|
|
printf_debug("BIOS Write Enable: %sabled, ",
|
|
|
|
(old & (1 << 0)) ? "en" : "dis");
|
|
|
|
printf_debug("BIOS_CNTL is 0x%x\n", old);
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_ich_4e(struct pci_dev *dev, const 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
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_ich_dc(struct pci_dev *dev, const 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
|
|
|
}
|
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
#define ICH_STRAP_RSVD 0x00
|
|
|
|
#define ICH_STRAP_SPI 0x01
|
|
|
|
#define ICH_STRAP_PCI 0x02
|
|
|
|
#define ICH_STRAP_LPC 0x03
|
2008-05-14 16:51:22 +02:00
|
|
|
|
2008-10-18 23:14:13 +02:00
|
|
|
static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
|
|
|
|
{
|
2008-06-30 23:38:30 +02:00
|
|
|
uint32_t mmio_base;
|
|
|
|
|
|
|
|
mmio_base = (pci_read_long(dev, 0xbc)) << 8;
|
|
|
|
printf_debug("MMIO base at = 0x%x\n", mmio_base);
|
2008-10-18 23:14:13 +02:00
|
|
|
spibar = mmap(NULL, 0x70, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
fd_mem, mmio_base);
|
2008-06-30 23:38:30 +02:00
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
if (spibar == MAP_FAILED) {
|
2008-06-30 23:38:30 +02:00
|
|
|
perror("Can't mmap memory using " MEM_DEV);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2008-10-18 23:14:13 +02:00
|
|
|
printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n",
|
|
|
|
*(uint16_t *) (spibar + 0x6c));
|
2008-07-01 01:45:22 +02:00
|
|
|
|
|
|
|
flashbus = BUS_TYPE_VIA_SPI;
|
|
|
|
|
2008-06-30 23:38:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-18 23:14:13 +02:00
|
|
|
static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name,
|
|
|
|
int ich_generation)
|
2008-03-14 18:20:59 +01:00
|
|
|
{
|
2008-07-01 01:45:22 +02:00
|
|
|
int ret, i;
|
2008-06-27 18:28:34 +02:00
|
|
|
uint8_t old, new, bbs, buc;
|
2008-11-03 01:20:22 +01:00
|
|
|
uint16_t spibar_offset, tmp2;
|
2008-03-14 18:20:59 +01:00
|
|
|
uint32_t tmp, gcs;
|
2008-05-14 16:51:22 +02:00
|
|
|
void *rcrb;
|
2008-11-03 01:20:22 +01:00
|
|
|
//TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line
|
|
|
|
//static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" };
|
2008-07-01 01:45:22 +02:00
|
|
|
static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" };
|
2008-10-18 23:14:13 +02:00
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
/* Enable Flash Writes */
|
|
|
|
ret = enable_flash_ich_dc(dev, name);
|
2008-03-14 18:20:59 +01:00
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
/* Get physical address of Root Complex Register Block */
|
|
|
|
tmp = pci_read_long(dev, 0xf0) & 0xffffc000;
|
2008-06-27 18:28:34 +02:00
|
|
|
printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp);
|
2008-07-01 01:45:22 +02:00
|
|
|
|
|
|
|
/* Map RCBA to virtual memory */
|
2008-10-18 23:14:13 +02:00
|
|
|
rcrb = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem,
|
|
|
|
(off_t) tmp);
|
2008-05-14 16:51:22 +02:00
|
|
|
if (rcrb == MAP_FAILED) {
|
2008-03-14 18:20:59 +01:00
|
|
|
perror("Can't mmap memory using " MEM_DEV);
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-01 01:45:22 +02:00
|
|
|
|
2008-05-14 16:51:22 +02:00
|
|
|
gcs = *(volatile uint32_t *)(rcrb + 0x3410);
|
2008-03-14 18:20:59 +01:00
|
|
|
printf_debug("GCS = 0x%x: ", gcs);
|
|
|
|
printf_debug("BIOS Interface Lock-Down: %sabled, ",
|
|
|
|
(gcs & 0x1) ? "en" : "dis");
|
|
|
|
bbs = (gcs >> 10) & 0x3;
|
2008-07-01 01:45:22 +02:00
|
|
|
printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
|
2008-05-14 16:51:22 +02:00
|
|
|
|
2008-06-27 18:28:34 +02:00
|
|
|
buc = *(volatile uint8_t *)(rcrb + 0x3414);
|
2008-10-18 23:14:13 +02:00
|
|
|
printf_debug("Top Swap : %s\n",
|
|
|
|
(buc & 1) ? "enabled (A16 inverted)" : "not enabled");
|
2008-06-27 18:28:34 +02:00
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
/* It seems the ICH7 does not support SPI and LPC chips at the same
|
|
|
|
* time. At least not with our current code. So we prevent searching
|
|
|
|
* on ICH7 when the southbridge is strapped to LPC
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ich_generation == 7 && bbs == ICH_STRAP_LPC) {
|
|
|
|
/* No further SPI initialization required */
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ich_generation) {
|
|
|
|
case 7:
|
|
|
|
flashbus = BUS_TYPE_ICH7_SPI;
|
|
|
|
spibar_offset = 0x3020;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
flashbus = BUS_TYPE_ICH9_SPI;
|
|
|
|
spibar_offset = 0x3020;
|
|
|
|
break;
|
|
|
|
case 9:
|
2008-10-10 22:54:41 +02:00
|
|
|
case 10:
|
2008-10-18 23:14:13 +02:00
|
|
|
default: /* Future version might behave the same */
|
2008-07-01 01:45:22 +02:00
|
|
|
flashbus = BUS_TYPE_ICH9_SPI;
|
|
|
|
spibar_offset = 0x3800;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-14 16:51:22 +02:00
|
|
|
/* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
|
2008-07-01 01:45:22 +02:00
|
|
|
printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset);
|
2008-06-27 18:28:34 +02:00
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
/* Assign Virtual Address */
|
2008-10-18 23:14:13 +02:00
|
|
|
spibar = rcrb + spibar_offset;
|
2008-03-14 18:20:59 +01:00
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
switch (flashbus) {
|
|
|
|
case BUS_TYPE_ICH7_SPI:
|
2008-10-18 23:14:13 +02:00
|
|
|
printf_debug("0x00: 0x%04x (SPIS)\n",
|
|
|
|
*(uint16_t *) (spibar + 0));
|
|
|
|
printf_debug("0x02: 0x%04x (SPIC)\n",
|
|
|
|
*(uint16_t *) (spibar + 2));
|
|
|
|
printf_debug("0x04: 0x%08x (SPIA)\n",
|
|
|
|
*(uint32_t *) (spibar + 4));
|
|
|
|
for (i = 0; i < 8; i++) {
|
2008-06-27 18:28:34 +02:00
|
|
|
int offs;
|
|
|
|
offs = 8 + (i * 8);
|
2008-10-18 23:14:13 +02:00
|
|
|
printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs,
|
|
|
|
*(uint32_t *) (spibar + offs), i);
|
|
|
|
printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
|
|
|
|
*(uint32_t *) (spibar + offs + 4), i);
|
2008-06-27 18:28:34 +02:00
|
|
|
}
|
2008-10-18 23:14:13 +02:00
|
|
|
printf_debug("0x50: 0x%08x (BBAR)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x50));
|
|
|
|
printf_debug("0x54: 0x%04x (PREOP)\n",
|
|
|
|
*(uint16_t *) (spibar + 0x54));
|
|
|
|
printf_debug("0x56: 0x%04x (OPTYPE)\n",
|
|
|
|
*(uint16_t *) (spibar + 0x56));
|
|
|
|
printf_debug("0x58: 0x%08x (OPMENU)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x58));
|
|
|
|
printf_debug("0x5c: 0x%08x (OPMENU+4)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x5c));
|
|
|
|
for (i = 0; i < 4; i++) {
|
2008-06-27 18:28:34 +02:00
|
|
|
int offs;
|
|
|
|
offs = 0x60 + (i * 4);
|
2008-10-18 23:14:13 +02:00
|
|
|
printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs,
|
|
|
|
*(uint32_t *) (spibar + offs), i);
|
2008-06-27 18:28:34 +02:00
|
|
|
}
|
|
|
|
printf_debug("\n");
|
2008-10-18 23:14:13 +02:00
|
|
|
if ((*(uint16_t *) spibar) & (1 << 15)) {
|
2008-06-27 18:28:34 +02:00
|
|
|
printf("WARNING: SPI Configuration Lockdown activated.\n");
|
2008-12-08 19:16:58 +01:00
|
|
|
ichspi_lock = 1;
|
2008-06-27 18:28:34 +02:00
|
|
|
}
|
2008-12-15 03:32:11 +01:00
|
|
|
ich_init_opcodes();
|
2008-07-01 01:45:22 +02:00
|
|
|
break;
|
|
|
|
case BUS_TYPE_ICH9_SPI:
|
2008-11-03 01:20:22 +01:00
|
|
|
tmp2 = *(uint16_t *) (spibar + 0);
|
|
|
|
printf_debug("0x00: 0x%04x (HSFS)\n", tmp2);
|
|
|
|
printf_debug("FLOCKDN %i, ", (tmp >> 15 & 1));
|
|
|
|
printf_debug("FDV %i, ", (tmp >> 14) & 1);
|
|
|
|
printf_debug("FDOPSS %i, ", (tmp >> 13) & 1);
|
|
|
|
printf_debug("SCIP %i, ", (tmp >> 5) & 1);
|
|
|
|
printf_debug("BERASE %i, ", (tmp >> 3) & 3);
|
|
|
|
printf_debug("AEL %i, ", (tmp >> 2) & 1);
|
|
|
|
printf_debug("FCERR %i, ", (tmp >> 1) & 1);
|
|
|
|
printf_debug("FDONE %i\n", (tmp >> 0) & 1);
|
|
|
|
|
|
|
|
tmp = *(uint32_t *) (spibar + 0x50);
|
|
|
|
printf_debug("0x50: 0x%08x (FRAP)\n", tmp);
|
|
|
|
printf_debug("BMWAG %i, ", (tmp >> 24) & 0xff);
|
|
|
|
printf_debug("BMRAG %i, ", (tmp >> 16) & 0xff);
|
|
|
|
printf_debug("BRWA %i, ", (tmp >> 8) & 0xff);
|
|
|
|
printf_debug("BRRA %i\n", (tmp >> 0) & 0xff);
|
|
|
|
|
|
|
|
printf_debug("0x54: 0x%08x (FREG0)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x54));
|
|
|
|
printf_debug("0x58: 0x%08x (FREG1)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x58));
|
|
|
|
printf_debug("0x5C: 0x%08x (FREG2)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x5C));
|
|
|
|
printf_debug("0x60: 0x%08x (FREG3)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x60));
|
|
|
|
printf_debug("0x64: 0x%08x (FREG4)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x64));
|
|
|
|
printf_debug("0x74: 0x%08x (PR0)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x74));
|
|
|
|
printf_debug("0x78: 0x%08x (PR1)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x78));
|
|
|
|
printf_debug("0x7C: 0x%08x (PR2)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x7C));
|
|
|
|
printf_debug("0x80: 0x%08x (PR3)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x80));
|
|
|
|
printf_debug("0x84: 0x%08x (PR4)\n",
|
|
|
|
*(uint32_t *) (spibar + 0x84));
|
|
|
|
/* printf_debug("0xA0: 0x%08x (BBAR)\n",
|
|
|
|
*(uint32_t *) (spibar + 0xA0)); ICH10 only? */
|
|
|
|
printf_debug("0xB0: 0x%08x (FDOC)\n",
|
|
|
|
*(uint32_t *) (spibar + 0xB0));
|
2008-12-22 15:12:08 +01:00
|
|
|
ich_init_opcodes();
|
2008-07-01 01:45:22 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Nothing */
|
|
|
|
break;
|
2008-06-27 18:28:34 +02:00
|
|
|
}
|
|
|
|
|
2008-03-14 18:20:59 +01:00
|
|
|
old = pci_read_byte(dev, 0xdc);
|
|
|
|
printf_debug("SPI Read Configuration: ");
|
|
|
|
new = (old >> 2) & 0x3;
|
|
|
|
switch (new) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
printf_debug("prefetching %sabled, caching %sabled, ",
|
2008-10-18 23:14:13 +02:00
|
|
|
(new & 0x2) ? "en" : "dis",
|
|
|
|
(new & 0x1) ? "dis" : "en");
|
2008-03-14 18:20:59 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf_debug("invalid prefetching/caching settings, ");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-07-01 01:45:22 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2008-06-27 18:28:34 +02:00
|
|
|
|
2008-05-16 16:39:39 +02:00
|
|
|
static int enable_flash_ich7(struct pci_dev *dev, const char *name)
|
2008-05-14 16:51:22 +02:00
|
|
|
{
|
2008-07-01 01:45:22 +02:00
|
|
|
return enable_flash_ich_dc_spi(dev, name, 7);
|
2008-05-14 16:51:22 +02:00
|
|
|
}
|
|
|
|
|
2008-05-16 16:39:39 +02:00
|
|
|
static int enable_flash_ich8(struct pci_dev *dev, const char *name)
|
|
|
|
{
|
2008-07-01 01:45:22 +02:00
|
|
|
return enable_flash_ich_dc_spi(dev, name, 8);
|
2008-05-16 16:39:39 +02:00
|
|
|
}
|
|
|
|
|
2008-05-14 16:51:22 +02:00
|
|
|
static int enable_flash_ich9(struct pci_dev *dev, const char *name)
|
|
|
|
{
|
2008-07-01 01:45:22 +02:00
|
|
|
return enable_flash_ich_dc_spi(dev, name, 9);
|
2008-05-14 16:51:22 +02:00
|
|
|
}
|
|
|
|
|
2008-10-10 22:54:41 +02:00
|
|
|
static int enable_flash_ich10(struct pci_dev *dev, const char *name)
|
|
|
|
{
|
|
|
|
return enable_flash_ich_dc_spi(dev, name, 10);
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_vt823x(struct pci_dev *dev, const 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
|
|
|
|
2008-10-18 23:14:13 +02:00
|
|
|
/* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */
|
2008-04-29 15:46:38 +02:00
|
|
|
pci_write_byte(dev, 0x41, 0x7f);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
2007-06-06 23:35:45 +02:00
|
|
|
uint8_t reg8;
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2008-10-18 23:14:13 +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
|
|
|
|
2008-10-18 23:14:13 +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;
|
|
|
|
}
|
|
|
|
|
2008-02-08 11:10:57 +01:00
|
|
|
/**
|
|
|
|
* 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 MSRs, however requires instructions 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 location could have potential problems on SMP machines
|
|
|
|
* since it assumes cpu0, but it is safe on the Geode which is not SMP.
|
|
|
|
*
|
|
|
|
* Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
|
|
|
|
* To enable write to NOR Boot flash for the benefit of systems that have such
|
|
|
|
* a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
|
|
|
|
*
|
|
|
|
* This is probably not portable beyond Linux.
|
|
|
|
*/
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
|
2007-11-13 17:45:22 +01:00
|
|
|
{
|
2008-10-18 23:14:13 +02:00
|
|
|
#define MSR_RCONF_DEFAULT 0x1808
|
|
|
|
#define MSR_NORF_CTL 0x51400018
|
2008-02-08 10:59:58 +01:00
|
|
|
|
2007-11-13 17:45:22 +01:00
|
|
|
int fd_msr;
|
|
|
|
unsigned char buf[8];
|
|
|
|
|
2008-02-08 10:59:58 +01:00
|
|
|
fd_msr = open("/dev/cpu/0/msr", O_RDWR);
|
2007-11-13 17:45:22 +01:00
|
|
|
if (!fd_msr) {
|
|
|
|
perror("open msr");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-08 11:10:57 +01:00
|
|
|
|
|
|
|
if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) {
|
|
|
|
perror("lseek64");
|
2008-02-11 15:32:45 +01:00
|
|
|
printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n");
|
2008-02-08 11:10:57 +01:00
|
|
|
close(fd_msr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read(fd_msr, buf, 8) != 8) {
|
2008-02-11 15:32:45 +01:00
|
|
|
perror("read msr");
|
2008-02-08 11:10:57 +01:00
|
|
|
close(fd_msr);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-08 10:59:58 +01:00
|
|
|
|
2007-11-13 17:45:22 +01:00
|
|
|
if (buf[7] != 0x22) {
|
2008-02-08 10:59:58 +01:00
|
|
|
buf[7] &= 0xfb;
|
2008-10-18 23:14:13 +02:00
|
|
|
if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT,
|
|
|
|
SEEK_SET) == -1) {
|
2008-02-08 11:10:57 +01:00
|
|
|
perror("lseek64");
|
|
|
|
close(fd_msr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-11-13 17:45:22 +01:00
|
|
|
if (write(fd_msr, buf, 8) < 0) {
|
|
|
|
perror("msr write");
|
2008-02-08 11:10:57 +01:00
|
|
|
close(fd_msr);
|
2007-11-13 17:45:22 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2008-02-08 10:59:58 +01:00
|
|
|
|
2008-02-08 11:10:57 +01:00
|
|
|
if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
|
|
|
|
perror("lseek64");
|
|
|
|
close(fd_msr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-02-08 10:59:58 +01:00
|
|
|
if (read(fd_msr, buf, 8) != 8) {
|
|
|
|
perror("read msr");
|
2008-02-08 11:10:57 +01:00
|
|
|
close(fd_msr);
|
2008-02-08 10:59:58 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Raise WE_CS3 bit. */
|
|
|
|
buf[0] |= 0x08;
|
|
|
|
|
2008-02-08 11:10:57 +01:00
|
|
|
if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) {
|
|
|
|
perror("lseek64");
|
|
|
|
close(fd_msr);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-08 10:59:58 +01:00
|
|
|
if (write(fd_msr, buf, 8) < 0) {
|
|
|
|
perror("msr write");
|
2008-02-08 11:10:57 +01:00
|
|
|
close(fd_msr);
|
2008-02-08 10:59:58 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd_msr);
|
|
|
|
|
2008-10-18 23:14:13 +02:00
|
|
|
#undef MSR_RCONF_DEFAULT
|
|
|
|
#undef MSR_NORF_CTL
|
2007-11-13 17:45:22 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_sis5595(struct pci_dev *dev, const char *name)
|
2004-03-17 23:22:08 +01:00
|
|
|
{
|
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);
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
new &= (~0x20); /* Clear bit 5. */
|
|
|
|
new |= 0x4; /* Set bit 2. */
|
2004-03-17 23:22:08 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2008-10-18 15:54:30 +02:00
|
|
|
/* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
|
2008-10-18 23:14:13 +02:00
|
|
|
new = pci_read_byte(dev, 0x40);
|
2008-10-18 15:54:30 +02:00
|
|
|
new &= 0xFB;
|
|
|
|
new |= 0x3;
|
2008-10-18 23:14:13 +02:00
|
|
|
pci_write_byte(dev, 0x40, new);
|
|
|
|
newer = pci_read_byte(dev, 0x40);
|
2008-10-18 15:54:30 +02:00
|
|
|
if (newer != new) {
|
|
|
|
printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name);
|
|
|
|
printf("Stuck at 0x%x\n", newer);
|
|
|
|
return -1;
|
|
|
|
}
|
2004-03-17 23:22:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-25 20:03:50 +02:00
|
|
|
/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
|
2004-03-20 17:46:10 +01:00
|
|
|
{
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t old, new;
|
2007-05-09 12:17:44 +02:00
|
|
|
|
2007-12-04 22:49:06 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-25 20:03:50 +02:00
|
|
|
/* Enable 'ROM write' bit. */
|
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;
|
|
|
|
}
|
|
|
|
|
2008-10-15 19:50:29 +02:00
|
|
|
static int enable_flash_sb600(struct pci_dev *dev, const char *name)
|
|
|
|
{
|
2008-11-28 22:36:51 +01:00
|
|
|
uint32_t tmp, low_bits, num;
|
2008-10-15 19:50:29 +02:00
|
|
|
uint8_t reg;
|
|
|
|
|
2008-11-28 22:36:51 +01:00
|
|
|
low_bits = tmp = pci_read_long(dev, 0xa0);
|
|
|
|
low_bits &= ~0xffffc000; /* for mmap aligning requirements */
|
|
|
|
low_bits &= 0xfffffff0; /* remove low 4 bits */
|
|
|
|
tmp &= 0xffffc000;
|
|
|
|
printf_debug("SPI base address is at 0x%x\n", tmp + low_bits);
|
|
|
|
|
|
|
|
sb600_spibar = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
fd_mem, (off_t)tmp);
|
|
|
|
if (sb600_spibar == MAP_FAILED) {
|
|
|
|
perror("Can't mmap memory using " MEM_DEV);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
sb600_spibar += low_bits;
|
|
|
|
|
|
|
|
/* Clear ROM protect 0-3. */
|
2008-10-18 23:14:13 +02:00
|
|
|
for (reg = 0x50; reg < 0x60; reg += 4) {
|
2008-11-28 22:36:51 +01:00
|
|
|
num = pci_read_long(dev, reg);
|
|
|
|
num &= 0xfffffffc;
|
|
|
|
pci_write_byte(dev, reg, num);
|
2008-10-15 19:50:29 +02:00
|
|
|
}
|
|
|
|
|
2008-11-28 22:36:51 +01:00
|
|
|
flashbus = BUS_TYPE_SB600_SPI;
|
|
|
|
|
|
|
|
/* Enable SPI ROM in SB600 PM register. */
|
|
|
|
OUTB(0x8f, 0xcd6);
|
|
|
|
OUTB(0x0e, 0xcd7);
|
|
|
|
|
2008-10-15 19:50:29 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_ck804(struct pci_dev *dev, const char *name)
|
2005-07-06 19:13:46 +02:00
|
|
|
{
|
2007-05-09 12:17:44 +02:00
|
|
|
uint8_t old, new;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
|
|
|
|
static int enable_flash_sb400(struct pci_dev *dev, const char *name)
|
2006-03-31 13:26:55 +02:00
|
|
|
{
|
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;
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/* 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) {
|
2008-10-18 23:14:13 +02:00
|
|
|
if (pci_filter_match(&f, smbusdev))
|
2006-03-31 13:26:55 +02:00
|
|
|
break;
|
|
|
|
}
|
2007-04-05 00:45:58 +02:00
|
|
|
|
2007-05-09 12:17:44 +02:00
|
|
|
if (!smbusdev) {
|
2007-12-04 22:49:06 +01: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
|
|
|
|
2007-12-04 22:49:06 +01: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-12-04 22:49:06 +01: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-12-04 22:49:06 +01:00
|
|
|
/* Now become a bit silly. */
|
2008-05-22 15:22:45 +02:00
|
|
|
tmp = INB(0xc6f);
|
|
|
|
OUTB(tmp, 0xeb);
|
|
|
|
OUTB(tmp, 0xeb);
|
2007-05-09 12:17:44 +02:00
|
|
|
tmp |= 0x40;
|
2008-05-22 15:22:45 +02:00
|
|
|
OUTB(tmp, 0xc6f);
|
|
|
|
OUTB(tmp, 0xeb);
|
|
|
|
OUTB(tmp, 0xeb);
|
2006-03-31 13:26:55 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
|
2007-01-22 21:21:17 +01:00
|
|
|
{
|
2007-12-04 22:49:06 +01:00
|
|
|
uint8_t old, new, byte;
|
|
|
|
uint16_t word;
|
2007-05-09 12:17:44 +02:00
|
|
|
|
2007-12-04 22:49:06 +01: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) {
|
2008-10-18 23:14:13 +02:00
|
|
|
printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name);
|
2007-05-09 12:17:44 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2007-01-22 21:21:17 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
|
2007-06-05 12:28:39 +02:00
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
2008-12-03 22:24:40 +01:00
|
|
|
/**
|
|
|
|
* Usually on the x86 architectures (and on other PC-like platforms like some
|
|
|
|
* Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
|
|
|
|
* Elan SC520 only a small piece of the system flash is mapped there, but the
|
|
|
|
* complete flash is mapped somewhere below 1G. The position can be determined
|
|
|
|
* by the BOOTCS PAR register.
|
|
|
|
*/
|
|
|
|
static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
|
|
|
|
{
|
|
|
|
int i, bootcs_found = 0;
|
|
|
|
uint32_t parx = 0;
|
|
|
|
void *mmcr;
|
|
|
|
|
|
|
|
/* 1. Map MMCR */
|
|
|
|
mmcr = mmap(0, getpagesize(), PROT_WRITE | PROT_READ,
|
|
|
|
MAP_SHARED, fd_mem, (off_t)0xFFFEF000);
|
|
|
|
|
|
|
|
if (mmcr == MAP_FAILED) {
|
|
|
|
perror("Can't mmap Elan SC520 specific registers using " MEM_DEV);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
|
|
|
|
* BOOTCS region (PARx[31:29] = 100b)e
|
|
|
|
*/
|
|
|
|
for (i = 0x88; i <= 0xc4; i += 4) {
|
|
|
|
parx = *(volatile uint32_t *)(mmcr + i);
|
|
|
|
if ((parx >> 29) == 4) {
|
|
|
|
bootcs_found = 1;
|
|
|
|
break; /* BOOTCS found */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
|
|
|
|
* PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
|
|
|
|
*/
|
|
|
|
if (bootcs_found) {
|
|
|
|
if (parx & (1 << 25)) {
|
|
|
|
parx &= (1 << 14) - 1; /* Mask [13:0] */
|
|
|
|
flashbase = parx << 16;
|
|
|
|
} else {
|
|
|
|
parx &= (1 << 18) - 1; /* Mask [17:0] */
|
|
|
|
flashbase = parx << 12;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 4. Clean up */
|
|
|
|
munmap (mmcr, getpagesize());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-03-17 23:22:08 +01:00
|
|
|
typedef struct penable {
|
2007-12-04 22:49:06 +01:00
|
|
|
uint16_t vendor, device;
|
|
|
|
const char *name;
|
|
|
|
int (*doit) (struct pci_dev *dev, const char *name);
|
2004-03-17 23:22:08 +01:00
|
|
|
} FLASH_ENABLE;
|
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
static const FLASH_ENABLE enables[] = {
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x1039, 0x0630, "SiS630", enable_flash_sis630},
|
2008-10-26 19:40:42 +01:00
|
|
|
{0x8086, 0x122e, "Intel PIIX", enable_flash_piix4},
|
2008-10-28 12:50:05 +01:00
|
|
|
{0x8086, 0x1234, "Intel MPIIX", enable_flash_piix4},
|
2008-10-26 19:40:42 +01:00
|
|
|
{0x8086, 0x7000, "Intel PIIX3", enable_flash_piix4},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x8086, 0x7110, "Intel PIIX4/4E/4M", enable_flash_piix4},
|
|
|
|
{0x8086, 0x7198, "Intel 440MX", enable_flash_piix4},
|
|
|
|
{0x8086, 0x2410, "Intel ICH", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2420, "Intel ICH0", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2440, "Intel ICH2", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x244c, "Intel ICH2-M", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x2480, "Intel ICH3-S", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x248c, "Intel ICH3-M", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x24c0, "Intel ICH4/ICH4-L", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x24cc, "Intel ICH4-M", enable_flash_ich_4e},
|
|
|
|
{0x8086, 0x24d0, "Intel ICH5/ICH5R", enable_flash_ich_4e},
|
2008-05-14 14:22:38 +02:00
|
|
|
{0x8086, 0x25a1, "Intel 6300ESB", enable_flash_ich_4e},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x8086, 0x2640, "Intel ICH6/ICH6R", enable_flash_ich_dc},
|
|
|
|
{0x8086, 0x2641, "Intel ICH6-M", enable_flash_ich_dc},
|
2008-10-29 15:54:36 +01:00
|
|
|
{0x8086, 0x5031, "Intel EP80579", enable_flash_ich7},
|
2008-05-16 16:39:39 +02:00
|
|
|
{0x8086, 0x27b0, "Intel ICH7DH", enable_flash_ich7},
|
|
|
|
{0x8086, 0x27b8, "Intel ICH7/ICH7R", enable_flash_ich7},
|
|
|
|
{0x8086, 0x27b9, "Intel ICH7M", enable_flash_ich7},
|
|
|
|
{0x8086, 0x27bd, "Intel ICH7MDH", enable_flash_ich7},
|
|
|
|
{0x8086, 0x2810, "Intel ICH8/ICH8R", enable_flash_ich8},
|
|
|
|
{0x8086, 0x2811, "Intel ICH8M-E", enable_flash_ich8},
|
|
|
|
{0x8086, 0x2812, "Intel ICH8DH", enable_flash_ich8},
|
|
|
|
{0x8086, 0x2814, "Intel ICH8DO", enable_flash_ich8},
|
|
|
|
{0x8086, 0x2815, "Intel ICH8M", enable_flash_ich8},
|
2008-05-14 16:51:22 +02:00
|
|
|
{0x8086, 0x2912, "Intel ICH9DH", enable_flash_ich9},
|
|
|
|
{0x8086, 0x2914, "Intel ICH9DO", enable_flash_ich9},
|
|
|
|
{0x8086, 0x2916, "Intel ICH9R", enable_flash_ich9},
|
|
|
|
{0x8086, 0x2917, "Intel ICH9M-E", enable_flash_ich9},
|
|
|
|
{0x8086, 0x2918, "Intel ICH9", enable_flash_ich9},
|
|
|
|
{0x8086, 0x2919, "Intel ICH9M", enable_flash_ich9},
|
2008-10-10 22:54:41 +02:00
|
|
|
{0x8086, 0x3a14, "Intel ICH10DO", enable_flash_ich10},
|
|
|
|
{0x8086, 0x3a16, "Intel ICH10R", enable_flash_ich10},
|
|
|
|
{0x8086, 0x3a18, "Intel ICH10", enable_flash_ich10},
|
|
|
|
{0x8086, 0x3a1a, "Intel ICH10D", enable_flash_ich10},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x1106, 0x8231, "VIA VT8231", enable_flash_vt823x},
|
|
|
|
{0x1106, 0x3177, "VIA VT8235", enable_flash_vt823x},
|
|
|
|
{0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x},
|
2008-06-30 23:38:30 +02:00
|
|
|
{0x1106, 0x3372, "VIA VT8237S", enable_flash_vt8237s_spi},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x1106, 0x8324, "VIA CX700", enable_flash_vt823x},
|
2008-10-25 20:03:50 +02:00
|
|
|
{0x1106, 0x0586, "VIA VT82C586A/B", enable_flash_amd8111},
|
|
|
|
{0x1106, 0x0686, "VIA VT82C686A/B", enable_flash_amd8111},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530},
|
|
|
|
{0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100},
|
|
|
|
{0x1039, 0x0008, "SiS5595", enable_flash_sis5595},
|
|
|
|
{0x1022, 0x2080, "AMD CS5536", enable_flash_cs5536},
|
|
|
|
{0x1022, 0x7468, "AMD8111", enable_flash_amd8111},
|
2008-10-15 19:50:29 +02:00
|
|
|
{0x1002, 0x438D, "ATI(AMD) SB600", enable_flash_sb600},
|
2008-12-05 12:58:43 +01:00
|
|
|
{0x1002, 0x439d, "ATI(AMD) SB700", enable_flash_sb600},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533},
|
|
|
|
{0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */
|
|
|
|
{0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */
|
|
|
|
/* Slave, should not be here, to fix known bug for A01. */
|
|
|
|
{0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804},
|
|
|
|
{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}, /* M57SLI*/
|
|
|
|
{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 */
|
2008-07-05 11:48:30 +02:00
|
|
|
{0x10de, 0x0548, "NVIDIA MCP67", enable_flash_mcp55},
|
2008-03-13 19:52:51 +01:00
|
|
|
{0x1002, 0x4377, "ATI SB400", enable_flash_sb400},
|
|
|
|
{0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
|
2008-12-03 22:24:40 +01:00
|
|
|
{0x1022, 0x3000, "AMD Elan SC520", get_flashbase_sc520},
|
2004-03-17 23:22:08 +01:00
|
|
|
};
|
2004-03-20 17:46:10 +01:00
|
|
|
|
2008-03-12 12:54:51 +01:00
|
|
|
void print_supported_chipsets(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf("\nSupported chipsets:\n\n");
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(enables); i++)
|
|
|
|
printf("%s (%04x:%04x)\n", enables[i].name,
|
|
|
|
enables[i].vendor, enables[i].device);
|
|
|
|
}
|
|
|
|
|
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;
|
2007-12-04 22:49:06 +01:00
|
|
|
int ret = -2; /* Nothing! */
|
2007-05-09 12:17:44 +02:00
|
|
|
int i;
|
2007-02-06 20:47:50 +01:00
|
|
|
|
2007-12-04 22:49:06 +01:00
|
|
|
/* Now let's try to find the chipset we have... */
|
2008-03-12 12:54:51 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(enables); 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
|
|
|
}
|