xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/include/rtw_trx_pci.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2019 Realtek Corporation.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  *****************************************************************************/
15*4882a593Smuzhiyun #ifndef _RTW_TRX_PCI_H_
16*4882a593Smuzhiyun #define _RTW_TRX_PCI_H_
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun extern struct rtw_intf_ops pci_ops;
19*4882a593Smuzhiyun 
is_pci_support_dma64(struct dvobj_priv * dvobj)20*4882a593Smuzhiyun static inline u8 is_pci_support_dma64(struct dvobj_priv *dvobj)
21*4882a593Smuzhiyun {
22*4882a593Smuzhiyun 	PPCI_DATA pci_data = dvobj_to_pci(dvobj);
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun 	return (pci_data->bdma64 == _TRUE) ? _TRUE : _FALSE;
25*4882a593Smuzhiyun }
26*4882a593Smuzhiyun #endif /* _RTW_TRX_PCI_H_ */
27