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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 107CFC00140 for ; Fri, 19 Aug 2022 00:28:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238818AbiHSA2m (ORCPT ); Thu, 18 Aug 2022 20:28:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53188 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229899AbiHSA2l (ORCPT ); Thu, 18 Aug 2022 20:28:41 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [185.16.172.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A8A1245993; Thu, 18 Aug 2022 17:28:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=N9AdnJXVSulV2NDRxSIoMMHkLPmTPUvpjuo4a+Kkp2k=; b=QUwTKFZAPfeDoz5e+6ueTCA8QG j4lLTVjmhipCbrtjz+8lLoowceemkqhSYjEe+hh5YdHCEZrFSoKfL215fPBIrHPJuTOssKXKfnPuD YFRSHPHSNPWbhMu0QVcYf32XVZbdIdK4AvqxKlI3Y9B4MEjJJAQPQWRZI1RGpM2ErMhQ=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1oOpsI-00DrM4-55; Fri, 19 Aug 2022 02:28:34 +0200 Date: Fri, 19 Aug 2022 02:28:34 +0200 From: Andrew Lunn To: Michael Walle Cc: Gregory Clement , Sebastian Hesselbarth , Rob Herring , Krzysztof Kozlowski , Jason Cooper , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] ARM: dts: kirkwood: lsxl: fix serial line Message-ID: References: <20220816001026.830127-1-michael@walle.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220816001026.830127-1-michael@walle.cc> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Tue, Aug 16, 2022 at 02:10:24AM +0200, Michael Walle wrote: > Commit 327e15428977 ("ARM: dts: kirkwood: consolidate common pinctrl > settings") unknowingly broke the serial output on this board. Before > this commit, the pinmux was still configured by the bootloader and the > kernel didn't reconfigured it again. This was an oversight by the > initial board support where the pinmux for the serial line was never > configured by the kernel. But with this commit, the serial line will be > reconfigured to the wrong pins. This is especially confusing, because > the output still works, but the input doesn't. Presumingly, the input is > reconfigured to MPP10, but the output is connected to both MPP11 and > MPP5. > > Override the pinmux in the board device tree. > > Fixes: 327e15428977 ("ARM: dts: kirkwood: consolidate common pinctrl settings") > Signed-off-by: Michael Walle Reviewed-by: Andrew Lunn Andrew