From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on sa.local.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.1 X-Yandex-Fwd: 2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1653064187; bh=XfGIiuFj594Da+ULHESu0G+Rt2TOMhjCKSGqMtLp69Q=; h=Reply-To:In-Reply-To:References:Date:Subject:Cc:To:From: Message-Id; b=bQte1FKVMqqrN2W3pHq7Pyb+8luObpJzKicLkbvDqCUpo/doOTYzcIbFxQcj42pRy ASd8R9scaCnhOYgByHzSFkdnEUfQC3dHHov8IWgBB4bv5RCACQzM8SoF77xBV31tfm iRihQede72nBx+ZODuwRW89hZBQFio19fd2drWaQ= Authentication-Results: sas2-599c596a5fe6.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru From: asheplyakov@yandex.ru To: devel@lists.altlinux.org Date: Fri, 20 May 2022 20:28:26 +0400 Message-Id: <20220520162849.1554351-13-asheplyakov@yandex.ru> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220520162849.1554351-1-asheplyakov@yandex.ru> References: <20220520162849.1554351-1-asheplyakov@yandex.ru> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Vitaly Chikunov , Alexey Sheplyakov , Igor Chudov , Evgeny Sinelnikov Subject: [devel] [PATCH 12/35] arm64: Enable armv8 based Baikal-M SoC support X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: ALT Linux Team development discussions List-Id: ALT Linux Team development discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2022 16:30:02 -0000 X-List-Received-Date: Fri, 20 May 2022 16:30:02 -0000 Archived-At: List-Archive: List-Post: From: Alexey Sheplyakov This patch adds Kconfig entries necessary to enable Baikal Electronics' Baikal-M (also known as BE-M1000) SoC support. Also it enables pinctrl, timers and GPIO drivers. Signed-off-by: Alexey Sheplyakov X-feature-Baikal-M --- arch/arm64/Kconfig.platforms | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index 21697449d762..4fb613f0cd63 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -34,6 +34,19 @@ config ARCH_APPLE This enables support for Apple's in-house ARM SoC family, starting with the Apple M1. +config ARCH_BAIKAL + bool "Baikal Electronics Baikal-M SoC Family" + select GPIOLIB + select PINCTRL + select OF_GPIO + select GPIO_SYSFS + select GPIO_DWAPB + select GPIO_GENERIC + select DW_APB_TIMER + select DW_APB_TIMER_OF + help + This enables support for Baikal Electronics Baikal-M SoC Family + config ARCH_BCM2835 bool "Broadcom BCM2835 family" select TIMER_OF -- 2.32.0