The Allwinner SoC has an ahci device on its internal main bus rather
than the PCI bus. This SoC is somewhat underdocumented, and its SATA
controller is no exception. The methods to support this chip were
harvested from the Linux Allwinner SDK, and then constants invented to
describe what's going on based on low-level constants contained in the
SATA standard and guess work. The AHCI driver isn't (yet) supported on
Allwinner due to well known deficiencies in config.
Details
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Passed - Unit
No Test Coverage
Event Timeline
To me it does not look like a good place to do PHY initialization and especially some calibration on AHCI driver attach. What happen if due to command timeout AHCI driver will request another PHY reset or device will be hot-plugged? I understand that present code is less invasive, but may be adding pointer to some external reset method could be not so dirty?
Generally, I agree with this. We need to move in that direction. The code I started with was somewhat dirty and hacky with minimal comments to know for sure what's going on. Once we have this working robustly for the normal "boot it and the drive is just there and working case" we can refine this based on experimentation with disconnect scenarios. It may be the guesses about what's going on aren't quite right.
Update the code to match -head changes and add the missing channel start magic.
This version fixes the problems noticed by ian and ganbold and adds the missing
magic to start the AHCI channel.
AHCI has to be changed to call the channel start callback.
Also fixes the AHCI IRQ setup and add the AHCI_Q_NOPMP quirk (necessary for
correct operation).
Tested on Cubieboard 2 and Banana Pi.
looks good to me, modulo one minor nit.
sys/arm/allwinner/a10_ahci.c | ||
---|---|---|
2 | looks like you reworked this a bit, so put both your name and mine with 2015 copyrights. |
sys/arm/allwinner/a10_ahci.c | ||
---|---|---|
268–269 | They come from the Linux driver, which is even worse about naming them in meaningful ways. There's no real documentation apart from that junk for this stuff. |
sys/arm/allwinner/a10_ahci.c | ||
---|---|---|
268–269 | Ok, it would pay to add a comment to say we don't know the meaning of these numbers, but they came from Linux. |