Re: [PATCH net-next 09/12] gpio: tc956x: add TC956x/QPS615 support
From: Alex Elder
Date: Wed May 06 2026 - 14:23:02 EST
On 5/2/26 10:05 PM, Andrew Lunn wrote:
On Sat, May 02, 2026 at 08:45:48PM -0500, Alex Elder wrote:
On 5/1/26 1:36 PM, Andrew Lunn wrote:
+ * There is a TC956X PCI power controller driver that accesses the
+ * direction and output value registers for GPIOs 2 and 3. These
+ * GPIOs control the reset signal for the two downstream PCIe ports.
+ * Their values will never change during operation of this driver, and
+ * this driver reserves these two GPIOS.
Why doesn't this power controller driver actually use this driver to
control the GPIOs? Chicken/egg?
I am not the one with authority on this, but yes, that's my
understanding. *Something* about this chip requires that the
PCIe ports need to have some configuration done on them *before*
PCIe is powered up. So that driver uses the I2C interface to
apply these settings. Meanwhile this driver uses the PCIe-mapped
memory to manage the GPIO registers.
The diagram you have is:
----------------------------------
| Host |
------+...+----------+........+---
|i2c| | PCIe |
----------------+...+----------+........+------
| TC956x |I2C| |upstream| |
| ----- --+--------+--- |
| ----- ------ ------- | PCIe switch | |
| |SPI| |GPIO| |reset| | | |
| ----- ------ |clock| | DS3 DS2 DS1 | |
| ------- ---++--++--++-- |
| ----- ------ downstream// \\ \\ | downstream
| |MCU| |SRAM| /==========/ \\ \===== PCIe port 1
| ----- ------ //PCIe port 3 \\ |
| || \======= downstream
| ----+-----------++-----------+---- | PCIe port 2
| | M | internal PCIe endpoint | M | |
| | S |------------------------| S | ------ |
| | I | PCIe | | PCIe | I | |UART| |
| | G |function 0| |function 1| G | ------ |
| | E |----++----| |----++----| E | |
| | N | eMAC 0 | | eMAC 1 | N | |
--------+.......+------+.....+-----------------
|USXGMII| |SGMII|
--+.......+-- --+.....+--
| ARQ113C | | QEP8121 |
| PHY | | PHY |
------------- -----------
The two Ethernet controllers are hanging off port 3 of the
switch. However, the GPIO block is just floating in space. What
address space is it in?
Well, that isn't easily representable.
In fact, the GPIO (and UART and eMACs, etc.) is accessible
multiple ways. They are in a single "SFR" range of memory
within the TC956x, which is partitioned into sub-ranges for
the separate IP blocks.
E.g:
0x40000000 Bootup config registers (size 0x1000)
0x40006000 UART registers (size 0x1000)
0x40020000 PCIe registerfs (size 0x00010000)
0x40040000 EMAC0 (size 0x8000)
and others.
The MCU has access to this SFR space. The host CPU can
access it via the I2C interface (as the PCIe power control
driver does). The PCIe power control driver actually
touches the GPIO registers to be able to assert reset
on the two downstream PCIe ports.
In addition, BAR4 for both PCIe functions has access to the
same SFR space. So in fact, both of these functions are
capable of controlling GPIOs. We are having just one of
them (function 0) be responsible for that.
I'm wondering if the GPIO controller should be a device/driver of its
own? It probes first. The PCI power controller driver then probes, and
has phandles to the GPIO controller so it can activate ports 1 and
2. Parallel to that the Ethernet driver(s) can probe, also using
phandles to the GPIO they need.
Looking at this diagram, putting the GPIO controller within one of the
port 3 functions is wrong. But maybe the diagram is not accurate.
When the PCIe power controller was implemented, the GPIO
functionality was not separated out. That driver simply
touches two registers to manage asserting reset on the two
downstream PCIe ports. (It changes these only during the
appropriate times during power-up and power-down of the ports.)
It's possible *that* work could have implemented a separate
GPIO driver. We did not pursue modifying the power control
driver to work that way.
Instead, we modeled it starting with the STMMAC driver (which
is how the Toshiba vendor driver works). But we separated
the GPIO functionality into a separate (auxiliary) device,
which has its own driver.
Because the internal endpoint won't operate until the PCIe
power controller has enabled power, this GPIO driver and
the PCIe power control driver won't interfere with each
other's access to the shared registers.
In short, because this "SFR" space is available in various
ways, there are several ways the GPIO (and other) IP can
be managed and represented.
-Alex
Andrew