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 A01FFC53210 for ; Sun, 8 Jan 2023 09:02:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232417AbjAHJBu (ORCPT ); Sun, 8 Jan 2023 04:01:50 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46584 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230165AbjAHJBr (ORCPT ); Sun, 8 Jan 2023 04:01:47 -0500 Received: from smtp3-g21.free.fr (smtp3-g21.free.fr [212.27.42.3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 46527BC26; Sun, 8 Jan 2023 01:01:46 -0800 (PST) Received: from SOPL295.local (unknown [IPv6:2a01:e0a:a6a:5f90:5959:63b1:9783:3e26]) (Authenticated sender: robert.jarzmik@free.fr) by smtp3-g21.free.fr (Postfix) with ESMTPSA id 1B45A13F87E; Sun, 8 Jan 2023 10:01:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=free.fr; s=smtp-20201208; t=1673168504; bh=jN07y0o4PEKT+hhbGgEcvZdsd+ibKgA08wW81JoUNZc=; h=References:From:To:Cc:Subject:Date:In-reply-to:From; b=ifwFeaaqAL0DtcSDhmdxYoKbxgn7RL5akTq+jbOkcYPa63wTJpMeFU6rtLu35fH19 Z87Mt/9UuWXDpcY4dHlXP6E8YZSaRRIo/lFdceyVxXJ+2sQGfHP3kXxHaY1zS/1w/8 c+wfslIBoPsit+xrsR61Z1SeeqE6weDcHoBv2kOe7SuMcEWHd2jPYGWEqljsj6n8TR 7wFQb7NpB+6S4r3Zxf5izc4bkESQwLua6rpX4q80OGW5iHsc6h3qZWyYjWNY9mALuh Azwl0H3U5ucIylDrJW09TAFFmeE1rQIKEytClw4kgPoiSrobm+yfWSs5ILoACwQl55 PLjDeBmsZFbhw== References: <20230105134622.254560-1-arnd@kernel.org> <20230105134622.254560-5-arnd@kernel.org> User-agent: mu4e 1.8.11; emacs 28.1 From: Robert Jarzmik To: Arnd Bergmann Cc: Robert Jarzmik , Daniel Mack , Haojian Zhuang , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Arnd Bergmann , Michael Turquette , Stephen Boyd , "Rafael J. Wysocki" , Viresh Kumar , Ulf Hansson , Dominik Brodowski , linux-clk@vger.kernel.org, linux-pm@vger.kernel.org, linux-mmc@vger.kernel.org Subject: Re: [PATCH 04/27] ARM: pxa: drop pxa310/pxa320/pxa93x support Date: Sun, 08 Jan 2023 09:49:17 +0100 In-reply-to: <20230105134622.254560-5-arnd@kernel.org> Message-ID: MIME-Version: 1.0 Content-Type: text/plain; format=flowed Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Arnd Bergmann writes: > There is currently no devicetree support for any of these three > SoCs, and no board files remain. As it seems unlikely that > anyone > is going to add DT support soon, let's drop the SoC specific > code > now. Hi Arnd, Here you're dropping pxa variant support. For the currently "partly" working boards in devicetree, such a zylonite, this will break their current support. For example the zylonite I have which is working on DT has a pxa310 variant. The cm-x300, which also works in DT, has a pxa320 variant. What these boards need is their IO mappings and cpufreq to still work after your serie in DT. What bothers me are the changes to : - drivers/clk/pxa/clk-pxa3xx.c - drivers/cpufreq/pxa3xx-cpufreq.c Here the clock changes will probably remove the clock provided to specific pxa310/pxa320 drivers for example. I don't know how you want to proceed, yet this change will break some pxa3xx platforms. Cheers. -- Robert