Enable the IP feature's snoop signal to support
hardware snoop for cache coherence.
SNPCNFGCR contains the bits to drive snoop signal
for various masters.
Signed-off-by: Yuan Yao
---
arch/arm/cpu/armv7/ls102xa/soc.c | 8
arch/arm/include/asm/arch-ls102xa/immap_ls102xa.
This is a workaround for hardware erratum.
Write the value of 63b2_0042h to EDDRTQCFG will optimal the
memory controller performance.
The value: 63b2_0042h comes from the hardware team.
Signed-off-by: Yuan Yao
---
Changed in v2:
squash both of the two patches into one patch to set EDDRTQCF.
---
Signed-off-by: Yuan Yao
---
arch/arm/cpu/armv7/ls102xa/soc.c | 8 +++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/arch/arm/cpu/armv7/ls102xa/soc.c b/arch/arm/cpu/armv7/ls102xa/soc.c
index 6036473..97ba6d5 100644
--- a/arch/arm/cpu/armv7/ls102xa/soc.c
+++ b/arch/arm/cpu/armv7
Both of the erratum:A008336 and A008514 are not apply to all the
soc like:LS1021A, LS1043A.
So it seems better to move those erratum codes form the general ddr
file to the private soc file.
Signed-off-by: Yuan Yao
---
arch/arm/cpu/armv8/fsl-layerscape/soc.c | 37 +
Create a soc.c file to put the code for soc special settings.
Signed-off-by: Yuan Yao
---
arch/arm/cpu/armv7/ls102xa/Makefile | 1 +
arch/arm/cpu/armv7/ls102xa/soc.c| 66 +
arch/arm/include/asm/arch-ls102xa/ls102xa_soc.h | 12 +
board/free
With the commit 'c7b9686d5d48 ("ns16550: unify serial_omap")' all
TI platforms are broken with DM/DT boot as ns16550 driver expects
reg-shift from DT which is not populated for TI platforms.
Earlier it worked as it was hard coded to 2 in serial-omap
driver. So adding the reg-shift to serial nodes f
Enable to break waiting loop at any time.
Signed-off-by: Michal Simek
---
drivers/net/zynq_gem.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/drivers/net/zynq_gem.c b/drivers/net/zynq_gem.c
index 858093f0d7e2..ee4169107e5b 100644
--- a/drivers/net/zynq_gem.c
+++ b/drivers/net/zynq_g
From: Siva Durga Prasad Paladugu
Calculate the minimum sd clock based on max clock. This will
be done by add_sdhci() if we pass minimum clock as zero.
It also does based on SD host contoller version.
Signed-off-by: Siva Durga Prasad Paladugu
Signed-off-by: Michal Simek
---
drivers/mmc/zynq_s
From: Siva Durga Prasad Paladugu
Done relocate fdt incase of CONFIG_OF EMBED as the fdt is
already embedded with u-boot image. Also update the fdt_blob
correctly in this case
Signed-off-by: Siva Durga Prasad Paladugu
Signed-off-by: Michal Simek
---
common/board_f.c | 11 +--
1 file c
Hi,
for everybody's information:
On Wednesday, November 18, 2015 11:01:03 AM Marek Vasut wrote:
> On Wednesday, November 18, 2015 at 10:57:13 AM, Florian Achleitner wrote:
> > On Wednesday, November 18, 2015 09:55:12 AM Marek Vasut wrote:
> > [..]
> > Anyways, I currently suspect the cst tool in
Remove configuration options from board file.
Signed-off-by: Michal Simek
---
configs/xilinx_zynqmp_ep_defconfig | 2 ++
include/configs/xilinx_zynqmp.h| 3 ---
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/configs/xilinx_zynqmp_ep_defconfig
b/configs/xilinx_zynqmp_ep_defc
Remove unused macros when driver was moved to DM.
Signed-off-by: Michal Simek
---
arch/arm/include/asm/arch-zynqmp/hardware.h | 3 ---
arch/arm/mach-zynq/include/mach/hardware.h | 2 --
2 files changed, 5 deletions(-)
diff --git a/arch/arm/include/asm/arch-zynqmp/hardware.h
b/arch/arm/includ
In it's current state paramter parsing is quite hard to
understand since it happens in two places. One is using getopt
at the beginning of main, the second is using adhoc parsing
where the order of arguments is important.
This patch will parse arguments only in one place using getopt
and store the
passing argv/argc can produce off-by-one errors
Signed-off-by: Andreas Fenkart
---
common/env_flags.c | 14 +++---
include/env_flags.h | 2 +-
tools/env/fw_env.c | 11 +++
3 files changed, 15 insertions(+), 12 deletions(-)
diff --git a/common/env_flags.c b/common/env_flags.c
goal is to use getopt for all argument parsing instead of adhoc
parsing in fw_getenv/fw_setenv functions
Signed-off-by: Andreas Fenkart
---
tools/env/fw_env.h | 9
tools/env/fw_env_main.c | 113
2 files changed, 84 insertions(+), 38 de
Signed-off-by: Andreas Fenkart
---
tools/env/fw_env.c | 54 ++---
tools/env/fw_env_main.c | 4
2 files changed, 15 insertions(+), 43 deletions(-)
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index 2cfff02..b1cf9ae 100644
--- a/tools/
disabled original parsing, but not yet removed since the
argument indexing needs to be fixed
Signed-off-by: Andreas Fenkart
---
tools/env/fw_env.c | 64 ++---
tools/env/fw_env.h | 13 ++
tools/env/fw_env_main.c | 31 ++
Signed-off-by: Andreas Fenkart
---
tools/env/fw_env.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index 22507f6..5b76b74 100644
--- a/tools/env/fw_env.c
+++ b/tools/env/fw_env.c
@@ -207,7 +207,7 @@ char *fw_getdefenv(cha
Signed-off-by: Andreas Fenkart
---
tools/env/fw_env_main.c | 63 +
1 file changed, 38 insertions(+), 25 deletions(-)
diff --git a/tools/env/fw_env_main.c b/tools/env/fw_env_main.c
index daf4688..e7ba95e 100644
--- a/tools/env/fw_env_main.c
+++ b/to
Signed-off-by: Andreas Fenkart
---
tools/env/fw_env_main.c | 117 +++-
1 file changed, 75 insertions(+), 42 deletions(-)
diff --git a/tools/env/fw_env_main.c b/tools/env/fw_env_main.c
index e7ba95e..79273ce 100644
--- a/tools/env/fw_env_main.c
+++ b/to
Hi Michal,
On Thu, 2015-11-26 at 10:54 +0100, Michal Simek wrote:
> From: Siva Durga Prasad Paladugu
>
> Done relocate fdt incase of CONFIG_OF EMBED as the fdt is
Probably it was meant to be something like:
--->8---
__Don't__ relocate fdt in__case of CONFIG_OF EM
Hi,
On 26-11-15 01:38, Stefan Bruens wrote:
On Wednesday 25 November 2015 16:55:54 Sumeet Jauhar wrote:
Hello All,
I am new to Rpi and for a project I need to install Uboot for Rpi. For
starters I installed Raspbian-jessie to the pi and it worked fine. Now I am
attempting to use uboot but I do
On Thursday, November 26, 2015 at 10:24:50 AM, Florian Achleitner wrote:
> Hi,
Hi,
> for everybody's information:
>
> On Wednesday, November 18, 2015 11:01:03 AM Marek Vasut wrote:
> > On Wednesday, November 18, 2015 at 10:57:13 AM, Florian Achleitner wrote:
> > > On Wednesday, November 18, 2015
On Thursday, November 26, 2015 at 07:14:56 AM, Stefan Roese wrote:
> On 26.11.2015 04:17, Chin Liang See wrote:
> > Adding new environment usbload which will load zImage and
> > Linux DTB from USB mass storage through FAT file system.
> >
> > Signed-off-by: Chin Liang See
> > Cc: Dinh Nguyen
> >
Introduce chosen node and specify uart0 to be used as serial console.
Signed-off-by: Mugunthan V N
---
arch/arm/dts/dra7-evm.dts | 4
1 file changed, 4 insertions(+)
diff --git a/arch/arm/dts/dra7-evm.dts b/arch/arm/dts/dra7-evm.dts
index 096f68b..e4daa99 100644
--- a/arch/arm/dts/dra7-evm
DM_SERIAL is not enabled for dra74x evm, enabling it and tested
on dra74x evm. Logs [1].
[1] - http://pastebin.ubuntu.com/13513965/
Mugunthan V N (2):
arm: dts: dra7-evm: add chosen node to specify serial console device
defconfig: dra74_evm: enable serial driver model
arch/arm/dts/dra7-evm.
Enable serial driver model for dra74_evm as ns16550 supports
driver model.
Signed-off-by: Mugunthan V N
---
configs/dra74_evm_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/dra74_evm_defconfig b/configs/dra74_evm_defconfig
index 7bff294..394edbe 100644
--- a/configs/dra74_
This series is combination of mtd and sf tunning stuff in previous
version patches.[1][2]
This is whole patch series for add mtd support to spi-flash
framework and related stuff.
The idea is to introduce the spi-nor flash framework which
similar to Linux with driver-model support.
Detail change
read_id code is related to spi_flash stuff
hence moved to sf_ops.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 3 +--
drivers/mtd/spi/sf_ops.c | 21 ++---
drivers/mtd/spi/sf_probe.c| 15 +--
3 files changed, 20 insertions(+), 19 deletions(-)
Intension is that sf_ops should deals all spi_flash
related stuff and sf_probe (which should renamed future)
should be an interface layer for spi_flash versus spi drivers.
sf_ops => spi_flash interface
sf_probe => interface layer vs spi_flash(sf_probe) to spi drivers
Signed-off-by: Jagan Teki
--
Use static for file-scope functions and removed
them from header files.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 18 --
drivers/mtd/spi/sf_ops.c | 11 ++-
2 files changed, 6 insertions(+), 23 deletions(-)
diff --git a/drivers/mtd/spi/sf_internal
Rename spi_flash_validate_params to spi_flash_scan
as this code not only deals with params setup but
also configure all spi_flash attributes.
And also moved all flash related code into
spi_flash_scan for future functionality addition.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_probe.c | 1
- Move bar read code below the bar write hance both
at once place, hence it easy for #ifdef macro only
once and readable.
- Move read_cmd_array at top
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 80 +++-
1 file changed, 39 insertions(+
Most of the register access function are static,
so used simple name to represent each.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 52
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/drivers/mtd/spi/sf_ops.c b/drivers
This patch removes unneeded ifdef and fixed accordingly.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/Makefile | 6 +-
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/mtd/spi/Makefile b/drivers/mtd/spi/Makefile
index cf4e7e1..a24f761 100644
--- a/drivers/mtd/spi/Makefil
flash operations are defined as static and reuse them
with function-pointers so call them with generic
function pounters instead of calling like normal functions.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 2 --
drivers/mtd/spi/sf_probe.c | 15 +++
include/spi_flash.
Use static for file-scope functions and removed
them from header files.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 21 -
drivers/mtd/spi/sf_ops.c | 11 ++-
2 files changed, 6 insertions(+), 26 deletions(-)
diff --git a/drivers/mtd/spi/sf_inter
Using macro's for flash power up read-only access code
leads wrong behaviour hence use idcode0 for runtime
detection, hence the flash which require this functionality
gets detected at runtime.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 1 +
drivers/mtd/spi/sf_ops.c | 7 ++
Removed unneeded header includes in sf_ops and sf_probe
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 2 --
drivers/mtd/spi/sf_probe.c | 3 ---
2 files changed, 5 deletions(-)
diff --git a/drivers/mtd/spi/sf_ops.c b/drivers/mtd/spi/sf_ops.c
index 2e6b25e..1ee8a7c 100644
--- a/drive
This patch add support to use spi_flash_scan in
dm-spi-flash probe, so-that it can access
the spi_flash functionalities same as non-dm sf probe.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_probe.c | 28 +---
1 file changed, 25 insertions(+), 3 deletions(-)
diff --gi
Add SPL_MTD_SUPPORT to ZYNQ_QSPI SPL.
Cc: Michal Simek
Signed-off-by: Jagan Teki
---
include/configs/zynq-common.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h
index fa83ac7..a54fa26 100644
--- a/include/configs/zynq-common.h
spi_flash_probe_tail code looks not in proper shape
to add more functionalities. hence refactorized
so-that it's more readable and hence we may extend
more functionalies to it.
Cc: Bin Meng
Cc: Troy Kisky
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 3 +-
drivers/mtd/spi/sf_o
Since MTD support is added in spi_flash layer, this patch uses
mtd_info operations instead of legacy spi_flash operations.
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 75 +-
drivers/mtd/spi/sf_probe.c | 30 --
spi_flash_probe_tail code looks not in proper shape
to add more functionalities. hence refactorized
so-that it's more readable and hence we may extend
more functionalies to it.
Cc: Bin Meng
Cc: Troy Kisky
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_probe.c | 20 +---
1 fil
Since mtd got added, replace flash->size with mtd->size.
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
common/cmd_sf.c | 16
drivers/mtd/spi/sf_ops.c | 23 +--
include/spi_flash.h | 2 --
3 files changed, 21 insertions(+), 20 delet
This patch adds mtd_info support to spi_flash layer, MTD has
proven core for flash operations so adding MTD to spi_flash
will extends more functionality.
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 40 +++-
drivers/m
Since mtd got added, replace flash->erase_size with mtd->erasesize.
Cc: Fabio Estevam
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 4 ++--
include/spi_flash.h | 2 --
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/mtd/spi/sf_
Since mtd_info ops got introduced, just drop the unneeded
dm_spi_flash operations.
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf-uclass.c | 39
include/spi_flash.h | 90 +++--
2 files changed, 14
Since the spi-flash framework itself is using core MTD
functionalities this patch uses lock operation from mtd.
Cc: Fabio Estevam
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 9 -
drivers/mtd/spi/sf_ops.c | 404 ++
include/spi_flas
- Use static for file-scope function
- Remove unneeded header file
- Use spi instead of slave notation for spi_slave {}
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_probe.c | 14 +++---
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers
This patch adds MTD support to non-dm spi_flash
interface code.
Reviewed-by: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_probe.c | 26 ++
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_p
For assigning read_bar commands in spansion case, break
is missing this patch add that break.
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_ops.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/spi/sf_ops.c b/drivers/mtd/spi/sf_ops.c
index 4e2845c..bc9cbf7 100644
--- a/drivers
Since mtd_info{} ops are used instead of spi_flash{} ops
there is no need to check the flash->flags to SNOR_F_SST_WR
as sf_ops behaves as a core to handling generic flash
functionalities for both dm and non-dm.
Cc: Bin Meng
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 3 +--
dr
No explict spi-flash mtd handling driver, it's been
part of spi-flash layer iteself, hence removed it from
board configs.
Cc: Heiko Schocher
Signed-off-by: Jagan Teki
---
include/configs/aristainetos-common.h | 1 -
include/configs/gw_ventana.h | 1 -
include/configs/socfpga_common.h
Now MTD core has been added as part of spi-flash layer,
so there is no need for explicit driver for handling
mtd stuff, hence removed all neccessary code regarding
SPI_FLASH_MTD driver.
Cc: Heiko Schocher
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/Kconfig | 12 -
drivers/mtd/spi/M
SST parts added on sf_params.c supports both SST_WR which consits
of both BP and WP and there is a spi controller ich which supports
only BP so the relevent _write hook set based on "slave->op_mode_tx"
hence there is no respective change required from flash side hance
removed these.
Cc: Bin Meng
Flash id detection should be the first step to enumerate
the connected flash on the board, once ie done checking
with respective id codes locally in the driver all this
should be part of jedec_probe instead of id detection and
validated through flash_info{} table separatly.
Cc: Haikun Wang
Signed
dataflash doesn't require options, memory_map from spi.
Cc: Haikun Wang
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_dataflash.c | 6 +-
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/mtd/spi/sf_dataflash.c b/drivers/mtd/spi/sf_dataflash.c
index b2a56da..6a9dfef 10
This patch fixed the add_dataflash return logic,
so-that it can handle both jedec and older chips
same as Linux.
Cc: Haikun Wang
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_dataflash.c | 127 -
1 file changed, 61 insertions(+), 66 deletions(-)
diff
Since spi-flash is using MTD core by inheriting flash
operation from mtd_info, legacy spi_flash{} are no longer
available so this patch use mtd_info as same as spi-flash.
Cc: Haikun Wang
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_dataflash.c | 236 ++---
Since dataflash driver is using mtd_info core functionalities
this patch renames file and config name similar way as Linux.
Cc: Haikun Wang
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/Kconfig | 2 +-
drivers/mtd/spi/Makefile| 2 +-
drive
- fix single line comments
- remove unneeded spaces
- ascending order of include files
- rename spi_dataflash_* to dataflash_*
- rename SPI DATAFLASH to dataflash
- rename SPI DataFlash to dataflash
- return NULL replaced with error code
Cc: Haikun Wang
Signed-off-by: Jagan Teki
---
drivers/mtd
Hello Stefan,
On Thu, 26 Nov 2015 07:23:51 +0100, Stefan Roese
wrote:
> Hi Albert,
>
> first, thank you very much for taking the time to go over this
> in such depth.
>
> On 25.11.2015 16:20, Albert ARIBAUD wrote:
> > Hello all,
> >
> > This is a follow-up to discussions on the IRC chan re: the
Hello Marek,
On 11/26/2015 12:15 AM, Marek Vasut wrote:
The following patch changed the PFUZE100 swbst register bit definitions
and broke PMIC configuration on multiple boards, at least on the novena
and gw_ventana. This patch fixes it.
Ok we missed this in the review. But as I can see it bro
On 26 November 2015 at 17:33, Jagan Teki wrote:
> This series is combination of mtd and sf tunning stuff in previous
> version patches.[1][2]
>
> This is whole patch series for add mtd support to spi-flash
> framework and related stuff.
>
> The idea is to introduce the spi-nor flash framework whic
Hi Jagan,
On 26.11.2015 13:24, Jagan Teki wrote:
On 26 November 2015 at 17:33, Jagan Teki wrote:
This series is combination of mtd and sf tunning stuff in previous
version patches.[1][2]
This is whole patch series for add mtd support to spi-flash
framework and related stuff.
The idea is to i
When CONFIG_SPL_OF_TRANSLATE is enabled fdt_support.c needs to get
compiled. Otherwise fdt_translate_address() is missing which is needed
in dev_get_addr().
Signed-off-by: Stefan Roese
Cc: Simon Glass
---
common/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/common/Makefile b/comm
Add a remark about SPL to this Kconfig option. Otherwise its identitcal
to the non-SPL version, which is confusing.
Signed-off-by: Stefan Roese
Cc: Simon Glass
---
drivers/core/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfi
Fix incorrect comment alignments.
Signed-off-by: Stefan Roese
Cc: Simon Glass
---
drivers/serial/serial-uclass.c | 20 ++--
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/serial/serial-uclass.c b/drivers/serial/serial-uclass.c
index 842f78b..4bf9a5c 1006
On Thu, Nov 26, 2015 at 8:38 PM, Stefan Roese wrote:
> Fix incorrect comment alignments.
>
> Signed-off-by: Stefan Roese
> Cc: Simon Glass
> ---
> drivers/serial/serial-uclass.c | 20 ++--
> 1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/serial/serial
Hi Stefan,
On 26 November 2015 at 18:02, Stefan Roese wrote:
> Hi Jagan,
>
>
> On 26.11.2015 13:24, Jagan Teki wrote:
>>
>> On 26 November 2015 at 17:33, Jagan Teki wrote:
>>>
>>> This series is combination of mtd and sf tunning stuff in previous
>>> version patches.[1][2]
>>>
>>> This is whole
On Thursday, November 26, 2015 at 01:51:17 PM, Florian Achleitner wrote:
> On Thursday, November 26, 2015 12:06:42 PM Marek Vasut wrote:
> > On Thursday, November 26, 2015 at 10:24:50 AM, Florian Achleitner wrote:
> > > Hi,
> >
> > Hi,
> >
> > > for everybody's information:
> > >
> > > On Wednes
On Thursday, November 26, 2015 12:06:42 PM Marek Vasut wrote:
> On Thursday, November 26, 2015 at 10:24:50 AM, Florian Achleitner wrote:
> > Hi,
>
> Hi,
>
> > for everybody's information:
> >
> > On Wednesday, November 18, 2015 11:01:03 AM Marek Vasut wrote:
> > > On Wednesday, November 18, 2015
On 26.11.2015 12:18, Alexey Brodkin wrote:
> Hi Michal,
>
> On Thu, 2015-11-26 at 10:54 +0100, Michal Simek wrote:
>> From: Siva Durga Prasad Paladugu
>>
>> Done relocate fdt incase of CONFIG_OF EMBED as the fdt is
>
> Probably it was meant to be something like:
> --->8--
Hi Jagan,
(added Simon, as he's the DM guru)
On 26.11.2015 13:46, Jagan Teki wrote:
> Hi Stefan,
>
> On 26 November 2015 at 18:02, Stefan Roese wrote:
>> Hi Jagan,
>>
>>
>> On 26.11.2015 13:24, Jagan Teki wrote:
>>>
>>> On 26 November 2015 at 17:33, Jagan Teki wrote:
This series is c
The following patch changed the PFUZE100 swbst register bit definitions
and broke PMIC configuration on multiple boards, at least on the novena
and gw_ventana. This patch fixes it.
commit 8fa46350a4c7dca7710362f6c871098557b934ad
Author: Peng Fan
Date: Fri Aug 7 16:43:45 2015 +0800
power: r
On Thursday, November 26, 2015 at 02:03:16 PM, Florian Achleitner wrote:
> On Thursday, November 26, 2015 01:52:58 PM Marek Vasut wrote:
> > On Thursday, November 26, 2015 at 01:51:17 PM, Florian Achleitner wrote:
> > > On Thursday, November 26, 2015 12:06:42 PM Marek Vasut wrote:
> > > > [...]
>
On Thursday, November 26, 2015 at 01:21:36 PM, Przemyslaw Marczak wrote:
> Hello Marek,
Hi,
> On 11/26/2015 12:15 AM, Marek Vasut wrote:
> > The following patch changed the PFUZE100 swbst register bit definitions
> > and broke PMIC configuration on multiple boards, at least on the novena
> > and
Hi Stefan,
On 26 November 2015 at 18:34, Stefan Roese wrote:
> Hi Jagan,
>
> (added Simon, as he's the DM guru)
I think you missed adding Simon
+ Simon
>
> On 26.11.2015 13:46, Jagan Teki wrote:
>> Hi Stefan,
>>
>> On 26 November 2015 at 18:02, Stefan Roese wrote:
>>> Hi Jagan,
>>>
>>>
>>> On
On Thursday, November 26, 2015 01:52:58 PM Marek Vasut wrote:
> On Thursday, November 26, 2015 at 01:51:17 PM, Florian Achleitner wrote:
> > On Thursday, November 26, 2015 12:06:42 PM Marek Vasut wrote:
> > > [...]
> > > Thanks for the heads up! Would it be possible for you to check what's
> > > t
Hello Marek,
On 11/26/2015 02:08 PM, Marek Vasut wrote:
On Thursday, November 26, 2015 at 01:21:36 PM, Przemyslaw Marczak wrote:
Hello Marek,
Hi,
On 11/26/2015 12:15 AM, Marek Vasut wrote:
The following patch changed the PFUZE100 swbst register bit definitions
and broke PMIC configuration
Hi!
> Adding new environment qspiload which will load zImage and
> Linux DTB from serial NOR flash. The default flash offset for
> the images as below and they are configurable during run time.
>
> - zImage located at0xa with assuming file size 6MB
> - Linux DTB located at 0x5 with as
On Thursday, November 26, 2015 at 03:35:26 PM, Przemyslaw Marczak wrote:
> Hello Marek,
Hi,
> On 11/26/2015 02:08 PM, Marek Vasut wrote:
> > On Thursday, November 26, 2015 at 01:21:36 PM, Przemyslaw Marczak wrote:
> >> Hello Marek,
> >
> > Hi,
> >
> >> On 11/26/2015 12:15 AM, Marek Vasut wrote:
Hello Marek,
On 11/26/2015 04:39 PM, Marek Vasut wrote:
On Thursday, November 26, 2015 at 03:35:26 PM, Przemyslaw Marczak wrote:
Hello Marek,
Hi,
On 11/26/2015 02:08 PM, Marek Vasut wrote:
On Thursday, November 26, 2015 at 01:21:36 PM, Przemyslaw Marczak wrote:
Hello Marek,
Hi,
On 11/
Hello Marek,
On 11/26/2015 02:08 PM, Marek Vasut wrote:
The following patch changed the PFUZE100 swbst register bit definitions
and broke PMIC configuration on multiple boards, at least on the novena
and gw_ventana. This patch fixes it.
commit 8fa46350a4c7dca7710362f6c871098557b934ad
Author: Pe
On Thursday, November 26, 2015 at 05:13:55 PM, Przemyslaw Marczak wrote:
> Hello Marek,
Hi,
> On 11/26/2015 04:39 PM, Marek Vasut wrote:
> > On Thursday, November 26, 2015 at 03:35:26 PM, Przemyslaw Marczak wrote:
> >> Hello Marek,
> >
> > Hi,
> >
> >> On 11/26/2015 02:08 PM, Marek Vasut wrote:
Hi Yuan
On 26/11/15 02:58 AM, Yuan Yao wrote:
Both of the erratum:A008336 and A008514 are not apply to all the
soc like:LS1021A, LS1043A.
nitpick : perhaps you could reword the commit message to make
it a bit more clear. A suggestion :
"As the errata A008336 and A008514 do not apply to
On Thursday, November 26, 2015 at 02:43:43 AM, Chin Liang See wrote:
> socfpga_dw_mmc driver will obtain the drvsel and
> smplsel value from device tree instead of definition
> in config header file.
>
> Signed-off-by: Chin Liang See
> Cc: Dinh Nguyen
> Cc: Dinh Nguyen
> Cc: Pavel Machek
> Cc:
Hi Stefan,
On 26 November 2015 at 05:04, Stefan Roese wrote:
> Hi Jagan,
>
> (added Simon, as he's the DM guru)
>
> On 26.11.2015 13:46, Jagan Teki wrote:
>> Hi Stefan,
>>
>> On 26 November 2015 at 18:02, Stefan Roese wrote:
>>> Hi Jagan,
>>>
>>>
>>> On 26.11.2015 13:24, Jagan Teki wrote:
>
Hi Bin,
On 25 November 2015 at 17:46, Bin Meng wrote:
> NORTHBRIDGE_INTEL_SANDYBRIDGE is for sandybridge, not ivybridge.
>
> Signed-off-by: Bin Meng
>
> ---
>
> Changes in v2:
> - Remove NORTHBRIDGE_INTEL_SANDYBRIDGE in Makefile too.
>
> arch/x86/cpu/Makefile | 1 -
> arch/x86/cpu/ivy
On Wednesday, November 25, 2015 at 06:30:54 AM, Ted Chen wrote:
> From: Ted Chen
>
> This patch adds driver support for the Realtek RTL8152B/RTL8153 USB
> network adapters.
>
> Signed-off-by: Ted Chen
> [swarren, fixed a few compiler warnings]
> [swarren, with permission, converted license head
Hi Simon,
On 26.11.2015 17:48, Simon Glass wrote:
Yes. I'm trying to enable SPL_DM on MVEBU. And this with
DM_SPI and DM_SPI_FLASH enabled as well. I've the kirkwood
SPI driver ported to DM here for this (patches will follow).
what kind of issue?
is it failed to probe device or something?
Hi Peng,
On 25 November 2015 at 02:16, Peng Fan wrote:
> Need to free memory avoid memory leak, when error.
>
> Signed-off-by: Peng Fan
> Cc: Simon Glass
> Cc: Tom Rini
> ---
> common/cli_hush.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/common/cli_hush.c b/co
On 26 November 2015 at 04:38, Stefan Roese wrote:
> Add a remark about SPL to this Kconfig option. Otherwise its identitcal
> to the non-SPL version, which is confusing.
>
> Signed-off-by: Stefan Roese
> Cc: Simon Glass
> ---
> drivers/core/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 de
On 25 November 2015 at 01:46, Heiko Schocher wrote:
> since:
> commit: f05ad9ba "Add a way to skip relocation"
>
> tqm5200s board fails to boot. Reason is that
> board_init_f has a function parameter bootflag,
> which is not setup in
> in arch/powerpc/cpu/mpc5xxx/start.S _start
>
> So board_init_f
On 24 November 2015 at 23:41, Stefan Roese wrote:
> Use the correct function name in the function description.
>
> Signed-off-by: Stefan Roese
> Cc: Simon Glass
> Cc: Heiko Schocher
> ---
> include/i2c.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
Reviewed-by: Simon Glass
_
On 25 November 2015 at 09:51, Simon Glass wrote:
> Hi,
>
> On 24 November 2015 at 23:44, Bin Meng wrote:
>> On Wed, Nov 25, 2015 at 11:20 AM, Thomas Chou wrote:
>>> Hi Simon,
>>>
>>> On 2015年11月25日 02:23, Simon Glass wrote:
Please try u-boot-dm/testing. This seems to be a differen
On 26 November 2015 at 04:38, Stefan Roese wrote:
> When CONFIG_SPL_OF_TRANSLATE is enabled fdt_support.c needs to get
> compiled. Otherwise fdt_translate_address() is missing which is needed
> in dev_get_addr().
>
> Signed-off-by: Stefan Roese
> Cc: Simon Glass
> ---
> common/Makefile | 1 +
>
On 26 November 2015 at 01:19, Mugunthan V N wrote:
> With the commit 'c7b9686d5d48 ("ns16550: unify serial_omap")' all
> TI platforms are broken with DM/DT boot as ns16550 driver expects
> reg-shift from DT which is not populated for TI platforms.
> Earlier it worked as it was hard coded to 2 in s
On 26 November 2015 at 03:55, Mugunthan V N wrote:
> Introduce chosen node and specify uart0 to be used as serial console.
>
> Signed-off-by: Mugunthan V N
> ---
> arch/arm/dts/dra7-evm.dts | 4
> 1 file changed, 4 insertions(+)
Reviewed-by: Simon Glass
___
1 - 100 of 188 matches
Mail list logo