1*4882a593Smuzhiyun /****************************************************************************** 2*4882a593Smuzhiyun * 3*4882a593Smuzhiyun * Copyright(c) 2007 - 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 __PCI_OPS_LINUX_H__ 16*4882a593Smuzhiyun #define __PCI_OPS_LINUX_H__ 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun u8 os_pci_read8(struct dvobj_priv *dvobj, u32 addr); 19*4882a593Smuzhiyun u16 os_pci_read16(struct dvobj_priv *dvobj, u32 addr); 20*4882a593Smuzhiyun u32 os_pci_read32(struct dvobj_priv *dvobj, u32 addr); 21*4882a593Smuzhiyun int os_pci_write8(struct dvobj_priv *dvobj, u32 addr, u8 val); 22*4882a593Smuzhiyun int os_pci_write16(struct dvobj_priv *dvobj, u32 addr, u16 val); 23*4882a593Smuzhiyun int os_pci_write32(struct dvobj_priv *dvobj, u32 addr, u32 val); 24*4882a593Smuzhiyun #endif /*__PCI_OPS_LINUX_H__*/ 25