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

Last change on this file since 962 was 962, checked in by alain, 9 years ago

Introducing a new IOC driver supporting the VciMultiAhci? disk controller (in polling mode only).
Extending the MMC driver to support the SYNC command requested by the AHCI protocol on the tsar_generic_iob platform.

File size: 526 bytes
Line 
1/**
2 * \file   reset_ioc.h
3 * \date   December 14, 2013
4 * \author Cesar Fuguet
5 *
6 * \brief  API for accessing the disk controller
7 *
8 * \note   These functions call the specific disk controller driver depending
9 *         on the USE_IOC_BDV, USE_IOC_SDC or USE_IOC_HBA USE_IOC_RDK flags
10 */
11#ifndef RESET_IOC_H
12#define RESET_IOC_H
13
14int reset_ioc_init();
15
16int reset_ioc_read( unsigned int lba, void* buffer, unsigned int count );
17
18#endif /* RESET_IOC_H */
19
20/*
21 * vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab
22 */
Note: See TracBrowser for help on using the repository browser.