1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 06:23:18 +02:00

Allow to exclude each of the external programmer drivers from being compiled in

Example make commandline if you want only internal programmers:
make CONFIG_FT2232SPI=no CONFIG_SERPROG=no CONFIG_NIC3COM=no
CONFIG_SATASII=no CONFIG_DRKAISER=no CONFIG_DUMMY=no

Of course, all of the CONFIG_* symbols can be mixed and matched as
needed. CONFIG_FT2232SPI is special because even if it is enabled, make
will check if the headers are available and skip it otherwise.

Corresponding to flashrom svn r724.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
This commit is contained in:
Carl-Daniel Hailfinger
2009-09-16 10:09:21 +00:00
parent ab044b20a2
commit 4740c6ff3c
6 changed files with 97 additions and 17 deletions

15
flash.h
View File

@ -82,10 +82,18 @@ typedef unsigned long chipaddr;
enum programmer {
PROGRAMMER_INTERNAL,
#if DUMMY_SUPPORT == 1
PROGRAMMER_DUMMY,
#endif
#if NIC3COM_SUPPORT == 1
PROGRAMMER_NIC3COM,
#endif
#if DRKAISER_SUPPORT == 1
PROGRAMMER_DRKAISER,
#endif
#if SATASII_SUPPORT == 1
PROGRAMMER_SATASII,
#endif
PROGRAMMER_IT87SPI,
#if FT2232_SPI_SUPPORT == 1
PROGRAMMER_FT2232SPI,
@ -375,10 +383,11 @@ uint8_t mmio_readb(void *addr);
uint16_t mmio_readw(void *addr);
uint32_t mmio_readl(void *addr);
void internal_delay(int usecs);
int fallback_shutdown(void);
int noop_shutdown(void);
void *fallback_map(const char *descr, unsigned long phys_addr, size_t len);
void fallback_unmap(void *virt_addr, size_t len);
void fallback_chip_writeb(uint8_t val, chipaddr addr);
uint8_t noop_chip_readb(const chipaddr addr);
void noop_chip_writeb(uint8_t val, chipaddr addr);
void fallback_chip_writew(uint16_t val, chipaddr addr);
void fallback_chip_writel(uint32_t val, chipaddr addr);
void fallback_chip_writen(uint8_t *buf, chipaddr addr, size_t len);
@ -474,7 +483,9 @@ enum spi_controller {
#if FT2232_SPI_SUPPORT == 1
SPI_CONTROLLER_FT2232,
#endif
#if DUMMY_SUPPORT == 1
SPI_CONTROLLER_DUMMY,
#endif
SPI_CONTROLLER_INVALID /* This must always be the last entry. */
};
extern const int spi_programmer_count;