Dave Liu | f17c963 | 2008-03-27 18:51:17 +0800 | [diff] [blame] | 1 | #ifndef __SATA_H__ |
| 2 | #define __SATA_H__ |
Pavel Herrmann | 9e9f628 | 2012-09-27 23:18:04 +0000 | [diff] [blame] | 3 | #include <part.h> |
Dave Liu | f17c963 | 2008-03-27 18:51:17 +0800 | [diff] [blame] | 4 | |
Simon Glass | 6c857ad | 2017-07-29 11:35:13 -0600 | [diff] [blame] | 5 | int sata_probe(int devnum); |
| 6 | int sata_remove(int devnum); |
| 7 | |
Tony Dinh | a87cbb8 | 2023-10-11 13:26:42 -0700 | [diff] [blame] | 8 | /* |
| 9 | * Remove existing AHCI SATA device uclass and all of its children, |
| 10 | * if any, and probe it again. |
| 11 | */ |
| 12 | int sata_rescan(bool verbose); |
| 13 | |
Dave Liu | f17c963 | 2008-03-27 18:51:17 +0800 | [diff] [blame] | 14 | #endif |