Re: [U-Boot] [PATCH 0/3] dm: video: enhancements for Shell.efi

2017-09-28 Thread Rob Clark
On Thu, Sep 28, 2017 at 8:17 AM, Simon Glass wrote: > Hi Rob, > > On 13 September 2017 at 16:12, Rob Clark wrote: >> >> Split out of earlier efi_loader patchset, and updated with some >> comments, use of simple_strtol[1], and added kconfig option to >>

Re: [U-Boot] [PATCH v2 09/19] arm: socfpga: Add drivers for programing FPGA from flash

2017-09-28 Thread Marek Vasut
On 09/28/2017 05:14 PM, Chee, Tien Fong wrote: > On Rab, 2017-09-27 at 11:23 +0200, Marek Vasut wrote: >> On 09/27/2017 11:13 AM, Chee, Tien Fong wrote: >>> >>> On Sel, 2017-09-26 at 12:39 +0200, Marek Vasut wrote: On 09/26/2017 11:52 AM, Chee, Tien Fong wrote: > > > On Isn,

Re: [U-Boot] [PATCH] usb: storage: Fix overwritten in usb_stor_set_max_xfer_blk()

2017-09-28 Thread Marek Vasut
On 09/28/2017 06:50 AM, Bin Meng wrote: > The stored 'blk' value is overwritten to 'size / 512' before it can > be used in usb_stor_set_max_xfer_blk(). This is not what we want. > In fact, when 'size' exceeds the upper limit (USHRT_MAX * 512), we > should simply assign 'size' to the upper limit. >

Re: [U-Boot] [PATCH] dm: core: Correct address cast in dev_read_addr_ptr()

2017-09-28 Thread Dr. Philipp Tomsich
> On 28 Sep 2017, at 14:35, Simon Glass wrote: > > This currently causes a warning in sandbox and will not do the right > thing: > > drivers/core/read.c: In function ‘dev_read_addr_ptr’: > drivers/core/read.c:64:44: warning: cast to pointer from integer of > different

Re: [U-Boot] [PATCH v2 09/19] arm: socfpga: Add drivers for programing FPGA from flash

2017-09-28 Thread Chee, Tien Fong
On Rab, 2017-09-27 at 11:23 +0200, Marek Vasut wrote: > On 09/27/2017 11:13 AM, Chee, Tien Fong wrote: > > > > On Sel, 2017-09-26 at 12:39 +0200, Marek Vasut wrote: > > > > > > On 09/26/2017 11:52 AM, Chee, Tien Fong wrote: > > > > > > > > > > > > On Isn, 2017-09-25 at 11:14 +0200, Marek Vasut

[U-Boot] [PATCH v3 2/7] cmd: spl: fix compiling error when CONFIG_CMD_SPL_WRITE_SIZE not defined

2017-09-28 Thread York Sun
CONFIG_CMD_SPL_WRITE_SIZE is used for writing parameters to non-volatile storage. So far it is only used for NAND. Fix compiling error when this macro is not used for SD. Signed-off-by: York Sun CC: Anatolij Gustschin --- Changes in v3: None Changes in v2: New

[U-Boot] [PATCH v3 1/7] spl: fix assignment of board info to global data

2017-09-28 Thread York Sun
Commit 15eb1d43bf47 ("spl: reorder the assignment of board info to global data") intended to move assignment of board info earlier, into board_init_r(). However, function preload_console_init() is called either from spl_board_init() or from board_init_f(). For the latter case, the board info

Re: [U-Boot] u-boot-usb/master sandbox unit test failure

2017-09-28 Thread Stephen Warren
On 09/25/2017 11:11 AM, Stephen Warren wrote: On 09/25/2017 10:40 AM, Marek Vasut wrote: On 09/25/2017 06:13 PM, Stephen Warren wrote: Marek, +CC Bin I will drop the xhci patchset and hope to get a fixed one from him. The latest branch content (0184c6fb34b4 "usb: dwc2: Align size of

Re: [U-Boot] [PATCH] usb: dwc3: add UniPhier specific glue layer

2017-09-28 Thread Marek Vasut
On 09/28/2017 03:01 PM, Masahiro Yamada wrote: > Add UniPhier platform specific glue layer to support USB3 Host mode > on Synopsys DWC3 IP. > > Signed-off-by: Masahiro Yamada > Reviewed-by: Marek Vasut [...] > +static int

Re: [U-Boot] u-boot-usb/master sandbox unit test failure

2017-09-28 Thread Marek Vasut
On 09/28/2017 05:57 PM, Stephen Warren wrote: > On 09/25/2017 11:11 AM, Stephen Warren wrote: >> On 09/25/2017 10:40 AM, Marek Vasut wrote: >>> On 09/25/2017 06:13 PM, Stephen Warren wrote: Marek, >>> >>> +CC Bin >>> >>> I will drop the xhci patchset and hope to get a fixed one from him. >>

[U-Boot] [PATCH v3 7/7] armv8: ls1043ardb_sdcard: prepare falcon boot

2017-09-28 Thread York Sun
Due to a conflict with recent Primary Protected Application (PPA), PPA cannot be loaded for SPL stage, falcon boot is not enabled by default. With compatible PPA image, to enable falcon boot, activate these Kconfig options in defconfig CONFIG_SPL_FIT=y CONFIG_SPL_FSL_LS_PPA=y CONFIG_SPL_GZIP=y

[U-Boot] [PATCH v3 5/7] armv8: layerscape: Enable falcon boot

2017-09-28 Thread York Sun
Add jump_to_image_linux() for arm64. Add "noreturn" flag to armv8_switch_to_el2(). Add hooks to fsl-layerscape to enable falcon boot. Signed-off-by: York Sun Reviewed-by: Simon Glass --- Changes in v3: Fix typo in subject and other cosmetic fix. Changes

[U-Boot] [PATCH v3 3/7] armv8: fsl-layerscape: Avoid running dram_init_banksize again

2017-09-28 Thread York Sun
gd->ram_size is reduced in this function to reserve secure memory. Avoid running this function again to further reduce memory size. This fixes issue for SPL boot with PPA image loaded in which case secure memory is incorrectly allocated due to repeated calling. Signed-off-by: York Sun

[U-Boot] [PATCH v3 4/7] armv8: ls1043ardb: Use static DDR setting for SPL boot

2017-09-28 Thread York Sun
This board has soldered DDR chips. To reduce the SPL image size, use static DDR setting instead of dynamic DDR driver. Signed-off-by: York Sun --- Changes in v3: Minor cosmetic fix. Changes in v2: Drop checking secure boot in this patch after rebasing to latest mater. Recent

[U-Boot] [PATCH v3 6/7] armv8: ls1043ardb: Enable spl_board_init() function

2017-09-28 Thread York Sun
CONFIG_SPL_BOARD_INIT is used for SPL boot. Enable it in defconfig for LS1043ARDB SPL targets. Signed-off-by: York Sun --- Changes in v3: None Changes in v2: None configs/ls1043ardb_nand_SECURE_BOOT_defconfig | 1 + configs/ls1043ardb_nand_defconfig | 1 +

[U-Boot] [PATCH] ls1021aiot: Move CONFIG_CMD_BOOTZ to Kconfig

2017-09-28 Thread Fabio Estevam
CONFIG_CMD_BOOTZ symbol does not work in board config file anymore, so fix this by moving it to Kconfig. Signed-off-by: Fabio Estevam --- configs/ls1021aiot_qspi_defconfig | 1 + configs/ls1021aiot_sdcard_defconfig | 1 + include/configs/ls1021aiot.h| 1 - 3

[U-Boot] [PATCH 1/2] icore: configs: Fix merge conflict issue

2017-09-28 Thread Chakra Divi
From: Jagan Teki Fix for finding mmc devices on i.MX6Q icore boards added in below comment "icorem6: Fix to find MMC devices" (sha1: a2b137b38d925df91afef52f5122927de024f81a) which is reverted in during u-boot-imx merge " Merge git://git.denx.de/u-boot-imx" (sha1:

Re: [U-Boot] [PATCH] usb: storage: Fix overwritten in usb_stor_set_max_xfer_blk()

2017-09-28 Thread Bin Meng
Hi Marek, On Thu, Sep 28, 2017 at 11:24 PM, Marek Vasut wrote: > On 09/28/2017 06:50 AM, Bin Meng wrote: >> The stored 'blk' value is overwritten to 'size / 512' before it can >> be used in usb_stor_set_max_xfer_blk(). This is not what we want. >> In fact, when 'size' exceeds the

[U-Boot] [PATCH] i2c: muxes: pca954x: look up width from chip_desc

2017-09-28 Thread Chris Packham
Commit 8e6eda7cda6c ("drivers/i2c/muxes/pca954x: Add pca9547 I2C mux support") introduced a chip_desc for the pca954x devices but failed to update pca954x_ofdata_to_platdata() to be aware of it. Make pca954x_ofdata_to_platdata() lookup the chip_desc to validate the device width. Signed-off-by:

[U-Boot] Patman - Submitting to mailing list

2017-09-28 Thread Duncan Hare
Get the following message from running tools/patman/pathan.py git: 'send-email' is not a git command. See 'git --help'. What do I need to do? Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH] scripts: Move Kconfig contents to cmd/Kconfig

2017-09-28 Thread Sam Protsenko
On case-insensitive file systems we have collision between scripts/kconfig/ directory and scripts/Kconfig file. This patch moves scripts/Kcofnig contents to cmd/Kconfig to fix that. Signed-off-by: Sam Protsenko --- Kconfig | 2 -- cmd/Kconfig | 3 +++

[U-Boot] [PATCH] topic_miami: Remove CONFIG_CMD_BOOTZ undef

2017-09-28 Thread Fabio Estevam
From: Fabio Estevam CONFIG_CMD_BOOTZ option has been converted to defconfig, so there is no need to undefine it in board config file anymore. Signed-off-by: Fabio Estevam --- include/configs/topic_miami.h | 1 - 1 file changed, 1 deletion(-) diff

Re: [U-Boot] [PATCH v4 4/7] drivers/i2c/muxes/pca954x: Add pca9547 I2C mux support

2017-09-28 Thread Chris Packham
Hi All, On Sat, Jun 10, 2017 at 5:28 AM, Marek Behún wrote: > This I2C mux is found, for example, on the Turris Omnia board. > > Signed-off-by: Marek Behun > Reviewed-by: Heiko Schocher > > diff --git a/drivers/i2c/muxes/pca954x.c

Re: [U-Boot] [PATCH] usb: dwc3: add UniPhier specific glue layer

2017-09-28 Thread Masahiro Yamada
Hi Marek, 2017-09-29 0:26 GMT+09:00 Marek Vasut : > On 09/28/2017 03:01 PM, Masahiro Yamada wrote: >> Add UniPhier platform specific glue layer to support USB3 Host mode >> on Synopsys DWC3 IP. >> >> Signed-off-by: Masahiro Yamada >> Reviewed-by:

[U-Boot] [PATCH v2] linux/bitfield.h: import from Linux 4.13

2017-09-28 Thread Masahiro Yamada
Copied from Linux 4.13. Commit log of 3e9b3112ec74 of Linux explains well why this header is useful. Signed-off-by: Masahiro Yamada --- In order to use this header, http://patchwork.ozlabs.org/patch/814471/ must be applied. is highly dependent on Changes in

[U-Boot] [PATCH v2] rockchip: rk3188: ram: add support for 16bit row address

2017-09-28 Thread Kever Yang
RK3188 using the same ddr_conf for both 15 bit and 16 bit row address. Signed-off-by: Kever Yang --- Changes in v2: - add missing row definition drivers/ram/rockchip/sdram_rk3188.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH] dm: replace dm_dbg() with pr_debug()

2017-09-28 Thread Masahiro Yamada
As we discussed before in ML, dm_dbg() causes undefined reference error if #define DEBUG is added to users, but not drivers/core/util.c We do not need this macro because we can use pr_debug() instead, and it is pretty easy to enable it for the DM core by using ccflags-y. Signed-off-by: Masahiro

Re: [U-Boot] [PATCH] spl: spl_mmc: add __maybe_unused to mmc_load_image_raw_sector()

2017-09-28 Thread Jaehoon Chung
On 09/19/2017 01:29 PM, Seung-Woo Kim wrote: > If there are no CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION, > CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR and CONFIG_SPL_OS_BOOT, > there is unused-function build warning. Add __maybe_unused macro > to remove the warning. > > Signed-off-by:

Re: [U-Boot] [PATCH] mmc: uniphier-sd: Add vqmmc regulator support

2017-09-28 Thread Jaehoon Chung
On 09/26/2017 01:47 AM, Marek Vasut wrote: > On 09/15/2017 09:10 PM, Marek Vasut wrote: >> Add initial support for setting the vqmmc regulator. Since we do not >> support 1V8 modes, set the regulator to 3V3 and enable it. >> >> Signed-off-by: Marek Vasut >> Cc:

Re: [U-Boot] [PATCH] mmc: uniphier-sd: Update the file to match V3 patchset

2017-09-28 Thread Jaehoon Chung
On 09/27/2017 03:05 AM, Marek Vasut wrote: > Old version of the uniphier-sd 64bit IO support patchset V1 was > applied by the maintainer, update the uniphier-sd.c with the > changes from the V3 of the patchset. > > Signed-off-by: Marek Vasut > Cc: Masahiro Yamada

Re: [U-Boot] [PATCH v5 1/1] mmc: Add MMC support for stm32h7 Socs

2017-09-28 Thread Jaehoon Chung
On 09/09/2017 01:51 PM, Simon Glass wrote: > On 4 September 2017 at 09:56, wrote: >> From: Patrice Chotard >> >> This patch adds SD/MMC support for STM32H7 SoCs. >> >> Here is an extraction of SDMMC main features, embedded in >> STM32H7 SoCs. >>

Re: [U-Boot] [PATCH] usb: dwc3: add UniPhier specific glue layer

2017-09-28 Thread Marek Vasut
On 09/29/2017 03:31 AM, Masahiro Yamada wrote: > Hi Marek, > > > 2017-09-29 0:26 GMT+09:00 Marek Vasut : >> On 09/28/2017 03:01 PM, Masahiro Yamada wrote: >>> Add UniPhier platform specific glue layer to support USB3 Host mode >>> on Synopsys DWC3 IP. >>> >>> Signed-off-by:

Re: [U-Boot] [PATCH] mmc: sdhci-cadence: set timing mode register depending on frequency

2017-09-28 Thread Jaehoon Chung
On 09/28/2017 09:13 PM, Masahiro Yamada wrote: > The MMC framework in U-Boot does not support a systematic API for > timing switch like mmc_set_timing() in Linux. > > U-Boot just provides a hook to change the clock frequency via > mmc_set_clock(). It is up to drivers if additional register >

[U-Boot] [GIT PULL] Please pull u-boot-mmc master (take 2)

2017-09-28 Thread Jaehoon Chung
Dear Tom, Could you pull these patches into u-boot/master? If there is a problem, let me know, plz. I may reply late, because it will start my national holidays from Tomorrow to 10th of Oct. The following changes since commit 6e9b109aa9bcdd094e77da9fb03de8b44da8eb9d: Merge

Re: [U-Boot] [PATCH] scripts: Move Kconfig contents to cmd/Kconfig

2017-09-28 Thread Masahiro Yamada
2017-09-29 4:33 GMT+09:00 Sam Protsenko : > On case-insensitive file systems we have collision between > scripts/kconfig/ directory and scripts/Kconfig file. This patch moves > scripts/Kcofnig contents to cmd/Kconfig to fix that. > > Signed-off-by: Sam Protsenko

Re: [U-Boot] [PATCH] usb: storage: Fix overwritten in usb_stor_set_max_xfer_blk()

2017-09-28 Thread Marek Vasut
On 09/29/2017 01:36 AM, Bin Meng wrote: > Hi Marek, > > On Thu, Sep 28, 2017 at 11:24 PM, Marek Vasut wrote: >> On 09/28/2017 06:50 AM, Bin Meng wrote: >>> The stored 'blk' value is overwritten to 'size / 512' before it can >>> be used in usb_stor_set_max_xfer_blk(). This is not

Re: [U-Boot] [PATCH v2 3/8] treewide: replace with error() with pr_err()

2017-09-28 Thread Masahiro Yamada
Hi Tom, 2017-09-16 14:10 GMT+09:00 Masahiro Yamada : > U-Boot widely uses error() as a bit noisier variant of printf(). > > This macro causes name conflict with the following line in > include/linux/compiler-gcc.h: > > # define __compiletime_error(message)

[U-Boot] [PATCH] mmc: sdhci-cadence: set timing mode register depending on frequency

2017-09-28 Thread Masahiro Yamada
The MMC framework in U-Boot does not support a systematic API for timing switch like mmc_set_timing() in Linux. U-Boot just provides a hook to change the clock frequency via mmc_set_clock(). It is up to drivers if additional register settings are needed. This driver needs to set a correct

Re: [U-Boot] [PATCH 0/3] dm: video: enhancements for Shell.efi

2017-09-28 Thread Simon Glass
Hi Rob, On 13 September 2017 at 16:12, Rob Clark wrote: > > Split out of earlier efi_loader patchset, and updated with some > comments, use of simple_strtol[1], and added kconfig option to > enable ANSI escape sequence support. > > [1] not a hard dependency, but to ensure

[U-Boot] [PATCH] cmd/fdt.c align data buffer to avoid unaligned word access

2017-09-28 Thread Bernhard Messerklinger
Since the compiler is free to place a char array to any address in memory (in this case the stack), also to a non word aligned address the function "fdt_prop_parse" runs into troubles upon it wants to write some (fdt32_t *) to such a variable (if it has been placed to a none word aligned address).

Re: [U-Boot] [U-Boot, v2, 2/5] power: pmic: rk816: support rk816 pmic

2017-09-28 Thread Kever Yang
Hi Philipp, On 09/28/2017 04:47 PM, Philipp Tomsich wrote: On Wed, 27 Sep 2017, Kever Yang wrote: From: Elaine Zhang Add Rockchip pmic rk816 support. RK816 have 4 DCDC, 6 LDO, RTC, CHARGER, FUEL GAUGE, GPIO, PWRKEY. The DCDC and LDO voltage output range and

[U-Boot] Ethernet problem with u-boot for APF27

2017-09-28 Thread Vincent P
Hello everybody, I have an APF27 and I have a problem with ethernet. I first did all the run update correctly through a working tftp server (run update_uboot, run update_dtb, run update_kernel and run update_rootfs). Then, when I restarted the board, it was impossible to obtain files from tftp

[U-Boot] [GIT PULL v2] u-boot-sunxi/master

2017-09-28 Thread Maxime Ripard
Hi Tom, Here is the second version of the pull request sent yesterday. It shouldn't show the config warnings anymore. Thanks! Maxime The following changes since commit 6e9b109aa9bcdd094e77da9fb03de8b44da8eb9d: Merge git://git.denx.de/u-boot-usb (2017-09-27 09:39:48 -0400) are available in

[U-Boot] [PATCH] dm: core: Correct address cast in dev_read_addr_ptr()

2017-09-28 Thread Simon Glass
This currently causes a warning in sandbox and will not do the right thing: drivers/core/read.c: In function ‘dev_read_addr_ptr’: drivers/core/read.c:64:44: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] return (addr == FDT_ADDR_T_NONE) ? NULL : (void

Re: [U-Boot] drivers/core/read.c:64:44: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

2017-09-28 Thread Simon Glass
Hi, On 24 September 2017 at 20:14, Simon Glass wrote: > +Bin > > Hi Heinrich, > > On 21 September 2017 at 05:11, Heinrich Schuchardt wrote: >> Hello Simon, >> >> sandbox_defconfig has >> >> arch/sandbox/include/asm/types.h:60: typedef u32 phys_addr_t; >>

Re: [U-Boot] [PATCH v2 3/8] treewide: replace with error() with pr_err()

2017-09-28 Thread Tom Rini
On Thu, Sep 28, 2017 at 03:11:05PM +0900, Masahiro Yamada wrote: > Hi Tom, > > 2017-09-16 14:10 GMT+09:00 Masahiro Yamada : > > U-Boot widely uses error() as a bit noisier variant of printf(). > > > > This macro causes name conflict with the following line in > >

[U-Boot] [PATCH] usb: dwc3: add UniPhier specific glue layer

2017-09-28 Thread Masahiro Yamada
Add UniPhier platform specific glue layer to support USB3 Host mode on Synopsys DWC3 IP. Signed-off-by: Masahiro Yamada Reviewed-by: Marek Vasut --- I sent amost the same one last year, and applied in u-boot-usb:

Re: [U-Boot] [GIT PULL v2] u-boot-sunxi/master

2017-09-28 Thread Tom Rini
On Thu, Sep 28, 2017 at 11:12:55AM +0200, Maxime Ripard wrote: > Hi Tom, > > Here is the second version of the pull request sent yesterday. It > shouldn't show the config warnings anymore. > > Thanks! > Maxime > > The following changes since commit 6e9b109aa9bcdd094e77da9fb03de8b44da8eb9d: >

Re: [U-Boot] [PATCH v2 3/8] treewide: replace with error() with pr_err()

2017-09-28 Thread Tom Rini
On Thu, Sep 28, 2017 at 09:56:29PM +0900, Masahiro Yamada wrote: > Hi Tom, > > > 2017-09-28 21:43 GMT+09:00 Tom Rini : > > On Thu, Sep 28, 2017 at 03:11:05PM +0900, Masahiro Yamada wrote: > >> Hi Tom, > >> > >> 2017-09-16 14:10 GMT+09:00 Masahiro Yamada

Re: [U-Boot] [PATCH 06/13] log: Add an implemention of logging

2017-09-28 Thread Simon Glass
Hi Masahiro, On 27 September 2017 at 11:11, Masahiro Yamada wrote: > Hi Simon, > > > 2017-09-27 4:10 GMT+09:00 Simon Glass : >> Hi Masahiro, >> >> On 20 September 2017 at 11:19, Masahiro Yamada >> wrote: >>> Hi

Re: [U-Boot] [PATCH v2 3/8] treewide: replace with error() with pr_err()

2017-09-28 Thread Masahiro Yamada
Hi Tom, 2017-09-28 21:43 GMT+09:00 Tom Rini : > On Thu, Sep 28, 2017 at 03:11:05PM +0900, Masahiro Yamada wrote: >> Hi Tom, >> >> 2017-09-16 14:10 GMT+09:00 Masahiro Yamada : >> > U-Boot widely uses error() as a bit noisier variant of printf().

Re: [U-Boot] Ethernet problem with u-boot for APF27

2017-09-28 Thread Fabio Estevam
Adding the APF27 maintainers. On Thu, Sep 28, 2017 at 4:31 AM, Vincent P wrote: > Hello everybody, > > I have an APF27 and I have a problem with ethernet. I first did all the run > update correctly through a working tftp server (run update_uboot, run > update_dtb, run

Re: [U-Boot] [PATCH 1/1] sunxi: Fix A20-OLinuXino-MICRO dts for LAN8710

2017-09-28 Thread Maxime Ripard
Hi, On Wed, Sep 27, 2017 at 01:58:45PM +, Stefan Mavrodiev wrote: > On 09/27/2017 04:19 PM, Maxime Ripard wrote: > > Hi Stefan, > > > > You should also put Jagan Teki as recipients. > > > > On Wed, Sep 27, 2017 at 07:19:10AM +, Stefan Mavrodiev wrote: > > > From revision J the board

Re: [U-Boot] [PATCH v2 1/5] rockchip: i2c: rk3328: support i2c for rk3328 SoC

2017-09-28 Thread Heiko Schocher
Hello Yang, Am 27.09.2017 um 09:23 schrieb Kever Yang: From: Elaine Zhang Add compatible to support rk3328 i2c Signed-off-by: Elaine Zhang Signed-off-by: Kever Yang Acked-by: Philipp Tomsich

Re: [U-Boot] [U-Boot, v2, 3/5] power: pmic: rk805: support rk805 pmic

2017-09-28 Thread Philipp Tomsich
On Wed, 27 Sep 2017, Kever Yang wrote: From: Elaine Zhang RK805 have 4 DCDC, 4 LDO, RTC. The configuration parameters are the same with RK816. The RK805 most used with rk312x/rk322x/rk332x products which do not need charger and fuel guage. Signed-off-by: Elaine

Re: [U-Boot] [U-Boot,3/5] power: pmic: rk805: support rk805 pmic

2017-09-28 Thread Philipp Tomsich
> From: Elaine Zhang > > Add Rockchip pmic rk805 support. > > Signed-off-by: Elaine Zhang > Signed-off-by: Kever Yang > Acked-by: Philipp Tomsich > --- > >

Re: [U-Boot] [U-Boot, v2, 2/5] power: pmic: rk816: support rk816 pmic

2017-09-28 Thread Philipp Tomsich
On Wed, 27 Sep 2017, Kever Yang wrote: From: Elaine Zhang Add Rockchip pmic rk816 support. RK816 have 4 DCDC, 6 LDO, RTC, CHARGER, FUEL GAUGE, GPIO, PWRKEY. The DCDC and LDO voltage output range and current loading are different from RK808 and RK818. RK816 add

Re: [U-Boot] [U-Boot,5/8] rockchip: rk3128: add sysreset driver

2017-09-28 Thread Philipp Tomsich
On Wed, 27 Sep 2017, Kever Yang wrote: Add rk3128 sysreset driver. Signed-off-by: Kever Yang This duplicates existing driver code, see below. --- drivers/sysreset/Makefile | 1 + drivers/sysreset/sysreset_rk3128.c | 45