This driver is a counterpart of drivers/mmc/host/sdhci-cadence.c
from Linux. Some updates for v4.12-rc1 can be imported to U-Boot.
- Fix value of SDHCI_CDNS_HRS04_RDATA_SHIFT
- Add polling for ACK bit to be sure that data are written to
the PHY register
- Retrieve PHY values from DT propert
modify u_qe_init to upload QE firmware from SD card when it is SD
boot
Signed-off-by: Zhao Qiang
---
Changes for v2:
- fix issue of memory leak
Changes for v3:
- add CONFIG_SYS_QE_FMAN_FW_IN_NOR to ls1021a
drivers/qe/qe.c | 37 +++
On Isn, 2017-05-08 at 11:57 +0200, Marek Vasut wrote:
> On 05/08/2017 05:02 AM, Chee, Tien Fong wrote:
> >
> > On Jum, 2017-05-05 at 13:11 +0200, Marek Vasut wrote:
> > >
> > > On 05/05/2017 12:26 PM, tien.fong.c...@intel.com wrote:
> > > >
> > > >
> > > > From: Tien Fong Chee
> > > >
> > > >
This driver is a counterpart of drivers/mmc/host/sdhci-cadence.c
from Linux. Some updates for v4.12-rc1 can be imported to U-Boot.
- Fix value of SDHCI_CDNS_HRS04_RDATA_SHIFT
- Add polling for ACK bit to be sure that data are written to
the PHY register
- Retrieve PHY values from DT propert
On Mon, Apr 24, 2017 at 3:48 PM, Stefan Roese wrote:
> This patch adds a call to dm_remove_devices_flags() to
> bootm_announce_and_cleanup() so that drivers that have one of the removal
> flags set (e.g. DM_FLAG_ACTIVE_DMA_REMOVE) in their driver struct, may
> do some last-stage cleanup before the
On Mon, Apr 24, 2017 at 3:48 PM, Stefan Roese wrote:
> This new flag can be added to DM device drivers, which need to do some
> final configuration before U-Boot exits and the OS (e.g. Linux) is
> started. The remove functions of those drivers will get called at
> this stage to do these last-stage
On Mon, Apr 24, 2017 at 3:48 PM, Stefan Roese wrote:
> This patch adds a remove function to the Intel ICH SPI driver, that will
> be called upon U-Boot exit, directly before the OS (Linux) is started.
> This function takes care of configuring the BIOS registers in the SPI
> controller (similar to
On Sat, Apr 29, 2017 at 8:26 AM, Simon Glass wrote:
> On 24 April 2017 at 01:48, Stefan Roese wrote:
>> On my x86 platform I've noticed, that calling dm_uninit() or the new
>> function dm_remove_devices_flags() does not remove the desired device at
>> all. Debugging showed, that the serial uclass
On Isn, 2017-05-08 at 11:52 +0200, Marek Vasut wrote:
> On 05/08/2017 06:17 AM, Chee, Tien Fong wrote:
> >
> > On Jum, 2017-05-05 at 13:09 +0200, Marek Vasut wrote:
> > >
> > > On 05/05/2017 12:26 PM, tien.fong.c...@intel.com wrote:
> > > >
> > > >
> > > > From: Tien Fong Chee
> > > >
> > > >
On Isn, 2017-05-08 at 12:16 +0200, Marek Vasut wrote:
> On 05/08/2017 06:39 AM, Chee, Tien Fong wrote:
> >
> > On Jum, 2017-05-05 at 13:13 +0200, Marek Vasut wrote:
> > >
> > > On 05/05/2017 12:26 PM, tien.fong.c...@intel.com wrote:
> > > >
> > > >
> > > > From: Tien Fong Chee
> > > >
> > > >
Hi Stefan,
On 8 May 2017 at 01:35, Stefan Roese wrote:
> Hi Simon,
>
> On 04.05.2017 18:50, Simon Glass wrote:
>
>
>
> ... the current implementation to exit the loop over all children
> upon error and not remove the remaining children is wrong IMO. All
> devices should at least be t
On 8 May 2017 at 20:14, Tom Rini wrote:
>
> The variable grf is only referenced if EARLY_DEBUG is defined so move the
> declaration to be under the existing guard.
>
> Cc: Simon Glass
> Signed-off-by: Tom Rini
> ---
> arch/arm/mach-rockchip/rk3036-board-spl.c | 2 +-
> 1 file changed, 1 inserti
2017-05-09 0:38 GMT+08:00 Simon Glass :
> Hi Eddie,
>
> On 2 May 2017 at 02:47, Eddie Cai wrote:
>>
>> Hi Simon
>>
>> 2017-04-30 11:49 GMT+08:00 Simon Glass :
>> > Hi Eddie,
>> >
>> > On 28 April 2017 at 18:41, Eddie Cai wrote:
>> >> this patch implement rockusb protocol on the device side. this
On Mon, May 08, 2017 at 10:14:24PM -0400, Tom Rini wrote:
>The variable usdhc1_pads is only referenced during SPL builds, add a guard.
>
>Cc: Stefano Babic
>Cc: Peng Fan
>Signed-off-by: Tom Rini
Reviewed-by: Peng Fan
>---
> board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c | 2 ++
> 1 file cha
On Mon, May 08, 2017 at 10:14:23PM -0400, Tom Rini wrote:
>The variable usdhc1_pads is only referenced during SPL builds, add a
>guard.
>
>Cc: Fabio Estevam
>Cc: Peng Fan
>Cc: Stefano Babic
>Signed-off-by: Tom Rini
Reviewed-by: Peng Fan
>---
> board/freescale/mx6slevk/mx6slevk.c | 2 ++
> 1 f
Change type of timebase_l/h to unsigned int.
From lib/time.c: ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
This piece code is based on that timebase_h and timebase_l are
32bits width, so change the type to unsigned int.
Signed-off-by: Peng Fan
Cc: Eddie Cai
Cc: Jagan Teki
Cc: York Sun
Cc
Change tbu/l type to unsigned int.
From the timer file for arm,
"(((unsigned long long)gd->arch.tbu) << 32) | gd->arch.tbl;" is used,
This piece code is based on tbu/tbl is 32bits, so change the type to
unsigned int.
Signed-off-by: Peng Fan
Cc: Simon Glass
Cc: Tom Rini
---
V2: Add more commit
On Tue, May 9, 2017 at 2:40 AM, Heinrich Schuchardt wrote:
> strdup uses malloc to allocate memory for str.
> If we cannot bind to the generic driver we should release
> the memory.
>
> The problem was indicated by clang scan-build.
>
> Signed-off-by: Heinrich Schuchardt
> ---
> drivers/pci/pci-
The variable vga_pads is never referenced, drop.
Cc: Max Krummenacher
Signed-off-by: Tom Rini
---
board/toradex/apalis_imx6/apalis_imx6.c | 47 -
1 file changed, 47 deletions(-)
diff --git a/board/toradex/apalis_imx6/apalis_imx6.c
b/board/toradex/apalis_imx6/ap
The function 'spin_wheel' is declared as inline, but not static and thus
we see warnings that 'w' and 'p' are declared static in a non-static
inline function. Correct this by marking spin_wheel as static inline.
Cc: TsiChung Liew
Signed-off-by: Tom Rini
---
board/freescale/m5253demo/flash.c |
The variable 'res' may be unused uninitialized if our call to
mv88e61xx_port_read (register read) fails and we goto the error
handling section. In this case we set 'res' to -EIO to indicate why we
failed.
Cc: Joe Hershberger
Cc: Chris Packham
Cc: Kevin Smith
Cc: Prafulla Wadaskar
Signed-off-b
The variable usdhc2_pads is only referenced during SPL builds, add a guard.
Cc: Otavio Salvador
Signed-off-by: Tom Rini
---
board/congatec/cgtqmx6eval/cgtqmx6eval.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/board/congatec/cgtqmx6eval/cgtqmx6eval.c
b/board/congatec/cgtqmx6eval/cgtqm
The variable pwm_pad is never referenced, drop.
Cc: Christian Gmeiner
Signed-off-by: Tom Rini
---
board/bachmann/ot1200/ot1200.c | 4
1 file changed, 4 deletions(-)
diff --git a/board/bachmann/ot1200/ot1200.c b/board/bachmann/ot1200/ot1200.c
index eeced7943ed4..c0a8b6423ee1 100644
--- a/b
The variable nfc_pads is only referenced when CONFIG_CMD_NAND is set,
move the existing guard and drop a now redundant comment. The variable
gwproto_gpio_pads is never referenced, remove it.
Cc: Tim Harvey
Signed-off-by: Tom Rini
---
board/gateworks/gw_ventana/common.c | 27 ---
The variables prg_stage2_prepare, prg_stage2_success and prg_stage_fail
are only referenced when CCDM_SECOND_STAGE is set, move these to be by
the existing guard.
Cc: Dirk Eibach
Signed-off-by: Tom Rini
---
board/gdsys/p1022/controlcenterd-id.c | 49 +--
1 file c
The variable nfc_pads is only referenced when CONFIG_CMD_NAND is set,
add a gaurd. The variable gpio_pads is never referenced, drop it. The
variable usdhc4_pads are only referenced when we do not have
CONFIG_CMD_NAND set and we are not doing an SPL build, modify the
existing guard.
Cc: Stefano B
The variables SEQ_SWRESET, SEQ_ELVSS_ON, SEQ_TEMP_SWIRE, SEQ_APON and
SEQ_SLPIN are unreferenced, drop.
Cc: Anatolij Gustschin
Signed-off-by: Tom Rini
---
drivers/video/ld9040.c | 16
1 file changed, 16 deletions(-)
diff --git a/drivers/video/ld9040.c b/drivers/video/ld9040.c
With gcc-6 and later we may get a warning such as:
.../common/cli_readline.c:20:21: warning: ‘tab_seq’ defined but not used
[-Wunused-const-variable=]
static const char tab_seq[] = ""; /* used to expand TABs */
^~~
.../common/cli_readline.c:19:19: warning: ‘eras
The variable i82557_config_cmd is never referenced, drop.
Cc: Joe Hershberger
Signed-off-by: Tom Rini
---
drivers/net/eepro100.c | 6 --
1 file changed, 6 deletions(-)
diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c
index 0f350cba53e6..33d9fd6a57fd 100644
--- a/drivers/net/eep
The variable usdhc1_pads is only referenced during SPL builds, add a guard.
Cc: Stefano Babic
Cc: Peng Fan
Signed-off-by: Tom Rini
---
board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
b/bo
The variable netdev_ethtool_ops is not referenced, drop it. However
with gcc-6 or later we fail to even compile as we do not have the
required struct definition in U-Boot.
Cc: Joe Hershberger
Signed-off-by: Tom Rini
---
drivers/net/uli526x.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/d
The variable usdhc3_emmc_pads is never referenced, drop.
Cc: Stefan Agner
Signed-off-by: Tom Rini
---
board/toradex/colibri_imx7/colibri_imx7.c | 16
1 file changed, 16 deletions(-)
diff --git a/board/toradex/colibri_imx7/colibri_imx7.c
b/board/toradex/colibri_imx7/colibri_im
The variable usdhc1_pads is only referenced during SPL builds, add a
guard.
Cc: Fabio Estevam
Cc: Peng Fan
Cc: Stefano Babic
Signed-off-by: Tom Rini
---
board/freescale/mx6slevk/mx6slevk.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/board/freescale/mx6slevk/mx6slevk.c
b/board/frees
The variable grf is only referenced if EARLY_DEBUG is defined so move the
declaration to be under the existing guard.
Cc: Simon Glass
Signed-off-by: Tom Rini
---
arch/arm/mach-rockchip/rk3036-board-spl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-rockchip/
With gcc-6 and later we see a warning about the fact that we have a
construct of "if (test);\n\tstatement". Upon reviewing the code, the
intention here is as the compiler suggests, we only want to execute the
indented statement if the test was true.
Cc: Sergei Poselenov
Signed-off-by: Tom Rini
On Mon, May 08, 2017 at 09:42:04PM +0530, Jagan Teki wrote:
> Hi Tom,
>
> Please take this PR.
>
> thanks!
> Jagan.
>
> The following changes since commit e8f86a026125ff2b2d6bd6eac73d2542852aab84:
>
> sunxi: fix the default value of CONS_INDEX on non-A23/A33 SUN8I (2017-04-25
> 11:44:21 +02
On Mon, May 08, 2017 at 09:46:41PM +0530, Jagan Teki wrote:
> Hi Tom,
>
> Please take this PR.
>
> thanks!
> Jagan.
>
> The following changes since commit ac6991fb5fc1a694b29f4ebd5e07baebf818d7cc:
>
> zynq: spi: Honour the activation / deactivation delay (2017-05-03 11:03:04
> +0530)
>
> a
On Mon, May 08, 2017 at 08:36:28PM +0200, Jorge Ramirez wrote:
> On 05/08/2017 07:29 PM, Tom Rini wrote:
> >On Mon, May 08, 2017 at 06:36:43PM +0200, Jorge Ramirez-Ortiz wrote:
> >
> >>This port adds support for:
> >> 1) Serial
> >> 2) eMMC
> >> 3) USB
> >[snip]
> >> arch/a
On Mon, May 08, 2017 at 10:56:53AM -0500, Alex Elder wrote:
> On 05/08/2017 10:20 AM, Tom Rini wrote:
> > On Mon, May 08, 2017 at 05:15:56PM +0200, Jorge Ramirez-Ortiz wrote:
> >
> >> [PATCHv3 1/5] ARM64: dts: hi3798cv200-poplar: add device tree bindings
> >> [PATCHv3 2/5] ARM64: dts: poplar: add
Hi,
this diff adds basic support for the NanoPi Neo2. It's based on the
old NanoPi Neo support and the recent commit of the OrangePi PC2
support. I'm not sure it's 100% correct, but it seems to be a good
start to me and makes the machine boot. Tested with Andre's SPL FIT
patchset.
Patrick
dif
On 05/08/2017 10:20 AM, Tom Rini wrote:
> On Mon, May 08, 2017 at 05:15:56PM +0200, Jorge Ramirez-Ortiz wrote:
>
>> [PATCHv3 1/5] ARM64: dts: hi3798cv200-poplar: add device tree bindings
>> [PATCHv3 2/5] ARM64: dts: poplar: add usb-ehci node
>> [PATCHv3 3/5] ARM64: dts: poplar: add clock frequency
On Sat, Apr 29, 2017 at 03:20:29PM +1200, Chris Packham wrote:
> Add an implementation of the ds1307 driver that uses the driver model
> i2c APIs.
>
> Signed-off-by: Chris Packham
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signatu
Though the code look good and similar approach of existing boards, I'm
little concern of continue the same legacy and w/o trying new feature
like fdt.
We've few i.MX boards which uses fdt support please refer the same.
I'm commenting below what all the code can removed ans use it with
dts.
>
> di
On Thu, Apr 27, 2017 at 03:43:59PM +0530, Lokesh Vutla wrote:
> Enable TI_COMMON_CMD_OPTIONS on all am335x platforms.
> Also sync with savedefconfig.
>
> Signed-off-by: Lokesh Vutla
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Thu, Apr 27, 2017 at 03:44:03PM +0530, Lokesh Vutla wrote:
> Enable TI_COMMON_CMD_OPTIONS on all keystone2 platforms.
> Also sync with savedefconfig.
>
> Signed-off-by: Lokesh Vutla
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Thu, Apr 27, 2017 at 03:43:58PM +0530, Lokesh Vutla wrote:
> Instead of defining command options in every defconfig,
> define a common Kconfig symbol that consolidates all command
> options that are supported by any TI platform. Also use imply
> keyword so that that specific option can be disab
On Sun, Apr 16, 2017 at 03:31:59PM +0200, Ladislav Michl wrote:
> nand_spl_load_image implementation was copied over into three
> different drivers and now with nand_spl_read_block used for
> ubispl situation gets even worse. For now use least intrusive
> solution and #include the same implementat
On Mon, Apr 10, 2017 at 03:03:02PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Mon, Apr 17, 2017 at 12:00:28PM -0700, max...@google.com wrote:
> Enable Pinctrl Driver in AST2500 Eval Board's defconfig
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Mon, Apr 17, 2017 at 12:00:32PM -0700, max...@google.com wrote:
> Add support for clocks needed by MACs to ast2500 clock driver.
> The clocks are D2-PLL, which is used by both MACs and PCLK_MAC1 and
> PCLK_MAC2 for MAC1 and MAC2 respectively.
>
> The rate of D2-PLL is hardcoded to 250MHz -- th
On Mon, Apr 10, 2017 at 03:02:56PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Mon, Apr 10, 2017 at 03:03:03PM -0700, Vikas Manocha wrote:
> Actually the sdram memory on stm32f746 discovery board is micron part
> MT48LC_4M32_B2B5_6A. This patch does the modification required in the
> device tree node & driver for the same.
>
> Also we are passing here all the timing para
On Mon, Apr 17, 2017 at 12:00:25PM -0700, max...@google.com wrote:
> Add Reset Driver configuration to ast2500 SoC Device Tree and bindings
> for various reset signals
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Mon, Apr 10, 2017 at 03:03:00PM -0700, Vikas Manocha wrote:
> All discovery boards have one user button & one user LED. Here we are
> just reading the button status & switching ON the user LED.
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
The value assigned to variable 'value' is never used.
The problem was indicated by clang scan-build.
Signed-off-by: Heinrich Schuchardt
---
cmd/nvedit.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/cmd/nvedit.c b/cmd/nvedit.c
index 9ca5cb58a7..8f4e6bbe62 100644
--- a/cmd/nvedit.c
+++ b/cm
On Mon, Apr 17, 2017 at 12:00:31PM -0700, max...@google.com wrote:
> Enable I2C driver in ast2500 Eval Board defconfig.
> Also enable i2c command.
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signatur
On Mon, Apr 17, 2017 at 12:00:33PM -0700, max...@google.com wrote:
> Refactor SCU header to use consistent Mask & Shift values.
> Now, consistently, to read value from SCU register, mask needs
> to be applied before shift.
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u
On Mon, Apr 10, 2017 at 03:02:57PM -0700, Vikas Manocha wrote:
> This patch adds gpio driver supporting driver model for stm32f7 gpio.
>
> Signed-off-by: Vikas Manocha
> Reviewed-by: Simon Glass
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: D
On Mon, Apr 10, 2017 at 03:03:07PM -0700, Vikas Manocha wrote:
> This patch removes:
> - CONFIG_CMD_MEM: enabled by default
> - CONFIG_DESIGNWARE_ETH : not being used anywhere.
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
si
On Mon, Apr 10, 2017 at 03:03:04PM -0700, Vikas Manocha wrote:
> The number of pins to be configured could be more than 50 e.g. in case
> of sdram controller, there are about 56 pins (32 data lines, 12 address
> & some control signals).
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
On Mon, Apr 17, 2017 at 12:00:20PM -0700, max...@google.com wrote:
> Pull in the Device Tree for ast2500 from the mainline Linux kernel.
> The file is copied from
> https://raw.githubusercontent.com/torvalds/linux/34ea5c9d/arch/arm/boot/dts/aspeed-g5.dtsi
>
> Signed-off-by: Maxim Sloyko
> Review
On Mon, Apr 17, 2017 at 12:00:24PM -0700, max...@google.com wrote:
> Add Reset Driver for ast2500 SoC. This driver uses Watchdog Timer to
> perform resets and thus depends on it. The actual Watchdog device used
> needs to be configured in Device Tree using "aspeed,wdt" property, which
> must be WD
On Mon, Apr 17, 2017 at 12:00:27PM -0700, max...@google.com wrote:
> This driver uses Generic Pinctrl framework and is compatible with
> the Linux driver for ast2500: it uses the same device tree
> configuration.
>
> Not all pins are supported by the driver at the moment, so it actually
> compati
On Thu, Apr 27, 2017 at 03:44:01PM +0530, Lokesh Vutla wrote:
> Enable TI_COMMON_CMD_OPTIONS on all am57xx platforms.
> Also sync with savedefconfig
>
> Signed-off-by: Lokesh Vutla
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Mon, Apr 17, 2017 at 12:00:30PM -0700, max...@google.com wrote:
> Add Device Model based I2C driver for ast2500/ast2400 SoCs.
> The driver is very limited, it only supports master mode and
> synchronous byte-by-byte reads/writes, no DMA or Pool Buffers.
>
> Signed-off-by: Maxim Sloyko
> Revie
On Mon, Apr 10, 2017 at 03:02:55PM -0700, Vikas Manocha wrote:
> This patch also removes the sdram/fmc clock enable from board specific
> code.
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
__
On Tue, May 02, 2017 at 09:30:47PM +1200, Chris Packham wrote:
> After moving to KConfig and removing from all headers options should be
> removed from config_whitelist.txt so the build starts complaining if
> someone adds them back.
>
> Acked-by: Masahiro Yamada
> Signed-off-by: Chris Packham
On Thu, Apr 27, 2017 at 03:44:02PM +0530, Lokesh Vutla wrote:
> Enable TI_COMMON_CMD_OPTIONS on all dra7xx platforms.
> Also sync with savedefconfig.
>
> Signed-off-by: Lokesh Vutla
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Wed, May 03, 2017 at 04:58:26PM +0530, Lokesh Vutla wrote:
> One some keystone2 platforms like K2G ICE, there is an option
> to switch between 24MHz or 25MHz as sysclk. But the existing
> driver assumes it is always 24MHz. Add support for getting
> all reference clocks dynamically by reading bo
On Mon, Apr 17, 2017 at 12:00:23PM -0700, max...@google.com wrote:
> Make functions for locking and unlocking SCU part of SCU API.
> Many drivers need to modify settings in SCU and thus need to unlock it
> first. This change makes it possible.
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon
On Mon, Apr 17, 2017 at 12:00:29PM -0700, max...@google.com wrote:
> Add P-Bus Clock support to ast2500 clock driver.
> This is the clock used by I2C devices.
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digi
On Tue, May 02, 2017 at 09:30:49PM +1200, Chris Packham wrote:
> CONFIG_CMD_DATE was recently moved to Kconfig. Remove the now duplicate
> description of the option.
>
> Signed-off-by: Chris Packham
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descripti
On Mon, Apr 17, 2017 at 12:00:21PM -0700, max...@google.com wrote:
> This is a simple uclass for Watchdog Timers. It has four operations:
> start, restart, reset, stop. Drivers must implement start, restart and
> stop operations, while implementing reset is optional: It's default
> implementation
On Mon, Apr 10, 2017 at 03:02:58PM -0700, Vikas Manocha wrote:
> Also created alias for gpios for stm32f7 discovery board. Based on these
> aliases, it would be possible to get gpio devices by sequence.
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
On Tue, May 02, 2017 at 09:30:48PM +1200, Chris Packham wrote:
> The Kconfig description replaces the description in the README file so
> as options are migrated they can be removed from the README.
>
> Signed-off-by: Chris Packham
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
On Wed, Apr 26, 2017 at 04:18:01PM -0500, Nisal Menuka wrote:
> ARM errata 852421 and 852423 applies to r1p0, r1p1 and r1p2
> revisions of Cortex-A17 processors. These workarounds
> exist in Linux kernel and I thought it would be better
> to add them in to U-Boot.
>
> Signed-off-by: Nisal Menuka
On Thu, Apr 27, 2017 at 03:44:00PM +0530, Lokesh Vutla wrote:
> Enable TI_COMMON_CMD_OPTIONS on all am43xx platforms.
> Also sync with savedefconfig.
>
> Signed-off-by: Lokesh Vutla
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Mon, Apr 10, 2017 at 03:03:05PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Sat, Apr 01, 2017 at 05:17:57PM +0200, Ladislav Michl wrote:
> Convert IGEP board to use UBI volumes for U-Boot, its environment and
> kernel. With exception of first four sectors read by SoC BootROM whole
> NAND is UBI managed.
>
> Signed-off-by: Ladislav Michl
> Reviewed-by: Heiko Schocher
On Wed, Apr 12, 2017 at 02:16:36PM -0700, Vikas Manocha wrote:
> This patch is required for correct SPL device tree creation by fdtgrep
> as fdtgrep looks for u-boot,dm-pre-reloc property of the node to include
> it in the spl device tree.
>
> Not adding it in these subnodes ignores the pin muxin
On Mon, Apr 10, 2017 at 03:02:53PM -0700, Vikas Manocha wrote:
> Also added DT binding doc for stm32 fmc(flexible memory controller).
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Mon, Apr 17, 2017 at 12:00:26PM -0700, max...@google.com wrote:
> This change switches all existing users of ast2500 Watchdog to Driver
> Model based Watchdog driver.
>
> To perform system reset Sysreset Driver uses first Watchdog device found
> via uclass_first_device call. Since the system i
On Tue, May 02, 2017 at 09:30:46PM +1200, Chris Packham wrote:
> Avoid repetitive code dealing with asking the user for confirmation.
>
> Signed-off-by: Chris Packham
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
__
On Mon, Apr 10, 2017 at 03:03:01PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Mon, Apr 10, 2017 at 03:02:59PM -0700, Vikas Manocha wrote:
> With this gpio driver supporting DM, there is no need to enable clocks
> for different gpios (for pin muxing) in the board specific code.
>
> Need to increase the allocatable area required before relocation from 0x400 to
> 0xC00 bec
On Wed, May 03, 2017 at 04:58:25PM +0530, Lokesh Vutla wrote:
> K2G supports various sysclk frequencies which can be
> determined using sysboot pins. PLLs should be configured
> based on this sysclock frequency. Add PLL configurations
> for all supported sysclk frequencies.
>
> Signed-off-by: Lok
On Mon, Apr 17, 2017 at 12:00:34PM -0700, max...@google.com wrote:
> Remove unnecessary apb and ahb nodes and just override necessary
> nodes/values.
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signa
On Sat, Apr 01, 2017 at 05:18:40PM +0200, Ladislav Michl wrote:
> From: Pau Pajuelo
>
> The IGEP SMARC AM335x is an industrial processor module with
> following highlights:
>
> o AM3352 TI processor (Up to AM3359)
> o Cortex-A8 ARM CPU
> o SMARC form factor module
> o Up to 512 MB DDR3
On Sat, Apr 01, 2017 at 05:14:28PM +0200, Ladislav Michl wrote:
> Signed-off-by: Ladislav Michl
> Tested-by: Pau Pajuelo
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.den
On Mon, Apr 17, 2017 at 12:00:22PM -0700, max...@google.com wrote:
> This driver supports ast2500 and ast2400 SoCs.
> Only ast2500 supports reset_mask and thus the option of resettting
> individual peripherals using WDT.
>
> Signed-off-by: Maxim Sloyko
> Reviewed-by: Simon Glass
Applied to u-b
On Mon, Apr 10, 2017 at 03:02:51PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Mon, Apr 10, 2017 at 03:02:52PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Fri, Apr 07, 2017 at 03:38:13PM -0700, Vikas Manocha wrote:
> At present fdt blob or argument address being passed to kernel is fixed at
> compile time using macro CONFIG_SYS_SPL_ARGS_ADDR. FDT blob from
> different media like nand, nor flash are copied to the address pointed
> by the macro.
>
On Mon, Apr 10, 2017 at 03:02:50PM -0700, Vikas Manocha wrote:
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.
On Mon, Apr 10, 2017 at 03:03:06PM -0700, Vikas Manocha wrote:
> This board support stm32f7 family device stm32f769-I with 2MB internal Flash &
> 512KB RAM.
> STM32F769 lines offer the performance of the Cortex-M7 core (with double
> precision floating point unit) running up to 216 MHz.
>
> To co
On Sat, Apr 01, 2017 at 05:17:16PM +0200, Ladislav Michl wrote:
> Rename igep0033 to igep003x as IGEP SMARC AM335x module (igep0034)
> can use the same source files.
>
> Signed-off-by: Ladislav Michl
> Tested-by: Pau Pajuelo
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descriptio
On Sat, Apr 01, 2017 at 05:15:04PM +0200, Ladislav Michl wrote:
> am33xx does not support OneNAND, but we need this define anyway
> to let UBI SPL code compile.
>
> Signed-off-by: Ladislav Michl
> Tested-by: Pau Pajuelo
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Di
On Sat, Apr 01, 2017 at 05:19:43PM +0200, Ladislav Michl wrote:
> From: Pau Pajuelo
>
> netboot allows to boot an external image using TFTP and NFS protocols
>
> Signed-off-by: Pau Pajuelo
> Signed-off-by: Ladislav Michl
> Tested-by: Pau Pajuelo
Applied to u-boot/master, thanks!
--
Tom
On Mon, Apr 10, 2017 at 03:02:54PM -0700, Vikas Manocha wrote:
> As driver model takes care of pin control configuraion, this patch also
> removes the sdram/fmc pin configuration.
>
> Signed-off-by: Vikas Manocha
> cc: Christophe KERELLO
Applied to u-boot/master, thanks!
--
Tom
signature.a
On Thu, Feb 23, 2017 at 03:39:39PM +0200, Uri Mashiach wrote:
> USB bus scan attempt:
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u
1 - 100 of 192 matches
Mail list logo