Changeset 89c57b6 in mainline for kernel/arch/arm32/include/machine_func.h
- Timestamp:
- 2011-04-13T14:45:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 88634420
- Parents:
- cefb126 (diff), 17279ead (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/machine_func.h
rcefb126 r89c57b6 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 size_t (*machine_get_irq_count)(void); 58 const char *(*machine_get_platform_name)(void); 57 59 }; 58 60 … … 74 76 extern void machine_cpu_halt(void); 75 77 76 77 /** Returns size of available memory. 78 /** Get extents of available memory. 78 79 * 79 * @return Size of available memory. 80 * @param start Place to store memory start address. 81 * @param size Place to store memory size. 80 82 */ 81 extern uintptr_t machine_get_memory_size(void); 82 83 extern void machine_get_memory_extents(uintptr_t *start, uintptr_t *size); 83 84 84 85 /** Interrupt exception handler. … … 105 106 extern void machine_input_init(void); 106 107 108 extern size_t machine_get_irq_count(void); 109 107 110 #endif 108 111
Note:
See TracChangeset
for help on using the changeset viewer.