MIPS: Octeon: Add Octeon III CN7xxx interface detection
authorZubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Wed, 3 Feb 2016 18:01:36 +0000 (18:01 +0000)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 13 May 2016 12:01:54 +0000 (14:01 +0200)
Add basic CN7XXX interface detection.

This allows the kernel to boot with ethernet working as it initializes
the ethernet ports with SGMII instead of defaulting to RGMII routines.

Tested on the utm8 from Rhino Labs with a CN7130.

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Acked-by: David Daney <david.daney@cavium.com>
Cc: janne.huttunen@nokia.com
Cc: aaro.koskinen@nokia.com
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/12376/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/cavium-octeon/executive/cvmx-helper.c

index 376701f41cc28eb6a78f227836b105af843a794b..ff26d0217b878feb1aca373c588337af96af8431 100644 (file)
@@ -87,6 +87,8 @@ int cvmx_helper_get_number_of_interfaces(void)
                return 9;
        if (OCTEON_IS_MODEL(OCTEON_CN56XX) || OCTEON_IS_MODEL(OCTEON_CN52XX))
                return 4;
+       if (OCTEON_IS_MODEL(OCTEON_CN7XXX))
+               return 5;
        else
                return 3;
 }
@@ -259,6 +261,41 @@ static cvmx_helper_interface_mode_t __cvmx_get_mode_octeon2(int interface)
        }
 }
 
+/**
+ * @INTERNAL
+ * Return interface mode for CN7XXX.
+ */
+static cvmx_helper_interface_mode_t __cvmx_get_mode_cn7xxx(int interface)
+{
+       union cvmx_gmxx_inf_mode mode;
+
+       mode.u64 = cvmx_read_csr(CVMX_GMXX_INF_MODE(interface));
+
+       switch (interface) {
+       case 0:
+       case 1:
+               switch (mode.cn68xx.mode) {
+               case 0:
+                       return CVMX_HELPER_INTERFACE_MODE_DISABLED;
+               case 1:
+               case 2:
+                       return CVMX_HELPER_INTERFACE_MODE_SGMII;
+               case 3:
+                       return CVMX_HELPER_INTERFACE_MODE_XAUI;
+               default:
+                       return CVMX_HELPER_INTERFACE_MODE_SGMII;
+               }
+       case 2:
+               return CVMX_HELPER_INTERFACE_MODE_NPI;
+       case 3:
+               return CVMX_HELPER_INTERFACE_MODE_LOOP;
+       case 4:
+               return CVMX_HELPER_INTERFACE_MODE_RGMII;
+       default:
+               return CVMX_HELPER_INTERFACE_MODE_DISABLED;
+       }
+}
+
 /**
  * Get the operating mode of an interface. Depending on the Octeon
  * chip and configuration, this function returns an enumeration
@@ -277,6 +314,12 @@ cvmx_helper_interface_mode_t cvmx_helper_interface_get_mode(int interface)
            interface >= cvmx_helper_get_number_of_interfaces())
                return CVMX_HELPER_INTERFACE_MODE_DISABLED;
 
+       /*
+        * OCTEON III models
+        */
+       if (OCTEON_IS_MODEL(OCTEON_CN7XXX))
+               return __cvmx_get_mode_cn7xxx(interface);
+
        /*
         * Octeon II models
         */
This page took 0.028673 seconds and 5 git commands to generate.