Last change
on this file since 663 was
655,
checked in by cfuguet, 11 years ago
|
Fixing bug introduced in last commit :
- When using IO bridge, some header files were missing
in the reset_utils.h file
|
File size:
929 bytes
|
Rev | Line | |
---|
[586] | 1 | /* |
---|
| 2 | * \file : reset_utils.h |
---|
[425] | 3 | * \date : August 2012 |
---|
| 4 | * \author : Cesar Fuguet |
---|
| 5 | */ |
---|
| 6 | |
---|
| 7 | #ifndef BOOT_UTILS_H |
---|
| 8 | #define BOOT_UTILS_H |
---|
| 9 | |
---|
| 10 | #include <elf-types.h> |
---|
[586] | 11 | #include <reset_tty.h> |
---|
[655] | 12 | #include <defs_platform.h> |
---|
| 13 | #include <mcc.h> |
---|
| 14 | #include <io.h> |
---|
[425] | 15 | |
---|
[586] | 16 | extern unsigned int proctime(); |
---|
[425] | 17 | |
---|
[586] | 18 | extern void* memcpy(void *_dst, const void *_src, unsigned int size); |
---|
[425] | 19 | |
---|
[586] | 20 | extern void* memset(void *_dst, const int value, unsigned int size); |
---|
[425] | 21 | |
---|
[586] | 22 | extern void reset_print_elf_phdr(Elf32_Phdr * elf_phdr_ptr); |
---|
[425] | 23 | |
---|
[653] | 24 | #if USE_IOB |
---|
| 25 | void reset_mcc_invalidate ( const void * buffer, |
---|
| 26 | unsigned int size); |
---|
| 27 | #endif /* USE_IOB */ |
---|
[425] | 28 | |
---|
[653] | 29 | #if (CACHE_COHERENCE == 0) || USE_IOB |
---|
| 30 | void reset_buf_invalidate ( const void * buffer, |
---|
| 31 | unsigned int line_size, |
---|
| 32 | unsigned int size); |
---|
| 33 | #endif /* (CACHE_COHERENCE == 0) || USE_IOB */ |
---|
| 34 | #endif /* BOOT_UTILS_H */ |
---|
| 35 | |
---|
[425] | 36 | // vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab |
---|
| 37 | |
---|
Note: See
TracBrowser
for help on using the repository browser.