* [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K
@ 2018-08-29 12:13 Baruch Siach
2018-08-29 14:11 ` Andrew Lunn
0 siblings, 1 reply; 6+ messages in thread
From: Baruch Siach @ 2018-08-29 12:13 UTC (permalink / raw)
To: linux-arm-kernel
The SolidRun Clearfog GT-8K is based on Marvell Armada 8040 SoC.
https://wiki.solid-run.com/doku.php?id=products:a8040:clearfoggt8k
The following devices were tested with this DT on top of kernel
v4.19-rc1:
* 1GB Ethernet WAN
* 4 ports 1GB Ethernet switch (2.5GB uplink)
* USB3 type A port
* SD card and eMMC
* 2 LEDs
* 2 push buttons
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
arch/arm64/boot/dts/marvell/Makefile | 1 +
.../marvell/armada-8040-clearfog-gt-8k.dts | 417 ++++++++++++++++++
2 files changed, 418 insertions(+)
create mode 100644 arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
diff --git a/arch/arm64/boot/dts/marvell/Makefile b/arch/arm64/boot/dts/marvell/Makefile
index ea9d49f2a911..eca8bac6303a 100644
--- a/arch/arm64/boot/dts/marvell/Makefile
+++ b/arch/arm64/boot/dts/marvell/Makefile
@@ -3,6 +3,7 @@
dtb-$(CONFIG_ARCH_MVEBU) += armada-3720-db.dtb
dtb-$(CONFIG_ARCH_MVEBU) += armada-3720-espressobin.dtb
dtb-$(CONFIG_ARCH_MVEBU) += armada-7040-db.dtb
+dtb-$(CONFIG_ARCH_MVEBU) += armada-8040-clearfog-gt-8k.dtb
dtb-$(CONFIG_ARCH_MVEBU) += armada-8040-db.dtb
dtb-$(CONFIG_ARCH_MVEBU) += armada-8040-mcbin.dtb
dtb-$(CONFIG_ARCH_MVEBU) += armada-8080-db.dtb
diff --git a/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts b/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
new file mode 100644
index 000000000000..7ae6fb4530f2
--- /dev/null
+++ b/arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dts
@@ -0,0 +1,417 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * Copyright (C) 2018 SolidRun ltd.
+ * Based on Marvell MACCHIATOBin board
+ *
+ * Device Tree file for SolidRun's ClearFog GT 8K
+ */
+
+#include "armada-8040.dtsi"
+
+#include <dt-bindings/input/input.h>
+#include <dt-bindings/gpio/gpio.h>
+
+/ {
+ model = "SolidRun ClearFog GT 8K";
+ compatible = "solidrun,clearfog-gt-8k", "marvell,armada8040",
+ "marvell,armada-ap806-quad", "marvell,armada-ap806";
+
+ chosen {
+ stdout-path = "serial0:115200n8";
+ };
+
+ memory at 00000000 {
+ device_type = "memory";
+ reg = <0x0 0x0 0x0 0x80000000>;
+ };
+
+ aliases {
+ ethernet0 = &cp1_eth1;
+ ethernet1 = &cp0_eth0;
+ ethernet2 = &cp1_eth2;
+ };
+
+ v_3_3: regulator-3-3v {
+ compatible = "regulator-fixed";
+ regulator-name = "v_3_3";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ regulator-always-on;
+ status = "okay";
+ };
+
+ v_5v0_usb3_hst_vbus: regulator-usb3-vbus0 {
+ compatible = "regulator-fixed";
+ gpio = <&cp0_gpio2 15 GPIO_ACTIVE_HIGH>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp0_xhci_vbus_pins>;
+ regulator-name = "v_5v0_usb3_hst_vbus";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ status = "okay";
+ };
+
+ usb3h0_phy: usb3_phy0 {
+ compatible = "usb-nop-xceiv";
+ vcc-supply = <&v_5v0_usb3_hst_vbus>;
+ };
+
+ sfp_cp0_eth0: sfp-cp0-eth0 {
+ compatible = "sff,sfp";
+ i2c-bus = <&cp0_i2c1>;
+ mod-def0-gpio = <&cp0_gpio2 17 GPIO_ACTIVE_LOW>;
+ tx-disable-gpio = <&cp1_gpio1 29 GPIO_ACTIVE_HIGH>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp0_sfp_present_pins &cp1_sfp_tx_disable_pins>;
+ };
+
+ leds {
+ compatible = "gpio-leds";
+ pinctrl-0 = <&cp0_led0_pins
+ &cp0_led1_pins>;
+ pinctrl-names = "default";
+ led0 {
+ label = "led0";
+ gpios = <&cp0_gpio2 8 GPIO_ACTIVE_LOW>;
+ default-state = "on";
+ };
+ led1 {
+ label = "led1";
+ gpios = <&cp0_gpio2 9 GPIO_ACTIVE_LOW>;
+ default-state = "on";
+ };
+ };
+
+ keys {
+ compatible = "gpio-keys";
+ pinctrl-0 = <&cp0_gpio_reset_pins &cp1_wps_button_pins>;
+ pinctrl-names = "default";
+
+ button_0 {
+ /* The rear button */
+ label = "Rear Button";
+ gpios = <&cp0_gpio2 7 GPIO_ACTIVE_LOW>;
+ linux,can-disable;
+ linux,code = <BTN_0>;
+ };
+
+ button_1 {
+ /* The wps button */
+ label = "WPS Button";
+ gpios = <&cp1_gpio1 30 GPIO_ACTIVE_LOW>;
+ linux,can-disable;
+ linux,code = <BTN_1>;
+ };
+ };
+};
+
+&uart0 {
+ status = "okay";
+ pinctrl-0 = <&uart0_pins>;
+ pinctrl-names = "default";
+};
+
+&ap_sdhci0 {
+ bus-width = <8>;
+ no-1-8-v;
+ no-sd;
+ no-sdio;
+ non-removable;
+ status = "okay";
+ vqmmc-supply = <&v_3_3>;
+};
+
+&cp0_i2c0 {
+ clock-frequency = <100000>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp0_i2c0_pins>;
+ status = "okay";
+};
+
+&cp0_i2c1 {
+ clock-frequency = <100000>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp0_i2c1_pins>;
+ status = "okay";
+};
+
+&cp0_pinctrl {
+ /*
+ * MPP Bus:
+ * [0-31] = 0xff: Keep default CP0_shared_pins:
+ * [11] CLKOUT_MPP_11 (out)
+ * [23] LINK_RD_IN_CP2CP (in)
+ * [25] CLKOUT_MPP_25 (out)
+ * [29] AVS_FB_IN_CP2CP (in)
+ * [32, 33, 34] pci0/1/2 reset
+ * [35-38] CP0 I2C1 and I2C0
+ * [39] GPIO reset button
+ * [40,41] LED0 and LED1
+ * [43] 1512 phy reset
+ * [47] USB VBUS EN (active low)
+ * [48] FAN PWM
+ * [49] SFP+ present signal
+ * [50] TPM interrupt
+ * [51] WLAN0 disable
+ * [52] WLAN1 disable
+ * [53] LTE disable
+ * [54] NFC reset
+ * [55] Micro SD card detect
+ * [56-61] Micro SD
+ */
+
+ cp0_pci0_reset_pins: pci0-reset-pins {
+ marvell,pins = "mpp32";
+ marvell,function = "gpio";
+ };
+
+ cp0_pci1_reset_pins: pci1-reset-pins {
+ marvell,pins = "mpp33";
+ marvell,function = "gpio";
+ };
+
+ cp0_pci2_reset_pins: pci2-reset-pins {
+ marvell,pins = "mpp34";
+ marvell,function = "gpio";
+ };
+
+ cp0_i2c1_pins: i2c1-pins {
+ marvell,pins = "mpp35", "mpp36";
+ marvell,function = "i2c1";
+ };
+
+ cp0_i2c0_pins: i2c0-pins {
+ marvell,pins = "mpp37", "mpp38";
+ marvell,function = "i2c0";
+ };
+
+ cp0_gpio_reset_pins: gpio-reset-pins {
+ marvell,pins = "mpp39";
+ marvell,function = "gpio";
+ };
+
+ cp0_led0_pins: led0-pins {
+ marvell,pins = "mpp40";
+ marvell,function = "gpio";
+ };
+
+ cp0_led1_pins: led1-pins {
+ marvell,pins = "mpp41";
+ marvell,function = "gpio";
+ };
+
+ cp0_copper_eth_phy_reset: copper-eth-phy-reset {
+ marvell,pins = "mpp43";
+ marvell,function = "gpio";
+ };
+
+ cp0_xhci_vbus_pins: xhci0-vbus-pins {
+ marvell,pins = "mpp47";
+ marvell,function = "gpio";
+ };
+
+ cp0_fan_pwm_pins: fan-pwm-pins {
+ marvell,pins = "mpp48";
+ marvell,function = "gpio";
+ };
+
+ cp0_sfp_present_pins: sfp-present-pins {
+ marvell,pins = "mpp49";
+ marvell,function = "gpio";
+ };
+
+ cp0_tpm_irq_pins: tpm-irq-pins {
+ marvell,pins = "mpp50";
+ marvell,function = "gpio";
+ };
+
+ cp0_sdhci_pins: sdhci-pins {
+ marvell,pins = "mpp55", "mpp56", "mpp57", "mpp58", "mpp59",
+ "mpp60", "mpp61";
+ marvell,function = "sdio";
+ };
+};
+
+&cp0_ethernet {
+ status = "okay";
+};
+
+/* SFP */
+&cp0_eth0 {
+ status = "okay";
+ phy-mode = "10gbase-kr";
+ managed = "in-band-status";
+ phys = <&cp0_comphy2 0>;
+ sfp = <&sfp_cp0_eth0>;
+};
+
+&cp0_sdhci0 {
+ broken-cd;
+ bus-width = <4>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp0_sdhci_pins>;
+ status = "okay";
+ vqmmc-supply = <&v_3_3>;
+};
+
+&cp1_pinctrl {
+ /*
+ * MPP Bus:
+ * [0-5] TDM
+ * [6] VHV Enable
+ * [7] CP1 SPI0 CSn1 (FXS)
+ * [8] CP1 SPI0 CSn0 (TPM)
+ * [9.11]CP1 SPI0 MOSI/MISO/CLK
+ * [13] CP1 SPI1 MISO (TDM and SPI ROM shared)
+ * [14] CP1 SPI1 CS0n (64Mb SPI ROM)
+ * [15] CP1 SPI1 MOSI (TDM and SPI ROM shared)
+ * [16] CP1 SPI1 CLK (TDM and SPI ROM shared)
+ * [24] Topaz switch reset
+ * [26] Buzzer
+ * [27] CP1 SMI MDIO
+ * [28] CP1 SMI MDC
+ * [29] CP0 10G SFP TX Disable
+ * [30] WPS button
+ * [31] Front panel button
+ */
+
+ cp1_spi1_pins: spi1-pins {
+ marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16";
+ marvell,function = "spi1";
+ };
+
+ cp1_switch_reset_pins: switch-reset-pins {
+ marvell,pins = "mpp24";
+ marvell,function = "gpio";
+ };
+
+ cp1_ge_mdio_pins: ge-mdio-pins {
+ marvell,pins = "mpp27", "mpp28";
+ marvell,function = "ge";
+ };
+
+ cp1_sfp_tx_disable_pins: sfp-tx-disable-pins {
+ marvell,pins = "mpp29";
+ marvell,function = "gpio";
+ };
+
+ cp1_wps_button_pins: wps-button-pins {
+ marvell,pins = "mpp30";
+ marvell,function = "gpio";
+ };
+};
+
+&cp1_sata0 {
+ status = "okay";
+};
+
+&cp1_mdio {
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp1_ge_mdio_pins>;
+ status = "okay";
+
+ ge_phy: ethernet-phy at 0 {
+ marvell,reg-init = <3 16 0 0x1017>;
+ reg = <0>;
+ };
+
+ switch0: switch0 at 4 {
+ compatible = "marvell,mv88e6085";
+ reg = <4>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp1_switch_reset_pins>;
+ reset-gpios = <&cp1_gpio1 24 GPIO_ACTIVE_LOW>;
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port at 1 {
+ reg = <1>;
+ label = "lan2";
+ phy-handle = <&switch0phy0>;
+ };
+
+ port at 2 {
+ reg = <2>;
+ label = "lan1";
+ phy-handle = <&switch0phy1>;
+ };
+
+ port at 3 {
+ reg = <3>;
+ label = "lan4";
+ phy-handle = <&switch0phy2>;
+ };
+
+ port at 4 {
+ reg = <4>;
+ label = "lan3";
+ phy-handle = <&switch0phy3>;
+ };
+
+ port at 5 {
+ reg = <5>;
+ label = "cpu";
+ ethernet = <&cp1_eth2>;
+ };
+ };
+
+ mdio {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ switch0phy0: switch0phy0 at 11 {
+ reg = <0x11>;
+ };
+ switch0phy1: switch0phy1 at 12 {
+ reg = <0x12>;
+ };
+ switch0phy2: switch0phy2 at 13 {
+ reg = <0x13>;
+ };
+ switch0phy3: switch0phy3 at 14 {
+ reg = <0x14>;
+ };
+ };
+ };
+};
+
+&cp1_ethernet {
+ status = "okay";
+};
+
+/* 1G copper */
+&cp1_eth1 {
+ status = "okay";
+ phy-mode = "sgmii";
+ phy = <&ge_phy>;
+ phys = <&cp1_comphy3 1>;
+};
+
+/* Switch uplink */
+&cp1_eth2 {
+ status = "okay";
+ phy-mode = "2500base-x";
+ phys = <&cp1_comphy5 2>;
+ fixed-link {
+ speed = <2500>;
+ full-duplex;
+ };
+};
+
+&cp1_spi1 {
+ pinctrl-names = "default";
+ pinctrl-0 = <&cp1_spi1_pins>;
+ status = "okay";
+
+ spi-flash at 0 {
+ compatible = "st,w25q32";
+ spi-max-frequency = <50000000>;
+ reg = <0>;
+ };
+};
+
+&cp1_usb3_0 {
+ usb-phy = <&usb3h0_phy>;
+ status = "okay";
+};
--
2.18.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K
2018-08-29 12:13 [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K Baruch Siach
@ 2018-08-29 14:11 ` Andrew Lunn
2018-08-29 14:47 ` Baruch Siach
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Lunn @ 2018-08-29 14:11 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Aug 29, 2018 at 03:13:09PM +0300, Baruch Siach wrote:
Hi Baruch
> + leds {
> + compatible = "gpio-leds";
> + pinctrl-0 = <&cp0_led0_pins
> + &cp0_led1_pins>;
> + pinctrl-names = "default";
> + led0 {
> + label = "led0";
There is a naming convention of LEDs. Documentation/leds/leds-class.txt:
LED Device Naming
=================
Is currently of the form:
"devicename:colour:function"
> + button_0 {
> + /* The rear button */
> + label = "Rear Button";
> + gpios = <&cp0_gpio2 7 GPIO_ACTIVE_LOW>;
> + linux,can-disable;
> + linux,code = <BTN_0>;
> + };
Is there any label on the PCB or case about what this button is used
for? It would be nice to have something less generic than BTN_0.
> +
> + button_1 {
> + /* The wps button */
> + label = "WPS Button";
> + gpios = <&cp1_gpio1 30 GPIO_ACTIVE_LOW>;
> + linux,can-disable;
> + linux,code = <BTN_1>;
linux,code = <KEY_WPS_BUTTON>;
> + cp0_tpm_irq_pins: tpm-irq-pins {
> + marvell,pins = "mpp50";
> + marvell,function = "gpio";
> + };
I didn't realise the board had a TPM. I don't see any mention on
SolidRun's website. What TPM is it?
> +&cp1_mdio {
> + pinctrl-names = "default";
> + pinctrl-0 = <&cp1_ge_mdio_pins>;
> + status = "okay";
> +
> + ge_phy: ethernet-phy at 0 {
> + marvell,reg-init = <3 16 0 0x1017>;
This marvell,reg-init is rather black magic. It would be good to
document what this does.
> + port at 5 {
> + reg = <5>;
> + label = "cpu";
> + ethernet = <&cp1_eth2>;
> + };
No fixed-link? It correctly defaults to 2.5G? I've never tested that.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K
2018-08-29 14:11 ` Andrew Lunn
@ 2018-08-29 14:47 ` Baruch Siach
2018-08-29 15:09 ` Andrew Lunn
0 siblings, 1 reply; 6+ messages in thread
From: Baruch Siach @ 2018-08-29 14:47 UTC (permalink / raw)
To: linux-arm-kernel
Hi Andrew,
Thanks for reviewing.
Andrew Lunn writes:
> On Wed, Aug 29, 2018 at 03:13:09PM +0300, Baruch Siach wrote:
>> + leds {
>> + compatible = "gpio-leds";
>> + pinctrl-0 = <&cp0_led0_pins
>> + &cp0_led1_pins>;
>> + pinctrl-names = "default";
>> + led0 {
>> + label = "led0";
>
> There is a naming convention of LEDs. Documentation/leds/leds-class.txt:
>
> LED Device Naming
> =================
>
> Is currently of the form:
>
> "devicename:colour:function"
>
>> + button_0 {
>> + /* The rear button */
>> + label = "Rear Button";
>> + gpios = <&cp0_gpio2 7 GPIO_ACTIVE_LOW>;
>> + linux,can-disable;
>> + linux,code = <BTN_0>;
>> + };
>
> Is there any label on the PCB or case about what this button is used
> for? It would be nice to have something less generic than BTN_0.
The schematics say "AP Reset Switch". So it is probably meant to be a
software controlled "back to default" button. Is there a suitable
linux,code for that?
>> +
>> + button_1 {
>> + /* The wps button */
>> + label = "WPS Button";
>> + gpios = <&cp1_gpio1 30 GPIO_ACTIVE_LOW>;
>> + linux,can-disable;
>> + linux,code = <BTN_1>;
>
> linux,code = <KEY_WPS_BUTTON>;
>
>> + cp0_tpm_irq_pins: tpm-irq-pins {
>> + marvell,pins = "mpp50";
>> + marvell,function = "gpio";
>> + };
>
> I didn't realise the board had a TPM. I don't see any mention on
> SolidRun's website. What TPM is it?
It is not assembled here so I could not test. The schematics say SLB9670.
>> +&cp1_mdio {
>> + pinctrl-names = "default";
>> + pinctrl-0 = <&cp1_ge_mdio_pins>;
>> + status = "okay";
>> +
>> + ge_phy: ethernet-phy at 0 {
>> + marvell,reg-init = <3 16 0 0x1017>;
>
> This marvell,reg-init is rather black magic. It would be good to
> document what this does.
OK. I'll look in up.
>> + port at 5 {
>> + reg = <5>;
>> + label = "cpu";
>> + ethernet = <&cp1_eth2>;
>> + };
>
> No fixed-link? It correctly defaults to 2.5G? I've never tested that.
Seems to work here. There is also a patch from Rabeeh (which I did not
apply while testing) to make it the default:
https://github.com/SolidRun/openwrt/blob/openwrt-18.06-sr/target/linux/mvebu/patches-4.14/533-fix-88e6141-cpu-max-speed.patch
I plan to upstream this patch.
baruch
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K
2018-08-29 14:47 ` Baruch Siach
@ 2018-08-29 15:09 ` Andrew Lunn
2018-08-29 15:33 ` Baruch Siach
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Lunn @ 2018-08-29 15:09 UTC (permalink / raw)
To: linux-arm-kernel
> The schematics say "AP Reset Switch". So it is probably meant to be a
> software controlled "back to default" button. Is there a suitable
> linux,code for that?
There is a reset code.
> It is not assembled here so I could not test. The schematics say SLB9670.
I think the standard SPI TPM TIS driver should work for that. But if
it is not populated, you cannot test it.
> >> + port at 5 {
> >> + reg = <5>;
> >> + label = "cpu";
> >> + ethernet = <&cp1_eth2>;
> >> + };
> >
> > No fixed-link? It correctly defaults to 2.5G? I've never tested that.
>
> Seems to work here
It would be good to test it really is using 2.5G, not 1G.
. There is also a patch from Rabeeh (which I did not
> apply while testing) to make it the default:
>
> https://github.com/SolidRun/openwrt/blob/openwrt-18.06-sr/target/linux/mvebu/patches-4.14/533-fix-88e6141-cpu-max-speed.patch
Which is why i don't think it actually is using 2.5G.
This patch will need a little rework, but it basically O.K. Change
mv88e6x41 to mv88e6341. We use the family name in function names.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K
2018-08-29 15:09 ` Andrew Lunn
@ 2018-08-29 15:33 ` Baruch Siach
2018-08-29 16:38 ` Andrew Lunn
0 siblings, 1 reply; 6+ messages in thread
From: Baruch Siach @ 2018-08-29 15:33 UTC (permalink / raw)
To: linux-arm-kernel
Hi Andrew,
Andrew Lunn writes:
>> The schematics say "AP Reset Switch". So it is probably meant to be a
>> software controlled "back to default" button. Is there a suitable
>> linux,code for that?
>
> There is a reset code.
I can't find it. The only match for RESET in
include/uapi/linux/input-event-codes.h is KEY_ZOOMRESET, which is most
likely not what you meant.
>> It is not assembled here so I could not test. The schematics say SLB9670.
>
> I think the standard SPI TPM TIS driver should work for that. But if
> it is not populated, you cannot test it.
>
>> >> + port at 5 {
>> >> + reg = <5>;
>> >> + label = "cpu";
>> >> + ethernet = <&cp1_eth2>;
>> >> + };
>> >
>> > No fixed-link? It correctly defaults to 2.5G? I've never tested that.
>>
>> Seems to work here
>
> It would be good to test it really is using 2.5G, not 1G.
>
>> There is also a patch from Rabeeh (which I did not
>> apply while testing) to make it the default:
>>
>> https://github.com/SolidRun/openwrt/blob/openwrt-18.06-sr/target/linux/mvebu/patches-4.14/533-fix-88e6141-cpu-max-speed.patch
>
> Which is why i don't think it actually is using 2.5G.
I see this from phylink_mac_config():
[ 511.043783] mvpp2 f4000000.ethernet eth2: phylink_mac_config: mode=fixed/2500base-x/2.5Gbps/Full adv=00000,00008200 pause=10 link=1 an=1
Is that enough for a test?
> This patch will need a little rework, but it basically O.K. Change
> mv88e6x41 to mv88e6341. We use the family name in function names.
Thanks again for reviewing this not-yet-posted patch.
baruch
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K
2018-08-29 15:33 ` Baruch Siach
@ 2018-08-29 16:38 ` Andrew Lunn
0 siblings, 0 replies; 6+ messages in thread
From: Andrew Lunn @ 2018-08-29 16:38 UTC (permalink / raw)
To: linux-arm-kernel
> I see this from phylink_mac_config():
>
> [ 511.043783] mvpp2 f4000000.ethernet eth2: phylink_mac_config: mode=fixed/2500base-x/2.5Gbps/Full adv=00000,00008200 pause=10 link=1 an=1
>
> Is that enough for a test?
That shows you what the mvpp2 is being asked to do. But not what the
switch is doing. It could be the two SERDES interfaces are doing
auto-neg, and ended up at 1G.
Try actually pushing traffic over the switch. Two iperf instances, out
two ports. Do you get 1Gbps for each stream or 500Mbps?
In the end, it does not matter. We want the CPU port of the switch to
default to its maximum speed. So you should not need a fixed-link. But
until the patch is applied, i don't think it will do > 1Gbps.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-08-29 16:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-29 12:13 [PATCH] arm64: dts: add support for SolidRun Clearfog GT 8K Baruch Siach
2018-08-29 14:11 ` Andrew Lunn
2018-08-29 14:47 ` Baruch Siach
2018-08-29 15:09 ` Andrew Lunn
2018-08-29 15:33 ` Baruch Siach
2018-08-29 16:38 ` Andrew Lunn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).