aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dpaa
Commit message (Collapse)AuthorAgeFilesLines
...
* Simplify the page tracking for VA<->PA translations.Justin Hibbits2016-11-163-5/+0
| | | | | | | | | | Drop the tracking down to the pmap layer, with optimizations to only track necessary pages. This should give a (slight) performance improvement, as well as a stability improvement, as the tracking is already mostly handled by the pmap layer. Notes: svn path=/head/; revision=308718
* Make dpaa work with only slightly modified Linux device trees.Justin Hibbits2016-11-128-238/+137
| | | | | | | | | | | | | | | | | Linux has a slightly different device tree definition for DPAA than originally done in the FreeBSD driver. This changes the driver to be mostly compatible with the Linux device tree definitions. Currently the differences are: bman-portals: compatible = "fsl,bman-portals" (Linux is "simple-bus") qman-portals: compatible = "fsl,qman-portals" (Linux is "simple-bus") fman: compatible = "fsl,fman" (Linux is "simple-bus") The Linux device tree doesn't specify anything for rgmii in the mdio. This change still requires the device tree to specify the phy-handle, and doesn't yet support tbi. Notes: svn path=/head/; revision=308584
* Use ofw_bus_node_is_compatible() instead of fdt_is_compatible()Justin Hibbits2016-11-113-11/+8
| | | | | | | | | | No need to have two functions that do the same thing, let's let fdt_* go away, and use ofw_bus_* equivalents instead. Requested by: andrew Notes: svn path=/head/; revision=308536
* Use the correct name for the qm_portals class.Justin Hibbits2016-10-231-5/+5
| | | | | | | This file was copy&pasted from bman_fdt, and it still shows. Notes: svn path=/head/; revision=307830
* Initialize the ofw_bus_devinfo on the portals to prevent a crash.Justin Hibbits2016-10-222-2/+2
| | | | | | | | | | If the device tree doesn't contain a cpu-handle field in any bman-portal or qman-portal, it will exit without setting up the devinfo, leaving it uninitialized. This will lead to attempts to free random memory, and ultimately panic. Notes: svn path=/head/; revision=307763
* Remove a hack requiring dtsec0 to always be enabled for mdio.Justin Hibbits2016-10-217-71/+282
| | | | | | | | | | | | | | | | | | | Instead replace it with a different hack, that turns fman into a simplebus subclass, and maps its children within its address space. Since all PHY communication is done through dtsec0's mdio space, the FDT contains a reference to the dtsec0 mdio handle in all nodes that need it. Instead of using Freescale's implementation for MII access, use our own (copied loosely from the eTSEC driver, and could possibly be merged eventually). This lets us access the registers directly rather than needing a full dtsec interface just to access the registers. Future directions will include turning fman into more of a simplebus, and not mapping the region and playing games. This will require changes to the dtsec driver to make it a child of fman, and possibly other drivers as well. Notes: svn path=/head/; revision=307696
* Remove an unnecessary debug printf.Justin Hibbits2016-10-211-1/+0
| | | | Notes: svn path=/head/; revision=307695
* Use proper integer-pointer type conversions.Justin Hibbits2016-10-186-23/+24
| | | | | | | | | | | | As part of an effort to extend Book-E to the 64-bit world, make the necessary changes to the DPAA/dTSEC driver set to be integer-pointer conversion clean. This means no more casts to int, and use uintptr_t where needed. Since the NCSW source is effectively obsolete, direct changes to the source tree are safe. Notes: svn path=/head/; revision=307542
* Set the TLB caching properties for portals at attach time.Justin Hibbits2016-05-251-2/+9
| | | | | | | | | | | This was found while reworking the device tree nodes for dtsec to match the Linux device tree. Instead of waiting and expecting later code to call dpaa_portal_map_registers(), do the equivalent immediately upon mapping. Otherwise, it's possible to access the pages before that function is called, and hang the CPU. Notes: svn path=/head/; revision=300637
* Don't mark the initial portal registers as fully mapped.Justin Hibbits2016-05-111-1/+0
| | | | | | | | | | BMan and QMan will do this at attach time. Even though the registers are mapped now, dpaa_portal_map_registers() will be called at BMan and QMan attach time, updating the mappings to be private, and in the case of cache-enabled registers, marked as coherent memory mappings. Notes: svn path=/head/; revision=299399
* Fix SMP booting for PowerPC Book-EJustin Hibbits2016-04-191-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: PowerPC Book-E SMP is currently broken for unknown reasons. Pull in Semihalf changes made c2012 for e500mc/e5500, which enables booting SMP. This eliminates the shared software TLB1 table, replacing it with tlb1_read_entry() function. This does not yet support ePAPR SMP booting, and doesn't handle resetting CPUs already released (ePAPR boot releases APs to a spin loop waiting on a specific address). This will be addressed in the near future by using the MPIC to reset the AP into our own alternate boot address. This does include a change to the dpaa/dtsec(4) driver, to mark the portals as CPU-private. Test Plan: Tested on Amiga X5000/20 (P5020). Boots, prints the following messages: Adding CPU 0, pir=0, awake=1 Waking up CPU 1 (dev=1) Adding CPU 1, pir=20, awake=1 SMP: AP CPU #1 launched top(1) shows CPU1 active. Obtained from: Semihalf Relnotes: Yes Differential Revision: https://reviews.freebsd.org/D5945 Notes: svn path=/head/; revision=298237
* Use the m_extadd() function instead of deprecated MEXTADD().Justin Hibbits2016-03-021-1/+1
| | | | | | | Suggested by: glebius Notes: svn path=/head/; revision=296295
* Remove some debug printfsJustin Hibbits2016-03-021-4/+0
| | | | Notes: svn path=/head/; revision=296294
* Add support for the Freescale dTSEC DPAA-based ethernet controller.Justin Hibbits2016-02-2921-0/+5392
Freescale's QorIQ line includes a new ethernet controller, based on their Datapath Acceleration Architecture (DPAA). This uses a combination of a Frame manager, Buffer manager, and Queue manager to improve performance across all interfaces by being able to pass data directly between hardware acceleration interfaces. As part of this import, Freescale's Netcomm Software (ncsw) driver is imported. This was an attempt by Freescale to create an OS-agnostic sub-driver for managing the hardware, using shims to interface to the OS-specific APIs. This work was abandoned, and Freescale's primary work is in the Linux driver (dual BSD/GPL license). Hence, this was imported directly to sys/contrib, rather than going through the vendor area. Going forward, FreeBSD-specific changes may be made to the ncsw code, diverging from the upstream in potentially incompatible ways. An alternative could be to import the Linux driver itself, using the linuxKPI layer, as that would maintain parity with the vendor-maintained driver. However, the Linux driver has not been evaluated for reliability yet, and may have issues with the import, whereas the ncsw-based driver in this commit was completed by Semihalf 4 years ago, and is very stable. Other SoC modules based on DPAA, which could be added in the future: * Security and Encryption engine (SEC4.x, SEC5.x) * RAID engine Additional work to be done: * Implement polling mode * Test vlan support * Add support for the Pattern Matching Engine, which can do regular expression matching on packets. This driver has been tested on the P5020 QorIQ SoC. Others listed in the dtsec(4) manual page are expected to work as the same DPAA engine is included in all. Obtained from: Semihalf Relnotes: Yes Sponsored by: Alex Perez/Inertial Computing Notes: svn path=/head/; revision=296177