Changes in kernel/arch/arm32/include/machine_func.h [66fcba2:0e796cc] in mainline
- File:
-
- 1 edited
-
kernel/arch/arm32/include/machine_func.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/machine_func.h
r66fcba2 r0e796cc 47 47 48 48 struct arm_machine_ops { 49 void (*machine_init)(void);50 void (*machine_timer_irq_start)(void);51 void (*machine_cpu_halt)(void);52 uintptr_t (*machine_get_memory_size)(void);53 void (*machine_irq_exception)(unsigned int, istate_t*);54 void (*machine_frame_init)(void);55 void (*machine_output_init)(void);56 void (*machine_input_init)(void);49 void (*machine_init)(void); 50 void (*machine_timer_irq_start)(void); 51 void (*machine_cpu_halt)(void); 52 void (*machine_get_memory_extents)(uintptr_t *, uintptr_t *); 53 void (*machine_irq_exception)(unsigned int, istate_t *); 54 void (*machine_frame_init)(void); 55 void (*machine_output_init)(void); 56 void (*machine_input_init)(void); 57 57 }; 58 58 … … 74 74 extern void machine_cpu_halt(void); 75 75 76 77 /** Returns size of available memory. 76 /** Get extents of available memory. 78 77 * 79 * @return Size of available memory. 78 * @param start Place to store memory start address. 79 * @param size Place to store memory size. 80 80 */ 81 extern uintptr_t machine_get_memory_size(void); 82 81 extern void machine_get_memory_extents(uintptr_t *start, uintptr_t *size); 83 82 84 83 /** Interrupt exception handler. … … 105 104 extern void machine_input_init(void); 106 105 106 extern size_t machine_get_irq_count(void); 107 107 108 #endif 108 109
Note:
See TracChangeset
for help on using the changeset viewer.
