source: branches/fault_tolerance/softs/tsar_boot/include/reset_ioc.h @ 724

Last change on this file since 724 was 724, checked in by cfuguet, 10 years ago

branches/fault_tolerance:

  • Recreating fault_tolerance branch with all new modifications from trunk.
  • Introducing distributed boot rom in the tsar_generic_iob platform
File size: 558 bytes
Line 
1#ifndef RESET_IOC_H
2#define RESET_IOC_H
3
4#if USE_SPI
5#include <sdcard.h>
6#include <spi.h>
7#endif /* USE_SPI */
8
9#if USE_BDV
10#include <block_device.h>
11#include <mcc.h>
12#endif /* USE_BDV */
13
14#include <defs.h>
15#include <reset_tty.h>
16#include <io.h>
17#include <reset_utils.h>
18
19#if USE_SPI
20extern int reset_ioc_init();
21#endif /* USE_SPI */
22
23extern int reset_ioc_read( unsigned int lba, 
24                           void*        buffer, 
25                           unsigned int count );
26
27#endif /* RESET_IOC_H */
28
29/*
30 * vim: tabstop=4 : shiftwidth=4 : expandtab
31 */
Note: See TracBrowser for help on using the repository browser.