
For some time, I use the G1-ATA driver in practice.
During this time I have found a few bugs. For the most part it was easy to fix, but there is one that I can not fix for now.
The main problems with the DMA.
Firstly you do not set the protection code (in 0xA05F74B8 reg), maybe it's not important if you boot from GD drive, but when booting from the custom BIOS it must be set. If you do not, it will appear interrupts with illegal address and overflow. In the driver, all interrupts are interpreted as complete status.
Ideally, it would be good to set the value depending on the address of the buffer, and not always put it into one space (0x0Cxxxxxx), but it is not very important.
Second, the DMA does not work properly (no matter where boot), the result data obtained a spaces. Seems DMA skip some memory, not zeros write, it just missed memory. As if there is a problem with timing or mode of transmission.
It looks something like this:
Code: Select all
100 bytes untouched space
20 bytes of data
40 bytes untouched space
20 bytes of data
100 bytes untouched space
etc...
I've tried and checked everything but still cannot find the cause yet.

The second problems with PIO.
There is problem with the PIO write. At the end of the function, before select the master device, you need to wait NBSY flag, otherwise in the write loops, some data may be lost.
And you need to check the buffers in PIO transfer like DMA, if it is not 2-byte aligned, you can get an exception. For himself I'm just added by-byte parsing the words, this have very small regression of speed, but fix all issues with buffers from all libraryes (freetype for example works incorrectly).
...
There is one more request to finalize the functional, it would be not bad to make a public function to obtain Max LBA and Capabilities.
All of what I wrote above, I have made for himself and not insist on the same in KOS. I'm just sharing experiences.
For me the important thing to solve the problem with the DMA, it does not work with 3 different devices from other people who have tested it.