All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/16 V2] SMDK5250: Add FDT support
@ 2012-12-27  6:03 Rajeshwari Shinde
  2012-12-27  6:03 ` [U-Boot] [PATCH 01/16 V2] EXYNOS5: FDT: Add I2C device node data Rajeshwari Shinde
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: Rajeshwari Shinde @ 2012-12-27  6:03 UTC (permalink / raw)
  To: u-boot

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

-- 
1.7.4.4

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2013-01-08  5:21 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [U-Boot] [PATCH 00/16 V2] SMDK5250: Add FDT support Minkyu Kang
2013-01-08  5:21   ` Rajeshwari Birje

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.