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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * Definitions for using the procedures in btext.c.
  6.  *
  7.  * Benjamin Herrenschmidt <benh@kernel.crashing.org>
  8.  */
  9. #ifndef __PPC_BTEXT_H
  10. #define __PPC_BTEXT_H
  11. #ifdef __KERNEL__
  12. #include <asm/bootx.h>
  13. extern void btext_clearscreen(void);
  14. extern void btext_flushscreen(void);
  15. extern unsigned long disp_BAT[2];
  16. extern boot_infos_t *disp_bi;
  17. extern int boot_text_mapped;
  18. void btext_init(boot_infos_t *bi);
  19. void btext_welcome(boot_infos_t* bi);
  20. void btext_prepare_BAT(void);
  21. void btext_setup_display(int width, int height, int depth, int pitch,
  22.  unsigned long address);
  23. void map_boot_text(void);
  24. void btext_update_display(unsigned long phys, int width, int height,
  25.   int depth, int pitch);
  26. void btext_drawchar(char c);
  27. void btext_drawstring(const char *str);
  28. void btext_drawhex(unsigned long v);
  29. #endif /* __KERNEL__ */
  30. #endif /* __PPC_BTEXT_H */