[U-Boot] [PATCH 0/4 V5] SMDK5250: FDT: Add device tree support for console

2013-05-17 Thread Rajeshwari Shinde
to COMPAT_SAMSUNG_EXYNOS5_SERIAL to COMPAT_SAMSUNG_EXYNOS_SERIAL Changes in V5: - Added serial device node for Snow board. Rajeshwari Shinde (4): EXYNOS5: FDT: Add compatible strings for Serial EXYNOS5: FDT: Add serial device node values S5P: Serial: Add fdt support to driver CONFIG: EXYNOS5: Enable silent

[U-Boot] [PATCH 1/4 V5] EXYNOS5: FDT: Add compatible strings for Serial

2013-05-17 Thread Rajeshwari Shinde
Add required compatible information for s5p serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - Changed the compatible string to samsung,exynos4210-uart

[U-Boot] [PATCH 2/4 V5] EXYNOS5: FDT: Add serial device node values

2013-05-17 Thread Rajeshwari Shinde
This patch adds the device node required for serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Changed the compatible string to samsung,exynos4210-uart Changes in V3: - Added a alias

[U-Boot] [PATCH 3/4 V5] S5P: Serial: Add fdt support to driver

2013-05-17 Thread Rajeshwari Shinde
-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Gabe Black gabebl...@google.com Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - Moved driver config structure to data

[U-Boot] [PATCH 4/4 V5] CONFIG: EXYNOS5: Enable silent console

2013-05-17 Thread Rajeshwari Shinde
This patch enables CONFIG_SILENT_CONSOLE for EXYNOS5. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None Changes in V4: - None Changes in V5: - None include/configs

[U-Boot] [PATCH 0/2 V2] EXYNOS: Support a delay after deactivate for SPI

2013-05-17 Thread Rajeshwari Shinde
for exported function. Rajeshwari Shinde (2): EXYNOS: Export timer_get_us() to get microsecond timer EXYNOS: SPI: Support a delay after deactivate drivers/spi/exynos_spi.c | 19 +++ include/common.h |6 ++ 2 files changed, 25 insertions(+), 0 deletions

[U-Boot] [PATCH 1/2 V2] EXYNOS: Export timer_get_us() to get microsecond timer

2013-05-17 Thread Rajeshwari Shinde
This function, if implemented by the board, provides a microsecond timer. The granularity may be larger than 1us if hardware does not support this. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Removed #ifdefine

[U-Boot] [PATCH 2/2 V2] EXYNOS: SPI: Support a delay after deactivate

2013-05-17 Thread Rajeshwari Shinde
SPI_PREAMBLE mode link: http://patchwork.ozlabs.org/patch/229891/ Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None. drivers/spi/exynos_spi.c | 19 +++ 1 files changed, 19 insertions(+), 0

[U-Boot] [PATCH] MMC: DWMMC: Fix FIFO_DEPTH calculation

2013-05-23 Thread Rajeshwari Shinde
, we were recalculating the FIFO_DEPT each time which is not correct. Signed-off-by: Hatim Ali hatim...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/mmc/dw_mmc.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/dw_mmc.c b

[U-Boot] [PATCH V2] MMC: DWMMC: Fix FIFO_DEPTH calculation

2013-05-24 Thread Rajeshwari Shinde
the correct value, we were recalculating the FIFO_DEPT each time which is not correct. Based on [PATCH V9 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/160247 Signed-off-by: Hatim Ali hatim...@samsung.com Signed-off-by: Rajeshwari

[U-Boot] [PATCH 0/2 V3] SPI: Enable SPI_PREAMBLE Mode

2013-05-24 Thread Rajeshwari Shinde
as suggested by Minkyu Kang. - Removed in_bytes check in while loop. - Added a error check. Rajeshwari Shinde (2): SPI: Add support for preamble bytes EXYNOS: SPI: Support SPI_PREAMBLE mode drivers/spi/exynos_spi.c | 69 +++-- include/spi.h

[U-Boot] [PATCH 1/2 V3] SPI: Add support for preamble bytes

2013-05-24 Thread Rajeshwari Shinde
with the slave is possible. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - None. include/spi.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/spi.h b

[U-Boot] [PATCH 2/2 V3] EXYNOS: SPI: Support SPI_PREAMBLE mode

2013-05-24 Thread Rajeshwari Shinde
. The client will receive only data bytes after the preamble. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in v2: - Remove preamable_count variable which is not really needed - Fix checkpatch warning (multiple

[U-Boot] [PATCH 0/2 V4] SPI: Enable SPI_PREAMBLE Mode

2013-05-24 Thread Rajeshwari Shinde
as suggested by Minkyu Kang. - Removed in_bytes check in while loop. - Added a error check. Changes in V4: - Corrected a if condition. Rajeshwari Shinde (2): SPI: Add support for preamble bytes EXYNOS: SPI: Support SPI_PREAMBLE mode drivers/spi/exynos_spi.c | 69

[U-Boot] [PATCH 1/2 V4] SPI: Add support for preamble bytes

2013-05-24 Thread Rajeshwari Shinde
with the slave is possible. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - None. Changes in V4: - None. include/spi.h |5 + 1 files changed, 5 insertions(+), 0 deletions

[U-Boot] [PATCH 2/2 V4] EXYNOS: SPI: Support SPI_PREAMBLE mode

2013-05-24 Thread Rajeshwari Shinde
. The client will receive only data bytes after the preamble. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Remove preamable_count variable which is not really needed - Fix checkpatch warning (multiple

[U-Boot] [PATCH 0/2 V5] spi: Enable SPI_PREAMBLE Mode

2013-05-29 Thread Rajeshwari Shinde
as suggested by Minkyu Kang. - Removed in_bytes check in while loop. - Added a error check. Changes in V4: - Corrected a if condition. Changes in V5: - In commit message header changed SPI to spi EXYNOS: SPI: to spi: exynos: Rajeshwari Shinde (2): spi

[U-Boot] [PATCH 1/2 V5] spi: Add support for preamble bytes

2013-05-29 Thread Rajeshwari Shinde
with the slave is possible. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - None. Changes in V4: - None. Changes in V5: - In commit message header changed SPI to spi. include

[U-Boot] [PATCH 2/2 V5] spi: exynos: Support SPI_PREAMBLE mode

2013-05-29 Thread Rajeshwari Shinde
. The client will receive only data bytes after the preamble. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Remove preamable_count variable which is not really needed - Fix checkpatch warning (multiple

[U-Boot] [PATCH 0/2 V3] exynos: Support a delay after deactivate for SPI

2013-05-29 Thread Rajeshwari Shinde
: - Removed #ifdefine for exported function. Changes in V3: - Rebased on [PATCH 0/2 V5] spi: Enable SPI_PREAMBLE Mode Rajeshwari Shinde (2): exynos: Export timer_get_us() to get microsecond timer spi: exynos: Support a delay after deactivate drivers/spi/exynos_spi.c | 19

[U-Boot] [PATCH 1/2 V3] exynos: Export timer_get_us() to get microsecond timer

2013-05-29 Thread Rajeshwari Shinde
This function, if implemented by the board, provides a microsecond timer. The granularity may be larger than 1us if hardware does not support this. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Removed #ifdefine

[U-Boot] [PATCH 2/2 V3] spi: exynos: Support a delay after deactivate

2013-05-29 Thread Rajeshwari Shinde
V5] spi: Enable SPI_PREAMBLE Mode Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None. Changes in V3: - Rebased on [PATCH 0/2 V5] spi: Enable SPI_PREAMBLE Mode drivers/spi/exynos_spi.c | 19

[U-Boot] [PATCH V2] spi: exynos: Minimise access to SPI FIFO level

2013-05-29 Thread Rajeshwari Shinde
...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Rebased on [PATCH 0/2 V5] spi: Enable SPI_PREAMBLE Mode drivers/spi/exynos_spi.c | 27 +++ 1 files changed, 15 insertions(+), 12 deletions(-) diff --git a/drivers/spi

[U-Boot] [PATCH V2] spi: exynos: Support word transfers

2013-05-29 Thread Rajeshwari Shinde
. Based on [PATCH V2] spi: exynos: Minimise access to SPI FIFO level Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Rebased on [PATCH V2] spi: exynos: Minimise access to SPI FIFO level arch/arm/include/asm/arch

[U-Boot] [PATCH V2] exynos: spl: Add a custom spi copy function

2013-05-30 Thread Rajeshwari Shinde
spl_boot.c as it was already define in spl.h Based on [PATCH V2] spi: exynos: Support word transfers Signed-off-by: Alim Akhtar alim.akh...@samsung.com Signed-off-by: Tom Wai-Hong Tam waih...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2

[U-Boot] [PATCH 0/7 V3] EXYNOS5: Add audio support for Snow

2013-01-31 Thread Rajeshwari Shinde
multi-line comment style Changes in V3: - Removed non DT support for MAX98095 - Config for both MAX98095 and WM8994 added in exynos5 config file. Rajeshwari Shinde (7): EXYNOS5: Add function to enable XXTI clock source Sound: MAX98095: Add the driver for codec Sound

[U-Boot] [PATCH 1/7 V3] EXYNOS5: Add function to enable XXTI clock source

2013-01-31 Thread Rajeshwari Shinde
This patch adds funtion to enable XXTI clock source required by MAX98095 codec. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - Corrected multi-line comment style Chnages in V3: - None arch/arm/cpu/armv7

[U-Boot] [PATCH 2/7 V3] Sound: MAX98095: Add the driver for codec

2013-01-31 Thread Rajeshwari Shinde
This patch adds the driver for codec MAX98095 required by Snow Board Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Chnages in V2: - None Changes in V3: - None drivers/sound/Makefile |1 + drivers/sound/max98095.c

[U-Boot] [PATCH 3/7 V3] Sound: Support for MAX98095 codec in driver

2013-01-31 Thread Rajeshwari Shinde
This patchs adds support for MAX98095 codec in sound driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Chnages in V3: - Removed non DT support for MAX98095 drivers/sound/sound.c |9 +++-- include/sound.h |1 + 2 files

[U-Boot] [PATCH 5/7 V3] EXYNOS5: FDT: Add compatible strings for MAX98095

2013-01-31 Thread Rajeshwari Shinde
Add required compatible information for MAX98095 codec Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Chnages in V2: - None Changes in V3: - None include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2

[U-Boot] [PATCH 4/7 V3] EXYNOS5: GPIO to enable MAX98095

2013-01-31 Thread Rajeshwari Shinde
This patch sets high a GPIO to enable the codec MAX98095 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None board/samsung/smdk5250/smdk5250.c | 15 +++ 1 files changed, 15

[U-Boot] [PATCH 6/7 V3] EXYNOS5: Add initial DTS file for Snow.

2013-01-31 Thread Rajeshwari Shinde
This patch adds the DTS file for Snow Board. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: -None Changes in V3: - None board/samsung/dts/exynos5250-snow.dts | 69 + 1 files changed, 69 insertions(+), 0 deletions

[U-Boot] [PATCH 7/7 V3] EXYNOS5: Snow: Add a configuration file

2013-01-31 Thread Rajeshwari Shinde
This patch adds the configuration file for Snow Board and defines the same in boards.cfg. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None. Changes in V3: - Moved CONFIG_SOUND_MAX98095 to exynos5250-dt.h boards.cfg |1

[U-Boot] [PATCH] SPI: Winbond: Add W25Q32 to spi flash table

2013-02-07 Thread Rajeshwari Shinde
Add W25Q32 to Winbond spi flash table as it is required for snow Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/mtd/spi/winbond.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/winbond.c b/drivers/mtd/spi/winbond.c index

[U-Boot] [PATCH 0/4 V3] EXYNOS5: Add GPIO numbering feature

2013-02-07 Thread Rajeshwari Shinde
to rename S5P GPIO definitions to S5P_GPIO - GPIO Table added to calculate the base address of input gpio bank. Rajeshwari Shinde (4): S5P: GPIO: Add generic pin numbering API's EXYNOS5: Add gpio pin numbering feature S5P: Rename GPIO definitions EXYNOS5: GPIO

[U-Boot] [PATCH 1/4 V3] S5P: GPIO: Add generic pin numbering API's

2013-02-07 Thread Rajeshwari Shinde
This patch adds API's to set config, drive and pull factor in gpio pin numbering feature. Signed-off-by: Rajeshawari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - none. Changes in V3: - none. drivers/gpio/s5p_gpio.c | 18

[U-Boot] [PATCH 2/4 V3] EXYNOS5: Add gpio pin numbering feature

2013-02-07 Thread Rajeshwari Shinde
This patch adds support for gpio pin numbering support on EXYNOS5 pinmux. Signed-off-by: Leela Krishna Amudala l.kris...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - none. Changes in V3: - none. arch/arm/cpu/armv7/exynos/pinmux.c

[U-Boot] [PATCH 3/4 V3] S5P: Rename GPIO definitions

2013-02-07 Thread Rajeshwari Shinde
, smdkv310 config files. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Chnages in V3: - New Patch arch/arm/cpu/armv7/exynos/pinmux.c | 134 +++--- arch/arm/include/asm/arch-exynos/gpio.h | 26 +++--- arch/arm/include/asm/arch-s5pc1xx/gpio.h

[U-Boot] [PATCH 4/4 V3] EXYNOS5: GPIO: Enable GPIO Command for EXYNOS5

2013-02-07 Thread Rajeshwari Shinde
This patch enables GPIO Command for EXYNOS5. Function has been added to asm/gpio.h to decode the input gpio name to gpio number. example: gpio set gpa00 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - New patch Changes in V3: - Created a table

[U-Boot] [PATCH 0/2 V3] SMDK5250: Set Initial PMIC Values

2013-02-12 Thread Rajeshwari Shinde
These patches add PMIC MAX77686 voltage settings for SMDK5250. Changes in V2: - Corrected the multi line comment style Changes in V3: - Renamed the ps hold function. Rajeshwari Shinde (2): EXYNOS5: Add function to setup set ps hold SMDK5250: Add PMIC voltage settings arch

[U-Boot] [PATCH 1/2 V3] EXYNOS5: Add function to setup set ps hold

2013-02-12 Thread Rajeshwari Shinde
This patch adds a function to set ps_hold data driving value high. This enables the machine to stay powered on even after the initial power-on condition goes away(e.g. power button). Acked-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes

[U-Boot] [PATCH 2/2 V3] SMDK5250: Add PMIC voltage settings

2013-02-12 Thread Rajeshwari Shinde
This patch adds required pmic voltage settings for SMDK5250. Acked-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Corrected the multi line comment style Changes in V3: - None board/samsung/smdk5250/smdk5250.c

[U-Boot] [PATCH 0/2] EXYNOS5: SNOW: Add initial dts and config file

2013-02-13 Thread Rajeshwari Shinde
This patch set adds initial dts and configuration file for snow. These patches are moved into a seperate patch set from EXYNOS5: Add audio support for Snow Rajeshwari Shinde (2): EXYNOS5: Add initial DTS file for Snow. EXYNOS5: Snow: Add a configuration file board/samsung/dts/exynos5250

[U-Boot] [PATCH 1/2] EXYNOS5: Add initial DTS file for Snow.

2013-02-13 Thread Rajeshwari Shinde
This patch adds the DTS file for Snow Board. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- board/samsung/dts/exynos5250-snow.dts | 69 + 1 files changed, 69 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH 2/2] EXYNOS5: Snow: Add a configuration file

2013-02-13 Thread Rajeshwari Shinde
This patch adds the configuration file for Snow Board and defines the same in boards.cfg. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- boards.cfg |1 + include/configs/snow.h | 33 + 2

[U-Boot] [PATCH 0/6 V4] EXYNOS5: Add audio support for Snow

2013-02-14 Thread Rajeshwari Shinde
for MAX98095 - Config for both MAX98095 and WM8994 added in exynos5 config file. Changes in V4: - Separated the patches to create initial dts and config file for Snow - Modified XXTI clock source function as per Exynos naming convention Rajeshwari Shinde (6): EXYNOS5

[U-Boot] [PATCH 1/6 V4] EXYNOS5: Add function to enable XXTI clock source

2013-02-14 Thread Rajeshwari Shinde
This patch adds funtion to enable XXTI clock source required by MAX98095 codec. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Corrected multi-line comment style Changes in V3: - None Changes in V4: - Modified XXTI clock source function

[U-Boot] [PATCH 2/6 V4] Sound: MAX98095: Add the driver for codec

2013-02-14 Thread Rajeshwari Shinde
This patch adds the driver for codec MAX98095 required by Snow Board Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Chnages in V2: - None Changes in V3: - None Changes in V4: - None drivers/sound/Makefile |1 + drivers/sound/max98095.c | 550

[U-Boot] [PATCH 3/6 V4] Sound: Support for MAX98095 codec in driver

2013-02-14 Thread Rajeshwari Shinde
This patchs adds support for MAX98095 codec in sound driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Chnages in V3: - Removed non DT support for MAX98095 Changes in V4: - None drivers/sound/sound.c |9 +++-- include

[U-Boot] [PATCH 4/6 V4] EXYNOS5: GPIO to enable MAX98095

2013-02-14 Thread Rajeshwari Shinde
This patch sets high a GPIO to enable the codec MAX98095 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None Changes in V4: - None board/samsung/smdk5250/smdk5250.c | 15

[U-Boot] [PATCH 5/6 V4] EXYNOS5: FDT: Add compatible strings for MAX98095

2013-02-14 Thread Rajeshwari Shinde
Add required compatible information for MAX98095 codec Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None Changes in V4: - None include/fdtdec.h |1 + lib/fdtdec.c

[U-Boot] [PATCH 6/6 V4] config: Snow: Enable MAX98095 codec

2013-02-14 Thread Rajeshwari Shinde
This patch enables MAX98095 codec required for Snow Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V4 - New patch. include/configs/exynos5250-dt.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/exynos5250-dt.h b/include

[U-Boot] [PATCH] SMDK5250: FDT: Retrieve board model via DT

2013-02-18 Thread Rajeshwari Shinde
Print out the board model by parsing the device tree file. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- board/samsung/smdk5250/smdk5250.c | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/board/samsung/smdk5250/smdk5250.c b/board/samsung

[U-Boot] [PATCH] I2C: S3C24X0: Remove the dead code

2013-02-18 Thread Rajeshwari Shinde
This revomes the code under #if 0 in the s3c24x0_i2c driver. Signed-off-by: Alim Akhtar alim.akh...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/i2c/s3c24x0_i2c.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/drivers/i2c

[U-Boot] [PATCH] EXYNOS: Correct ordering of SPL machine_params

2013-02-18 Thread Rajeshwari Shinde
From: Simon Glass s...@chromium.org The mem_manuf is not in the correct order according to the string table. This causes cros_bundle_firmware to get the BL2 settings in the wrong order. This patch fixes the same. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde

[U-Boot] [PATCH] I2C: S3C24X0: Bug fixes in i2c_transfer

2013-02-19 Thread Rajeshwari Shinde
address, while tranfering the data, it should be an equality check (==) instead of an assignment (=). Signed-off-by: Tom Wai-Hong Tam waih...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/i2c/s3c24x0_i2c.c | 14 ++ 1 files changed, 6 insertions

[U-Boot] [PATCH 1/2 V2] EXYNOS5: Add initial DTS file for Snow.

2013-02-20 Thread Rajeshwari Shinde
This patch adds the DTS file for Snow Board. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None board/samsung/dts/exynos5250-snow.dts | 69 + 1 files changed, 69 insertions(+), 0

[U-Boot] [PATCH 0/2 V2] EXYNOS5: SNOW: Add initial dts and config file

2013-02-20 Thread Rajeshwari Shinde
This patch set adds initial dts and configuration file for snow. Changes in V2: - Added Maintainer. Rajeshwari Shinde (2): EXYNOS5: Add initial DTS file for Snow. EXYNOS5: Snow: Add a configuration file MAINTAINERS |4 ++ board/samsung/dts/exynos5250

[U-Boot] [PATCH 2/2 V2] EXYNOS5: Snow: Add a configuration file

2013-02-20 Thread Rajeshwari Shinde
This patch adds the configuration file for Snow Board and defines the same in boards.cfg. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Added Maintainer MAINTAINERS|4 boards.cfg |1 + include/configs/snow.h | 33

[U-Boot] [PATCH 1/2 V3] EXYNOS5: Add initial DTS file for Snow.

2013-02-25 Thread Rajeshwari Shinde
This patch adds the DTS file for Snow Board. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None board/samsung/dts/exynos5250-snow.dts | 69 + 1 files

[U-Boot] [PATCH 2/2 V3] EXYNOS5: Snow: Add a configuration file

2013-02-25 Thread Rajeshwari Shinde
This patch adds the configuration file for Snow Board and defines the same in boards.cfg. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Added Maintainer Changes in V3: - Added Maintainer in aphabetical order. MAINTAINERS|4

[U-Boot] [PATCH 0/2 V3] EXYNOS5: SNOW: Add initial dts and config file

2013-02-25 Thread Rajeshwari Shinde
This patch set adds initial dts and configuration file for snow. Changes in V2: - Added Maintainer. Changes in V3: - Added Maintainer in aphabetical order. Rajeshwari Shinde (2): EXYNOS5: Add initial DTS file for Snow. EXYNOS5: Snow: Add a configuration file MAINTAINERS

[U-Boot] [PATCH 0/4] SMDK5250: FDT: Add device tree support for console

2013-02-26 Thread Rajeshwari Shinde
Enabled fdt support for default console on SMDK5250. Rajeshwari Shinde (4): EXYNOS5: FDT: Add compatible strings for Serial EXYNOS5: FDT: Add serial device node values S5P: Serial: Add fdt support to driver CONFIG: EXYNOS5: Enable silent console arch/arm/dts/exynos5250.dtsi

[U-Boot] [PATCH 2/4] EXYNOS5: FDT: Add serial device node values

2013-02-26 Thread Rajeshwari Shinde
This patch adds the device node required for serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/dts/exynos5250.dtsi | 27 +++ board/samsung/dts/exynos5250-smdk5250.dts

[U-Boot] [PATCH 3/4] S5P: Serial: Add fdt support to driver

2013-02-26 Thread Rajeshwari Shinde
-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Gabe Black gabebl...@google.com Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/serial/serial_s5p.c | 80 +++ 1 files changed

[U-Boot] [PATCH 4/4] CONFIG: EXYNOS5: Enable silent console

2013-02-26 Thread Rajeshwari Shinde
This patch enables CONFIG_SILENT_CONSOLE for EXYNOS5. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- include/configs/exynos5250-dt.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-dt.h index

[U-Boot] [PATCH 1/4] EXYNOS5: FDT: Add compatible strings for Serial

2013-02-26 Thread Rajeshwari Shinde
Add required compatible information for s5p serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 0/2 V4] EXYNOS5: SNOW: Add initial dts and config file

2013-02-28 Thread Rajeshwari Shinde
This patch set adds initial dts and configuration file for snow. Changes in V2: - Added Maintainer. Changes in V3: - Added Maintainer in aphabetical order. Changes in V4: - Removed ethernet support Rajeshwari Shinde (2): EXYNOS5: Add initial DTS file for Snow. EXYNOS5

[U-Boot] [PATCH 1/2 V4] EXYNOS5: Add initial DTS file for Snow.

2013-02-28 Thread Rajeshwari Shinde
This patch adds the DTS file for Snow Board. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - None Changes in V4: - Removed ethernet support board/samsung/dts/exynos5250-snow.dts | 58

[U-Boot] [PATCH 2/2 V4] EXYNOS5: Snow: Add a configuration file

2013-02-28 Thread Rajeshwari Shinde
This patch adds the configuration file for Snow Board and defines the same in boards.cfg. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Added Maintainer Changes in V3: - Added Maintainer in aphabetical order. Changes in V4: - None

[U-Boot] [PATCH 0/4 V2] SMDK5250: FDT: Add device tree support for console

2013-03-01 Thread Rajeshwari Shinde
Enabled fdt support for default console on SMDK5250. Changes in V2: - Changed the compatible string to samsung,exynos4210-uart Rajeshwari Shinde (4): EXYNOS5: FDT: Add compatible strings for Serial EXYNOS5: FDT: Add serial device node values S5P: Serial: Add fdt support to driver

[U-Boot] [PATCH 3/4 V2] S5P: Serial: Add fdt support to driver

2013-03-01 Thread Rajeshwari Shinde
-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Gabe Black gabebl...@google.com Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None drivers/serial/serial_s5p.c

[U-Boot] [PATCH 1/4 V2] EXYNOS5: FDT: Add compatible strings for Serial

2013-03-01 Thread Rajeshwari Shinde
Add required compatible information for s5p serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Changed the compatible string to samsung,exynos4210-uart include/fdtdec.h |1 + lib/fdtdec.c

[U-Boot] [PATCH 2/4 V2] EXYNOS5: FDT: Add serial device node values

2013-03-01 Thread Rajeshwari Shinde
This patch adds the device node required for serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Changed the compatible string to samsung,exynos4210-uart arch/arm/dts/exynos5250.dtsi

[U-Boot] [PATCH 4/4 V2] CONFIG: EXYNOS5: Enable silent console

2013-03-01 Thread Rajeshwari Shinde
This patch enables CONFIG_SILENT_CONSOLE for EXYNOS5. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None include/configs/exynos5250-dt.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 2/4 V3] EXYNOS5: FDT: Add serial device node values

2013-03-15 Thread Rajeshwari Shinde
This patch adds the device node required for serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Changed the compatible string to samsung,exynos4210-uart Changes in V3: - Added a alias

[U-Boot] [PATCH 4/4 V3] CONFIG: EXYNOS5: Enable silent console

2013-03-15 Thread Rajeshwari Shinde
This patch enables CONFIG_SILENT_CONSOLE for EXYNOS5. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - None Changes in V3: - None include/configs/exynos5250-dt.h |2 ++ 1 files changed, 2 insertions(+), 0

[U-Boot] [PATCH 3/4] S5P: Serial: Add fdt support to driver

2013-03-15 Thread Rajeshwari Shinde
-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Gabe Black gabebl...@google.com Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - Moved driver config structure to data

[U-Boot] [PATCH 0/4 V3] SMDK5250: FDT: Add device tree support for console

2013-03-15 Thread Rajeshwari Shinde
. - Moved driver config structure to data section. - Changed silent_console to silent-console. - Did put a check for base address before doing fdt decoding. Rajeshwari Shinde (4): EXYNOS5: FDT: Add compatible strings for Serial EXYNOS5: FDT: Add serial device node values S5P

[U-Boot] [PATCH 1/4 V3] EXYNOS5: FDT: Add compatible strings for Serial

2013-03-15 Thread Rajeshwari Shinde
Add required compatible information for s5p serial driver Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes in V2: - Changed the compatible string to samsung,exynos4210-uart

[U-Boot] [PATCH 3/4 V3] S5P: Serial: Add fdt support to driver

2013-03-15 Thread Rajeshwari Shinde
-off-by: Abhilash Kesavan a.kesa...@samsung.com Signed-off-by: Gabe Black gabebl...@google.com Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None Changes in V3: - Moved driver config structure to data

[U-Boot] [PATCH 0/9] EXYNOS5: Add Audio support

2012-08-13 Thread Rajeshwari Shinde
This patchset adds the audio support for EXYNOS5. This patchset plays a predefined beep sound. Rajeshwari Shinde (9): SOUND: Add I2S driver SOUND: Add WM8994 codec Sound: Add command for audio playback EXYNOS: Add I2S registers EXYNOS: Add parameters required by I2S EXYNOS: Add pinmux

[U-Boot] [PATCH 1/9] SOUND: Add I2S driver

2012-08-13 Thread Rajeshwari Shinde
This patch adds driver for I2S interface Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Makefile |1 + drivers/sound/Makefile | 47 +++ drivers/sound/i2s.c| 358

[U-Boot] [PATCH 2/9] SOUND: Add WM8994 codec

2012-08-13 Thread Rajeshwari Shinde
This pastc adds driver for audio codec WM8994 Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/sound/Makefile |1 + drivers/sound/wm8994.c | 781 ++ drivers/sound

[U-Boot] [PATCH 4/9] EXYNOS: Add I2S registers

2012-08-13 Thread Rajeshwari Shinde
This patch add I2S registers Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/include/asm/arch-exynos/i2s-regs.h | 66 +++ 1 files changed, 66 insertions(+), 0 deletions(-) create mode 100644 arch

[U-Boot] [PATCH 3/9] Sound: Add command for audio playback

2012-08-13 Thread Rajeshwari Shinde
This patch adds command to test audio playback. sound init - Initialises the audio subsystem (i2s and wm8994 codec) sound play - Plays predefined the audio data. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- common/Makefile|1 + common/cmd_sound.c | 90

[U-Boot] [PATCH 5/9] EXYNOS: Add parameters required by I2S

2012-08-13 Thread Rajeshwari Shinde
This patch adds the audio parameters required by the I2S to play the predefined audio data. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/include/asm/arch-exynos/sound.h | 44 ++ 1 files changed, 44 insertions(+), 0 deletions(-) create mode

[U-Boot] [PATCH 6/9] EXYNOS: Add pinmux for I2S

2012-08-13 Thread Rajeshwari Shinde
This patch adds pinmux support for I2S1 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/cpu/armv7/exynos/pinmux.c| 12 arch/arm/include/asm/arch-exynos/periph.h |1 + 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu

[U-Boot] [PATCH 7/9] EXYNOS: Add I2S base address

2012-08-13 Thread Rajeshwari Shinde
This patch adds base address for I2S Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/include/asm/arch-exynos/cpu.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/cpu.h b/arch/arm/include/asm/arch-exynos/cpu.h

[U-Boot] [PATCH 9/9] EXYNOS5: Enable Sound

2012-08-13 Thread Rajeshwari Shinde
This patch enables sound support for EXYNOS5 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- include/configs/smdk5250.h |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index 4b9093c..fae1c0c

[U-Boot] [PATCH 8/9] EXYNOS: Add clock for I2S

2012-08-13 Thread Rajeshwari Shinde
This patch adds clock support for I2S Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/cpu/armv7/exynos/clock.c| 119 ++ arch/arm/include/asm/arch-exynos/clk.h |3 + arch/arm

[U-Boot] [PATCH 0/9 V2] EXYNOS5: Add Audio support

2012-08-22 Thread Rajeshwari Shinde
clock for SPI Changes in V2: - renamed i2s.c to samsung-i2s.c. - made exynos_i2s_config pinmux function static. - corrected the commit message for Enable sound patch. Rajeshwari Shinde (9): SOUND: Add I2S driver SOUND: Add WM8994 codec Sound: Add command for audio playback EXYNOS: Add I2S

[U-Boot] [PATCH 2/9 V2] SOUND: Add WM8994 codec

2012-08-22 Thread Rajeshwari Shinde
This pastc adds driver for audio codec WM8994 Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None drivers/sound/Makefile |1 + drivers/sound/wm8994.c | 781

[U-Boot] [PATCH 1/9 V2] SOUND: Add I2S driver

2012-08-22 Thread Rajeshwari Shinde
This patch adds driver for I2S interface specific to samsung. Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - renamed i2s.c to samsung-i2s.c. Makefile|1 + drivers/sound/Makefile | 47

[U-Boot] [PATCH 3/9 V2] Sound: Add command for audio playback

2012-08-22 Thread Rajeshwari Shinde
This patch adds command to test audio playback. sound init - Initialises the audio subsystem (i2s and wm8994 codec) sound play - Plays predefined the audio data. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None common/Makefile|1 + common/cmd_sound.c

[U-Boot] [PATCH 5/9 V2] EXYNOS: Add parameters required by I2S

2012-08-22 Thread Rajeshwari Shinde
This patch adds the audio parameters required by the I2S to play the predefined audio data. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None arch/arm/include/asm/arch-exynos/sound.h | 44 ++ 1 files changed, 44 insertions(+), 0

[U-Boot] [PATCH 4/9 V2] EXYNOS: Add I2S registers

2012-08-22 Thread Rajeshwari Shinde
This patch add I2S registers Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None arch/arm/include/asm/arch-exynos/i2s-regs.h | 66 +++ 1 files changed, 66 insertions(+), 0 deletions

[U-Boot] [PATCH 6/9 V2] EXYNOS: Add pinmux for I2S

2012-08-22 Thread Rajeshwari Shinde
This patch adds pinmux support for I2S1 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - made exynos_i2s_config pinmux function static. arch/arm/cpu/armv7/exynos/pinmux.c| 12 arch/arm/include/asm/arch-exynos/periph.h |1 + 2 files changed

[U-Boot] [PATCH 9/9 V2] SMDK5250: Enable Sound

2012-08-22 Thread Rajeshwari Shinde
This patch enables sound support for EXYNOS5 Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - corrected the commit message. include/configs/smdk5250.h |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/include/configs/smdk5250.h b

[U-Boot] [PATCH 7/9 V2] EXYNOS: Add I2S base address

2012-08-22 Thread Rajeshwari Shinde
This patch adds base address for I2S Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - None arch/arm/include/asm/arch-exynos/cpu.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/cpu.h b/arch/arm/include

  1   2   3   4   5   6   >