Page MenuHomeFreeBSD

Add AHCI attachment for Allwinner A10/A20 SoCs.
ClosedPublic

Authored by loos on Sep 7 2014, 6:59 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 11, 11:00 AM
Unknown Object (File)
Jan 21 2025, 1:57 AM
Unknown Object (File)
Jan 3 2025, 7:50 AM
Unknown Object (File)
Dec 26 2024, 10:29 AM
Unknown Object (File)
Dec 21 2024, 5:35 AM
Unknown Object (File)
Nov 14 2024, 4:05 AM
Unknown Object (File)
Oct 16 2024, 10:33 AM
Unknown Object (File)
Oct 16 2024, 10:33 AM
Subscribers

Details

Summary

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.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage

Event Timeline

imp retitled this revision from to Add AHCI attachment for Allwinner A10/A20 SoCs..
imp updated this object.
imp edited the test plan for this revision. (Show Details)
imp added reviewers: ian, mav, ganbold.
sys/arm/allwinner/a10_ahci.c
165

typo: nout

315

something looks wrong with indentation here, unless it's a website artifact

376

shouldn't this be on simplebus? it's got a probe routine that implies it should

sys/arm/allwinner/a10_ahci.c
3

s/,/./ in email

269

Style, insert empty line here?

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?

In D737#5, @mav wrote:

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.

loos added a reviewer: imp.

Ok, looks like I need this to update this revision.

loos edited edge metadata.

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.

loos marked 5 inline comments as done.Jun 28 2015, 7:21 PM

All fixed.

imp edited edge metadata.

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.

This revision is now accepted and ready to land.Jun 28 2015, 8:23 PM
sys/arm/allwinner/a10_ahci.c
268–269

What are these magic values?

356–368

Are these needed?

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.
The upper bits of this register evidentally are implementation defined.

ganbold edited edge metadata.
mav edited edge metadata.

Looks fine to me.

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.

Committed in r285090.

Thanks to everyone.