From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E739EC433FF for ; Thu, 1 Aug 2019 20:45:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AC095206B8 for ; Thu, 1 Aug 2019 20:45:28 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=starry.com header.i=@starry.com header.b="HiBltp8l" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730600AbfHAUp1 (ORCPT ); Thu, 1 Aug 2019 16:45:27 -0400 Received: from mail-qk1-f180.google.com ([209.85.222.180]:41029 "EHLO mail-qk1-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727127AbfHAUp1 (ORCPT ); Thu, 1 Aug 2019 16:45:27 -0400 Received: by mail-qk1-f180.google.com with SMTP id t187so455316qke.8 for ; Thu, 01 Aug 2019 13:45:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=starry.com; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=qbsur90HsseJH2gF5FLSwo5gMlfND7QY1zUeFsWY12E=; b=HiBltp8lV+xaU0dbb9bCsVabvLaJGTBM/SjNNGy9M4+EhD+e574QlQ3wu13WKd/BVz oa/1F2rbmMjeABEv0ZxRQ9/QUyPYwMKrmz6QVEF1jN/fKLB9LWi0oJTBpbXGocoiEZFr GlU7/ed3HLcGYYcXGKBpqytgV46EeE5/0VIHI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=qbsur90HsseJH2gF5FLSwo5gMlfND7QY1zUeFsWY12E=; b=hyo+mQ8Xx9QIqfHN68VrBeQFG/TYCO6Cp4FRwW6ECVxBXI9fzyqU1SxHi5WS+8Df7c 7H/3YmvLgiLJVtzWvme/uz+Ui+YycTO1kQpaEc2dinxRqohW2RjR3qw1iyOS5hRtjvZU qvlfuCHpd5+T615nqbFgBXxYPwTeuPatSySVSlr9LPjWuB89JZwxgiUPrehgxgeQJCKu cuNmB4Y0ayp6PnySzt5vXvW9Q/hKbidEBintIaSkG5mBpwKwbMZ6huti0JEgbRUDLDFr XAu3gQEq6k0zfktTRhipByWuRl3HW7ELyelDUZg9pN2AQH+idJl1pB6gCJAfJQwwTMdN +GGA== X-Gm-Message-State: APjAAAUDc9R9QcEgGpqWOau0zqL4uDSxzZQLboXC9PhRYU6CwOOSWNsB EOVBjnwV7D5HlMC3OuAFc8EewDvAv4M= X-Google-Smtp-Source: APXvYqwT8IWzj0xuwvbNlcAlYvBhlduO8AdARrAHWpwnJDiQNlPbVEm0dJsSdDs/fRumdLx6FmS0Ig== X-Received: by 2002:a05:620a:44:: with SMTP id t4mr88449732qkt.189.1564692326107; Thu, 01 Aug 2019 13:45:26 -0700 (PDT) Received: from localhost.localdomain (205-201-16-55.starry-inc.net. [205.201.16.55]) by smtp.gmail.com with ESMTPSA id b23sm42724059qte.19.2019.08.01.13.45.25 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Thu, 01 Aug 2019 13:45:25 -0700 (PDT) From: Matt Pelland To: netdev@vger.kernel.org Cc: davem@davemloft.net, maxime.chevallier@bootlin.com, antoine.tenart@bootlin.com Subject: [PATCH] net: mvpp2: Implement RXAUI Support Date: Thu, 1 Aug 2019 16:45:21 -0400 Message-Id: <20190801204523.26454-1-mpelland@starry.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch set implements support for configuring Marvell's mvpp2 hardware for RXAUI operation. There are two other patches necessary for this to work correctly that concern Marvell's cp110 comphy that were emailed to the general linux-kernel mailing list earlier on. I can post them here if need be. This patch set was successfully tested on a Marvell Armada 7040 based platform. Cheers, Matt