From: Chanwoo Choi <cw00.choi@samsung.com>
To: Chanwoo Choi <cw00.choi@samsung.com>
Cc: kgene.kim@samsung.com, t.figa@samsung.com,
linux-samsung-soc@vger.kernel.org, kyungmin.park@samsung.com,
inki.dae@samsung.com, sw0312.kim@samsung.com,
hyunhee.kim@samsung.com, yj44.cho@samsung.com,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 00/27] Support new Exynos3250 SoC based on Cortex-A7 dual core
Date: Thu, 10 Apr 2014 18:32:41 +0900 [thread overview]
Message-ID: <53466539.8060100@samsung.com> (raw)
In-Reply-To: <1397122124-15690-1-git-send-email-cw00.choi@samsung.com>
Dear all,
Ignore this patchset because this patchset don't include all of patches.
I'll send this patchset again right now.
Sorry for my mistake.
Best Regards,
Chanwoo Choi
On 04/10/2014 06:28 PM, Chanwoo Choi wrote:
> This patchset support new Exynos3250 Samsung SoC based on Cortex-A7 dual core.
> Exynos3250 is a System-On-Chip (SoC) that is based on 32-bit RISC processor
> for Smartphone. It is desigend with the 28nm low-power high-K metal gate process
> and provides the best performance features.
>
> This patchset include some patches such as:
> - Support secondary CPU of Exynos3250 (cpu up/down)
> - Supoort uart/mct/adc/gic/i2c/spi/power-domain/pmu/mshc/pwm/amba
> - Support the gpio control for Exynos3250 using pinctrl
> - Support the clock control for Exynos3250 using common clk framework
>
> Chanwoo Choi (11):
> ARM: EXYNOS: Add Exynos3250 SoC ID
> ARM: EXYNOS: Add IO mapping for non-secure SYSRAM of Exynos3250
> ARM: EXYNOS: Add IO mapping for PMU of Exynos3250
> ARM: EXYNOS: Support secondary CPU boot of Exynos3250
> ARM: EXYNOS:: Enter a15 lowpower mode for Exynos3250 based on Cortex-a7
> irqchip: Declare cortex-a7's irqchip to initialize gic from dt
> ARM: dts: exynos3250: Add default interrupt-parent connected with GIC
> ARM: dts: exynos3250: Add uart dt node to support seiral ports
> ARM: dts: exynos3250: Add MCT dt node
> ARM: dts: exynos3250: Add ADC dt node to read analog raw data
> ARM: dts: exynos3250: Add CPUs dt node for Exynos3250
>
> Hyunhee Kim (1):
> ARM: dts: exynos3250: Add PMU dt data
>
> Inki Dae (2):
> ARM: dts: exynos3250: Add i2c dt node
> ARM: dts: exynos3250: Add power domain dt nodes
>
> Kyungmin Park (2):
> ARM: EXYNOS: Support secondary CPU boot of Exynos4212
> ARM: dts: exynos3250: Add Mobile Storage Host Card
>
> Tomasz Figa (11):
> pinctrl: exynos: Add driver data for Exynos3250
> clk: samsung: exynos3250: Add clocks using common clock framework
> ARM: dts: exynos3250: Add new exynos3250.dtsi file
> ARM: dts: exynos3250: Add GIC dt node for Exynos3250
> ARM: dts: exynos3250: Add pin control device tree data
> ARM: dts: exynos3250: Add device tree nodes for clock controllers
> ARM: dts: exynos3250: Move definitions of external clocks to SoC dtsi
> ARM: dts: exynos3250: Add amba and pdma dt node
> ARM: dts: exynos3250: Add spi dt node to support spi bus
> ARM: dts: exynos3250: Add pwm dt node to support PWM Timer
> ARM: dts: exynos3250: Add RTC dt node
>
> arch/arm/boot/dts/exynos3250-pinctrl.dtsi | 477 ++++++++++++++++++
> arch/arm/boot/dts/exynos3250.dtsi | 410 ++++++++++++++++
> arch/arm/mach-exynos/Kconfig | 22 +
> arch/arm/mach-exynos/exynos.c | 18 +
> arch/arm/mach-exynos/firmware.c | 17 +-
> arch/arm/mach-exynos/hotplug.c | 13 +-
> arch/arm/mach-exynos/include/mach/map.h | 2 +
> arch/arm/plat-samsung/include/plat/cpu.h | 10 +
> drivers/clk/samsung/Makefile | 1 +
> drivers/clk/samsung/clk-exynos3250.c | 785 ++++++++++++++++++++++++++++++
> drivers/irqchip/irq-gic.c | 1 +
> drivers/pinctrl/pinctrl-exynos.c | 67 +++
> drivers/pinctrl/pinctrl-samsung.c | 2 +
> drivers/pinctrl/pinctrl-samsung.h | 1 +
> include/dt-bindings/clock/exynos3250.h | 256 ++++++++++
> 15 files changed, 2077 insertions(+), 5 deletions(-)
> create mode 100644 arch/arm/boot/dts/exynos3250-pinctrl.dtsi
> create mode 100644 arch/arm/boot/dts/exynos3250.dtsi
> create mode 100644 drivers/clk/samsung/clk-exynos3250.c
> create mode 100644 include/dt-bindings/clock/exynos3250.h
>
next prev parent reply other threads:[~2014-04-10 9:32 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-10 9:28 [PATCH 00/27] Support new Exynos3250 SoC based on Cortex-A7 dual core Chanwoo Choi
2014-04-10 9:28 ` [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID Chanwoo Choi
2014-04-10 9:43 ` Arnd Bergmann
2014-04-11 1:31 ` Chanwoo Choi
2014-04-14 6:20 ` Chanwoo Choi
2014-04-10 9:28 ` [PATCH 02/27] ARM: EXYNOS: Add IO mapping for non-secure SYSRAM of Exynos3250 Chanwoo Choi
2014-04-10 9:45 ` Arnd Bergmann
2014-04-10 9:57 ` Chanho Park
2014-04-10 9:28 ` [PATCH 03/27] ARM: EXYNOS: Add IO mapping for PMU " Chanwoo Choi
2014-04-10 9:46 ` Arnd Bergmann
2014-04-14 6:04 ` Chanwoo Choi
2014-04-10 9:28 ` [PATCH 04/27] ARM: EXYNOS: Support secondary CPU boot of Exynos4212 Chanwoo Choi
2014-04-10 9:28 ` [PATCH 05/27] ARM: EXYNOS: Support secondary CPU boot of Exynos3250 Chanwoo Choi
2014-04-10 9:28 ` [PATCH 06/27] ARM: EXYNOS:: Enter a15 lowpower mode for Exynos3250 based on Cortex-a7 Chanwoo Choi
2014-04-10 9:40 ` Arnd Bergmann
2014-04-10 10:38 ` Chanwoo Choi
2014-04-10 9:51 ` Marc Zyngier
2014-04-10 10:56 ` Chanwoo Choi
2014-04-10 12:07 ` Marc Zyngier
2014-04-11 0:36 ` Chanwoo Choi
2014-04-10 9:28 ` [PATCH 07/27] irqchip: Declare cortex-a7's irqchip to initialize gic from dt Chanwoo Choi
2014-04-10 10:04 ` Marc Zyngier
2014-04-10 10:09 ` armdev
2014-04-10 10:21 ` Marc Zyngier
2014-04-10 10:30 ` armdev
2014-04-10 10:41 ` Marc Zyngier
2014-04-10 10:42 ` armdev
2014-04-10 10:50 ` Marc Zyngier
2014-04-10 10:37 ` Chanho Park
2014-04-10 10:46 ` Marc Zyngier
2014-04-10 13:02 ` Mark Rutland
2014-04-10 9:28 ` [PATCH 08/27] pinctrl: exynos: Add driver data for Exynos3250 Chanwoo Choi
2014-04-10 18:42 ` Linus Walleij
2014-04-10 19:17 ` Tomasz Figa
2014-04-11 0:44 ` Chanwoo Choi
2014-04-10 9:32 ` Chanwoo Choi [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-04-10 9:37 [PATCH 00/27] Support new Exynos3250 SoC based on Cortex-A7 dual core Chanwoo Choi
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=53466539.8060100@samsung.com \
--to=cw00.choi@samsung.com \
--cc=hyunhee.kim@samsung.com \
--cc=inki.dae@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=sw0312.kim@samsung.com \
--cc=t.figa@samsung.com \
--cc=yj44.cho@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