upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
469 B
19 lines
469 B
#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 block_dev_desc_t sata_dev_desc[];
|
|
|
|
#endif
|
|
|