xref: /netbsd-src/sys/arch/evbppc/include/explora.h (revision d710132b4b8ce7f7cccaaf660cb16aa16b4077a0)
1 
2 #ifndef _EVBPPC_EXPLORA_H_
3 #define _EVBPPC_EXPLORA_H_
4 
5 /*
6  * Base addresses of external peripherals
7  */
8 #define BASE_PCKBC	0x740000c0
9 #define BASE_PCKBC2	0x740000c8
10 #define BASE_COM	0x740005f0
11 #define BASE_LPT	0x740006f0
12 #define BASE_FB		0x70000000
13 #define BASE_FB2	0x71000000
14 #define BASE_LE		0x70800000
15 
16 #define SIZE_FB		(2*1024*1024)
17 
18 #define MAKE_BUS_TAG(a)	ibm4xx_make_bus_space_tag(0, \
19 			    ((a)&0xff000000) == 0x74000000 ? 1 : 0)
20 
21 void consinit(void);
22 
23 #endif /* _EVBPPC_EXPLORA_H_ */
24