aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/st_spi_fsm.c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2014-03-20 05:21:01 -0400
committerBrian Norris <computersforpeace@gmail.com>2014-03-20 07:17:20 -0400
commitac94dbcb6779d184f89bde0f8e2c7368d7179dd8 (patch)
tree9a1410e065ff7024d6775d0ae274467a6c77c68c /drivers/mtd/devices/st_spi_fsm.c
parent4a341fe758657850cbf6d2c36ee9029c0210e3c5 (diff)
mtd: st_spi_fsm: Add the ability to read the FSM's status
Acked-by Angus Clark <angus.clark@st.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/devices/st_spi_fsm.c')
-rw-r--r--drivers/mtd/devices/st_spi_fsm.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/mtd/devices/st_spi_fsm.c b/drivers/mtd/devices/st_spi_fsm.c
index 34aac3f49ba9..5e315e31a839 100644
--- a/drivers/mtd/devices/st_spi_fsm.c
+++ b/drivers/mtd/devices/st_spi_fsm.c
@@ -793,6 +793,30 @@ static uint8_t stfsm_wait_busy(struct stfsm *fsm)
793 return FLASH_STATUS_TIMEOUT; 793 return FLASH_STATUS_TIMEOUT;
794} 794}
795 795
796static int stfsm_read_status(struct stfsm *fsm, uint8_t cmd,
797 uint8_t *status)
798{
799 struct stfsm_seq *seq = &stfsm_seq_read_status_fifo;
800 uint32_t tmp;
801
802 dev_dbg(fsm->dev, "reading STA[%s]\n",
803 (cmd == FLASH_CMD_RDSR) ? "1" : "2");
804
805 seq->seq_opc[0] = (SEQ_OPC_PADS_1 |
806 SEQ_OPC_CYCLES(8) |
807 SEQ_OPC_OPCODE(cmd)),
808
809 stfsm_load_seq(fsm, seq);
810
811 stfsm_read_fifo(fsm, &tmp, 4);
812
813 *status = (uint8_t)(tmp >> 24);
814
815 stfsm_wait_seq(fsm);
816
817 return 0;
818}
819
796static int stfsm_wrvcr(struct stfsm *fsm, uint8_t data) 820static int stfsm_wrvcr(struct stfsm *fsm, uint8_t data)
797{ 821{
798 struct stfsm_seq *seq = &stfsm_seq_wrvcr; 822 struct stfsm_seq *seq = &stfsm_seq_wrvcr;