Author: zbb
Date: Thu Jan 28 15:34:13 2016
New Revision: 294991
URL: https://svnweb.freebsd.org/changeset/base/294991

Log:
  Divide ThunderX PCIe driver to general and FDT part
  
  - Separate FDT and general PCIe driver parts
  - Drop some irrelevant printfs that cannot be displayed in
    FDT attach
  - Move ranges parsing to FDT portion of PCIe code
  
  Obtained from: Semihalf
  Sponsored by:  Cavium
  Differential Revision: https://reviews.freebsd.org/D5067

Added:
  head/sys/arm64/cavium/thunder_pcie_fdt.c   (contents, props changed)
Modified:
  head/sys/arm64/cavium/thunder_pcie.c
  head/sys/arm64/cavium/thunder_pcie_common.c
  head/sys/arm64/cavium/thunder_pcie_common.h
  head/sys/conf/files.arm64

Modified: head/sys/arm64/cavium/thunder_pcie.c
==============================================================================
--- head/sys/arm64/cavium/thunder_pcie.c        Thu Jan 28 15:30:58 2016        
(r294990)
+++ head/sys/arm64/cavium/thunder_pcie.c        Thu Jan 28 15:34:13 2016        
(r294991)
@@ -43,9 +43,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/bus.h>
 #include <sys/endian.h>
 #include <sys/cpuset.h>
-#include <dev/ofw/openfirm.h>
-#include <dev/ofw/ofw_bus.h>
-#include <dev/ofw/ofw_bus_subr.h>
 #include <dev/pci/pcivar.h>
 #include <dev/pci/pcireg.h>
 #include <dev/pci/pcib_private.h>
@@ -82,23 +79,6 @@ __FBSDID("$FreeBSD$");
 #define        THUNDER_ECAM6_CFG_BASE  0x94a000000000UL
 #define        THUNDER_ECAM7_CFG_BASE  0x94b000000000UL
 
-#define        OFW_CELL_TO_UINT64(cell)        \
-    (((uint64_t)(*(cell)) << 32) | (uint64_t)(*((cell) + 1)))
-
-#define        SPACE_CODE_SHIFT        24
-#define        SPACE_CODE_MASK         0x3
-#define        SPACE_CODE_IO_SPACE     0x1
-#define        PROPS_CELL_SIZE         1
-#define        PCI_ADDR_CELL_SIZE      2
-
-struct thunder_pcie_softc {
-       struct pcie_range       ranges[RANGES_TUPLES_MAX];
-       struct rman             mem_rman;
-       struct resource         *res;
-       int                     ecam;
-       device_t                dev;
-};
-
 /*
  * ThunderX supports up to 4 ethernet interfaces, so it's good
  * value to use as default for numbers of VFs, since each eth
@@ -111,11 +91,8 @@ SYSCTL_INT(_hw, OID_AUTO, thunder_pcie_m
 /* Forward prototypes */
 static struct resource *thunder_pcie_alloc_resource(device_t,
     device_t, int, int *, rman_res_t, rman_res_t, rman_res_t, u_int);
-static int thunder_pcie_attach(device_t);
 static int thunder_pcie_identify_pcib(device_t);
 static int thunder_pcie_maxslots(device_t);
-static int parse_pci_mem_ranges(struct thunder_pcie_softc *);
-static int thunder_pcie_probe(device_t);
 static uint32_t thunder_pcie_read_config(device_t, u_int, u_int, u_int, u_int,
     int);
 static int thunder_pcie_read_ivar(device_t, device_t, int, uintptr_t *);
@@ -125,23 +102,7 @@ static void thunder_pcie_write_config(de
     u_int, u_int, uint32_t, int);
 static int thunder_pcie_write_ivar(device_t, device_t, int, uintptr_t);
 
-static int
-thunder_pcie_probe(device_t dev)
-{
-
-       if (!ofw_bus_status_okay(dev))
-               return (ENXIO);
-
-       if (ofw_bus_is_compatible(dev, "cavium,thunder-pcie") ||
-           ofw_bus_is_compatible(dev, "cavium,pci-host-thunder-ecam")) {
-               device_set_desc(dev, "Cavium Integrated PCI/PCI-E Controller");
-               return (BUS_PROBE_DEFAULT);
-       }
-
-       return (ENXIO);
-}
-
-static int
+int
 thunder_pcie_attach(device_t dev)
 {
        int rid;
@@ -167,13 +128,6 @@ thunder_pcie_attach(device_t dev)
        sc->mem_rman.rm_type = RMAN_ARRAY;
        sc->mem_rman.rm_descr = "PCIe Memory";
 
-       /* Retrieve 'ranges' property from FDT */
-       if (bootverbose)
-               device_printf(dev, "parsing FDT for ECAM%d:\n",
-                   sc->ecam);
-       if (parse_pci_mem_ranges(sc))
-               return (ENXIO);
-
        /* Initialize rman and allocate memory regions */
        error = rman_init(&sc->mem_rman);
        if (error) {
@@ -199,115 +153,6 @@ thunder_pcie_attach(device_t dev)
        return (bus_generic_attach(dev));
 }
 
-static int
-parse_pci_mem_ranges(struct thunder_pcie_softc *sc)
-{
-       phandle_t node;
-       pcell_t pci_addr_cells, parent_addr_cells, size_cells;
-       pcell_t attributes;
-       pcell_t *ranges_buf, *cell_ptr;
-       int cells_count, tuples_count;
-       int tuple;
-       int rv;
-
-       node = ofw_bus_get_node(sc->dev);
-
-       /* Find address cells if present */
-       if (OF_getencprop(node, "#address-cells", &pci_addr_cells,
-           sizeof(pci_addr_cells)) < sizeof(pci_addr_cells))
-               pci_addr_cells = 2;
-
-       /* Find size cells if present */
-       if (OF_getencprop(node, "#size-cells", &size_cells,
-           sizeof(size_cells)) < sizeof(size_cells))
-               size_cells = 1;
-
-       /* Find parent address cells if present */
-       if (OF_getencprop(OF_parent(node), "#address-cells",
-           &parent_addr_cells, sizeof(parent_addr_cells)) < 
sizeof(parent_addr_cells))
-               parent_addr_cells = 2;
-
-       /* Check if FDT format matches driver requirements */
-       if ((parent_addr_cells != 2) || (pci_addr_cells != 3) ||
-           (size_cells != 2)) {
-               device_printf(sc->dev,
-                   "Unexpected number of address or size cells in FDT "
-                   " %d:%d:%d\n",
-                   parent_addr_cells, pci_addr_cells, size_cells);
-               return (ENXIO);
-       }
-
-       cells_count = OF_getencprop_alloc(node, "ranges",
-           sizeof(pcell_t), (void **)&ranges_buf);
-       if (cells_count == -1) {
-               device_printf(sc->dev, "Error parsing FDT 'ranges' property\n");
-               return (ENXIO);
-       }
-
-       tuples_count = cells_count /
-           (pci_addr_cells + parent_addr_cells + size_cells);
-       if (tuples_count > RANGES_TUPLES_MAX) {
-               device_printf(sc->dev,
-                   "Unexpected number of 'ranges' tuples in FDT\n");
-               rv = ENXIO;
-               goto out;
-       }
-
-       cell_ptr = ranges_buf;
-
-       for (tuple = 0; tuple < tuples_count; tuple++) {
-               /*
-                * TUPLE FORMAT:
-                *  attributes  - 32-bit attributes field
-                *  PCI address - bus address combined of two cells in
-                *                a following format:
-                *                <ADDR MSB> <ADDR LSB>
-                *  PA address  - physical address combined of two cells in
-                *                a following format:
-                *                <ADDR MSB> <ADDR LSB>
-                *  size        - range size combined of two cells in
-                *                a following format:
-                *                <ADDR MSB> <ADDR LSB>
-                */
-               attributes = *cell_ptr;
-               attributes = (attributes >> SPACE_CODE_SHIFT) & SPACE_CODE_MASK;
-               if (attributes == SPACE_CODE_IO_SPACE) {
-                       /* Internal PCIe does not support IO space, ignore. */
-                       sc->ranges[tuple].phys_base = 0;
-                       sc->ranges[tuple].size = 0;
-                       cell_ptr +=
-                           (pci_addr_cells + parent_addr_cells + size_cells);
-                       continue;
-               }
-               cell_ptr += PROPS_CELL_SIZE;
-               sc->ranges[tuple].pci_base = OFW_CELL_TO_UINT64(cell_ptr);
-               cell_ptr += PCI_ADDR_CELL_SIZE;
-               sc->ranges[tuple].phys_base = OFW_CELL_TO_UINT64(cell_ptr);
-               cell_ptr += parent_addr_cells;
-               sc->ranges[tuple].size = OFW_CELL_TO_UINT64(cell_ptr);
-               cell_ptr += size_cells;
-
-               if (bootverbose) {
-                       device_printf(sc->dev,
-                           "\tPCI addr: 0x%jx, CPU addr: 0x%jx, Size: 0x%jx\n",
-                           sc->ranges[tuple].pci_base,
-                           sc->ranges[tuple].phys_base,
-                           sc->ranges[tuple].size);
-               }
-
-       }
-       for (; tuple < RANGES_TUPLES_MAX; tuple++) {
-               /* zero-fill remaining tuples to mark empty elements in array */
-               sc->ranges[tuple].phys_base = 0;
-               sc->ranges[tuple].size = 0;
-       }
-
-       rv = 0;
-out:
-       free(ranges_buf, M_OFWPROP);
-       return (rv);
-}
-
 static uint32_t
 thunder_pcie_read_config(device_t dev, u_int bus, u_int slot,
     u_int func, u_int reg, int bytes)
@@ -558,8 +403,6 @@ thunder_pcie_identify_pcib(device_t dev)
 }
 
 static device_method_t thunder_pcie_methods[] = {
-       DEVMETHOD(device_probe,                 thunder_pcie_probe),
-       DEVMETHOD(device_attach,                thunder_pcie_attach),
        DEVMETHOD(pcib_maxslots,                thunder_pcie_maxslots),
        DEVMETHOD(pcib_read_config,             thunder_pcie_read_config),
        DEVMETHOD(pcib_write_config,            thunder_pcie_write_config),
@@ -581,15 +424,5 @@ static device_method_t thunder_pcie_meth
        DEVMETHOD_END
 };
 
-static driver_t thunder_pcie_driver = {
-       "pcib",
-       thunder_pcie_methods,
-       sizeof(struct thunder_pcie_softc),
-};
-
-static devclass_t thunder_pcie_devclass;
-
-DRIVER_MODULE(thunder_pcib, simplebus, thunder_pcie_driver,
-thunder_pcie_devclass, 0, 0);
-DRIVER_MODULE(thunder_pcib, ofwbus, thunder_pcie_driver,
-thunder_pcie_devclass, 0, 0);
+DEFINE_CLASS_0(pcib, thunder_pcie_driver, thunder_pcie_methods,
+    sizeof(struct thunder_pcie_softc));

Modified: head/sys/arm64/cavium/thunder_pcie_common.c
==============================================================================
--- head/sys/arm64/cavium/thunder_pcie_common.c Thu Jan 28 15:30:58 2016        
(r294990)
+++ head/sys/arm64/cavium/thunder_pcie_common.c Thu Jan 28 15:34:13 2016        
(r294991)
@@ -36,6 +36,8 @@ __FBSDID("$FreeBSD$");
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/bus.h>
+#include <sys/rman.h>
+
 #include <machine/bus.h>
 #include <machine/cpu.h>
 #include <machine/intr.h>

Modified: head/sys/arm64/cavium/thunder_pcie_common.h
==============================================================================
--- head/sys/arm64/cavium/thunder_pcie_common.h Thu Jan 28 15:30:58 2016        
(r294990)
+++ head/sys/arm64/cavium/thunder_pcie_common.h Thu Jan 28 15:34:13 2016        
(r294991)
@@ -32,6 +32,8 @@
 #define        RANGES_TUPLES_MAX       6
 #define        RANGES_TUPLES_INVALID (RANGES_TUPLES_MAX + 1)
 
+DECLARE_CLASS(thunder_pcie_driver);
+
 struct pcie_range {
        uint64_t        pci_base;
        uint64_t        phys_base;
@@ -39,6 +41,14 @@ struct pcie_range {
        uint64_t        flags;
 };
 
+struct thunder_pcie_softc {
+       struct pcie_range       ranges[RANGES_TUPLES_MAX];
+       struct rman             mem_rman;
+       struct resource         *res;
+       int                     ecam;
+       device_t                dev;
+};
+
 uint32_t range_addr_is_pci(struct pcie_range *, uint64_t, uint64_t);
 uint32_t range_addr_is_phys(struct pcie_range *, uint64_t, uint64_t);
 uint64_t range_addr_pci_to_phys(struct pcie_range *, uint64_t);
@@ -48,4 +58,6 @@ int thunder_common_map_msi(device_t, dev
 int thunder_common_release_msi(device_t, device_t, int, int *);
 int thunder_common_release_msix(device_t, device_t, int);
 
+int thunder_pcie_attach(device_t);
+
 #endif /* _CAVIUM_THUNDER_PCIE_COMMON_H_ */

Added: head/sys/arm64/cavium/thunder_pcie_fdt.c
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/arm64/cavium/thunder_pcie_fdt.c    Thu Jan 28 15:34:13 2016        
(r294991)
@@ -0,0 +1,219 @@
+/*
+ * Copyright (C) 2016 Cavium Inc.
+ * All rights reserved.
+ *
+ * Developed by Semihalf.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+#include "opt_platform.h"
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/malloc.h>
+#include <sys/types.h>
+#include <sys/sysctl.h>
+#include <sys/kernel.h>
+#include <sys/rman.h>
+#include <sys/module.h>
+#include <sys/bus.h>
+#include <sys/endian.h>
+#include <sys/cpuset.h>
+
+#include <dev/ofw/openfirm.h>
+#include <dev/ofw/ofw_bus.h>
+#include <dev/ofw/ofw_bus_subr.h>
+
+#include "thunder_pcie_common.h"
+
+#define        OFW_CELL_TO_UINT64(cell)        \
+    (((uint64_t)(*(cell)) << 32) | (uint64_t)(*((cell) + 1)))
+
+#define        SPACE_CODE_SHIFT        24
+#define        SPACE_CODE_MASK         0x3
+#define        SPACE_CODE_IO_SPACE     0x1
+#define        PROPS_CELL_SIZE         1
+#define        PCI_ADDR_CELL_SIZE      2
+
+static int thunder_pcie_fdt_probe(device_t);
+static int thunder_pcie_fdt_attach(device_t);
+
+static device_method_t thunder_pcie_fdt_methods[] = {
+       /* Device interface */
+       DEVMETHOD(device_probe,         thunder_pcie_fdt_probe),
+       DEVMETHOD(device_attach,        thunder_pcie_fdt_attach),
+       /* End */
+       DEVMETHOD_END
+};
+
+DEFINE_CLASS_1(pcib, thunder_pcie_fdt_driver, thunder_pcie_fdt_methods,
+    sizeof(struct thunder_pcie_softc), thunder_pcie_driver);
+
+static devclass_t thunder_pcie_fdt_devclass;
+
+DRIVER_MODULE(thunder_pcib, simplebus, thunder_pcie_fdt_driver,
+    thunder_pcie_fdt_devclass, 0, 0);
+DRIVER_MODULE(thunder_pcib, ofwbus, thunder_pcie_fdt_driver,
+    thunder_pcie_fdt_devclass, 0, 0);
+
+static int thunder_pcie_fdt_ranges(device_t);
+
+static int
+thunder_pcie_fdt_probe(device_t dev)
+{
+
+       if (!ofw_bus_status_okay(dev))
+               return (ENXIO);
+
+       if (ofw_bus_is_compatible(dev, "cavium,thunder-pcie") ||
+           ofw_bus_is_compatible(dev, "cavium,pci-host-thunder-ecam")) {
+               device_set_desc(dev, "Cavium Integrated PCI/PCI-E Controller");
+               return (BUS_PROBE_DEFAULT);
+       }
+
+       return (ENXIO);
+}
+
+static int
+thunder_pcie_fdt_attach(device_t dev)
+{
+
+       /* Retrieve 'ranges' property from FDT */
+       if (thunder_pcie_fdt_ranges(dev) != 0)
+               return (ENXIO);
+
+       return (thunder_pcie_attach(dev));
+}
+
+static int
+thunder_pcie_fdt_ranges(device_t dev)
+{
+       struct thunder_pcie_softc *sc;
+       phandle_t node;
+       pcell_t pci_addr_cells, parent_addr_cells, size_cells;
+       pcell_t attributes;
+       pcell_t *ranges_buf, *cell_ptr;
+       int cells_count, tuples_count;
+       int tuple;
+       int rv;
+
+       sc = device_get_softc(dev);
+       node = ofw_bus_get_node(dev);
+
+       /* Find address cells if present */
+       if (OF_getencprop(node, "#address-cells", &pci_addr_cells,
+           sizeof(pci_addr_cells)) < sizeof(pci_addr_cells))
+               pci_addr_cells = 2;
+
+       /* Find size cells if present */
+       if (OF_getencprop(node, "#size-cells", &size_cells,
+           sizeof(size_cells)) < sizeof(size_cells))
+               size_cells = 1;
+
+       /* Find parent address cells if present */
+       if (OF_getencprop(OF_parent(node), "#address-cells",
+           &parent_addr_cells, sizeof(parent_addr_cells)) < 
sizeof(parent_addr_cells))
+               parent_addr_cells = 2;
+
+       /* Check if FDT format matches driver requirements */
+       if ((parent_addr_cells != 2) || (pci_addr_cells != 3) ||
+           (size_cells != 2)) {
+               device_printf(dev,
+                   "Unexpected number of address or size cells in FDT "
+                   " %d:%d:%d\n",
+                   parent_addr_cells, pci_addr_cells, size_cells);
+               return (ENXIO);
+       }
+
+       cells_count = OF_getencprop_alloc(node, "ranges",
+           sizeof(pcell_t), (void **)&ranges_buf);
+       if (cells_count == -1) {
+               device_printf(dev, "Error parsing FDT 'ranges' property\n");
+               return (ENXIO);
+       }
+
+       tuples_count = cells_count /
+           (pci_addr_cells + parent_addr_cells + size_cells);
+       if (tuples_count > RANGES_TUPLES_MAX) {
+               device_printf(dev,
+                   "Unexpected number of 'ranges' tuples in FDT\n");
+               rv = ENXIO;
+               goto out;
+       }
+
+       cell_ptr = ranges_buf;
+
+       for (tuple = 0; tuple < tuples_count; tuple++) {
+               /*
+                * TUPLE FORMAT:
+                *  attributes  - 32-bit attributes field
+                *  PCI address - bus address combined of two cells in
+                *                a following format:
+                *                <ADDR MSB> <ADDR LSB>
+                *  PA address  - physical address combined of two cells in
+                *                a following format:
+                *                <ADDR MSB> <ADDR LSB>
+                *  size        - range size combined of two cells in
+                *                a following format:
+                *                <ADDR MSB> <ADDR LSB>
+                */
+               attributes = *cell_ptr;
+               attributes = (attributes >> SPACE_CODE_SHIFT) & SPACE_CODE_MASK;
+               if (attributes == SPACE_CODE_IO_SPACE) {
+                       /* Internal PCIe does not support IO space, ignore. */
+                       sc->ranges[tuple].phys_base = 0;
+                       sc->ranges[tuple].size = 0;
+                       cell_ptr +=
+                           (pci_addr_cells + parent_addr_cells + size_cells);
+                       continue;
+               }
+               cell_ptr += PROPS_CELL_SIZE;
+               sc->ranges[tuple].pci_base = OFW_CELL_TO_UINT64(cell_ptr);
+               cell_ptr += PCI_ADDR_CELL_SIZE;
+               sc->ranges[tuple].phys_base = OFW_CELL_TO_UINT64(cell_ptr);
+               cell_ptr += parent_addr_cells;
+               sc->ranges[tuple].size = OFW_CELL_TO_UINT64(cell_ptr);
+               cell_ptr += size_cells;
+
+               if (bootverbose) {
+                       device_printf(dev,
+                           "\tPCI addr: 0x%jx, CPU addr: 0x%jx, Size: 0x%jx\n",
+                           sc->ranges[tuple].pci_base,
+                           sc->ranges[tuple].phys_base,
+                           sc->ranges[tuple].size);
+               }
+
+       }
+       for (; tuple < RANGES_TUPLES_MAX; tuple++) {
+               /* zero-fill remaining tuples to mark empty elements in array */
+               sc->ranges[tuple].phys_base = 0;
+               sc->ranges[tuple].size = 0;
+       }
+
+       rv = 0;
+out:
+       free(ranges_buf, M_OFWPROP);
+       return (rv);
+}

Modified: head/sys/conf/files.arm64
==============================================================================
--- head/sys/conf/files.arm64   Thu Jan 28 15:30:58 2016        (r294990)
+++ head/sys/conf/files.arm64   Thu Jan 28 15:34:13 2016        (r294991)
@@ -51,7 +51,8 @@ arm64/arm64/uma_machdep.c     standard
 arm64/arm64/unwind.c           optional        ddb | kdtrace_hooks | stack
 arm64/arm64/vfp.c              standard
 arm64/arm64/vm_machdep.c       standard
-arm64/cavium/thunder_pcie.c    optional        soc_cavm_thunderx pci fdt
+arm64/cavium/thunder_pcie.c    optional        soc_cavm_thunderx pci
+arm64/cavium/thunder_pcie_fdt.c        optional        soc_cavm_thunderx pci 
fdt
 arm64/cavium/thunder_pcie_pem.c        optional        soc_cavm_thunderx pci
 arm64/cavium/thunder_pcie_common.c     optional soc_cavm_thunderx pci
 arm64/cloudabi64/cloudabi64_sysvec.c   optional compat_cloudabi64
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to