xref: /netbsd-src/sys/arch/evbppc/include/explora.h (revision 8994e0c03eea4bd5ce2564e58f94df590f60b5c5)
1 /*	$NetBSD: explora.h,v 1.4 2021/03/02 13:44:58 rin Exp $	*/
2 
3 #ifndef _EVBPPC_EXPLORA_H_
4 #define _EVBPPC_EXPLORA_H_
5 
6 /*
7  * Base addresses of external peripherals
8  */
9 #define BASE_FB		0x70000000
10 #define BASE_LE		0x70800000
11 #define BASE_FB2	0x71000000
12 #define BASE_ISA	0x74000000
13 #define BASE_PCKBC	0x740000c0
14 #define BASE_PCKBC2	0x740000c8
15 #define BASE_COM	0x740005f0
16 #define BASE_LPT	0x740006f0
17 
18 #define SIZE_FB		(2*1024*1024)
19 
20 void consinit(void);
21 
22 #endif /* _EVBPPC_EXPLORA_H_ */
23