Home
last modified time | relevance | path

Searched refs:pintfhdl (Results 1 – 4 of 4) sorted by relevance

/linux-6.15/drivers/staging/rtl8723bs/core/
H A Drtw_io.c37 _read8 = pintfhdl->io_ops._read8; in rtw_read8()
39 return _read8(pintfhdl, addr); in rtw_read8()
49 _read16 = pintfhdl->io_ops._read16; in rtw_read16()
51 return _read16(pintfhdl, addr); in rtw_read16()
61 _read32 = pintfhdl->io_ops._read32; in rtw_read32()
63 return _read32(pintfhdl, addr); in rtw_read32()
75 _write8 = pintfhdl->io_ops._write8; in rtw_write8()
77 ret = _write8(pintfhdl, addr, val); in rtw_write8()
89 _write16 = pintfhdl->io_ops._write16; in rtw_write16()
91 ret = _write16(pintfhdl, addr, val); in rtw_write16()
[all …]
/linux-6.15/drivers/staging/rtl8723bs/os_dep/
H A Dsdio_ops_linux.c41 padapter = pintfhdl->padapter; in _sd_cmd52_read()
42 psdiodev = pintfhdl->pintf_dev; in _sd_cmd52_read()
73 padapter = pintfhdl->padapter; in sd_cmd52_read()
74 psdiodev = pintfhdl->pintf_dev; in sd_cmd52_read()
105 padapter = pintfhdl->padapter; in _sd_cmd52_write()
106 psdiodev = pintfhdl->pintf_dev; in _sd_cmd52_write()
137 padapter = pintfhdl->padapter; in sd_cmd52_write()
138 psdiodev = pintfhdl->pintf_dev; in sd_cmd52_write()
165 padapter = pintfhdl->padapter; in sd_read8()
192 padapter = pintfhdl->padapter; in sd_read32()
[all …]
/linux-6.15/drivers/staging/rtl8723bs/include/
H A Drtw_io.h14 u8 (*_read8)(struct intf_hdl *pintfhdl, u32 addr);
15 u16 (*_read16)(struct intf_hdl *pintfhdl, u32 addr);
16 u32 (*_read32)(struct intf_hdl *pintfhdl, u32 addr);
18 int (*_write8)(struct intf_hdl *pintfhdl, u32 addr, u8 val);
19 int (*_write16)(struct intf_hdl *pintfhdl, u32 addr, u16 val);
20 int (*_write32)(struct intf_hdl *pintfhdl, u32 addr, u32 val);
23 int (*_write8_async)(struct intf_hdl *pintfhdl, u32 addr, u8 val);
30 u32 (*_read_interrupt)(struct intf_hdl *pintfhdl, u32 addr);
35 u32 (*_write_scsi)(struct intf_hdl *pintfhdl, u32 cnt, u8 *pmem);
37 void (*_read_port_cancel)(struct intf_hdl *pintfhdl);
[all …]
H A Dsdio_ops_linux.h14 s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
16 s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
17 s32 sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata);
19 u8 sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
20 u32 sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err);
21 s32 _sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
22 s32 sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
23 void sd_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err);
24 void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err);
25 s32 _sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
[all …]