<div dir="ltr">Hi Andrew,<div><br></div><div>I agree that a small layer of abstraction is needed to provide common chardev semantics to userspace. I think that effort can come where both Nuvoton and Aspeed unify their design and agree on a common abstraction layer. </div><div><br></div><div>I think such efforts may take some time for both to unify, is it possible to get this upstreamed (after addressing all other comments) while both parties work on an agreed unified abstraction layer? </div><div><br></div><div>Thank you,</div><div>Mo</div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Mon, Feb 24, 2025 at 8:27 PM Andrew Jeffery <<a href="mailto:andrew@codeconstruct.com.au">andrew@codeconstruct.com.au</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, 2025-02-21 at 00:51 +0000, Kevin Chen wrote:<br>
> > On Wed, 2025-02-19 at 11:59 +0000, Kevin Chen wrote:<br>
> > > > On Tue, 2025-02-18 at 11:11 +0000, Kevin Chen wrote:<br>
> > > > > > On Mon, 2025-02-17 at 13:00 +0100, Krzysztof Kozlowski wrote:<br>
> > > > > > > On 17/02/2025 12:48, Kevin Chen wrote:<br>
> > > > > > > > +<br>
> > > > > > > > + pcc->mdev.parent = dev;<br>
> > > > > > > > + pcc->mdev.minor = MISC_DYNAMIC_MINOR;<br>
> > > > > > > > + pcc-><a href="http://mdev.name" rel="noreferrer" target="_blank">mdev.name</a> = devm_kasprintf(dev, GFP_KERNEL,<br>
> > > > > > > > "%s%d",<br>
> > > > > > > > DEVICE_NAME,<br>
> > > > > > > > <br>
> > > > > > <br>
> > > > <br>
> > + pcc->mdev_id);<br>
> > > > > > > > + pcc->mdev.fops = &pcc_fops;<br>
> > > > > > > > + rc = misc_register(&pcc->mdev);<br>
> > > > > > > > + if (rc) {<br>
> > > > > > > > + dev_err(dev, "Couldn't register misc<br>
> > > > > > > > device\n");<br>
> > > > > > > > + goto err_free_kfifo;<br>
> > > > > > > > + }<br>
> > > > > > > <br>
> > > > > > > You cannot expose user-space interfaces from SoC drivers. Use<br>
> > > > > > > appropriate subsystem for this with proper ABI documentation.<br>
> > > > > > > <br>
> > > > > > > See:<br>
> > > > > > > <a href="https://lore.kernel.org/all/bc5118f2-8982-46ff-bc75-d0c71475e9" rel="noreferrer" target="_blank">https://lore.kernel.org/all/bc5118f2-8982-46ff-bc75-d0c71475e9</a><br>
> > > > > > > 09@a<br>
> > > > > > > pp.f<br>
> > > > > > > <a href="http://astmail.com/" rel="noreferrer" target="_blank">astmail.com/</a><br>
> > > > > > > and more discussions on LKML<br>
> > > > > > <br>
> > > > > > Further, drivers/misc/aspeed-lpc-snoop.c already exists:<br>
> > > > > > <br>
> > > > > > <a href="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.g" rel="noreferrer" target="_blank">https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.g</a><br>
> > > > > > it/c<br>
> > > > > > ommit/?id=<br>
> > > > > > 9f4f9ae81d0affc182f54dd00285ddb90e0b3ae1<br>
> > > > > > <br>
> > > > > > Kevin: Did you consider reworking it?<br>
> > > > > Andrew: No, I do not rework it but add the post code capture<br>
> > > > > driver using the SNOOP registers. As a result, I add some code in<br>
> > > > > aspeed_a2600_15 to check the SNOOP enable bit. PCC driver probe<br>
> > > > > abort if snoop is enabled.<br>
> > > > <br>
> > > > Hmm, I think OpenBMC's history regarding POST code support caused<br>
> > > > some confusion on my part. For whatever reason, the snoop device was<br>
> > > > used as a source of POST codes despite the existence of the<br>
> > > > dedicated POST code hardware since at least the AST2400, but...<br>
> > > What I know about the dedicated POST code hardware in ASPEED should be<br>
> > > the same one in LPC module.<br>
> > > <br>
> > > > <br>
> > > > > PCC is used for port I/O byte snooping over eSPI.<br>
> > > > <br>
> > > > ... it seems that they're largely interchangeable, just with<br>
> > > > different hardware features (PCC has DMA)? My impression is that the<br>
> > > > snoop device could also be used over eSPI?<br>
> > > Yes, PCC has DMA to capture the POST code.<br>
> > > And snoop device also can be used over eSPI.<br>
> > > <br>
> > > These two devices of PCC and snoop use the same port I/O of 80h and<br>
> > > 81h.<br>
> > > But, in current usage of PCC, it can support a continuous, 4-bytes<br>
> > > maximum region from port I/O 80h to 83h.<br>
> > > What I know about PCC or snoop usage, depends on INTEL platform or AMD<br>
> > > platform.<br>
> > > <br>
> > > For ASPEED, we want to upstream the PCC driver for the PCC usage.<br>
> > <br>
> > Yeah, that's fine, but I think some work needs to be done to provide coherence<br>
> > in the devicetree binding and userspace APIs across both the ASPEED snoop<br>
> > and PCC bits, as well as the Nuvoton BPC. Bespoke designs create pain.<br>
> <a href="https://lore.kernel.org/linux-kernel//7661de74-f68c-6617-6a4e-3b0eb76a2a2e@linaro.org/T/" rel="noreferrer" target="_blank">https://lore.kernel.org/linux-kernel//7661de74-f68c-6617-6a4e-3b0eb76a2a2e@linaro.org/T/</a><br>
> Andrew, I find the "NPCM BPC driver" to get the link. Are these patches match what you mentioned?<br>
<br>
That looks about right.<br>
<br>
Note Rob's response there about disparate bindings:<br>
<br>
<a href="https://lore.kernel.org/linux-kernel//20221130193014.GA2645083-robh@kernel.org/" rel="noreferrer" target="_blank">https://lore.kernel.org/linux-kernel//20221130193014.GA2645083-robh@kernel.org/</a><br>
<br>
> <br>
> > <br>
> > The PCC driver above reads the data out of the DMA ring-buffer straight into<br>
> > the kfifo hooked up the the miscdev read callback. The datasheet<br>
> > notes: "the data structure of the FIFO is mode dependent" in the description of<br>
> > PCCR3, but no in-band or out-of-band mechanism (sysfs,<br>
> > ioctl) is provided for userspace to query whether it's 1B, 2B, 4B or "full" mode.<br>
> For the data structure in PCCR3, I checked with designer. We only need 2B mode to get the information about data and related addresses.<br>
> For example, from espi master send the port 80h~83h with first data 0x11223344 and second data 0x55667788. The PCC kfifo would be written in the following output from hexdump.<br>
> # hexdump /dev/aspeed-lpc-pcc0<br>
> 0000000 4044 4133 4222 4311 4088 4177 4266 4355<br>
<br>
Right, but that's different to how the Aspeed snoop chardev behaves.<br>
Both the snoop and PCC features can be used to present the same data<br>
(POST codes) to userspace. There should be a unified chardev behaviour<br>
for POST codes so we don't end up with a mess in userspace to deal with<br>
the differences in hardware capabilities.<br>
<br>
If we've got a chardev it would feel idiomatic to me to have ioctls to<br>
configure the hardware to the required capture mode for the platform.<br>
<br>
> > <br>
> > The situation with the snoop driver is similar (1 or 2 1B channels multiplexed<br>
> > into the one data stream). It also looks a bit quirky with multiple channels<br>
> > enabled, as what userspace reads will depend on the host access patterns, but<br>
> > no metadata is provided to userspace about what it's reading.<br>
> Yes, for the snoop driver and PCC driver, some mechanism is the same. But snoop only supports 2 bytes data from the 2 1B channels multiplexed.<br>
> So, we need to add PCC driver to upstream for customer's 4 Bytes POST code capture usage even the PCC driver needs to check the snoop enabled or not.<br>
<br>
I understand.<br>
<br>
> Or, could you please give us come comments about how I can upstream the PCC driver.<br>
<br>
Essentially I don't think it's okay that each driver implement a<br>
bespoke chardev, or that the devices don't share a common devicetree<br>
binding. I think what's needed is a small abstraction that provides<br>
common chardev semantics to userspace (e.g. /dev/postcodeN) that can be<br>
connected to the different backends provided by the hardware (Aspeed<br>
snoop and PCC, Nuvoton BPC) and act on the needs of userspace (1, 2, 4-<br>
byte POST codes, configured using ioctls).<br>
<br>
Andrew<br>
</blockquote></div>