提交 2c7e5798 编写于 作者: B Bing Zhao 提交者: John W. Linville

libertas: read SD8688 firmware status from new register

The scratch pad register is used to store firmware status after
firmware is downloaded and initialized. After firmware status is
verified OK, the same register is used to store RX packet length.
Hence the firmware status code is no longer valid afterwards.

SD8688 firmware introduces a new register for firmware status
which will never be overwritten.

Also add scratch_reg variable to if_sdio_card structure and
initialize it based on the model of the card during probe.
Signed-off-by: NBing Zhao <bzhao@marvell.com>
Acked-by: NDan Williams <dcbw@redhat.com>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 bb9f8692
...@@ -100,6 +100,7 @@ struct if_sdio_card { ...@@ -100,6 +100,7 @@ struct if_sdio_card {
int model; int model;
unsigned long ioport; unsigned long ioport;
unsigned int scratch_reg;
const char *helper; const char *helper;
const char *firmware; const char *firmware;
...@@ -119,19 +120,21 @@ struct if_sdio_card { ...@@ -119,19 +120,21 @@ struct if_sdio_card {
/* I/O */ /* I/O */
/********************************************************************/ /********************************************************************/
/*
* For SD8385/SD8686, this function reads firmware status after
* the image is downloaded, or reads RX packet length when
* interrupt (with IF_SDIO_H_INT_UPLD bit set) is received.
* For SD8688, this function reads firmware status only.
*/
static u16 if_sdio_read_scratch(struct if_sdio_card *card, int *err) static u16 if_sdio_read_scratch(struct if_sdio_card *card, int *err)
{ {
int ret, reg; int ret;
u16 scratch; u16 scratch;
if (card->model == IF_SDIO_MODEL_8385) scratch = sdio_readb(card->func, card->scratch_reg, &ret);
reg = IF_SDIO_SCRATCH_OLD;
else
reg = IF_SDIO_SCRATCH;
scratch = sdio_readb(card->func, reg, &ret);
if (!ret) if (!ret)
scratch |= sdio_readb(card->func, reg + 1, &ret) << 8; scratch |= sdio_readb(card->func, card->scratch_reg + 1,
&ret) << 8;
if (err) if (err)
*err = ret; *err = ret;
...@@ -706,6 +709,8 @@ static int if_sdio_prog_firmware(struct if_sdio_card *card) ...@@ -706,6 +709,8 @@ static int if_sdio_prog_firmware(struct if_sdio_card *card)
if (ret) if (ret)
goto out; goto out;
lbs_deb_sdio("firmware status = %#x\n", scratch);
if (scratch == IF_SDIO_FIRMWARE_OK) { if (scratch == IF_SDIO_FIRMWARE_OK) {
lbs_deb_sdio("firmware already loaded\n"); lbs_deb_sdio("firmware already loaded\n");
goto success; goto success;
...@@ -893,6 +898,20 @@ static int if_sdio_probe(struct sdio_func *func, ...@@ -893,6 +898,20 @@ static int if_sdio_probe(struct sdio_func *func,
card->func = func; card->func = func;
card->model = model; card->model = model;
switch (card->model) {
case IF_SDIO_MODEL_8385:
card->scratch_reg = IF_SDIO_SCRATCH_OLD;
break;
case IF_SDIO_MODEL_8686:
card->scratch_reg = IF_SDIO_SCRATCH;
break;
case IF_SDIO_MODEL_8688:
default: /* for newer chipsets */
card->scratch_reg = IF_SDIO_FW_STATUS;
break;
}
spin_lock_init(&card->lock); spin_lock_init(&card->lock);
card->workqueue = create_workqueue("libertas_sdio"); card->workqueue = create_workqueue("libertas_sdio");
INIT_WORK(&card->packet_worker, if_sdio_host_to_card_worker); INIT_WORK(&card->packet_worker, if_sdio_host_to_card_worker);
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
#define IF_SDIO_SCRATCH 0x34 #define IF_SDIO_SCRATCH 0x34
#define IF_SDIO_SCRATCH_OLD 0x80fe #define IF_SDIO_SCRATCH_OLD 0x80fe
#define IF_SDIO_FW_STATUS 0x40
#define IF_SDIO_FIRMWARE_OK 0xfedc #define IF_SDIO_FIRMWARE_OK 0xfedc
#define IF_SDIO_RX_LEN 0x42 #define IF_SDIO_RX_LEN 0x42
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册