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=-11.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 7B3C4C07E9B for ; Tue, 20 Jul 2021 05:23:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 666F961164 for ; Tue, 20 Jul 2021 05:23:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238850AbhGTEnO (ORCPT ); Tue, 20 Jul 2021 00:43:14 -0400 Received: from mga03.intel.com ([134.134.136.65]:5616 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236329AbhGTEmQ (ORCPT ); Tue, 20 Jul 2021 00:42:16 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10050"; a="211237186" X-IronPort-AV: E=Sophos;i="5.84,254,1620716400"; d="scan'208";a="211237186" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Jul 2021 22:22:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,254,1620716400"; d="scan'208";a="496035584" Received: from inlubt0150.iind.intel.com ([10.67.198.203]) by orsmga001.jf.intel.com with ESMTP; 19 Jul 2021 22:22:50 -0700 From: kenchappa.demakkanavar@intel.com To: will@kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, robh+dt@kernel.org, devicetree@vger.kernel.org, dinguyen@kernel.org Cc: furong.zhou@intel.com, kris.pan@linux.intel.com, kris.pan@intel.com, mgross@linux.intel.com, mark.gross@intel.com, "Demakkanavar, Kenchappa" Subject: [PATCH V2 0/3] Add initial Thunder Bay SoC / Board support Date: Tue, 20 Jul 2021 10:52:46 +0530 Message-Id: <1626758569-27176-1-git-send-email-kenchappa.demakkanavar@intel.com> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: "Demakkanavar, Kenchappa" Hi, This patch-set adds initial support for a new Intel Movidius SoC code-named Thunder Bay. The SoC couples an ARM Cortex A53 CPU with an Intel Movidius VPU. This initial patch-set enables only the minimal set of components required to make the Thunder Bay full or prime configuration boards boot into initramfs. Thunder Bay full configuration board has 4 clusters of 4 ARM Cortex A53 CPUs per cluster, 4 VPU processors and (8GB + 8GB + 4GB + 4GB) DDR memory. Thunder Bay prime configuration board has 4 clusters of 4 ARM Cortex A53 CPUs per cluster, 2 VPU processors and (8GB + 4GB) DDR memory. Changes from v1 to v2: * Commit message updated for patch 3/3 * UART0 enabled by default for all Thunder Bay boards Regards, Kenchappa S. D. Demakkanavar, Kenchappa (2): arm64: Add config for Thunder Bay SoC arm64: dts: add initial device tree for Thunder Bay SoC Pan, Kris (1): dt-bindings: arm: Add Thunder Bay bindings .../devicetree/bindings/arm/intel,thunderbay.yaml | 21 ++ MAINTAINERS | 7 + arch/arm64/Kconfig.platforms | 5 + arch/arm64/boot/dts/intel/Makefile | 6 + arch/arm64/boot/dts/intel/hddl_hybrid_2s_02.dts | 43 ++++ arch/arm64/boot/dts/intel/hddl_hybrid_2s_03.dts | 43 ++++ arch/arm64/boot/dts/intel/hddl_hybrid_2s_12.dts | 43 ++++ arch/arm64/boot/dts/intel/hddl_hybrid_2s_13.dts | 43 ++++ arch/arm64/boot/dts/intel/hddl_hybrid_4s.dts | 54 +++++ arch/arm64/boot/dts/intel/thunderbay-soc.dtsi | 243 +++++++++++++++++++++ 10 files changed, 508 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/intel,thunderbay.yaml create mode 100644 arch/arm64/boot/dts/intel/hddl_hybrid_2s_02.dts create mode 100644 arch/arm64/boot/dts/intel/hddl_hybrid_2s_03.dts create mode 100644 arch/arm64/boot/dts/intel/hddl_hybrid_2s_12.dts create mode 100644 arch/arm64/boot/dts/intel/hddl_hybrid_2s_13.dts create mode 100644 arch/arm64/boot/dts/intel/hddl_hybrid_4s.dts create mode 100644 arch/arm64/boot/dts/intel/thunderbay-soc.dtsi -- 2.7.4