2019-04-22 11:31:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright(c) 2007 - 2016 Realtek Corporation. All rights reserved. */
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
The purpose of rtw_io.c
|
|
|
|
|
|
|
|
a. provides the API
|
|
|
|
|
|
|
|
b. provides the protocol engine
|
|
|
|
|
|
|
|
c. provides the software interface between caller and the hardware interface
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
Compiler Flag Option:
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
2. CONFIG_USB_HCI:
|
2013-05-08 21:45:39 +00:00
|
|
|
a. USE_ASYNC_IRP: Both sync/async operations are provided.
|
|
|
|
Only sync read/rtw_write_mem operations are provided.
|
|
|
|
|
|
|
|
jackson@realtek.com.tw
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _RTW_IO_C_
|
2018-10-15 00:07:45 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
#include <drv_types.h>
|
2018-10-15 00:07:45 +00:00
|
|
|
#include <hal_data.h>
|
2014-12-28 17:13:03 +00:00
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
#define rtw_le16_to_cpu(val) le16_to_cpu(val)
|
|
|
|
#define rtw_le32_to_cpu(val) le32_to_cpu(val)
|
|
|
|
#define rtw_cpu_to_le16(val) cpu_to_le16(val)
|
|
|
|
#define rtw_cpu_to_le32(val) cpu_to_le32(val)
|
|
|
|
|
|
|
|
u8 _rtw_read8(_adapter *adapter, u32 addr)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
u8 r_val;
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
2014-12-11 21:15:04 +00:00
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-10-15 00:07:45 +00:00
|
|
|
u8(*_read8)(struct intf_hdl *pintfhdl, u32 addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
_read8 = pintfhdl->io_ops._read8;
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
r_val = _read8(pintfhdl, addr);
|
|
|
|
return r_val;
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u16 _rtw_read16(_adapter *adapter, u32 addr)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-11-02 01:34:15 +00:00
|
|
|
u16(*_read16)(struct intf_hdl *pintfhdl, u32 addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
_read16 = pintfhdl->io_ops._read16;
|
|
|
|
|
2018-11-02 01:34:15 +00:00
|
|
|
return _read16(pintfhdl, addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u32 _rtw_read32(_adapter *adapter, u32 addr)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-11-02 01:34:15 +00:00
|
|
|
u32(*_read32)(struct intf_hdl *pintfhdl, u32 addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
_read32 = pintfhdl->io_ops._read32;
|
|
|
|
|
2018-11-02 01:34:15 +00:00
|
|
|
return _read32(pintfhdl, addr);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_write8(_adapter *adapter, u32 addr, u8 val)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
int (*_write8)(struct intf_hdl *pintfhdl, u32 addr, u8 val);
|
|
|
|
int ret;
|
|
|
|
_write8 = pintfhdl->io_ops._write8;
|
|
|
|
|
|
|
|
ret = _write8(pintfhdl, addr, val);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_write16(_adapter *adapter, u32 addr, u16 val)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-10-25 19:23:42 +00:00
|
|
|
int (*_write16)(struct intf_hdl *pintfhdl, u32 addr, __le16 val);
|
2013-05-08 21:45:39 +00:00
|
|
|
int ret;
|
2018-10-25 19:23:42 +00:00
|
|
|
__le16 outval;
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_write16 = pintfhdl->io_ops._write16;
|
|
|
|
|
2018-10-25 19:23:42 +00:00
|
|
|
outval = rtw_cpu_to_le16(val);
|
|
|
|
ret = _write16(pintfhdl, addr, outval);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_write32(_adapter *adapter, u32 addr, u32 val)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-10-25 19:23:42 +00:00
|
|
|
int (*_write32)(struct intf_hdl *pintfhdl, u32 addr, __le32 val);
|
2013-05-08 21:45:39 +00:00
|
|
|
int ret;
|
2018-10-25 19:23:42 +00:00
|
|
|
__le32 outval;
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_write32 = pintfhdl->io_ops._write32;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2018-10-25 19:23:42 +00:00
|
|
|
outval = rtw_cpu_to_le32(val);
|
|
|
|
ret = _write32(pintfhdl, addr, outval);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_writeN(_adapter *adapter, u32 addr , u32 length , u8 *pdata)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
2018-10-15 00:07:45 +00:00
|
|
|
struct intf_hdl *pintfhdl = (struct intf_hdl *)(&(pio_priv->intf));
|
2015-08-15 18:19:16 +00:00
|
|
|
int (*_writeN)(struct intf_hdl *pintfhdl, u32 addr, u32 length, u8 *pdata);
|
2013-05-08 21:45:39 +00:00
|
|
|
int ret;
|
|
|
|
_writeN = pintfhdl->io_ops._writeN;
|
|
|
|
|
2015-08-15 18:19:16 +00:00
|
|
|
ret = _writeN(pintfhdl, addr, length, pdata);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
2015-01-27 02:52:43 +00:00
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_write8_async(_adapter *adapter, u32 addr, u8 val)
|
|
|
|
{
|
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
int (*_write8_async)(struct intf_hdl *pintfhdl, u32 addr, u8 val);
|
|
|
|
int ret;
|
|
|
|
_write8_async = pintfhdl->io_ops._write8_async;
|
|
|
|
|
|
|
|
ret = _write8_async(pintfhdl, addr, val);
|
|
|
|
|
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_write16_async(_adapter *adapter, u32 addr, u16 val)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-10-25 19:23:42 +00:00
|
|
|
int (*_write16_async)(struct intf_hdl *pintfhdl, u32 addr, __le16 val);
|
2013-05-08 21:45:39 +00:00
|
|
|
int ret;
|
2018-10-25 19:23:42 +00:00
|
|
|
__le16 outval;
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_write16_async = pintfhdl->io_ops._write16_async;
|
2018-10-25 19:23:42 +00:00
|
|
|
outval = rtw_cpu_to_le16(val);
|
|
|
|
ret = _write16_async(pintfhdl, addr, outval);
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int _rtw_write32_async(_adapter *adapter, u32 addr, u32 val)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
2018-10-25 19:23:42 +00:00
|
|
|
int (*_write32_async)(struct intf_hdl *pintfhdl, u32 addr, __le32 val);
|
2013-05-08 21:45:39 +00:00
|
|
|
int ret;
|
2018-10-25 19:23:42 +00:00
|
|
|
__le32 outval;
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_write32_async = pintfhdl->io_ops._write32_async;
|
2018-10-25 19:23:42 +00:00
|
|
|
outval = rtw_cpu_to_le32(val);
|
|
|
|
ret = _write32_async(pintfhdl, addr, outval);
|
2014-12-01 22:31:15 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
return RTW_STATUS_CODE(ret);
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
void _rtw_read_mem(_adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
void (*_read_mem)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pmem);
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
|
|
|
|
if (RTW_CANNOT_RUN(adapter)) {
|
2015-03-10 16:18:03 +00:00
|
|
|
return;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_read_mem = pintfhdl->io_ops._read_mem;
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_read_mem(pintfhdl, addr, cnt, pmem);
|
2018-10-15 00:07:45 +00:00
|
|
|
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
void _rtw_write_mem(_adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
void (*_write_mem)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pmem);
|
2018-10-15 00:07:45 +00:00
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
_write_mem = pintfhdl->io_ops._write_mem;
|
|
|
|
|
|
|
|
_write_mem(pintfhdl, addr, cnt, pmem);
|
2018-10-15 00:07:45 +00:00
|
|
|
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
void _rtw_read_port(_adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
u32(*_read_port)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pmem);
|
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
|
|
|
|
if (RTW_CANNOT_RUN(adapter)) {
|
2015-01-27 02:52:43 +00:00
|
|
|
return;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_read_port = pintfhdl->io_ops._read_port;
|
|
|
|
|
|
|
|
_read_port(pintfhdl, addr, cnt, pmem);
|
2018-10-15 00:07:45 +00:00
|
|
|
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
void _rtw_read_port_cancel(_adapter *adapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
void (*_read_port_cancel)(struct intf_hdl *pintfhdl);
|
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
|
|
|
|
_read_port_cancel = pintfhdl->io_ops._read_port_cancel;
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_DISABLE_FUNC(adapter, DF_RX_BIT);
|
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (_read_port_cancel)
|
2013-05-08 21:45:39 +00:00
|
|
|
_read_port_cancel(pintfhdl);
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u32 _rtw_write_port(_adapter *adapter, u32 addr, u32 cnt, u8 *pmem)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2018-10-15 00:07:45 +00:00
|
|
|
u32(*_write_port)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pmem);
|
|
|
|
/* struct io_queue *pio_queue = (struct io_queue *)adapter->pio_queue; */
|
2013-05-08 21:45:39 +00:00
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
2018-10-15 00:07:45 +00:00
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
u32 ret = _SUCCESS;
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
_write_port = pintfhdl->io_ops._write_port;
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
ret = _write_port(pintfhdl, addr, cnt, pmem);
|
|
|
|
|
|
|
|
|
|
|
|
return ret;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u32 _rtw_write_port_and_wait(_adapter *adapter, u32 addr, u32 cnt, u8 *pmem, int timeout_ms)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
int ret = _SUCCESS;
|
|
|
|
struct xmit_buf *pxmitbuf = (struct xmit_buf *)pmem;
|
|
|
|
struct submit_ctx sctx;
|
|
|
|
|
|
|
|
rtw_sctx_init(&sctx, timeout_ms);
|
|
|
|
pxmitbuf->sctx = &sctx;
|
|
|
|
|
|
|
|
ret = _rtw_write_port(adapter, addr, cnt, pmem);
|
|
|
|
|
|
|
|
if (ret == _SUCCESS)
|
2018-10-15 00:07:45 +00:00
|
|
|
ret = rtw_sctx_wait(&sctx, __func__);
|
|
|
|
|
2015-03-10 16:18:03 +00:00
|
|
|
return ret;
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
void _rtw_write_port_cancel(_adapter *adapter)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
void (*_write_port_cancel)(struct intf_hdl *pintfhdl);
|
|
|
|
struct io_priv *pio_priv = &adapter->iopriv;
|
|
|
|
struct intf_hdl *pintfhdl = &(pio_priv->intf);
|
|
|
|
|
|
|
|
_write_port_cancel = pintfhdl->io_ops._write_port_cancel;
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_DISABLE_FUNC(adapter, DF_TX_BIT);
|
|
|
|
|
2015-08-15 18:02:34 +00:00
|
|
|
if (_write_port_cancel)
|
2013-05-08 21:45:39 +00:00
|
|
|
_write_port_cancel(pintfhdl);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int rtw_init_io_priv(_adapter *padapter, void (*set_intf_ops)(_adapter *padapter, struct _io_ops *pops))
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct io_priv *piopriv = &padapter->iopriv;
|
|
|
|
struct intf_hdl *pintf = &piopriv->intf;
|
|
|
|
|
|
|
|
if (set_intf_ops == NULL)
|
|
|
|
return _FAIL;
|
|
|
|
|
|
|
|
piopriv->padapter = padapter;
|
|
|
|
pintf->padapter = padapter;
|
|
|
|
pintf->pintf_dev = adapter_to_dvobj(padapter);
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
set_intf_ops(padapter, &pintf->io_ops);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
return _SUCCESS;
|
|
|
|
}
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Increase and check if the continual_io_error of this @param dvobjprive is larger than MAX_CONTINUAL_IO_ERR
|
2018-12-17 17:08:55 +00:00
|
|
|
* @return true:
|
|
|
|
* @return false:
|
2014-12-11 21:15:04 +00:00
|
|
|
*/
|
|
|
|
int rtw_inc_and_chk_continual_io_error(struct dvobj_priv *dvobj)
|
|
|
|
{
|
2018-12-17 17:08:55 +00:00
|
|
|
int ret = false;
|
2014-12-11 21:15:04 +00:00
|
|
|
int value;
|
2018-10-15 00:07:45 +00:00
|
|
|
|
|
|
|
value = ATOMIC_INC_RETURN(&dvobj->continual_io_error);
|
|
|
|
if (value > MAX_CONTINUAL_IO_ERR) {
|
|
|
|
RTW_INFO("[dvobj:%p][ERROR] continual_io_error:%d > %d\n", dvobj, value, MAX_CONTINUAL_IO_ERR);
|
2018-12-17 17:08:55 +00:00
|
|
|
ret = true;
|
2014-12-11 21:15:04 +00:00
|
|
|
} else {
|
2018-10-15 00:07:45 +00:00
|
|
|
/* RTW_INFO("[dvobj:%p] continual_io_error:%d\n", dvobj, value); */
|
2014-12-11 21:15:04 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the continual_io_error of this @param dvobjprive to 0
|
|
|
|
*/
|
|
|
|
void rtw_reset_continual_io_error(struct dvobj_priv *dvobj)
|
|
|
|
{
|
2014-12-19 06:59:46 +00:00
|
|
|
ATOMIC_SET(&dvobj->continual_io_error, 0);
|
2014-12-11 21:15:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DBG_IO
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u32 read_sniff_ranges[][2] = {
|
|
|
|
/* {0x520, 0x523}, */
|
2014-12-19 06:59:46 +00:00
|
|
|
};
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u32 write_sniff_ranges[][2] = {
|
|
|
|
/* {0x520, 0x523}, */
|
|
|
|
/* {0x4c, 0x4c}, */
|
2014-12-19 06:59:46 +00:00
|
|
|
};
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
int read_sniff_num = sizeof(read_sniff_ranges) / sizeof(u32) / 2;
|
|
|
|
int write_sniff_num = sizeof(write_sniff_ranges) / sizeof(u32) / 2;
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
bool match_read_sniff_ranges(u32 addr, u16 len)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
int i;
|
2018-10-15 00:07:45 +00:00
|
|
|
for (i = 0; i < read_sniff_num; i++) {
|
2014-12-11 21:15:04 +00:00
|
|
|
if (addr + len > read_sniff_ranges[i][0] && addr <= read_sniff_ranges[i][1])
|
2018-12-17 17:08:55 +00:00
|
|
|
return true;
|
2014-12-11 21:15:04 +00:00
|
|
|
}
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2018-12-17 17:08:55 +00:00
|
|
|
return false;
|
2014-12-11 21:15:04 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
bool match_write_sniff_ranges(u32 addr, u16 len)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
int i;
|
2018-10-15 00:07:45 +00:00
|
|
|
for (i = 0; i < write_sniff_num; i++) {
|
2014-12-11 21:15:04 +00:00
|
|
|
if (addr + len > write_sniff_ranges[i][0] && addr <= write_sniff_ranges[i][1])
|
2018-12-17 17:08:55 +00:00
|
|
|
return true;
|
2018-10-15 00:07:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-17 17:08:55 +00:00
|
|
|
return false;
|
2018-10-15 00:07:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct rf_sniff_ent {
|
|
|
|
u8 path;
|
|
|
|
u16 reg;
|
|
|
|
u32 mask;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rf_sniff_ent rf_read_sniff_ranges[] = {
|
|
|
|
/* example for all path addr 0x55 with all RF Reg mask */
|
|
|
|
/* {MAX_RF_PATH, 0x55, bRFRegOffsetMask}, */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rf_sniff_ent rf_write_sniff_ranges[] = {
|
|
|
|
/* example for all path addr 0x55 with all RF Reg mask */
|
|
|
|
/* {MAX_RF_PATH, 0x55, bRFRegOffsetMask}, */
|
|
|
|
};
|
|
|
|
|
|
|
|
int rf_read_sniff_num = sizeof(rf_read_sniff_ranges) / sizeof(struct rf_sniff_ent);
|
|
|
|
int rf_write_sniff_num = sizeof(rf_write_sniff_ranges) / sizeof(struct rf_sniff_ent);
|
|
|
|
|
|
|
|
bool match_rf_read_sniff_ranges(u8 path, u32 addr, u32 mask)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < rf_read_sniff_num; i++) {
|
|
|
|
if (rf_read_sniff_ranges[i].path == MAX_RF_PATH || rf_read_sniff_ranges[i].path == path)
|
|
|
|
if (addr == rf_read_sniff_ranges[i].reg && (mask & rf_read_sniff_ranges[i].mask))
|
2018-12-17 17:08:55 +00:00
|
|
|
return true;
|
2014-12-11 21:15:04 +00:00
|
|
|
}
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2018-12-17 17:08:55 +00:00
|
|
|
return false;
|
2014-12-11 21:15:04 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
bool match_rf_write_sniff_ranges(u8 path, u32 addr, u32 mask)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < rf_write_sniff_num; i++) {
|
|
|
|
if (rf_write_sniff_ranges[i].path == MAX_RF_PATH || rf_write_sniff_ranges[i].path == path)
|
|
|
|
if (addr == rf_write_sniff_ranges[i].reg && (mask & rf_write_sniff_ranges[i].mask))
|
2018-12-17 17:08:55 +00:00
|
|
|
return true;
|
2018-10-15 00:07:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-17 17:08:55 +00:00
|
|
|
return false;
|
2018-10-15 00:07:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u8 dbg_rtw_read8(_adapter *adapter, u32 addr, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
u8 val = _rtw_read8(adapter, addr);
|
|
|
|
|
|
|
|
if (match_read_sniff_ranges(addr, 1))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_read8(0x%04x) return 0x%02x\n", caller, line, addr, val);
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u16 dbg_rtw_read16(_adapter *adapter, u32 addr, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
u16 val = _rtw_read16(adapter, addr);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
if (match_read_sniff_ranges(addr, 2))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_read16(0x%04x) return 0x%04x\n", caller, line, addr, val);
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
u32 dbg_rtw_read32(_adapter *adapter, u32 addr, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
u32 val = _rtw_read32(adapter, addr);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
if (match_read_sniff_ranges(addr, 4))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_read32(0x%04x) return 0x%08x\n", caller, line, addr, val);
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2018-10-15 00:07:45 +00:00
|
|
|
int dbg_rtw_write8(_adapter *adapter, u32 addr, u8 val, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
if (match_write_sniff_ranges(addr, 1))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_write8(0x%04x, 0x%02x)\n", caller, line, addr, val);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
return _rtw_write8(adapter, addr, val);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int dbg_rtw_write16(_adapter *adapter, u32 addr, u16 val, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
if (match_write_sniff_ranges(addr, 2))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_write16(0x%04x, 0x%04x)\n", caller, line, addr, val);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
return _rtw_write16(adapter, addr, val);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int dbg_rtw_write32(_adapter *adapter, u32 addr, u32 val, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
if (match_write_sniff_ranges(addr, 4))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_write32(0x%04x, 0x%08x)\n", caller, line, addr, val);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
return _rtw_write32(adapter, addr, val);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
int dbg_rtw_writeN(_adapter *adapter, u32 addr , u32 length , u8 *data, const char *caller, const int line)
|
2014-12-11 21:15:04 +00:00
|
|
|
{
|
|
|
|
if (match_write_sniff_ranges(addr, length))
|
2018-10-15 00:07:45 +00:00
|
|
|
RTW_INFO("DBG_IO %s:%d rtw_writeN(0x%04x, %u)\n", caller, line, addr, length);
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
return _rtw_writeN(adapter, addr, length, data);
|
|
|
|
}
|
2018-10-15 00:07:45 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
#endif
|