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=-2.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 CBE06C352A4 for ; Mon, 10 Feb 2020 14:42:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AF1E420838 for ; Mon, 10 Feb 2020 14:42:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728294AbgBJOmK (ORCPT ); Mon, 10 Feb 2020 09:42:10 -0500 Received: from mga03.intel.com ([134.134.136.65]:18244 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728264AbgBJOmJ (ORCPT ); Mon, 10 Feb 2020 09:42:09 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Feb 2020 06:42:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,425,1574150400"; d="scan'208";a="226213722" Received: from ykatsuma-mobl1.gar.corp.intel.com (HELO [10.251.140.95]) ([10.251.140.95]) by fmsmga007.fm.intel.com with ESMTP; 10 Feb 2020 06:42:08 -0800 Subject: Re: [alsa-devel] [RESEND 0/4] Add a better separation between i.MX8 families To: Daniel Baluta , broonie@kernel.org, robh+dt@kernel.org Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org, festevam@gmail.com, linux-kernel@vger.kernel.org, linux-imx@nxp.com, Daniel Baluta References: <20200210095817.13226-1-daniel.baluta@oss.nxp.com> From: Pierre-Louis Bossart Message-ID: <73c72736-ca09-1501-4978-e0041b605aed@linux.intel.com> Date: Mon, 10 Feb 2020 08:23:24 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 MIME-Version: 1.0 In-Reply-To: <20200210095817.13226-1-daniel.baluta@oss.nxp.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 2/10/20 3:58 AM, Daniel Baluta wrote: > From: Daniel Baluta > > So far the implementation was designed to support a generic platform > named i.MX8. Anyhow, now working with specific i.MX8 instances we need > to account for the differences. > > i.MX8 naming can be confusing at the first glance, so we need to have > a clean separation between different platforms. > > Here is the split of i.MX8 per platforms. Notice that i.MX8 names > the entire family, but also a sub-family. > > imx8 > ├── imx8 > │   └── imx8qm (*) > ├── imx8m > │   ├── imx8mm > │   ├── imx8mn > │   ├── imx8mp (*) > │   └── imx8mq > └── imx8x > └── imx8qxp (*) > > Platforms marked with (*) contain a DSP. In the future there might be > more platforms. > > This patchseries does the following: > * renames imx8 to imx8x (because the only supported platform now > is imx8qxp). > * adds support for imx8 (which is imx8qm) > > Paul Olaru (4): > ASoC: SOF: Rename i.MX8 platform to i.MX8X > ASoC: SOF: imx8: Add ops for i.MX8QM > ASoC: SOF: Add i.MX8QM device descriptor > dt-bindings: dsp: fsl: Add fsl,imx8qm-dsp entry Reviewed-by: Pierre-Louis Bossart > > .../devicetree/bindings/dsp/fsl,dsp.yaml | 1 + > sound/soc/sof/imx/imx8.c | 57 ++++++++++++++++++- > sound/soc/sof/sof-of-dev.c | 10 ++++ > 3 files changed, 65 insertions(+), 3 deletions(-) >