public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lukasz Majewski <l.majewski@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 0/3] arm:exynos:cleanup: Extract common code
Date: Thu, 22 Aug 2013 12:55:23 +0200	[thread overview]
Message-ID: <20130822125523.606db456@amdc308.digital.local> (raw)
In-Reply-To: <1376342108-319-1-git-send-email-l.majewski@majess.pl>

Hi Minkyu,

> This series of commits attempts to clean-up the Exynos3/4 code.
> Common code for Exynos3 (S5PV210) and Exynos4 has been extracted.
> 
> Moreover it will facilitate support for older Samsung targets - like
> venerable s3c6410 (arm1176) SoC.
> 

ping.

> Lukasz Majewski (3):
>   arm:samsung:serial Extract common UART code
>   arm:samsung: Move common code from ./s5p-common to ./samsung-common/
>   arm:samsung:cpu_info: Rename s5p_* to samsung_*
> 
>  Makefile                                    |    7 +-
>  arch/arm/cpu/armv7/exynos/pinmux.c          |    2 +-
>  arch/arm/cpu/armv7/s5p-common/Makefile      |   34 ------
>  arch/arm/cpu/armv7/s5p-common/cpu_info.c    |   41 -------
>  arch/arm/cpu/armv7/s5p-common/pwm.c         |  171
> --------------------------
> arch/arm/cpu/armv7/s5p-common/sromc.c       |   33 -----
> arch/arm/cpu/armv7/s5p-common/timer.c       |  132
> -------------------- arch/arm/cpu/samsung-common/Makefile        |
> 30 +++++ arch/arm/cpu/samsung-common/cpu_info.c      |   40 +++++++
> arch/arm/cpu/samsung-common/pwm.c           |  172
> +++++++++++++++++++++++++++
> arch/arm/cpu/samsung-common/sromc.c         |   33 +++++
> arch/arm/cpu/samsung-common/timer.c         |  131
> ++++++++++++++++++++ arch/arm/include/asm/arch-exynos/cpu.h      |
> 24 ++-- arch/arm/include/asm/arch-exynos/pwm.h      |   55 ---------
> arch/arm/include/asm/arch-exynos/sromc.h    |   55 ---------
> arch/arm/include/asm/arch-exynos/uart.h     |   44 -------
> arch/arm/include/asm/arch-s5pc1xx/cpu.h     |   12 +-
> arch/arm/include/asm/arch-s5pc1xx/pwm.h     |   55 ---------
> arch/arm/include/asm/arch-s5pc1xx/sromc.h   |   40 -------
> arch/arm/include/asm/arch-s5pc1xx/uart.h    |   44 -------
> arch/arm/include/asm/samsung-common/pwm.h   |   55 +++++++++
> arch/arm/include/asm/samsung-common/sromc.h |   60 ++++++++++
> arch/arm/include/asm/samsung-common/uart.h  |   64 ++++++++++
> board/samsung/smdk5250/exynos5-dt.c         |    2 +-
> board/samsung/smdkc100/smdkc100.c           |   11 +-
> board/samsung/smdkv310/smdkv310.c           |    2 +-
> drivers/serial/Makefile                     |    2 +-
> drivers/serial/serial_s5p.c                 |   13 +-
> include/configs/exynos5250-dt.h             |    1 +
> include/configs/origen.h                    |    1 +
> include/configs/s5p_goni.h                  |    1 +
> include/configs/s5pc210_universal.h         |    1 +
> include/configs/smdkc100.h                  |    1 +
> include/configs/smdkv310.h                  |    1 +
> include/configs/trats.h                     |    1 +
> spl/Makefile                                |    2 +- 36 files
> changed, 626 insertions(+), 747 deletions(-) delete mode 100644
> arch/arm/cpu/armv7/s5p-common/Makefile delete mode 100644
> arch/arm/cpu/armv7/s5p-common/cpu_info.c delete mode 100644
> arch/arm/cpu/armv7/s5p-common/pwm.c delete mode 100644
> arch/arm/cpu/armv7/s5p-common/sromc.c delete mode 100644
> arch/arm/cpu/armv7/s5p-common/timer.c create mode 100644
> arch/arm/cpu/samsung-common/Makefile create mode 100644
> arch/arm/cpu/samsung-common/cpu_info.c create mode 100644
> arch/arm/cpu/samsung-common/pwm.c create mode 100644
> arch/arm/cpu/samsung-common/sromc.c create mode 100644
> arch/arm/cpu/samsung-common/timer.c delete mode 100644
> arch/arm/include/asm/arch-exynos/pwm.h delete mode 100644
> arch/arm/include/asm/arch-exynos/sromc.h delete mode 100644
> arch/arm/include/asm/arch-exynos/uart.h delete mode 100644
> arch/arm/include/asm/arch-s5pc1xx/pwm.h delete mode 100644
> arch/arm/include/asm/arch-s5pc1xx/sromc.h delete mode 100644
> arch/arm/include/asm/arch-s5pc1xx/uart.h create mode 100644
> arch/arm/include/asm/samsung-common/pwm.h create mode 100644
> arch/arm/include/asm/samsung-common/sromc.h create mode 100644
> arch/arm/include/asm/samsung-common/uart.h
> 



-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group

      parent reply	other threads:[~2013-08-22 10:55 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-21 21:50 [U-Boot] [PATCH] arm:samsung:serial: Extract common Samsung UART code Lukasz Majewski
2013-07-25 21:43 ` [U-Boot] [PATCH v2] arm:samsung:serial Extract common " Lukasz Majewski
2013-08-12 21:15 ` [U-Boot] [PATCH v3 0/3] arm:exynos:cleanup: Extract common code Lukasz Majewski
2013-08-12 21:15   ` [U-Boot] [PATCH v3 1/3] arm:samsung:serial Extract common UART code Lukasz Majewski
2013-08-16  7:16     ` Lukasz Majewski
2013-08-28 10:11     ` Minkyu Kang
2013-08-28 21:01       ` Lukasz Majewski
2013-09-12 19:43         ` Lukasz Majewski
2013-09-13  2:45         ` Chander Kashyap
2013-09-24  8:42         ` Minkyu Kang
2013-09-24 10:11           ` Lukasz Majewski
2013-08-12 21:15   ` [U-Boot] [PATCH v3 2/3] arm:samsung: Move common code from ./s5p-common to ./samsung-common/ Lukasz Majewski
2013-08-12 21:15   ` [U-Boot] [PATCH v3 3/3] arm:samsung:cpu_info: Rename s5p_* to samsung_* Lukasz Majewski
2013-08-22 10:55   ` Lukasz Majewski [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=20130822125523.606db456@amdc308.digital.local \
    --to=l.majewski@samsung.com \
    --cc=u-boot@lists.denx.de \
    /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