mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 22:52:34 +02:00

Tested mainboards: OK: - AOpen UK79G-1394 (used in EZ18 barebones) Reported by Lawrence Gough - ASUS M4N78 SE Reported by Dima Veselov - ASUS P5LD2-VM Mark board enable as tested (reported by Dima Veselov) - GIGABYTE GA-970A-UD3P (rev. 2.0) Reported by trucmar on IRC - GIGABYTE GA-990FXA-UD3 (rev. 4.0) Reported by ROKO__ on IRC - GIGABYTE GA-H77-DS3H (rev. 1.1) Reported by Evgeniy Edigarev - GIGABYTE GA-P55-USB3 (rev. 2.0) Reported by Måns Thörnqvist - MSI MS-7817 (H81M-E33) Reported by Igor Kolker Chipsets: - Marked Intel Bay Trail (0x0f1c) as tested OK Reported by Antonio Ospite - Refine Intel IDs * Add IDs for Braswell * Add IDs for 9 Series PCHs (e.g. H97, Z97) * Rename Wellsburg devices slightly Flash chips: - Atmel AT25DF041A to PREW (+PREW) Reported by Tai-hwa Liang - Atmel AT26DF161 to PREW (+EW) Reported by Steve Shenton - Atmel AT45DB011D to PREW (+PREW) Reported by The Raven - Atmel AT45DB642D to PREW (+PREW) Reported by Mahesh Mokal - Eon EN25F32 to PREW (+PREW) Reported by Arman Khodabande - Eon EN25F40 to PREW (+REW) Reported by Jerrad Pierce - Eon EN25QH16 to PREW (+EW) Reported by Ben Johnson - GigaDevice GD25Q20(B) to PREW (+PREW) Reported by Gilles Aurejac - Macronix MX25U6435E/F to PR (+PR) Reported by Matt Taggart - PMC Pm25LV512(A) to PREW (+PREW) Reported by The Raven - SST SST39VF020 to PREW (+PREW) Reported by Urja Rannikko - Winbond W25Q40.V to PREW (+EW) Reported by Torben Nielsen - Add E variants of MX25Lx006 (MX25L2006E, MX25L4006E, MX25L8006E). - Add MX25L6465E variant. - There was never a MX25L12805 AFAICT. - Split MX25L12805 from models with the same ID but an additional 32 kB eraser: MX25L12835F/MX25L12845E/MX25L12865E. - Add a bunch of ST parallel NOR flash chip IDs. Miscellaneous: - Whitelist ThinkPad X200. - Constify master parameter of register_master(). - Remove FEATURE_BYTEWRITES because it was never used at all. - Refine hwseq messages and make them less prominent. - Fix the yet unused PRIxCHIPADDR format string thingy. - Fix copy&paste error in spi_prettyprint_status_register_bp(). Spotted by Pablo Cases. - Add an additional SMBus controller revision to identify another Yangtze model. Thanks to Dan Christensen for reporting this issue. - dediprog: add missing include for stdlib.h. This fixes (at least) building on FreeBSD and DragonflyBSD with gcc. - Remove references to struct pci_filter from programmer.h. It is only needed in internal.c where it has a complete type. Having it in programmer.h provokes a warning by some old versions of gcc. - Tiny other stuff. Corresponding to flashrom svn r1879. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
145 lines
4.1 KiB
C
145 lines
4.1 KiB
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* Copyright (C) 2009,2010,2011 Carl-Daniel Hailfinger
|
|
*
|
|
* 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; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include "flash.h"
|
|
#include "programmer.h"
|
|
|
|
/* No-op shutdown() for programmers which don't need special handling */
|
|
int noop_shutdown(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/* Fallback map() for programmers which don't need special handling */
|
|
void *fallback_map(const char *descr, uintptr_t phys_addr, size_t len)
|
|
{
|
|
/* FIXME: Should return phys_addr. */
|
|
return NULL;
|
|
}
|
|
|
|
/* No-op/fallback unmap() for programmers which don't need special handling */
|
|
void fallback_unmap(void *virt_addr, size_t len)
|
|
{
|
|
}
|
|
|
|
/* No-op chip_writeb() for parallel style drivers not supporting writes */
|
|
void noop_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr)
|
|
{
|
|
}
|
|
|
|
/* Little-endian fallback for drivers not supporting 16 bit accesses */
|
|
void fallback_chip_writew(const struct flashctx *flash, uint16_t val,
|
|
chipaddr addr)
|
|
{
|
|
chip_writeb(flash, val & 0xff, addr);
|
|
chip_writeb(flash, (val >> 8) & 0xff, addr + 1);
|
|
}
|
|
|
|
/* Little-endian fallback for drivers not supporting 16 bit accesses */
|
|
uint16_t fallback_chip_readw(const struct flashctx *flash, const chipaddr addr)
|
|
{
|
|
uint16_t val;
|
|
val = chip_readb(flash, addr);
|
|
val |= chip_readb(flash, addr + 1) << 8;
|
|
return val;
|
|
}
|
|
|
|
/* Little-endian fallback for drivers not supporting 32 bit accesses */
|
|
void fallback_chip_writel(const struct flashctx *flash, uint32_t val,
|
|
chipaddr addr)
|
|
{
|
|
chip_writew(flash, val & 0xffff, addr);
|
|
chip_writew(flash, (val >> 16) & 0xffff, addr + 2);
|
|
}
|
|
|
|
/* Little-endian fallback for drivers not supporting 32 bit accesses */
|
|
uint32_t fallback_chip_readl(const struct flashctx *flash, const chipaddr addr)
|
|
{
|
|
uint32_t val;
|
|
val = chip_readw(flash, addr);
|
|
val |= chip_readw(flash, addr + 2) << 16;
|
|
return val;
|
|
}
|
|
|
|
void fallback_chip_writen(const struct flashctx *flash, const uint8_t *buf, chipaddr addr, size_t len)
|
|
{
|
|
size_t i;
|
|
for (i = 0; i < len; i++)
|
|
chip_writeb(flash, buf[i], addr + i);
|
|
return;
|
|
}
|
|
|
|
void fallback_chip_readn(const struct flashctx *flash, uint8_t *buf,
|
|
chipaddr addr, size_t len)
|
|
{
|
|
size_t i;
|
|
for (i = 0; i < len; i++)
|
|
buf[i] = chip_readb(flash, addr + i);
|
|
return;
|
|
}
|
|
|
|
int register_par_master(const struct par_master *mst,
|
|
const enum chipbustype buses)
|
|
{
|
|
struct registered_master rmst;
|
|
if (!mst->chip_writeb || !mst->chip_writew || !mst->chip_writel ||
|
|
!mst->chip_writen || !mst->chip_readb || !mst->chip_readw ||
|
|
!mst->chip_readl || !mst->chip_readn) {
|
|
msg_perr("%s called with incomplete master definition. "
|
|
"Please report a bug at flashrom@flashrom.org\n",
|
|
__func__);
|
|
return ERROR_FLASHROM_BUG;
|
|
}
|
|
|
|
rmst.buses_supported = buses;
|
|
rmst.par = *mst;
|
|
return register_master(&rmst);
|
|
}
|
|
|
|
/* The limit of 4 is totally arbitrary. */
|
|
#define MASTERS_MAX 4
|
|
struct registered_master registered_masters[MASTERS_MAX];
|
|
int registered_master_count = 0;
|
|
|
|
/* This function copies the struct registered_master parameter. */
|
|
int register_master(const struct registered_master *mst)
|
|
{
|
|
if (registered_master_count >= MASTERS_MAX) {
|
|
msg_perr("Tried to register more than %i master "
|
|
"interfaces.\n", MASTERS_MAX);
|
|
return ERROR_FLASHROM_LIMIT;
|
|
}
|
|
registered_masters[registered_master_count] = *mst;
|
|
registered_master_count++;
|
|
|
|
return 0;
|
|
}
|
|
|
|
enum chipbustype get_buses_supported(void)
|
|
{
|
|
int i;
|
|
enum chipbustype ret = BUS_NONE;
|
|
|
|
for (i = 0; i < registered_master_count; i++)
|
|
ret |= registered_masters[i].buses_supported;
|
|
|
|
return ret;
|
|
}
|