oak_setup.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.oak_setup.h 1.5 05/17/01 18:14:21 cort
  3.  */
  4. /*
  5.  *
  6.  *    Copyright (c) 1999-2000 Grant Erickson <grant@lcse.umn.edu>
  7.  *
  8.  *    Module name: oak_setup.h
  9.  *
  10.  *    Description:
  11.  *      Architecture- / platform-specific boot-time initialization code for
  12.  *      the IBM PowerPC 403GCX "Oak" evaluation board. Adapted from original
  13.  *      code by Gary Thomas, Cort Dougan <cort@cs.nmt.edu>, and Dan Malek
  14.  *      <dan@netx4.com>.
  15.  *
  16.  */
  17. #ifndef __OAK_SETUP_H__
  18. #define __OAK_SETUP_H__
  19. #include <asm/ptrace.h>
  20. #include <asm/board.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. extern unsigned char  __res[sizeof(bd_t)];
  25. extern void  oak_init(unsigned long r3,
  26.   unsigned long ird_start,
  27.   unsigned long ird_end,
  28.   unsigned long cline_start,
  29.   unsigned long cline_end);
  30. extern void  oak_setup_arch(void);
  31. extern int  oak_setup_residual(char *buffer);
  32. extern void  oak_init_IRQ(void);
  33. extern int  oak_get_irq(struct pt_regs *regs);
  34. extern void  oak_restart(char *cmd);
  35. extern void  oak_power_off(void);
  36. extern void  oak_halt(void);
  37. extern void  oak_time_init(void);
  38. extern int  oak_set_rtc_time(unsigned long now);
  39. extern unsigned long  oak_get_rtc_time(void);
  40. extern void  oak_calibrate_decr(void);
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* __OAK_SETUP_H__ */