]> git.sur5r.net Git - openocd/blobdiff - src/target/arm920t.h
David Brownell <david-b@pacbell.net> whitespace fixes. Testing out on one file first...
[openocd] / src / target / arm920t.h
index bedf31f216bef3c5527ec2273632f52fd46755a3..e1aab347bfebfca501ddd86e3803cc16f70eeea6 100644 (file)
@@ -32,7 +32,7 @@
 
 typedef struct arm920t_common_s
 {
-       int common_magic;
+       u32 common_magic;
        armv4_5_mmu_common_t armv4_5_mmu;
        arm9tdmi_common_t arm9tdmi_common;
        u32 cp15_control_reg;
@@ -40,6 +40,20 @@ typedef struct arm920t_common_s
        u32 i_fsr;
        u32 d_far;
        u32 i_far;
+       int preserve_cache;
 } arm920t_common_t;
 
+typedef struct arm920t_cache_line_s
+{
+       u32 cam;
+       u32 data[8];
+} arm920t_cache_line_t;
+
+typedef struct arm920t_tlb_entry_s
+{
+       u32 cam;
+       u32 ram1;
+       u32 ram2;
+} arm920t_tlb_entry_t;
+
 #endif /* ARM920T_H */