/[gxemul]/trunk/src/include/cpu_i960.h
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/include/cpu_i960.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14 by dpavlin, Mon Oct 8 16:18:51 2007 UTC revision 18 by dpavlin, Mon Oct 8 16:19:11 2007 UTC
# Line 28  Line 28 
28   *  SUCH DAMAGE.   *  SUCH DAMAGE.
29   *   *
30   *   *
31   *  $Id: cpu_i960.h,v 1.1 2005/09/07 07:10:17 debug Exp $   *  $Id: cpu_i960.h,v 1.4 2005/10/27 14:01:15 debug Exp $
32   */   */
33    
34  #include "misc.h"  #include "misc.h"
# Line 56  struct i960_instr_call { Line 56  struct i960_instr_call {
56    
57  /*  Translation cache struct for each physical page:  */  /*  Translation cache struct for each physical page:  */
58  struct i960_tc_physpage {  struct i960_tc_physpage {
59            struct i960_instr_call ics[I960_IC_ENTRIES_PER_PAGE + 1];
60          uint32_t        next_ofs;       /*  or 0 for end of chain  */          uint32_t        next_ofs;       /*  or 0 for end of chain  */
61          uint32_t        physaddr;          uint32_t        physaddr;
62          int             flags;          int             flags;
         struct i960_instr_call ics[I960_IC_ENTRIES_PER_PAGE + 1];  
63  };  };
64    
65    
# Line 109  struct i960_cpu { Line 109  struct i960_cpu {
109          unsigned char                   *host_store[I960_N_VPH_ENTRIES];          unsigned char                   *host_store[I960_N_VPH_ENTRIES];
110          uint32_t                        phys_addr[I960_N_VPH_ENTRIES];          uint32_t                        phys_addr[I960_N_VPH_ENTRIES];
111          struct i960_tc_physpage         *phys_page[I960_N_VPH_ENTRIES];          struct i960_tc_physpage         *phys_page[I960_N_VPH_ENTRIES];
112    
113            uint32_t                        phystranslation[I960_N_VPH_ENTRIES/32];
114  };  };
115    
116    
117  /*  cpu_i960.c:  */  /*  cpu_i960.c:  */
118  void i960_update_translation_table(struct cpu *cpu, uint64_t vaddr_page,  void i960_update_translation_table(struct cpu *cpu, uint64_t vaddr_page,
119          unsigned char *host_page, int writeflag, uint64_t paddr_page);          unsigned char *host_page, int writeflag, uint64_t paddr_page);
120  void i960_invalidate_translation_caches_paddr(struct cpu *cpu, uint64_t, int);  void i960_invalidate_translation_caches(struct cpu *cpu, uint64_t, int);
121  void i960_invalidate_code_translation(struct cpu *cpu, uint64_t, int);  void i960_invalidate_code_translation(struct cpu *cpu, uint64_t, int);
122  int i960_memory_rw(struct cpu *cpu, struct memory *mem, uint64_t vaddr,  int i960_memory_rw(struct cpu *cpu, struct memory *mem, uint64_t vaddr,
123          unsigned char *data, size_t len, int writeflag, int cache_flags);          unsigned char *data, size_t len, int writeflag, int cache_flags);

Legend:
Removed from v.14  
changed lines
  Added in v.18

  ViewVC Help
Powered by ViewVC 1.1.26