1
0
Fork 0

ssb: add struct for serial flash

This data allow writing for example MTD driver.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
wifi-calibration
Rafał Miłecki 2013-06-17 19:56:20 +02:00 committed by John W. Linville
parent 4a71053ec5
commit e570bd0472
2 changed files with 22 additions and 0 deletions

View File

@ -73,6 +73,7 @@ static void ssb_sflash_cmd(struct ssb_chipcommon *cc, u32 opcode)
/* Initialize serial flash access */
int ssb_sflash_init(struct ssb_chipcommon *cc)
{
struct ssb_sflash *sflash = &cc->dev->bus->mipscore.sflash;
const struct ssb_sflash_tbl_e *e;
u32 id, id2;
@ -131,6 +132,12 @@ int ssb_sflash_init(struct ssb_chipcommon *cc)
return -ENOTSUPP;
}
sflash->window = SSB_FLASH2;
sflash->blocksize = e->blocksize;
sflash->numblocks = e->numblocks;
sflash->size = sflash->blocksize * sflash->numblocks;
sflash->present = true;
pr_info("Found %s serial flash (blocksize: 0x%X, blocks: %d)\n",
e->name, e->blocksize, e->numblocks);

View File

@ -20,6 +20,18 @@ struct ssb_pflash {
u32 window_size;
};
#ifdef CONFIG_SSB_SFLASH
struct ssb_sflash {
bool present;
u32 window;
u32 blocksize;
u16 numblocks;
u32 size;
void *priv;
};
#endif
struct ssb_mipscore {
struct ssb_device *dev;
@ -27,6 +39,9 @@ struct ssb_mipscore {
struct ssb_serial_port serial_ports[4];
struct ssb_pflash pflash;
#ifdef CONFIG_SSB_SFLASH
struct ssb_sflash sflash;
#endif
};
extern void ssb_mipscore_init(struct ssb_mipscore *mcore);