mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 15:12:36 +02:00

This patch attempts to resolve some programmer shutdown ordering issues by having the programmer init functions register shutdown callbacks explicitly wherever it makes most sense. Before, assumptions were made that could lead to the internal programmer's state changing before the external programmer could be shut down properly. Now, each programmer cleans up after itself and (hopefully) performs each operation in the correct order. As a side-effect, this patch gives us a better usage model for reverse operations such as rpci_* and rmmio_*. In the long-run, this should make reversing the initialization process easier to understand, less tedious, and less error-prone. In short, this patch does the following: - Registers a shutdown callback during initialization for each programmer. - Kills the .shutdown function pointer from programmer_entry struct. Also, make most shutdown functions static. - Adds a few minor clean-ups and corrections (e.g. missing physunmap() calls). TODO: Remove forward declaration of serprog_shutdown() (added to simplify diff) Corresponding to flashrom svn r1338. Signed-off-by: David Hendricks <dhendrix@google.com> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
122 lines
3.8 KiB
C
122 lines
3.8 KiB
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#if defined(__i386__) || defined(__x86_64__)
|
|
|
|
#include <stdlib.h>
|
|
#include "flash.h"
|
|
#include "programmer.h"
|
|
|
|
#define BIOS_ROM_ADDR 0x04
|
|
#define BIOS_ROM_DATA 0x08
|
|
#define INT_STATUS 0x0e
|
|
#define INTERNAL_CONFIG 0x00
|
|
#define SELECT_REG_WINDOW 0x800
|
|
|
|
#define PCI_VENDOR_ID_3COM 0x10b7
|
|
|
|
static uint32_t internal_conf;
|
|
static uint16_t id;
|
|
|
|
const struct pcidev_status nics_3com[] = {
|
|
/* 3C90xB */
|
|
{0x10b7, 0x9055, OK, "3COM", "3C90xB: PCI 10/100 Mbps; shared 10BASE-T/100BASE-TX"},
|
|
{0x10b7, 0x9001, NT, "3COM", "3C90xB: PCI 10/100 Mbps; shared 10BASE-T/100BASE-T4" },
|
|
{0x10b7, 0x9004, OK, "3COM", "3C90xB: PCI 10BASE-T (TPO)" },
|
|
{0x10b7, 0x9005, NT, "3COM", "3C90xB: PCI 10BASE-T/10BASE2/AUI (COMBO)" },
|
|
{0x10b7, 0x9006, NT, "3COM", "3C90xB: PCI 10BASE-T/10BASE2 (TPC)" },
|
|
{0x10b7, 0x900a, NT, "3COM", "3C90xB: PCI 10BASE-FL" },
|
|
{0x10b7, 0x905a, NT, "3COM", "3C90xB: PCI 10BASE-FX" },
|
|
{0x10b7, 0x9058, OK, "3COM", "3C905B: Cyclone 10/100/BNC" },
|
|
|
|
/* 3C905C */
|
|
{0x10b7, 0x9200, OK, "3COM", "3C905C: EtherLink 10/100 PCI (TX)" },
|
|
|
|
/* 3C980C */
|
|
{0x10b7, 0x9805, NT, "3COM", "3C980C: EtherLink Server 10/100 PCI (TX)" },
|
|
|
|
{},
|
|
};
|
|
|
|
static int nic3com_shutdown(void *data)
|
|
{
|
|
/* 3COM 3C90xB cards need a special fixup. */
|
|
if (id == 0x9055 || id == 0x9001 || id == 0x9004 || id == 0x9005
|
|
|| id == 0x9006 || id == 0x900a || id == 0x905a || id == 0x9058) {
|
|
/* Select register window 3 and restore the receiver status. */
|
|
OUTW(SELECT_REG_WINDOW + 3, io_base_addr + INT_STATUS);
|
|
OUTL(internal_conf, io_base_addr + INTERNAL_CONFIG);
|
|
}
|
|
|
|
pci_cleanup(pacc);
|
|
release_io_perms();
|
|
return 0;
|
|
}
|
|
|
|
int nic3com_init(void)
|
|
{
|
|
get_io_perms();
|
|
|
|
io_base_addr = pcidev_init(PCI_BASE_ADDRESS_0, nics_3com);
|
|
|
|
id = pcidev_dev->device_id;
|
|
|
|
/* 3COM 3C90xB cards need a special fixup. */
|
|
if (id == 0x9055 || id == 0x9001 || id == 0x9004 || id == 0x9005
|
|
|| id == 0x9006 || id == 0x900a || id == 0x905a || id == 0x9058) {
|
|
/* Select register window 3 and save the receiver status. */
|
|
OUTW(SELECT_REG_WINDOW + 3, io_base_addr + INT_STATUS);
|
|
internal_conf = INL(io_base_addr + INTERNAL_CONFIG);
|
|
|
|
/* Set receiver type to MII for full BIOS ROM access. */
|
|
OUTL((internal_conf & 0xf00fffff) | 0x00600000, io_base_addr);
|
|
}
|
|
|
|
/*
|
|
* The lowest 16 bytes of the I/O mapped register space of (most) 3COM
|
|
* cards form a 'register window' into one of multiple (usually 8)
|
|
* register banks. For 3C90xB/3C90xC we need register window/bank 0.
|
|
*/
|
|
OUTW(SELECT_REG_WINDOW + 0, io_base_addr + INT_STATUS);
|
|
|
|
buses_supported = CHIP_BUSTYPE_PARALLEL;
|
|
max_rom_decode.parallel = 128 * 1024;
|
|
|
|
if (register_shutdown(nic3com_shutdown, NULL))
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
void nic3com_chip_writeb(uint8_t val, chipaddr addr)
|
|
{
|
|
OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
|
|
OUTB(val, io_base_addr + BIOS_ROM_DATA);
|
|
}
|
|
|
|
uint8_t nic3com_chip_readb(const chipaddr addr)
|
|
{
|
|
OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
|
|
return INB(io_base_addr + BIOS_ROM_DATA);
|
|
}
|
|
|
|
#else
|
|
#error PCI port I/O access is not supported on this architecture yet.
|
|
#endif
|