mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 06:01:16 +02:00
Use struct flashctx instead of struct flashchip for flash chip access
Struct flashchip is used only for the flashchips array and for operations which do not access hardware, e.g. printing a list of supported flash chips. struct flashctx (flash context) contains all data available in struct flashchip, but it also contains runtime information like mapping addresses. struct flashctx is expected to grow additional members over time, a prime candidate being programmer info. struct flashctx contains all of struct flashchip with identical member layout, but struct flashctx has additional members at the end. The separation between struct flashchip/flashctx shrinks the memory requirement of the big flashchips array and allows future extension of flashctx without having to worry about bloat. Corresponding to flashrom svn r1473. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
#include "flash.h"
|
||||
#include "chipdrivers.h"
|
||||
|
||||
static int write_lockbits_block_49lfxxxc(struct flashchip *flash, unsigned long address, unsigned char bits)
|
||||
static int write_lockbits_block_49lfxxxc(struct flashctx *flash, unsigned long address, unsigned char bits)
|
||||
{
|
||||
unsigned long lock = flash->virtual_registers + address + 2;
|
||||
msg_cdbg("lockbits at address=0x%08lx is 0x%01x\n", lock, chip_readb(lock));
|
||||
@ -32,7 +32,7 @@ static int write_lockbits_block_49lfxxxc(struct flashchip *flash, unsigned long
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int write_lockbits_49lfxxxc(struct flashchip *flash, unsigned char bits)
|
||||
static int write_lockbits_49lfxxxc(struct flashctx *flash, unsigned char bits)
|
||||
{
|
||||
chipaddr registers = flash->virtual_registers;
|
||||
unsigned int i, left = flash->total_size * 1024;
|
||||
@ -54,12 +54,12 @@ static int write_lockbits_49lfxxxc(struct flashchip *flash, unsigned char bits)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int unlock_49lfxxxc(struct flashchip *flash)
|
||||
int unlock_49lfxxxc(struct flashctx *flash)
|
||||
{
|
||||
return write_lockbits_49lfxxxc(flash, 0);
|
||||
}
|
||||
|
||||
int erase_sector_49lfxxxc(struct flashchip *flash, unsigned int address, unsigned int sector_size)
|
||||
int erase_sector_49lfxxxc(struct flashctx *flash, unsigned int address, unsigned int sector_size)
|
||||
{
|
||||
uint8_t status;
|
||||
chipaddr bios = flash->virtual_memory;
|
||||
|
Reference in New Issue
Block a user