Re: [U-Boot] [PATCH 15/17] sunxi: Ippo_q8h defconfigs: Enable the LCD panel found on these tablets.

2014-12-25 Thread Chen-Yu Tsai
Hi, On Thu, Dec 25, 2014 at 6:59 PM, Hans de Goede wrote: > Hi, > > > On 25-12-14 11:00, Chen-Yu Tsai wrote: >> >> Hi, >> >> On Thu, Dec 25, 2014 at 3:06 AM, Hans de Goede >> wrote: >>> >>> Enable the new LCD support on Ippo_q8h tablets. >>> >>> Signed-off-by: Hans de Goede >>> --- >>> config

[U-Boot] [PATCH] ls102xa: fdt: Disable QSPI and DSPI in NOR/NAND/SD boot

2014-12-25 Thread Alison Wang
As QSPI/DSPI and IFC are pin multiplexed, QSPI and DSPI are only enabled in QSPI boot, and disabled in other boot modes. IFC is enabled in NOR/NAND/SD boot, and disabled in QSPI boot. This patch will add fdt support for the above rules. Signed-off-by: Alison Wang --- arch/arm/cpu/armv7/ls102xa/f

[U-Boot] [PATCH v3 4/4] ARM: UniPhier: enable CONFIG_I2C_EEPROM

2014-12-25 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- To apply this commit, the following must be applied in advance: http://patchwork.ozlabs.org/patch/422543/ Changes in v3: None Changes in v2: None include/configs/uniphier.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/uniphier.h b/i

[U-Boot] [PATCH v3 0/4] i2c: UniPhier: add I2C drivers based on driver model

2014-12-25 Thread Masahiro Yamada
Masahiro Yamada (4): i2c: UniPhier: add driver for UniPhier i2c controller i2c: UniPhier: add driver for UniPhier FIFO-builtin i2c controller ARM: UniPhier: enable I2C for UniPhier SoCs ARM: UniPhier: enable CONFIG_I2C_EEPROM configs/ph1_ld4_defconfig| 2 + configs/ph1_pro4_defconf

[U-Boot] [PATCH v3 3/4] ARM: UniPhier: enable I2C for UniPhier SoCs

2014-12-25 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- Changes in v3: None Changes in v2: None configs/ph1_ld4_defconfig | 2 ++ configs/ph1_pro4_defconfig | 2 ++ configs/ph1_sld8_defconfig | 2 ++ 3 files changed, 6 insertions(+) diff --git a/configs/ph1_ld4_defconfig b/configs/ph1_ld4_defconfig index 2e9dd00.

[U-Boot] [PATCH v3 1/4] i2c: UniPhier: add driver for UniPhier i2c controller

2014-12-25 Thread Masahiro Yamada
This commit adds on-chip I2C driver used on some old Panasonic UniPhier SoCs. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- Changes in v3: None Changes in v2: - Fix a typo. s/freqency/frequency/ - Add some comments to explain the formula calculating wait time. - add com

[U-Boot] [PATCH v3 2/4] i2c: UniPhier: add driver for UniPhier FIFO-builtin i2c controller

2014-12-25 Thread Masahiro Yamada
This commit adds on-chip I2C driver used on newer SoCs of Panasonic UniPhier platform. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- Changes in v3: - Fix a bug in that device busy is checked even if the stop condition is not issued. Changes in v2: - Fix a typo. s/freqency

[U-Boot] Pull request: u-boot-sh/rmolbile

2014-12-25 Thread Nobuhiro Iwamatsu
Dear Tom Rini. Please pull u-boot-sh rmobile branch. The following changes since commit d8bec60c1b0de7770f9b56ad092ab9be801d99af: ARM: UniPhier: enable CONFIG_CMD_DM (2014-12-18 23:34:30 +0900) are available in the git repository at: git://git.denx.de/u-boot-sh rmobile for you to fetch ch

Re: [U-Boot] [PATCH] sunxi: Fix buggy sun6i/sun8i DRAM size detection logic

2014-12-25 Thread Hans de Goede
Hi, On 25-12-14 17:13, Siarhei Siamashka wrote: On Thu, 25 Dec 2014 11:14:23 +0100 Hans de Goede wrote: Hi, On 25-12-14 03:07, Siarhei Siamashka wrote: On Wed, 24 Dec 2014 19:39:33 +0200 Siarhei Siamashka wrote: On Wed, 24 Dec 2014 18:58:17 +0200 Siarhei Siamashka wrote: After reboot,

[U-Boot] [PATCH 2/2] mmc: Skip changing bus width for MMC cards earlier than version 4.0

2014-12-25 Thread Andrew Gabbasov
Wider bus widths (larger than default 1 bit) appeared in MMC standard version 4.0. So, for MMC cards of any earlier version trying to change the bus width (including ext_csd comparison) does not make any sense. It may work incorrectly and at least cause unnecessary timeouts. So, just skip the entir

[U-Boot] [PATCH 0/2] Fix some corner cases in bus width setting

2014-12-25 Thread Andrew Gabbasov
Among other fixes, the commit 786e8f818c25265d12d5d06e257fe2b1ba516134 "mmc: Fix handling of bus widths and DDR card capabilities" changed bus width setting code so that if the attempt to switch to last 1-bit width item fails, the whole initialization fails. This seems to be more correct than earli

[U-Boot] [PATCH 1/2] mmc: Avoid redundant switching to 1-bit bus width for MMC cards

2014-12-25 Thread Andrew Gabbasov
If all the commands switching an MMC card to 4- or 8-bit bus width fail, and the bus width for the controller and the driver is still set to default 1 bit, there is no need to send one more command to switch the card to 1-bit bus width. Also, if the card or host controller do not support wider bus

Re: [U-Boot] [PATCH] sunxi: Fix buggy sun6i/sun8i DRAM size detection logic

2014-12-25 Thread Siarhei Siamashka
On Thu, 25 Dec 2014 11:14:23 +0100 Hans de Goede wrote: > Hi, > > On 25-12-14 03:07, Siarhei Siamashka wrote: > > On Wed, 24 Dec 2014 19:39:33 +0200 > > Siarhei Siamashka wrote: > > > >> On Wed, 24 Dec 2014 18:58:17 +0200 > >> Siarhei Siamashka wrote: > >> > >>> After reboot, reset or even sho

Re: [U-Boot] [PATCH] sunxi: Fix CONFIG_UART0_PORT_F build and add it to menuconfig

2014-12-25 Thread Hans de Goede
Hi, On 25-12-14 01:34, Siarhei Siamashka wrote: The CONFIG_UART0_PORT_F option has been supported since http://git.denx.de/?p=u-boot.git;a=commit;h=ff2b47f6a9cc1025 This option is primarily useful only for low level u-boot debugging on tablets, where normal UART0 is difficult to access and

Re: [U-Boot] [PATCH 15/17] sunxi: Ippo_q8h defconfigs: Enable the LCD panel found on these tablets.

2014-12-25 Thread Hans de Goede
Hi, On 25-12-14 11:00, Chen-Yu Tsai wrote: Hi, On Thu, Dec 25, 2014 at 3:06 AM, Hans de Goede wrote: Enable the new LCD support on Ippo_q8h tablets. Signed-off-by: Hans de Goede --- configs/Ippo_q8h_v1_2_defconfig | 5 - configs/Ippo_q8h_v5_defconfig | 5 - 2 files changed, 8

Re: [U-Boot] [PATCH 08/17] sunxi: video: Move sunxi_drc_init

2014-12-25 Thread Hans de Goede
Hi, On 25-12-14 10:08, Chen-Yu Tsai wrote: On Thu, Dec 25, 2014 at 3:06 AM, Hans de Goede wrote: Move sunxi_drc_init to directly above sunxi_engines_init, to avoid unnecessary Unfinished commit message? Sortof the next line read: #ifdef-ery in later patches. But git commit acted on the #

Re: [U-Boot] [PATCH] sunxi: Fix buggy sun6i/sun8i DRAM size detection logic

2014-12-25 Thread Hans de Goede
Hi, On 25-12-14 03:07, Siarhei Siamashka wrote: On Wed, 24 Dec 2014 19:39:33 +0200 Siarhei Siamashka wrote: On Wed, 24 Dec 2014 18:58:17 +0200 Siarhei Siamashka wrote: After reboot, reset or even short power off, DRAM typically retains the old stale data for some period of time (for this t

Re: [U-Boot] [PATCH 15/17] sunxi: Ippo_q8h defconfigs: Enable the LCD panel found on these tablets.

2014-12-25 Thread Chen-Yu Tsai
Hi, On Thu, Dec 25, 2014 at 3:06 AM, Hans de Goede wrote: > Enable the new LCD support on Ippo_q8h tablets. > > Signed-off-by: Hans de Goede > --- > configs/Ippo_q8h_v1_2_defconfig | 5 - > configs/Ippo_q8h_v5_defconfig | 5 - > 2 files changed, 8 insertions(+), 2 deletions(-) > > dif

Re: [U-Boot] [PATCH 08/17] sunxi: video: Move sunxi_drc_init

2014-12-25 Thread Chen-Yu Tsai
On Thu, Dec 25, 2014 at 3:06 AM, Hans de Goede wrote: > Move sunxi_drc_init to directly above sunxi_engines_init, to avoid unnecessary Unfinished commit message? ChenYu > Signed-off-by: Hans de Goede > --- > drivers/video/sunxi_display.c | 26 -- > 1 file changed, 12 i

[U-Boot] [PATCH v2 0/4] i2c: UniPhier: add I2C drivers based on driver model

2014-12-25 Thread Masahiro Yamada
Masahiro Yamada (4): i2c: UniPhier: add driver for UniPhier i2c controller i2c: UniPhier: add driver for UniPhier FIFO-builtin i2c controller ARM: UniPhier: enable UniPhier I2C driver ARM: UniPhier: enable CONFIG_I2C_EEPROM configs/ph1_ld4_defconfig| 2 + configs/ph1_pro4_defconfi

[U-Boot] [PATCH v2 4/4] ARM: UniPhier: enable CONFIG_I2C_EEPROM

2014-12-25 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- To apply this commit, the following must be applied in advance: http://patchwork.ozlabs.org/patch/422543/ Changes in v2: None include/configs/uniphier.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/uniphier.h b/include/configs/uniph

[U-Boot] [PATCH v2 3/4] ARM: UniPhier: enable I2C for UniPhier SoCs

2014-12-25 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- Changes in v2: None configs/ph1_ld4_defconfig | 2 ++ configs/ph1_pro4_defconfig | 2 ++ configs/ph1_sld8_defconfig | 2 ++ 3 files changed, 6 insertions(+) diff --git a/configs/ph1_ld4_defconfig b/configs/ph1_ld4_defconfig index 2e9dd00..86b4b15 100644 ---

[U-Boot] [PATCH v2 1/4] i2c: UniPhier: add driver for UniPhier i2c controller

2014-12-25 Thread Masahiro Yamada
This commit adds on-chip I2C driver used on some old Panasonic UniPhier SoCs. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- Changes in v2: - Fix a typo. s/freqency/frequency/ - Add some comments to explain the formula calculating wait time. - add comments on every regis

[U-Boot] [PATCH v2 2/4] i2c: UniPhier: add driver for UniPhier FIFO-builtin i2c controller

2014-12-25 Thread Masahiro Yamada
This commit adds on-chip I2C driver used on newer SoCs of Panasonic UniPhier platform. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- Changes in v2: - Fix a typo. s/freqency/frequency/ - Rename the struct member for clarification. s/wait_us/timeout/ - Add comments on all th