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.8 required=3.0 tests=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 01C94C5DF60 for ; Thu, 7 Nov 2019 15:35:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CAC14214D8 for ; Thu, 7 Nov 2019 15:35:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388787AbfKGPet (ORCPT ); Thu, 7 Nov 2019 10:34:49 -0500 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:56341 "EHLO relay2-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729698AbfKGPes (ORCPT ); Thu, 7 Nov 2019 10:34:48 -0500 X-Originating-IP: 92.137.17.54 Received: from localhost (alyon-657-1-975-54.w92-137.abo.wanadoo.fr [92.137.17.54]) (Authenticated sender: gregory.clement@bootlin.com) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 938F14000E; Thu, 7 Nov 2019 15:34:45 +0000 (UTC) From: Gregory CLEMENT To: Cristian Birsan , Felipe Balbi , Greg Kroah-Hartman , Alan Stern , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Rob Herring , devicetree@vger.kernel.org, Nicolas Ferre , Alexandre Belloni , Ludovic Desroches , linux-arm-kernel@lists.infradead.org, Thomas Petazzoni , Gregory CLEMENT Subject: [PATCH 0/3] Remove the USB EP configuration from device tree Date: Thu, 7 Nov 2019 16:31:25 +0100 Message-Id: <20191107153128.11038-1-gregory.clement@bootlin.com> X-Mailer: git-send-email 2.24.0.rc1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org Hello, The Atmel USB device controller is the only one having the description of the End Point configuration in the device tree. This configuration depend on the version of the controller used in the SoC. This variation is already documented by the compatible string of the controller. In this series the configuration is associated to the compatible string which allows to remove the EP child node from the device tree. The main benefit of it, beyond the simplification of the device tree, is the reduction of the size of the dtb which was too big to be managed by the bootloader. The first two patches should be merged through the USB subsystem while the last one should be take by the a91 subsystem. Moreover this last patch should be merged only once the change in the driver is merged. Gregory Gregory CLEMENT (3): usb: gadget: udc: atmel: Don't use DT to configure end point dt-bindings: usb: atmel: Mark EP child node as deprecated ARM: dts: at91: Remove the USB EP child node .../devicetree/bindings/usb/atmel-usb.txt | 56 +-------- arch/arm/boot/dts/at91sam9g45.dtsi | 52 -------- arch/arm/boot/dts/at91sam9rl.dtsi | 52 -------- arch/arm/boot/dts/at91sam9x5.dtsi | 52 -------- arch/arm/boot/dts/sama5d2.dtsi | 118 ------------------ arch/arm/boot/dts/sama5d3.dtsi | 105 ---------------- arch/arm/boot/dts/sama5d4.dtsi | 118 ------------------ drivers/usb/gadget/udc/atmel_usba_udc.c | 112 +++++++++++------ drivers/usb/gadget/udc/atmel_usba_udc.h | 12 ++ 9 files changed, 87 insertions(+), 590 deletions(-) -- 2.24.0.rc1