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.
26 lines
818 B
26 lines
818 B
Intel Pantherpoint SATA Device Binding
|
|
======================================
|
|
|
|
The device tree node which describes the operation of the Intel Pantherpoint
|
|
SATA device is as follows:
|
|
|
|
Required properties :
|
|
- compatible = "intel,pantherpoint-ahci"
|
|
- intel,sata-mode : string, one of:
|
|
"ahci" : Use AHCI mode (default)
|
|
"combined" : Use combined IDE + legacy mode
|
|
"plain-ide" : Use plain IDE mode
|
|
- intel,sata-port-map : Which SATA ports are enabled, bit 0=enable first port,
|
|
bit 1=enable second port, etc.
|
|
- intel,sata-port0-gen3-tx : Value for the IOBP_SP0G3IR register
|
|
- intel,sata-port1-gen3-tx : Value for the IOBP_SP1G3IR register
|
|
|
|
Example
|
|
-------
|
|
|
|
sata {
|
|
compatible = "intel,pantherpoint-ahci";
|
|
intel,sata-mode = "ahci";
|
|
intel,sata-port-map = <1>;
|
|
intel,sata-port0-gen3-tx = <0x00880a7f>;
|
|
};
|
|
|