shadows.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: shadows.c,v 1.2 2001/03/15 14:25:16 bjornw Exp $
  2.  * 
  3.  * Various shadow registers. Defines for these are in include/asm-etrax100/io.h
  4.  */
  5. /* Shadows for internal Etrax-registers */
  6. unsigned long genconfig_shadow;
  7. unsigned long port_g_data_shadow;
  8. unsigned char port_pa_dir_shadow;
  9. unsigned char port_pa_data_shadow;
  10. unsigned char port_pb_i2c_shadow;
  11. unsigned char port_pb_config_shadow;
  12. unsigned char port_pb_dir_shadow;
  13. unsigned char port_pb_data_shadow;
  14. unsigned long r_timer_ctrl_shadow;
  15. /* Shadows for external I/O port registers.
  16.  * These are only usable if there actually IS a latch connected
  17.  * to the corresponding external chip-select pin.
  18.  *
  19.  * A common usage is that CSP0 controls LED's and CSP4 video chips.
  20.  */
  21. unsigned long port_cse1_shadow;
  22. unsigned long port_csp0_shadow;
  23. unsigned long port_csp4_shadow;
  24. /* Corresponding addresses for the ports.
  25.  * These are initialized in arch/cris/mm/init.c using ioremap.
  26.  */
  27. volatile unsigned long *port_cse1_addr;
  28. volatile unsigned long *port_csp0_addr;
  29. volatile unsigned long *port_csp4_addr;