summaryrefslogtreecommitdiff
path: root/arch/arm/cpu/arm926ejs/aspeed/LIB.H
blob: a7c61dd441828b1066a13fd23937875c71fb8c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#ifndef LIB_H
#define LIB_H

#include "TYPEDEF.H"

//
// Macro
//
#define   INTFUNC              int386

#define   OUTDWPORT         	outpd
#define   INDWPORT          	inpd
#define   OUTPUT            	outp
#define   INPUT             	inp

//
// PCI
//
ULONG ReadPCIReg (ULONG ulPCIConfigAddress, BYTE jOffest, ULONG ulMask);
ULONG FindPCIDevice (USHORT usVendorID, USHORT usDeviceID, USHORT usBusType);
VOID  WritePCIReg (ULONG ulPCIConfigAddress, BYTE jOffest, ULONG ulMask, ULONG ulData);

//
// Map Resource
//
ULONG    MapPhysicalToLinear (ULONG ulBaseAddress, ULONG ulSize);
#endif