Commit e570bd04 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville

ssb: add struct for serial flash

This data allow writing for example MTD driver.
Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4a71053e
...@@ -73,6 +73,7 @@ static void ssb_sflash_cmd(struct ssb_chipcommon *cc, u32 opcode) ...@@ -73,6 +73,7 @@ static void ssb_sflash_cmd(struct ssb_chipcommon *cc, u32 opcode)
/* Initialize serial flash access */ /* Initialize serial flash access */
int ssb_sflash_init(struct ssb_chipcommon *cc) int ssb_sflash_init(struct ssb_chipcommon *cc)
{ {
struct ssb_sflash *sflash = &cc->dev->bus->mipscore.sflash;
const struct ssb_sflash_tbl_e *e; const struct ssb_sflash_tbl_e *e;
u32 id, id2; u32 id, id2;
...@@ -131,6 +132,12 @@ int ssb_sflash_init(struct ssb_chipcommon *cc) ...@@ -131,6 +132,12 @@ int ssb_sflash_init(struct ssb_chipcommon *cc)
return -ENOTSUPP; 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", pr_info("Found %s serial flash (blocksize: 0x%X, blocks: %d)\n",
e->name, e->blocksize, e->numblocks); e->name, e->blocksize, e->numblocks);
......
...@@ -20,6 +20,18 @@ struct ssb_pflash { ...@@ -20,6 +20,18 @@ struct ssb_pflash {
u32 window_size; 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_mipscore {
struct ssb_device *dev; struct ssb_device *dev;
...@@ -27,6 +39,9 @@ struct ssb_mipscore { ...@@ -27,6 +39,9 @@ struct ssb_mipscore {
struct ssb_serial_port serial_ports[4]; struct ssb_serial_port serial_ports[4];
struct ssb_pflash pflash; struct ssb_pflash pflash;
#ifdef CONFIG_SSB_SFLASH
struct ssb_sflash sflash;
#endif
}; };
extern void ssb_mipscore_init(struct ssb_mipscore *mcore); extern void ssb_mipscore_init(struct ssb_mipscore *mcore);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment