Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754104AbdFNAuO (ORCPT ); Tue, 13 Jun 2017 20:50:14 -0400 Received: from mail-wr0-f195.google.com ([209.85.128.195]:35893 "EHLO mail-wr0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753038AbdFNAuM (ORCPT ); Tue, 13 Jun 2017 20:50:12 -0400 Subject: Re: [PATCH v2 1/4] soc: brcmstb: Add Product ID and Family ID helper functions To: Al Cooper , linux-kernel@vger.kernel.org Cc: Al Cooper , Rob Herring , Mark Rutland , bcm-kernel-feedback-list@broadcom.com, Kishon Vijay Abraham I , Greg Kroah-Hartman , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org References: <1497365721-31188-1-git-send-email-al.cooper@broadcom.com> <1497365721-31188-2-git-send-email-al.cooper@broadcom.com> From: Florian Fainelli Message-ID: Date: Tue, 13 Jun 2017 17:50:05 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1497365721-31188-2-git-send-email-al.cooper@broadcom.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1894 Lines: 62 On 06/13/2017 07:55 AM, Al Cooper wrote: > From: Al Cooper > > Signed-off-by: Al Cooper > --- > drivers/soc/bcm/brcmstb/common.c | 12 ++++++++++++ > include/linux/soc/brcmstb/brcmstb.h | 10 ++++++++++ > 2 files changed, 22 insertions(+) > > diff --git a/drivers/soc/bcm/brcmstb/common.c b/drivers/soc/bcm/brcmstb/common.c > index b6195fd..184dbf5 100644 > --- a/drivers/soc/bcm/brcmstb/common.c > +++ b/drivers/soc/bcm/brcmstb/common.c > @@ -40,6 +40,18 @@ bool soc_is_brcmstb(void) > return of_match_node(brcmstb_machine_match, root) != NULL; > } > > +u32 brcmstb_get_family_id(void) > +{ > + return family_id; > +} > +EXPORT_SYMBOL(brcmstb_get_family_id); > + > +u32 brcmstb_get_product_id(void) > +{ > + return product_id; > +} > +EXPORT_SYMBOL(brcmstb_get_product_id); > + > static const struct of_device_id sun_top_ctrl_match[] = { > { .compatible = "brcm,bcm7125-sun-top-ctrl", }, > { .compatible = "brcm,bcm7346-sun-top-ctrl", }, > diff --git a/include/linux/soc/brcmstb/brcmstb.h b/include/linux/soc/brcmstb/brcmstb.h > index 337ce41..23e4dc9 100644 > --- a/include/linux/soc/brcmstb/brcmstb.h > +++ b/include/linux/soc/brcmstb/brcmstb.h > @@ -1,10 +1,20 @@ > #ifndef __BRCMSTB_SOC_H > #define __BRCMSTB_SOC_H > > +#define BRCM_ID(reg) ((u32)reg >> 28 ? (u32)reg >> 16 : (u32)reg >> 8) > +#define BRCM_REV(reg) ((u32)reg & 0xff) > + > /* > * Bus Interface Unit control register setup, must happen early during boot, > * before SMP is brought up, called by machine entry point. > */ > void brcmstb_biuctrl_init(void); > > +/* > + * Helper functions for getting family or product id from the > + * SoC driver. > + */ > +u32 brcmstb_get_family_id(void); > +u32 brcmstb_get_product_id(void); As spotted by the kbuild robot, you need to add empty stubs when CONFIG_SOC_BRCMSTB is not defined. Thanks! -- Florian