public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Markus Reichl <m.reichl@fivetechno.de>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	Krzysztof Kozlowski <krzk@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Kukjin Kim <kgene@kernel.org>,
	Andrzej Hajda <a.hajda@samsung.com>,
	Chanwoo Choi <cw00.choi@samsung.com>,
	Javier Martinez Canillas <javierm@redhat.com>,
	Pankaj Dubey <pankaj.dubey@samsung.com>,
	linux-samsung-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/9] ARM: SAMSUNG: add Exynos chipid driver
Date: Fri, 16 Nov 2018 09:58:28 +0100	[thread overview]
Message-ID: <60d56be0-5333-2bff-3576-ff1fcd74d40a@fivetechno.de> (raw)
In-Reply-To: <1542294698-17470-1-git-send-email-b.zolnierkie@samsung.com>


[-- Attachment #1.1: Type: text/plain, Size: 2840 bytes --]

Hi Bartlomiej,


Am 15.11.18 um 16:11 schrieb Bartlomiej Zolnierkiewicz:
> Hi,
> 
> This patchset adds Exynos chipid driver and converts Exynos platform
> code to use it. It is heavily based on "[PATCH v9 00/12] Introducing
> Exynos ChipId driver" patchset [1] so most credits go to Pankaj Dubey.
> The main difference in the current patchset is in taking simpler
> approach to converting existing Exynos platform code to use the new
> chipid driver. This results in much less code duplication.
> 
> The diffstat for "[PATCH v9 00/12] Introducing Exynos ChipId driver":
> 
>  14 files changed, 587 insertions(+), 255 deletions(-)
> 
> for the current patchset it is:
> 
>  14 files changed, 193 insertions(+), 195 deletions(-)
> 
> This patchset has been tested on Exynos4210 (including rev0),
> Exynos3250, Exynos4412 & Exynos5422 SoCs.
> 
> [1] https://marc.info/?l=linux-arm-kernel&m=149087972213359&w=2
> 
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
> 

tested on Odroid-XU4:
[    0.022888] soc soc0: Exynos: CPU[EXYNOS5800] PRO_ID[0xe5422001] REV[0x1] Detected

Tested-by: Markus Reichl <m.reichl@fivetechno.de>

Gruß,
-- 
Markus Reichl
> 
> Bartlomiej Zolnierkiewicz (5):
>   ARM: EXYNOS: use chipid driver
>   ARM: EXYNOS: remove soc_is_exynos*() macros
>   ARM: SAMSUNG: remove samsung_rev()
>   ARM: SAMSUNG: remove s5p_init_cpu()
>   ARM: EXYNOS: remove <mach/map.h> include
> 
> Pankaj Dubey (4):
>   ARM: EXYNOS: remove secondary startup initialization from
>     smp_prepare_cpus
>   soc: samsung: add exynos chipid driver support
>   ARM: EXYNOS: enable exynos_chipid for ARCH_EXYNOS
>   ARM64: EXYNOS: enable exynos_chipid for ARCH_EXYNOS
> 
>  arch/arm/mach-exynos/Kconfig                 |   1 +
>  arch/arm/mach-exynos/common.h                |  81 ++-----------------
>  arch/arm/mach-exynos/exynos.c                |  75 ++++++++++--------
>  arch/arm/mach-exynos/firmware.c              |   8 +-
>  arch/arm/mach-exynos/include/mach/map.h      |  18 -----
>  arch/arm/mach-exynos/platsmp.c               |  40 ++--------
>  arch/arm/mach-exynos/pm.c                    |  25 +++---
>  arch/arm/plat-samsung/cpu.c                  |  17 ----
>  arch/arm/plat-samsung/include/plat/cpu.h     |   3 -
>  arch/arm/plat-samsung/include/plat/map-s5p.h |   2 -
>  arch/arm64/Kconfig.platforms                 |   1 +
>  drivers/soc/samsung/Kconfig                  |   5 ++
>  drivers/soc/samsung/Makefile                 |   1 +
>  drivers/soc/samsung/exynos-chipid.c          | 111 +++++++++++++++++++++++++++
>  14 files changed, 193 insertions(+), 195 deletions(-)
>  delete mode 100644 arch/arm/mach-exynos/include/mach/map.h
>  create mode 100644 drivers/soc/samsung/exynos-chipid.c
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

      parent reply	other threads:[~2018-11-16  9:24 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20181115151207epcas1p45adfa96d5b52e10fbb5ace76ebae5e3e@epcas1p4.samsung.com>
2018-11-15 15:11 ` [PATCH 0/9] ARM: SAMSUNG: add Exynos chipid driver Bartlomiej Zolnierkiewicz
2018-11-15 15:11   ` [PATCH 1/9] ARM: EXYNOS: remove secondary startup initialization from smp_prepare_cpus Bartlomiej Zolnierkiewicz
2018-11-18 14:13     ` Krzysztof Kozlowski
2018-11-15 15:11   ` [PATCH 2/9] soc: samsung: add exynos chipid driver support Bartlomiej Zolnierkiewicz
2018-11-16 12:40     ` Krzysztof Kozlowski
2018-11-15 15:11   ` [PATCH 3/9] ARM: EXYNOS: enable exynos_chipid for ARCH_EXYNOS Bartlomiej Zolnierkiewicz
2018-11-15 15:11   ` [PATCH 4/9] ARM64: " Bartlomiej Zolnierkiewicz
2018-11-15 15:11   ` [PATCH 5/9] ARM: EXYNOS: use chipid driver Bartlomiej Zolnierkiewicz
2018-11-16 12:24     ` Krzysztof Kozlowski
2018-11-15 15:11   ` [PATCH 6/9] ARM: EXYNOS: remove soc_is_exynos*() macros Bartlomiej Zolnierkiewicz
2018-11-15 15:11   ` [PATCH 7/9] ARM: SAMSUNG: remove samsung_rev() Bartlomiej Zolnierkiewicz
2018-11-15 15:11   ` [PATCH 8/9] ARM: SAMSUNG: remove s5p_init_cpu() Bartlomiej Zolnierkiewicz
2018-11-15 15:11   ` [PATCH 9/9] ARM: EXYNOS: remove <mach/map.h> include Bartlomiej Zolnierkiewicz
2018-11-16 12:49     ` Krzysztof Kozlowski
2018-11-16  8:58   ` Markus Reichl [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=60d56be0-5333-2bff-3576-ff1fcd74d40a@fivetechno.de \
    --to=m.reichl@fivetechno.de \
    --cc=a.hajda@samsung.com \
    --cc=arnd@arndb.de \
    --cc=b.zolnierkie@samsung.com \
    --cc=cw00.choi@samsung.com \
    --cc=javierm@redhat.com \
    --cc=kgene@kernel.org \
    --cc=krzk@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=pankaj.dubey@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox