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