NetBSD/sys/arch/evbppc/include/explora.h
hannken 249e0067fe Add a port to the NCD Explora451 ThinClient.
- Supported devices: le, com, lpt, pckbd, frame buffer.
 - Support missing:   phy, audio, pcmcia.
 - Boots from network or md.

Approved by: Eduardo Horvath <eeh@netbsd.org>
2003-03-11 10:57:54 +00:00

24 lines
496 B
C

#ifndef _EVBPPC_EXPLORA_H_
#define _EVBPPC_EXPLORA_H_
/*
* Base addresses of external peripherals
*/
#define BASE_PCKBC 0x740000c0
#define BASE_PCKBC2 0x740000c8
#define BASE_COM 0x740005f0
#define BASE_LPT 0x740006f0
#define BASE_FB 0x70000000
#define BASE_FB2 0x71000000
#define BASE_LE 0x70800000
#define SIZE_FB (2*1024*1024)
#define MAKE_BUS_TAG(a) ibm4xx_make_bus_space_tag(0, \
((a)&0xff000000) == 0x74000000 ? 1 : 0)
void consinit(void);
#endif /* _EVBPPC_EXPLORA_H_ */