From: Minkyu Kang <mk7.kang@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/16 V2] SMDK5250: Add FDT support
Date: Tue, 08 Jan 2013 10:58:49 +0900 [thread overview]
Message-ID: <50EB7D59.2080209@samsung.com> (raw)
In-Reply-To: <1356588203-24838-1-git-send-email-rajeshwari.s@samsung.com>
On 27/12/12 15:03, Rajeshwari Shinde wrote:
> This patch set adds FDT support to I2C, I2S, SPI
> drivers for SMDK5250.
>
> Separate patch sets for each driver are rebased on lastest u-boot-samsung.
> Following is the link for each driver patch set combined
>
> 1) I2C V4: "http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/148199"
> 2) I2S V3: "http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/148208"
> 3) SPI V2: "http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/148662"
>
> Changes since V1:
> - Rebased, removed unnecessary lines and added blank lines
> whereever required
> - Removed magic numbers.
> Rajeshwari Shinde (16):
> EXYNOS5: FDT: Add I2C device node data
> EXYNOS5 : FDT: Add Aliases for I2C device
> FDT: Add compatible string for I2C
> EXYNOS5: FDT : Decode peripheral id
> I2C: Driver changes for FDT support
> SMDK5250: Initialise I2C using FDT
> EXYNOS5: FDT: Add sound device node data
> EXYNOS5: FDT: Add sound and codec device node
> EXYNOS5: FDT: Add compatible strings for sound
> Sound: Add FDT support to driver
> Sound: WM8994: Add FDT support to codec
> Sound: Add FDT support to CMD.
> EXYNOS5: FDT: Add compatible strings for SPI
> EXYNOS5 : FDT: Add Aliases for SPI device
> EXYNOS5: FDT: Add SPI device node data
> SPI: EXYNOS: Add FDT support to driver.
>
> arch/arm/cpu/armv7/exynos/pinmux.c | 29 +++++
> arch/arm/dts/exynos5250.dtsi | 110 +++++++++++++++++
> arch/arm/include/asm/arch-exynos/periph.h | 33 +++--
> arch/arm/include/asm/arch-exynos/pinmux.h | 8 ++
> board/samsung/dts/exynos5250-smdk5250.dts | 33 +++++
> board/samsung/smdk5250/smdk5250.c | 20 +---
> common/cmd_sound.c | 2 +-
> doc/device-tree-bindings/exynos/isp-spi.txt | 22 ++++
> doc/device-tree-bindings/exynos/sound.txt | 27 ++++
> drivers/i2c/s3c24x0_i2c.c | 83 +++++++++++++-
> drivers/i2c/s3c24x0_i2c.h | 8 ++
> drivers/sound/sound.c | 173 ++++++++++++++++-----------
> drivers/sound/wm8994.c | 74 +++++++++++-
> drivers/sound/wm8994.h | 6 +-
> drivers/spi/exynos_spi.c | 96 ++++++++++++++-
> include/fdtdec.h | 4 +
> include/i2c.h | 26 ++++
> include/sound.h | 4 +-
> lib/fdtdec.c | 4 +
> 19 files changed, 644 insertions(+), 118 deletions(-)
> create mode 100644 doc/device-tree-bindings/exynos/isp-spi.txt
> create mode 100644 doc/device-tree-bindings/exynos/sound.txt
>
applied to u-boot-samsung.
Thanks,
Minkyu Kang.
next prev parent reply other threads:[~2013-01-08 1:58 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-27 6:03 [U-Boot] [PATCH 00/16 V2] SMDK5250: Add FDT support Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 01/16 V2] EXYNOS5: FDT: Add I2C device node data Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 02/16 V2] EXYNOS5 : FDT: Add Aliases for I2C device Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 03/16 V2] FDT: Add compatible string for I2C Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 04/16 V2] EXYNOS5: FDT : Decode peripheral id Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 05/16 V2] I2C: Driver changes for FDT support Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 06/16 V2] SMDK5250: Initialise I2C using FDT Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 07/16 V2] EXYNOS5: FDT: Add sound device node data Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 08/16 V2] EXYNOS5: FDT: Add sound and codec device node Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 09/16 V2] EXYNOS5: FDT: Add compatible strings for sound Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 10/16 V2] Sound: Add FDT support to driver Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 11/16 V2] Sound: WM8994: Add FDT support to codec Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 12/16 V2] Sound: Add FDT support to CMD Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 13/16 V2] EXYNOS5: FDT: Add compatible strings for SPI Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 14/16 V2] EXYNOS5 : FDT: Add Aliases for SPI device Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 15/16 V2] EXYNOS5: FDT: Add SPI device node data Rajeshwari Shinde
2012-12-27 6:03 ` [U-Boot] [PATCH 16/16 V2] SPI: EXYNOS: Add FDT support to driver Rajeshwari Shinde
2013-01-08 1:58 ` Minkyu Kang [this message]
2013-01-08 5:21 ` [U-Boot] [PATCH 00/16 V2] SMDK5250: Add FDT support Rajeshwari Birje
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=50EB7D59.2080209@samsung.com \
--to=mk7.kang@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.