Re: [PATCH 2/6] drivers/misc: Add Aspeed XDMA engine driver

From: Eddie James
Date: Tue Mar 12 2019 - 14:46:29 EST



On 3/6/19 4:48 AM, Arnd Bergmann wrote:
On Tue, Mar 5, 2019 at 10:45 PM Eddie James <eajames@xxxxxxxxxxxxx> wrote:
On 3/5/19 2:01 AM, Arnd Bergmann wrote:
On Mon, Mar 4, 2019 at 10:37 PM Eddie James <eajames@xxxxxxxxxxxxx> wrote:
The XDMA engine embedded in the AST2500 SOC performs PCI DMA operations
between the SOC (acting as a BMC) and a host processor in a server.

This commit adds a driver to control the XDMA engine and adds functions
to initialize the hardware and memory and start DMA operations.

Signed-off-by: Eddie James <eajames@xxxxxxxxxxxxx>
Hi Eddie,

Thanks for your submission! Overall this looks well-implemented, but
I fear we already have too many ways of doing the same thing at
the moment, and I would hope to avoid adding yet another user space
interface for a specific hardware that does this.

Your interface appears to be a fairly low-level variant, just doing
single DMA transfers through ioctls, but configuring the PCIe
endpoint over sysfs.
Hi, thanks for the quick response!

There is actually no PCIe configuration done in this driver. The two
sysfs entries control the system control unit (SCU) on the AST2500
purely to enable and disable entire PCIe devices. It might be possible
to control those devices more finely with a PCI endpoint driver, but
there is no need to do so. The XDMA engine does that by itself to
perform DMA fairly automatically.

If the sysfs entries are really troublesome, we can probably remove
those and find another way to control the SCU.
I think the main advantage of tying this to a PCIe endpoint driver
is that this would give us a logical object in the kernel that we
can add the user space interface to, and have the protocol on
top of it be portable between different SoCs.

Please have a look at the drivers/pci/endpoint framework first
and see if you can work on top of that interface instead.
Even if it doesn't quite do what you need here, we may be
able to extend it in a way that works for you, and lets others
use the same user interface extensions in the future.

It may also be necessary to split out the DMA engine portion
into a regular drivers/dma/ back-end to make that fit in with
the PCIe endpoint framework.
Right, I did look into the normal DMA framework. There were a couple of
problems. First and foremost, the "device" (really, host processor)
address that we use is 64 bit, but the AST2500 is of course 32 bit. So I
couldn't find a good way to get the address through the DMA API into the
driver. It's entirely possible I missed something there though.
32-bit ARM SoCs can be built with a 64-bit dma_addr_t. Would that
help you here?

Yep, thanks, that's helpful.


The other issue was that the vast majority of the DMA framework was
unused, resulting in a large amount of boilerplate that did nothing
except satisfy the API... I thought simplicity would be better in this case.
Simplicity is important indeed, but we have to weigh it against
having a consistent interface. What the dmaengine driver would
give us in combination with the PCIe endpoint driver is that it abstracts
the hardware from the protocol on top, which could then be done
in a way that is not specific to an AST2xxx chip.

Let me know what you think... I could certainly switch to ioctl instead
of the write() if that's better. Or if you really think the DMA
framework is required here, let me know.
I don't think that replacing the ioctl() with a write() call specifically
would make much of a difference here. The question I'd like to
discuss further is what high-level user space interface you actually
need in order to implement what kind of functionality. We can then
look at whether this interface can be implemented on top of a
PCIe endpoint and a dmaengine driver in a portable way. If all
of those are true, then I'd definitely go with the modular approach
of having two standard drivers for the PCIe endpoint (should be
a trivial wrapper) and the dma engine (not trivial, but there are
many examples), plus a generic front-end in
drivers/pci/endpoint/functions/.

Hi Arnd,

Let me describe the top level interface we really need. The objective is just to transfer arbitrary data between the two memory spaces (memory on the AST2500 as the BMC, where the driver is running, and the memory on the host processor). The user on the BMC (in user space; I can't think of a use case for another driver needing to access this interface) has the host address, transfer size, and, if it's a write, the data. User needs to pass this into the driver and, if it's a read, retrieve the transferred data.

I did start trying to implement the dmaengine framework, and I think it could technically work. The addressing is no longer a problem, thanks to your tip. However, I realized there are some other issues.

The main problem is that the only memory that the XDMA engine hardware can access is the VGA reserved memory area on the AST2xxx. So I don't see how it can ever be a pure dmaengine driver; it would always need an additional interface or something to handle that memory area. If I completed the dmaengine framework, any and all users would be required to go through an additional step to get memory in the reserved area and copy in/out of there. The way the driver stands, this memory management is integrated, resulting in a fairly clean interface, though of course it is unique.

As for the PCIe endpoint part, I'm not sure it fits this driver. I could drop the sysfs entries and find another way to configure the SCU for now... this driver really doesn't have anything to do with PCIe, except for the fact that the XDMA hardware uses PCIe to do the actual work of the data transfer.

What do you think? One other thought I had was that the driver might be more suitable to go in drivers/soc/ as it is very specific to the AST2xxx. But, up to you.

Thanks,

Eddie


Arnd