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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id BA116C32771 for ; Wed, 21 Sep 2022 13:23:53 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 1A92684CBC; Wed, 21 Sep 2022 15:23:00 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=thorsis.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=thorsis.com header.i=@thorsis.com header.b="Cogsadr4"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id BFAA98497B; Wed, 21 Sep 2022 15:22:33 +0200 (CEST) Received: from mail.thorsis.com (mail.thorsis.com [92.198.35.195]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 154E084CA4 for ; Wed, 21 Sep 2022 15:22:26 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=thorsis.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=ada@thorsis.com Received: from adahl by ada.ifak-system.com with local (Exim 4.92) (envelope-from ) id 1oazgG-0001rK-Cc; Wed, 21 Sep 2022 15:22:24 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=default; t=1663766544; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=jlFBKQdqwaEgVbcNphBzH5GghM4MgSzQiO4jGelfGac=; b=Cogsadr4Rp+BslkZbaG5Wj/CPITeQ4P0veasOKNa9aYT9PdpceoqpJMWXhJibFFBNiZu6s 2f1fSGiEabXMwlMS/ADtdUgxOX75e2OS0/znjcbdp92dmf7kKBn4tElqxNkKqL6aZbB+/a nIt7tme/eKLJ3W1EOp5r52G2FGFQTjyd4OCzEdTGwGrRnlRnpAfimUGESzbggA9jKeMpD/ aMqlVpysDiYmLtUplr4x7KAz7b4I1dLef7z3Mnny8EaB+Q3T6oqmNlliIh35Uo5IRw3khp kwBvTao2TYs5XBPc+Hy62xNZm4NrXaedwQlbRsvIJq7zu0AM3vEkPRm8IG/3Ug== From: Alexander Dahl To: u-boot@lists.denx.de Cc: Michal Simek , Simon Glass Subject: [PATCH v2 1/8] dm: fpga: Introduce new uclass Date: Wed, 21 Sep 2022 15:22:09 +0200 Message-Id: <20220921132216.7089-2-ada@thorsis.com> In-Reply-To: <20220921132216.7089-1-ada@thorsis.com> References: <20220921132216.7089-1-ada@thorsis.com> Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean For future DM based FPGA drivers and for now to have a meaningful logging class for old FPGA drivers. Suggested-by: Michal Simek Signed-off-by: Alexander Dahl --- include/dm/uclass-id.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h index a432e43871..c2b15881ba 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -56,6 +56,7 @@ enum uclass_id { UCLASS_ETH, /* Ethernet device */ UCLASS_ETH_PHY, /* Ethernet PHY device */ UCLASS_FIRMWARE, /* Firmware */ + UCLASS_FPGA, /* FPGA device */ UCLASS_FUZZING_ENGINE, /* Fuzzing engine */ UCLASS_FS_FIRMWARE_LOADER, /* Generic loader */ UCLASS_GPIO, /* Bank of general-purpose I/O pins */ -- 2.30.2