avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
19
u-boot/include/sata.h
Normal file
19
u-boot/include/sata.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef __SATA_H__
|
||||
#define __SATA_H__
|
||||
#include <part.h>
|
||||
|
||||
int init_sata(int dev);
|
||||
int reset_sata(int dev);
|
||||
int scan_sata(int dev);
|
||||
ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer);
|
||||
ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer);
|
||||
|
||||
int sata_initialize(void);
|
||||
int __sata_initialize(void);
|
||||
int sata_stop(void);
|
||||
int __sata_stop(void);
|
||||
int sata_port_status(int dev, int port);
|
||||
|
||||
extern struct blk_desc sata_dev_desc[];
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user