Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1241102 > unrolled thread
| Started by | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| First post | 2015-10-07 02:40 +0200 |
| Last post | 2015-10-10 05:10 +0200 |
| Articles | 9 — 4 participants |
Back to article view | Back to linux.kernel
[RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-10-07 02:40 +0200
[RFT 3/3] ARM: dts: Fix usb3503 probe by enabling phy on exynos5250-arndale Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-10-07 02:40 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Marek Szyprowski <m.szyprowski@samsung.com> - 2015-10-07 16:30 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-10-08 08:10 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Marek Szyprowski <m.szyprowski@samsung.com> - 2015-10-08 08:30 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Javier Martinez Canillas <javier@osg.samsung.com> - 2015-10-08 11:40 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Marek Szyprowski <m.szyprowski@samsung.com> - 2015-10-08 12:00 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Kevin Hilman <khilman@kernel.org> - 2015-10-09 21:20 +0200
Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-10-10 05:10 +0200
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-10-07 02:40 +0200 |
| Subject | [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) |
| Message-ID | <qgKVX-5zL-11@gated-at.bofh.it> |
Hi, Introduction ============ This patchset tries to fix probing of usb3503 on Arndale board if the Samsung PHY driver is probed later (or built as a module). *The patchset was not tested on Arndale board.* I don't have that board. Please test it and say if the usb3503 deferred probe works fine and the issue is solved. The patchset was tested on Odroid U3 board (which is different!) in a simulated environment. It is not sufficient testing. Difference ========== The usb3503 device driver can be used as a I2C device (on Odroid U3) or as a platform device connected through phy (on Arndale). In the second case the necessary phy reference has to be obtained and enabled. For some details please look also at thread [0][1]. [0] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348524.html [1] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348875.html Best regards, Krzysztof Krzysztof Kozlowski (3): dt-bindings: usb: usb5303: Document new 'phys' property usb: misc: usb3503: Allow usage of device through phy interface ARM: dts: Fix usb3503 probe by enabling phy on exynos5250-arndale Documentation/devicetree/bindings/usb/usb3503.txt | 4 ++ arch/arm/boot/dts/exynos5250-arndale.dts | 2 + drivers/usb/misc/usb3503.c | 65 +++++++++++++++++++++++ 3 files changed, 71 insertions(+) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-10-07 02:40 +0200 |
| Subject | [RFT 3/3] ARM: dts: Fix usb3503 probe by enabling phy on exynos5250-arndale |
| Message-ID | <qgKVY-5zL-17@gated-at.bofh.it> |
| In reply to | #1241102 |
On Arndale board (unlike Odroid U3) the USB3503 hub controller is connected in phy mode (not through I2C). For successful probe it needs to get reference to proper phy and enable it. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reported-by: Kevin Hilman <khilman@kernel.org> Reported-by: Arnd Bergmann <arnd@arndb.de> Cc: Kevin Hilman <khilman@kernel.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: riku.voipio@linaro.org Cc: Marek Szyprowski <m.szyprowski@samsung.com> --- arch/arm/boot/dts/exynos5250-arndale.dts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/exynos5250-arndale.dts b/arch/arm/boot/dts/exynos5250-arndale.dts index c000532c1444..e213f31acbf3 100644 --- a/arch/arm/boot/dts/exynos5250-arndale.dts +++ b/arch/arm/boot/dts/exynos5250-arndale.dts @@ -114,6 +114,8 @@ reset-gpios = <&gpx3 5 GPIO_ACTIVE_LOW>; connect-gpios = <&gpd1 7 GPIO_ACTIVE_LOW>; + phys = <&usb2_phy_gen 3>; + phy-names = "usb2-phy"; }; }; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Marek Szyprowski <m.szyprowski@samsung.com> |
|---|---|
| Date | 2015-10-07 16:30 +0200 |
| Message-ID | <qgXTb-7qA-1@gated-at.bofh.it> |
| In reply to | #1241102 |
Hello, On 2015-10-07 02:30, Krzysztof Kozlowski wrote: > Introduction > ============ > This patchset tries to fix probing of usb3503 on Arndale board > if the Samsung PHY driver is probed later (or built as a module). > > *The patchset was not tested on Arndale board.* > I don't have that board. Please test it and say if the usb3503 deferred probe > works fine and the issue is solved. > > The patchset was tested on Odroid U3 board (which is different!) > in a simulated environment. It is not sufficient testing. > > > Difference > ========== > The usb3503 device driver can be used as a I2C device (on Odroid U3) > or as a platform device connected through phy (on Arndale). In the second > case the necessary phy reference has to be obtained and enabled. > > For some details please look also at thread [0][1]. > > [0] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348524.html > [1] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348875.html > I'm not sure that this is the correct approach. usb3503 chip is simply connected to Exynos USB2 phy, so it visible on the USB bus. The real driver that controls USB2 PHY is Exynos EHCI driver and USB3503 should not mess around it. In my opinion all that is needed in case of Arndale board is forcing reset of usb3503 chip after successful EHCI and USB2 PHY initialization (for some reason initialization of usb3503 chip must be done after usb host initialization). However I have no idea which driver should trigger this reset. Right now I didn't find any good solution for additional control for devices which are on autoprobed bus like usb. Best regards -- Marek Szyprowski, PhD Samsung R&D Institute Poland -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-10-08 08:10 +0200 |
| Message-ID | <qhcyR-3lW-15@gated-at.bofh.it> |
| In reply to | #1241546 |
On 07.10.2015 23:26, Marek Szyprowski wrote: > Hello, > > On 2015-10-07 02:30, Krzysztof Kozlowski wrote: >> Introduction >> ============ >> This patchset tries to fix probing of usb3503 on Arndale board >> if the Samsung PHY driver is probed later (or built as a module). >> >> *The patchset was not tested on Arndale board.* >> I don't have that board. Please test it and say if the usb3503 >> deferred probe >> works fine and the issue is solved. >> >> The patchset was tested on Odroid U3 board (which is different!) >> in a simulated environment. It is not sufficient testing. >> >> >> Difference >> ========== >> The usb3503 device driver can be used as a I2C device (on Odroid U3) >> or as a platform device connected through phy (on Arndale). In the second >> case the necessary phy reference has to be obtained and enabled. >> >> For some details please look also at thread [0][1]. >> >> [0] >> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348524.html >> >> [1] >> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348875.html >> >> > > I'm not sure that this is the correct approach. usb3503 chip is simply > connected > to Exynos USB2 phy, so it visible on the USB bus. The real driver that > controls USB2 > PHY is Exynos EHCI driver and USB3503 should not mess around it. The ehci node (usb@12110000) has one port configured and it takes one PHY reference (phy of id 1 - USB host). I can't see driver taking reference to HSIC0 or HSIC1 phys... Since I cannot diagnose the error I don't know what is really expected here. > > In my opinion all that is needed in case of Arndale board is forcing > reset of > usb3503 chip after successful EHCI and USB2 PHY initialization (for some > reason > initialization of usb3503 chip must be done after usb host initialization). > However I have no idea which driver should trigger this reset. Right now > I didn't > find any good solution for additional control for devices which are on > autoprobed > bus like usb. The reset is done at the end of usb3503's probe. The question "why usb3503 has to be initialized after EHCI and USB PHY" is still valid... Anyway thanks for feedback! I really appreciate it. Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Marek Szyprowski <m.szyprowski@samsung.com> |
|---|---|
| Date | 2015-10-08 08:30 +0200 |
| Message-ID | <qhcSe-3J8-3@gated-at.bofh.it> |
| In reply to | #1241978 |
Hello, On 2015-10-08 08:02, Krzysztof Kozlowski wrote: > On 07.10.2015 23:26, Marek Szyprowski wrote: >> Hello, >> >> On 2015-10-07 02:30, Krzysztof Kozlowski wrote: >>> Introduction >>> ============ >>> This patchset tries to fix probing of usb3503 on Arndale board >>> if the Samsung PHY driver is probed later (or built as a module). >>> >>> *The patchset was not tested on Arndale board.* >>> I don't have that board. Please test it and say if the usb3503 >>> deferred probe >>> works fine and the issue is solved. >>> >>> The patchset was tested on Odroid U3 board (which is different!) >>> in a simulated environment. It is not sufficient testing. >>> >>> >>> Difference >>> ========== >>> The usb3503 device driver can be used as a I2C device (on Odroid U3) >>> or as a platform device connected through phy (on Arndale). In the second >>> case the necessary phy reference has to be obtained and enabled. >>> >>> For some details please look also at thread [0][1]. >>> >>> [0] >>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348524.html >>> >>> [1] >>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348875.html >>> >>> >> I'm not sure that this is the correct approach. usb3503 chip is simply >> connected >> to Exynos USB2 phy, so it visible on the USB bus. The real driver that >> controls USB2 >> PHY is Exynos EHCI driver and USB3503 should not mess around it. > The ehci node (usb@12110000) has one port configured and it takes one > PHY reference (phy of id 1 - USB host). I can't see driver taking > reference to HSIC0 or HSIC1 phys... Since I cannot diagnose the error I > don't know what is really expected here. It looks that EHCI in Exynos 5250 and 5420 still use old phy bindings. For the reference, see Exynos4 dts and exynos4412-odroidu3.dts to check how to enable more than one USB port (Odroid U3 has both HSIC ports enabled). > >> In my opinion all that is needed in case of Arndale board is forcing >> reset of >> usb3503 chip after successful EHCI and USB2 PHY initialization (for some >> reason >> initialization of usb3503 chip must be done after usb host initialization). >> However I have no idea which driver should trigger this reset. Right now >> I didn't >> find any good solution for additional control for devices which are on >> autoprobed >> bus like usb. > The reset is done at the end of usb3503's probe. The question "why > usb3503 has to be initialized after EHCI and USB PHY" is still valid... I remember that I saw some code to reset HSIC device after phy power on in case of HSIC-connected modem chip, so maybe this is somehow common for HSIC chips (which are some special case of 'embedded usb'). Best regards -- Marek Szyprowski, PhD Samsung R&D Institute Poland -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-10-08 11:40 +0200 |
| Subject | Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) |
| Message-ID | <qhfQ5-7WO-1@gated-at.bofh.it> |
| In reply to | #1241987 |
Hello, On 10/08/2015 08:23 AM, Marek Szyprowski wrote: > Hello, > > On 2015-10-08 08:02, Krzysztof Kozlowski wrote: >> On 07.10.2015 23:26, Marek Szyprowski wrote: >>> Hello, >>> >>> On 2015-10-07 02:30, Krzysztof Kozlowski wrote: >>>> Introduction >>>> ============ >>>> This patchset tries to fix probing of usb3503 on Arndale board >>>> if the Samsung PHY driver is probed later (or built as a module). >>>> >>>> *The patchset was not tested on Arndale board.* >>>> I don't have that board. Please test it and say if the usb3503 >>>> deferred probe >>>> works fine and the issue is solved. >>>> >>>> The patchset was tested on Odroid U3 board (which is different!) >>>> in a simulated environment. It is not sufficient testing. >>>> >>>> >>>> Difference >>>> ========== >>>> The usb3503 device driver can be used as a I2C device (on Odroid U3) >>>> or as a platform device connected through phy (on Arndale). In the second >>>> case the necessary phy reference has to be obtained and enabled. >>>> >>>> For some details please look also at thread [0][1]. >>>> >>>> [0] >>>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348524.html >>>> >>>> [1] >>>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348875.html >>>> >>>> >>> I'm not sure that this is the correct approach. usb3503 chip is simply >>> connected >>> to Exynos USB2 phy, so it visible on the USB bus. The real driver that >>> controls USB2 >>> PHY is Exynos EHCI driver and USB3503 should not mess around it. >> The ehci node (usb@12110000) has one port configured and it takes one >> PHY reference (phy of id 1 - USB host). I can't see driver taking >> reference to HSIC0 or HSIC1 phys... Since I cannot diagnose the error I >> don't know what is really expected here. > > It looks that EHCI in Exynos 5250 and 5420 still use old phy bindings. For > the reference, see Exynos4 dts and exynos4412-odroidu3.dts to check how to enable > more than one USB port (Odroid U3 has both HSIC ports enabled). > >> >>> In my opinion all that is needed in case of Arndale board is forcing >>> reset of >>> usb3503 chip after successful EHCI and USB2 PHY initialization (for some >>> reason >>> initialization of usb3503 chip must be done after usb host initialization). >>> However I have no idea which driver should trigger this reset. Right now >>> I didn't >>> find any good solution for additional control for devices which are on >>> autoprobed >>> bus like usb. >> The reset is done at the end of usb3503's probe. The question "why >> usb3503 has to be initialized after EHCI and USB PHY" is still valid... > > I remember that I saw some code to reset HSIC device after phy power on in case > of HSIC-connected modem chip, so maybe this is somehow common for HSIC chips > (which are some special case of 'embedded usb'). > I also don't have an Arndale board and haven't followed the thread to closely but I just wanted to mention that the ChromiumOS 3.8 tree has a workaround to reset the HSIC phys: https://chromium.googlesource.com/chromiumos/third_party/kernel/+/81685c447954a29d1098268776582457258dd98f%5E%21/ and later a "supports-hsicphy-reset" DT property was added to force the reset per board instead of unconditionally: https://chromium.googlesource.com/chromiumos/third_party/kernel/+/a4d1c1a223ffa1ed38a4257d0378ca70c6667be0%5E%21/ Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Marek Szyprowski <m.szyprowski@samsung.com> |
|---|---|
| Date | 2015-10-08 12:00 +0200 |
| Message-ID | <qhg9s-8jw-15@gated-at.bofh.it> |
| In reply to | #1242115 |
Hello, On 2015-10-08 11:35, Javier Martinez Canillas wrote: > Hello, > > On 10/08/2015 08:23 AM, Marek Szyprowski wrote: >> Hello, >> >> On 2015-10-08 08:02, Krzysztof Kozlowski wrote: >>> On 07.10.2015 23:26, Marek Szyprowski wrote: >>>> Hello, >>>> >>>> On 2015-10-07 02:30, Krzysztof Kozlowski wrote: >>>>> Introduction >>>>> ============ >>>>> This patchset tries to fix probing of usb3503 on Arndale board >>>>> if the Samsung PHY driver is probed later (or built as a module). >>>>> >>>>> *The patchset was not tested on Arndale board.* >>>>> I don't have that board. Please test it and say if the usb3503 >>>>> deferred probe >>>>> works fine and the issue is solved. >>>>> >>>>> The patchset was tested on Odroid U3 board (which is different!) >>>>> in a simulated environment. It is not sufficient testing. >>>>> >>>>> >>>>> Difference >>>>> ========== >>>>> The usb3503 device driver can be used as a I2C device (on Odroid U3) >>>>> or as a platform device connected through phy (on Arndale). In the second >>>>> case the necessary phy reference has to be obtained and enabled. >>>>> >>>>> For some details please look also at thread [0][1]. >>>>> >>>>> [0] >>>>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348524.html >>>>> >>>>> [1] >>>>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-June/348875.html >>>>> >>>>> >>>> I'm not sure that this is the correct approach. usb3503 chip is simply >>>> connected >>>> to Exynos USB2 phy, so it visible on the USB bus. The real driver that >>>> controls USB2 >>>> PHY is Exynos EHCI driver and USB3503 should not mess around it. >>> The ehci node (usb@12110000) has one port configured and it takes one >>> PHY reference (phy of id 1 - USB host). I can't see driver taking >>> reference to HSIC0 or HSIC1 phys... Since I cannot diagnose the error I >>> don't know what is really expected here. >> It looks that EHCI in Exynos 5250 and 5420 still use old phy bindings. For >> the reference, see Exynos4 dts and exynos4412-odroidu3.dts to check how to enable >> more than one USB port (Odroid U3 has both HSIC ports enabled). >> >>>> In my opinion all that is needed in case of Arndale board is forcing >>>> reset of >>>> usb3503 chip after successful EHCI and USB2 PHY initialization (for some >>>> reason >>>> initialization of usb3503 chip must be done after usb host initialization). >>>> However I have no idea which driver should trigger this reset. Right now >>>> I didn't >>>> find any good solution for additional control for devices which are on >>>> autoprobed >>>> bus like usb. >>> The reset is done at the end of usb3503's probe. The question "why >>> usb3503 has to be initialized after EHCI and USB PHY" is still valid... >> I remember that I saw some code to reset HSIC device after phy power on in case >> of HSIC-connected modem chip, so maybe this is somehow common for HSIC chips >> (which are some special case of 'embedded usb'). >> > I also don't have an Arndale board and haven't followed the thread to closely > but I just wanted to mention that the ChromiumOS 3.8 tree has a workaround to > reset the HSIC phys: > > https://chromium.googlesource.com/chromiumos/third_party/kernel/+/81685c447954a29d1098268776582457258dd98f%5E%21/ > > and later a "supports-hsicphy-reset" DT property was added to force the reset > per board instead of unconditionally: > > https://chromium.googlesource.com/chromiumos/third_party/kernel/+/a4d1c1a223ffa1ed38a4257d0378ca70c6667be0%5E%21/ I didn't check this approach, but for me it looks that the problem is caused by the lack of resetting the chip connected to hsic phy not the lack of resetting the phy itself. However this is pure speculation and one should check it with the real hardware. Best regards -- Marek Szyprowski, PhD Samsung R&D Institute Poland -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Kevin Hilman <khilman@kernel.org> |
|---|---|
| Date | 2015-10-09 21:20 +0200 |
| Message-ID | <qhLmV-2PX-13@gated-at.bofh.it> |
| In reply to | #1241102 |
[Multipart message — attachments visible in raw view] — view raw
Hi Krzystof, Krzysztof Kozlowski <k.kozlowski@samsung.com> writes: > Introduction > ============ > This patchset tries to fix probing of usb3503 on Arndale board > if the Samsung PHY driver is probed later (or built as a module). > > *The patchset was not tested on Arndale board.* > I don't have that board. Please test it and say if the usb3503 deferred probe > works fine and the issue is solved. FYI... I built this series on top of next-20151009 and using exynos_defconfig. I booted it on my arndale, and I still don't see the networking come up. Full boot log attached. Kevin
[toc] | [prev] | [next] | [standalone]
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-10-10 05:10 +0200 |
| Subject | Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy) |
| Message-ID | <qhSHL-548-3@gated-at.bofh.it> |
| In reply to | #1243617 |
W dniu 10.10.2015 o 04:18, Kevin Hilman pisze: > Hi Krzystof, > > Krzysztof Kozlowski <k.kozlowski@samsung.com> writes: > >> Introduction >> ============ >> This patchset tries to fix probing of usb3503 on Arndale board >> if the Samsung PHY driver is probed later (or built as a module). >> >> *The patchset was not tested on Arndale board.* >> I don't have that board. Please test it and say if the usb3503 deferred probe >> works fine and the issue is solved. > > FYI... I built this series on top of next-20151009 and using > exynos_defconfig. I booted it on my arndale, and I still don't see the > networking come up. Full boot log attached. +cc Tyler Kevin, Thanks for testing but I am not sure if this boot failure is related to the patch. I mean if the patch should fix this particular boot failure. The board stopped to boot after enabling DWC2 and network USB gadget: http://www.spinics.net/lists/linux-samsung-soc/msg47009.html The boot log shows that usb3503 was probed but asix network adapter was not. I wonder how these things are related to each other... Nevertheless it would be difficult to debug the issue without the Arndale board. :) Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web