From patchwork Wed Apr 19 07:38:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xianwei Zhao X-Patchwork-Id: 13216470 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 01FDEC6FD18 for ; Wed, 19 Apr 2023 07:39:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:CC :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=zR5wk9RY3IVIYAk+lIUoby815X4KpQl/ZsNijojyWjY=; b=be3hVvYIpbEtRr b07aXSZ3/2HMlSsFSsVpfplceF2uacg07suvw/38HKRFFtnQT5a6zmzs6gxJQV/v+k+/F4LMiEET6 q96FCfpwkVjQ0+BTgcixMRmgbawcXCOzlUMjtPSAALnTbJDo3jC0OhxNz52B914jWxpWB29v31u2C fKH3QTWKkB33x77vIoBGGlA3JN+u12xKf+qKP48rkSKUVXKS3gciDywiHx4lL9p3bkFh5Wk9jCS4b 2L92fbFnINeNPEWUSPJi4RBPOPkfEX6Agd8U/pxCvNw1NugkMZNMVhzL88NoiByuHaVL4MZc4z4nG /gfxcknBikk3e1lCrQQg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pp2Ow-004R9Z-0V; Wed, 19 Apr 2023 07:38:50 +0000 Received: from mail-sh.amlogic.com ([58.32.228.43]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1pp2Ot-004R7b-2K; Wed, 19 Apr 2023 07:38:48 +0000 Received: from droid01-cd.amlogic.com (10.98.11.200) by mail-sh.amlogic.com (10.18.11.5) with Microsoft SMTP Server id 15.1.2507.13; Wed, 19 Apr 2023 15:39:56 +0800 From: =Xianwei Zhao To: , , , CC: Catalin Marinas , Will Deacon , Neil Armstrong , Kevin Hilman , Rob Herring , Krzysztof Kozlowski , Xianwei Zhao Subject: [RFC PATCH 0/2] Baisc devicetree support for Amlogic C3 Date: Wed, 19 Apr 2023 15:38:32 +0800 Message-ID: <20230419073834.972273-1-xianwei.zhao@amlogic.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 X-Originating-IP: [10.98.11.200] X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230419_003847_776674_80CAB7ED X-CRM114-Status: UNSURE ( 8.51 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Xianwei Zhao Amlogic C3 is an advanced edge AI processor designed for smart IP camera applications. Add ARCH_AMLIPC for the new series. Add basic devicetree support for the C3 based Amlogic AW409 board, which describes the following components: CPU, GIC, IRQ, Timer, UART. It's capable of booting up into the serial console. Xianwei Zhao (2): arm64: amlogic: add new ARCH_AMLIPC for IPC SoC arm64: dts: add support for C3 based Amlogic AW409 arch/arm64/Kconfig.platforms | 12 +++ arch/arm64/boot/dts/amlogic/Makefile | 1 + .../amlogic/amlogic-c3-c302x-aw409-256m.dts | 30 +++++++ arch/arm64/boot/dts/amlogic/amlogic-c3.dtsi | 87 +++++++++++++++++++ arch/arm64/configs/defconfig | 2 + 5 files changed, 132 insertions(+) create mode 100644 arch/arm64/boot/dts/amlogic/amlogic-c3-c302x-aw409-256m.dts create mode 100644 arch/arm64/boot/dts/amlogic/amlogic-c3.dtsi base-commit: ae68fb187b59bc8645974320808ab2d7c41b1833