source: trunk/softs/tsar_boot/include/reset_ioc.h @ 590

Last change on this file since 590 was 586, checked in by alain, 10 years ago

Modify the name "boot" to "reset" to avoid confusion
between the pre-loader and the boot-loader...
Increase the size of the segment containing the stacks.

File size: 764 bytes
Line 
1#ifndef RESET_IOC_H
2#define RESET_IOC_H
3
4#ifndef SOCLIB_IOC
5#include <sdcard.h>
6#include <spi.h>
7#else
8#include <block_device.h>
9#include <mcc.h>
10#endif
11
12#include <defs.h>
13#include <reset_tty.h>
14#include <io.h>
15
16extern int reset_ioc_init();
17
18extern int reset_ioc_read( unsigned int lba, 
19                           void*        buffer, 
20                           unsigned int count );
21
22extern int reset_ioc_completed();
23
24extern void reset_buf_invalidate ( const void * buffer,
25                                   unsigned int line_size,
26                                   unsigned int size );
27
28extern void reset_mcc_invalidate( const void * buffer,
29                                  unsigned int size );
30#endif
31
32/*
33 * vim: tabstop=4 : shiftwidth=4 : expandtab
34 */
Note: See TracBrowser for help on using the repository browser.