From patchwork Wed Apr 22 09:56:57 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "gregkh@linuxfoundation.org" X-Patchwork-Id: 227145 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=-9.8 required=3.0 tests=DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham 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 760D8C5518A for ; Wed, 22 Apr 2020 10:45:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4AC9A20780 for ; Wed, 22 Apr 2020 10:45:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587552307; bh=R/EkibC1xiHR1BW+LamJK6V0IuMDFME4qS/zquvUOgI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=BW0vRyClkiCokio4FAcy/fSrQ+zDQj3N4ijp+D+ZZStBc5Obx4a5aFRbs0O7Ee/8Z ThRCKDdltB/yvOKV5KHTKxG4K004JVEboss7qxtO16JvBkpV0DU0YYJolns3IHi62W UUyqjCQtgDRVWJ3SY4TMrSbLNwbY80AZlgvX5yaE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731860AbgDVKpG (ORCPT ); Wed, 22 Apr 2020 06:45:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:54770 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729938AbgDVKSR (ORCPT ); Wed, 22 Apr 2020 06:18:17 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E05982075A; Wed, 22 Apr 2020 10:18:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587550697; bh=R/EkibC1xiHR1BW+LamJK6V0IuMDFME4qS/zquvUOgI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wK0WvjQUjcFObVdAQW/sstSY8U83Ws7EUM5F/JenU9G2GEwbXL2dKfsZR6iO5dhHW KBtSq+mWkYYs9NLkFLpoO8Oj+DYdqXNqe0BB+7arYaC6fc5ZZcTDkmH6HWSjyEQ7eZ 2qZsJ9WoNotuy+v97BMFzPAmg8lhDQxufcUAM1mU= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Kunihiko Hayashi , Kishon Vijay Abraham I , Sasha Levin Subject: [PATCH 5.4 056/118] phy: uniphier-usb3ss: Add Pro5 support Date: Wed, 22 Apr 2020 11:56:57 +0200 Message-Id: <20200422095041.205480843@linuxfoundation.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200422095031.522502705@linuxfoundation.org> References: <20200422095031.522502705@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Kunihiko Hayashi [ Upstream commit 9376fa634afc207a3ce99e0957e04948c34d6510 ] Pro5 SoC has same scheme of USB3 ss-phy as Pro4, so the data for Pro5 is equivalent to Pro4. Signed-off-by: Kunihiko Hayashi Signed-off-by: Kishon Vijay Abraham I Signed-off-by: Sasha Levin --- drivers/phy/socionext/phy-uniphier-usb3ss.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/phy/socionext/phy-uniphier-usb3ss.c b/drivers/phy/socionext/phy-uniphier-usb3ss.c index ec231e40ef2ac..a7577e316baf5 100644 --- a/drivers/phy/socionext/phy-uniphier-usb3ss.c +++ b/drivers/phy/socionext/phy-uniphier-usb3ss.c @@ -314,6 +314,10 @@ static const struct of_device_id uniphier_u3ssphy_match[] = { .compatible = "socionext,uniphier-pro4-usb3-ssphy", .data = &uniphier_pro4_data, }, + { + .compatible = "socionext,uniphier-pro5-usb3-ssphy", + .data = &uniphier_pro4_data, + }, { .compatible = "socionext,uniphier-pxs2-usb3-ssphy", .data = &uniphier_pxs2_data,