Signed-off-by: Masahiro Yamada
---
drivers/clk/clk_rk3036.c | 2 +-
drivers/clk/clk_rk3288.c | 2 +-
drivers/clk/clk_sandbox.c | 5 +++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/clk/clk_rk3036.c b/drivers/clk/clk_rk3036.c
index 6c802b6..f650810 100644
--- a/drive
The comments in include/clk.h state "or -ve error code" for these
functions, and actually the functions return negative error code
here and there. Returning unsigned value is not suitable.
Signed-off-by: Masahiro Yamada
---
drivers/clk/clk-uclass.c | 8
drivers/clk/clk_rk3036.c |
Signed-off-by: Masahiro Yamada
---
drivers/clk/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index 890f22f..9fcde39 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -1,3 +1,5 @@
+menu "Clock"
+
config CLK
bool "Ena
Hi Bhuvanchandra,
On Tue, Jan 12, 2016 at 2:43 PM, Bhuvanchandra DV
wrote:
> Hi Bin,
>
>
> On 01/12/2016 11:05 AM, Bin Meng wrote:
>>
>> Hi Bhuvanchandra,
>>
>> On Tue, Jan 12, 2016 at 12:28 PM, Bhuvanchandra DV
>> wrote:
>>>
>>> - Convert lpuart driver to driver model and remove the legacy code
Some of the register definitions are duplicated. Drop them.
Signed-off-by: Chen-Yu Tsai
---
include/axp818.h | 8
1 file changed, 8 deletions(-)
diff --git a/include/axp818.h b/include/axp818.h
index 1dc6456..46d05ad 100644
--- a/include/axp818.h
+++ b/include/axp818.h
@@ -32,13 +32,6
Previously, AXP818 ALDO support was partially added to Kconfig, but
never enabled in the board file, nor properly set or configured in
Kconfig. The boards continue to work because the AXP818 is designed
to pair with the A83T/H8, and the default voltages match the reference
design's requirements.
S
Instead of one function for each DLDO regulator, make 1 function that
takes an extra "index". Since the control bits for the DLDO regulators
are contiguous, this makes the function very simple. This removes a lot
of duplicate code.
Signed-off-by: Chen-Yu Tsai
---
board/sunxi/board.c| 8 ++--
AXP818 provides an array of LDOs to provide power to various peripherals.
None of these regulators are critical.
Signed-off-by: Chen-Yu Tsai
---
drivers/power/Kconfig | 12 ++--
drivers/power/axp818.c | 44
2 files changed, 50 insertions(+),
The LDO settings in this defconfig are either wrong (ALDOs must not be 0)
or the same as Kconfig defaults.
Signed-off-by: Chen-Yu Tsai
---
configs/h8_homlet_v2_defconfig | 3 ---
1 file changed, 3 deletions(-)
diff --git a/configs/h8_homlet_v2_defconfig b/configs/h8_homlet_v2_defconfig
index dc
Hi everyone,
This series adds proper support for ALDO/DLDO/ELDOs on AXP818. FLDOs
aren't covered yet, though the hardware defaults should work nicely
with sane hardware. ALDO functions aren't consolidated or cleaned up
either.
Patch 1 cleans up the axp818 header.
Patch 2 merges the separate axp2
Hi Bin,
On 01/12/2016 11:05 AM, Bin Meng wrote:
Hi Bhuvanchandra,
On Tue, Jan 12, 2016 at 12:28 PM, Bhuvanchandra DV
wrote:
- Convert lpuart driver to driver model and remove the legacy code.
- Update Toradex Colibri VF50/VF61 serial support with driver model.
- Update Freescale vf610twr seri
This adds driver model support to Freescale TSEC ethernet driver.
Signed-off-by: Bin Meng
---
drivers/net/tsec.c | 186 +
include/tsec.h | 10 +++
2 files changed, 196 insertions(+)
diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c
in
Now that we have added driver model support to the TSEC driver,
convert ls1021atwr board to use it.
This depends on previous DM series for ls1021atwr:
http://patchwork.ozlabs.org/patch/561855/
Signed-off-by: Bin Meng
---
arch/arm/cpu/armv7/ls102xa/cpu.c| 2 +-
arch/arm/cpu/armv7/ls102
Add a new member 'tbiaddr' to tsec_private struct. For non-DM driver,
it is initialized as CONFIG_SYS_TBIPA_VALUE, but for DM driver, we
can get this from device tree. Update the bindings doc as well.
Signed-off-by: Bin Meng
---
doc/device-tree-bindings/net/fsl-tsec-phy.txt | 21 +++
Before we switch to use driver model ethernet support, disable
CONFIG_E1000 temporarily as with driver model ethernet, E1000
driver depends on driver model PCI which is not ready on this
board yet.
Signed-off-by: Bin Meng
---
configs/ls1021atwr_nor_defconfig| 1 -
configs/ls1021atwr_nor
For internal routines like redundant_init(), startup_tsec() and
init_phy(), change to use tsec_private pointer as the parameter.
Signed-off-by: Bin Meng
---
drivers/net/tsec.c | 23 +++
include/tsec.h | 1 +
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git
Adapted from the same file name in the kernel device tree bindings
documentation, to use with U-Boot.
Signed-off-by: Bin Meng
---
doc/device-tree-bindings/net/fsl-tsec-phy.txt | 43 +++
1 file changed, 43 insertions(+)
create mode 100644 doc/device-tree-bindings/net/fsl
eth_get_dev_by_index() is an API which is not available in driver
model. Use eth_get_dev_by_name() instead, which can also simplifly
the code logic a little bit.
Signed-off-by: Bin Meng
---
arch/arm/cpu/armv7/ls102xa/fdt.c | 16 ++--
1 file changed, 6 insertions(+), 10 deletions(-)
At present rx_idx and tx_idx are declared as static variables
in the driver codes. To support multiple interfaces, move it to
struct tsec_private.
Signed-off-by: Bin Meng
---
drivers/net/tsec.c | 54 ++
include/tsec.h | 2 ++
2 files chan
Adjust static functions in a proper order so that forward declaration
of tsec_send() can be avoided.
Signed-off-by: Bin Meng
---
drivers/net/tsec.c | 208 ++---
1 file changed, 103 insertions(+), 105 deletions(-)
diff --git a/drivers/net/tsec.c b
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET.
Signed-off-by: Bin Meng
---
board/freescale/c29xpcie/c29xpcie.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/freescale/c29xpcie/c29xpcie.c
b/board/freescale/c29xpcie/c29xpcie.c
index f42d37
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET.
Signed-off-by: Bin Meng
---
board/freescale/mpc8572ds/mpc8572ds.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/freescale/mpc8572ds/mpc8572ds.c
b/board/freescale/mpc8572ds/mpc8572ds.c
index
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET.
Signed-off-by: Bin Meng
---
board/freescale/p1010rdb/p1010rdb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/freescale/p1010rdb/p1010rdb.c
b/board/freescale/p1010rdb/p1010rdb.c
index ebffe9
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET.
Signed-off-by: Bin Meng
---
board/freescale/ls1021atwr/ls1021atwr.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/freescale/ls1021atwr/ls1021atwr.c
b/board/freescale/ls1021atwr/ls1021atwr.c
rxbd and txbd are declared static with 8 byte alignment requirement,
but they can be put into struct tsec_private as well and are natually
aligned to 8 byte.
Signed-off-by: Bin Meng
---
drivers/net/tsec.c | 69 +-
include/tsec.h | 4
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET.
Signed-off-by: Bin Meng
---
board/freescale/mpc8548cds/mpc8548cds.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/freescale/mpc8548cds/mpc8548cds.c
b/board/freescale/mpc8548cds/mpc8548cds.c
Clean up the tsec and fsl_mdio driver codes a little bit, by:
- Fix misuse of tab and space here and there
- Use correct multi-line comment format
- Replace license identifier to GPL-2.0+
Signed-off-by: Bin Meng
---
drivers/net/fsl_mdio.c | 4 ++--
drivers/net/tsec.c | 61 +
The call to pci_eth_init() should not be wrapped with CONFIG_TSEC_ENET.
Signed-off-by: Bin Meng
---
board/freescale/bsc9132qds/bsc9132qds.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/freescale/bsc9132qds/bsc9132qds.c
b/board/freescale/bsc9132qds/bsc9132qds.c
This series adds driver model ethernet support to the Freescale
TSEC ethernet driver and convert ls1021atwr board to use it.
Enable the support in the ls1021atwr_nor_defconfig and
ls1021atwr_nor_lpuart_defconfig configurations.
Bin Meng (17):
powerpc: bsc9132qds: Do not wrap pci_eth_init() wit
Hi Bhuvanchandra,
On Tue, Jan 12, 2016 at 12:28 PM, Bhuvanchandra DV
wrote:
> - Convert lpuart driver to driver model and remove the legacy code.
> - Update Toradex Colibri VF50/VF61 serial support with driver model.
> - Update Freescale vf610twr serial support with driver model.
> - Update Frees
Signed-off-by: Bhuvanchandra DV
---
arch/arm/include/asm/arch-ls102xa/serial.h | 16
board/freescale/ls1021atwr/ls1021atwr.c| 15 ++-
include/configs/ls1021atwr.h | 1 +
3 files changed, 31 insertions(+), 1 deletion(-)
create mode 100644 arch/arm/i
Signed-off-by: Bhuvanchandra DV
---
configs/vf610twr_defconfig | 1 +
configs/vf610twr_nand_defconfig | 1 +
2 files changed, 2 insertions(+)
diff --git a/configs/vf610twr_defconfig b/configs/vf610twr_defconfig
index dc8df5c..46b4e00 100644
--- a/configs/vf610twr_defconfig
+++ b/configs/vf6
Signed-off-by: Bhuvanchandra DV
---
board/toradex/colibri_vf/colibri_vf.c | 13 +
include/configs/colibri_vf.h | 6 +++---
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/board/toradex/colibri_vf/colibri_vf.c
b/board/toradex/colibri_vf/colibri_vf.c
index c65
Signed-off-by: Bhuvanchandra DV
---
configs/ls1021atwr_nor_lpuart_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/ls1021atwr_nor_lpuart_defconfig
b/configs/ls1021atwr_nor_lpuart_defconfig
index d7afca9..d52181b 100644
--- a/configs/ls1021atwr_nor_lpuart_defconfig
+++ b/conf
Signed-off-by: Bhuvanchandra DV
---
board/phytec/pcm052/pcm052.c | 13 +
include/configs/pcm052.h | 6 +++---
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/board/phytec/pcm052/pcm052.c b/board/phytec/pcm052/pcm052.c
index e4f61e1..3f2ed38 100644
--- a/board/phyt
Signed-off-by: Bhuvanchandra DV
---
board/freescale/vf610twr/vf610twr.c | 13 +
include/configs/vf610twr.h | 6 +++---
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/board/freescale/vf610twr/vf610twr.c
b/board/freescale/vf610twr/vf610twr.c
index 37b241d..3c
Convert lpuart driver to driver model and remove the legacy code.
Signed-off-by: Bhuvanchandra DV
---
arch/arm/include/asm/arch-vf610/serial.h | 16
drivers/serial/Kconfig | 6 ++
drivers/serial/serial_lpuart.c | 148 ---
3 files ch
Signed-off-by: Bhuvanchandra DV
---
configs/pcm052_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/pcm052_defconfig b/configs/pcm052_defconfig
index 9125645..12fdc0c 100644
--- a/configs/pcm052_defconfig
+++ b/configs/pcm052_defconfig
@@ -1,5 +1,6 @@
CONFIG_ARM=y
CONFIG_TA
- Convert lpuart driver to driver model and remove the legacy code.
- Update Toradex Colibri VF50/VF61 serial support with driver model.
- Update Freescale vf610twr serial support with driver model.
- Update Freescale ls1021atwr serial support with driver model.
- Update Phytec pcm052 serial suppor
On 01/11/2016 10:28 PM, Simon Glass wrote:
> Hi,
>
> On 7 January 2016 at 23:46, Purna Chandra Mandal
> wrote:
>> On 01/08/2016 09:04 AM, Simon Glass wrote:
>>
>>> Hi Purna,
>>>
>>> On 4 January 2016 at 07:00, Purna Chandra Mandal
>>> wrote:
Signed-off-by: Purna Chandra Mandal
>>> Ple
On 01/11/2016 10:27 PM, Simon Glass wrote:
> Hi,
>
> On 4 January 2016 at 07:01, Purna Chandra Mandal
> wrote:
>> Signed-off-by: Paul Thacker
>> Signed-off-by: Purna Chandra Mandal
> Please add a commit message.
Agreed, Will add.
>> ---
>>
>> Changes in v2:
>> - move ddr2 initialization from
On 01/11/2016 10:27 PM, Simon Glass wrote:
> Hi,
>
> On 4 January 2016 at 07:00, Purna Chandra Mandal
> wrote:
>> Signed-off-by: Purna Chandra Mandal
>>
> Commit message please.
Ack. Will add.
>> ---
>>
>> Changes in v2:
>> - add get clock rate for mpll clock
>>
>> .../clock/microchip,pic32-cl
On 01/11/2016 09:46 PM, Daniel Schwierzeck wrote:
> Am Montag, den 04.01.2016, 19:30 +0530 schrieb Purna Chandra Mandal:
>> Signed-off-by: Purna Chandra Mandal
>>
>> ---
>>
>> Changes in v2:
>> - add get clock rate for mpll clock
>>
>> .../clock/microchip,pic32-clock.txt| 28 ++
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> Document the usage of 'qfw' command
>
> Signed-off-by: Miao Yan
> Reviewed-by: Simon Glass
> Reviewed-by: Bin Meng
> ---
applied to u-boot-x86/next, thanks!
___
U-Boot mailing list
U-Boot@lists.denx.d
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> Remove 'cpu' node in device tree for QEMU targets, and let U-Boot detect
> and fix up those information at runtime.
>
> Signed-off-by: Miao Yan
> Reviewed-by: Simon Glass
> Reviewed-by: Bin Meng
> ---
applied to u-boot-x86/next, thanks!
___
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> Currently, when booting with more that one CPU enabled, U-Boot scans
> 'cpu' node in device tree and calculates CPU number. This does not scale
> well as changing CPU number also requires modifying .dts and re-compiling
> U-Boot.
>
> This patch use
On Tue, Jan 12, 2016 at 11:47 AM, Bin Meng wrote:
> On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
>> The QEMU fw_cfg interface allows the guest to retrieve various data
>> information from QEMU. For example, APCI/SMBios tables, number of online
>> cpus, kernel data and command line, etc.
>>
>>
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> Rename 'find_cpu_by_apid_id' to 'find_cpu_by_apic_id'. This should be a
> typo.
>
> Signed-off-by: Miao Yan
> Reviewed-by: Simon Glass
> Reviewed-by: Bin Meng
> ---
applied to u-boot-x86/next, thanks!
___
On Tue, Jan 12, 2016 at 11:48 AM, Bin Meng wrote:
> On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
>> Add a cpu uclass driver for qemu. Previously, the qemu target gets cpu
>> number from board dts files, which are manually created at compile time.
>> This does not scale when more cpus are assig
On Tue, Jan 12, 2016 at 11:48 AM, Bin Meng wrote:
> On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
>> Use actual CPU number, instead of maximum cpu configured, to allocate
>> stack memory in 'load_sipi_vector'
>>
>> Signed-off-by: Miao Yan
>> Reviewed-by: Simon Glass
>> Reviewed-by: Bin Meng
On Thu, Jan 7, 2016 at 5:31 PM, Miao Yan wrote:
> By default, ramdisk load address is defined to 0200 in env string.
> When loading bzImage to 0100 (default address), there's a chance that
> the ramdisk header would be overwritten by the kernel. Thus increase the
> gap and make ramdisk loa
Hi Miao,
On Tue, Jan 12, 2016 at 10:04 AM, Miao Yan wrote:
> Hi Bin,
>
> 2016-01-07 17:31 GMT+08:00 Miao Yan :
>> The fw_cfg interface provided by QEMU allow guests to retrieve various
>> information
>> about the system, e.g. cpu number, variaous firmware data, kernel setup,
>> etc. The
>> fw_c
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> Use actual CPU number, instead of maximum cpu configured, to allocate
> stack memory in 'load_sipi_vector'
>
> Signed-off-by: Miao Yan
> Reviewed-by: Simon Glass
> Reviewed-by: Bin Meng
> ---
> arch/x86/cpu/mp_init.c | 6 +++---
> 1 file change
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> Add a cpu uclass driver for qemu. Previously, the qemu target gets cpu
> number from board dts files, which are manually created at compile time.
> This does not scale when more cpus are assigned to guest as the dts files
> must be modified as well
On Thu, Jan 7, 2016 at 5:32 PM, Miao Yan wrote:
> The QEMU fw_cfg interface allows the guest to retrieve various data
> information from QEMU. For example, APCI/SMBios tables, number of online
> cpus, kernel data and command line, etc.
>
> This patch adds support for QEMU fw_cfg interface.
>
> Sig
> -Original Message-
> From: Scott Wood [mailto:o...@buserror.net]
> Sent: Tuesday, January 12, 2016 1:47 AM
> To: Qianyu Gong ; u-boot@lists.denx.de
> Cc: b07...@freescale.com; b48...@freescale.com;
> wenbin.s...@freescale.com; Mingkai Hu
> Subject: Re: [U-Boot] [Patch V3 3/3] armv8/ls10
Hi,
On Tue, Jan 12, 2016 at 1:21 AM, Vishnu Patekar
wrote:
> Add dts and defconfig for Banana-pi M3 board.
>
> It has 2G LPDDR3, UART, ethernet, USB, HDMI, USB Sata, MIPI DSI,
> mic, AP6212 Wifi, etc on it.
> It is paired with AXP813 PMIC which is almost same as AXP818.
>
> Signed-off-by: Vishnu
Hi Simon,
On 2016-1-12 0:58, Simon Glass wrote:
Hi Jeffy,
On 8 January 2016 at 03:51, Jeffy Chen wrote:
Hi Simon,
On 2016-1-8 11:34, Simon Glass wrote:
Hi Jeffy,
On 4 January 2016 at 00:50, Jeffy Chen wrote:
The android kernel is using appended dtb by default, and store
ramdisk right aft
Hello
I am making a bigeffort to try to acquire knowledge regarding embedded Linux.
Myprimary reference is the book entitled 'Embedded Linux Primer, SecondEdition
A Practical, Real-World Approach' by Christopher Hallinan,published 2010
I have reachedchapter 7, 'Bootloaders', and I am having a fe
The hps_isw_handoff and bsp/generated folders are typically not in the same
path. This patch adds support for specifying the different input directories
for the bsp and quartus projects.
Signed-off-by: Dalon Westergreen
Acked-by: Marek Vasut
---
Changes for v2:
- Add commit message
Changes f
The hps_isw_handoff and bsp/generated folders are typically not in the same
path. This patch adds support for specifying the different input directories
for the bsp and quartus projects.
Signed-off-by: Dalon Westergreen
Acked-by: Marek Vasut
---
Changes for v2:
- Add commit message
Changes f
The hps_isw_handoff and bsp/generated folders are typically not in the same
path. This patch adds support for specifying the different input directories
for the bsp and quartus projects.
Signed-off-by: Dalon Westergreen
Acked-by: Marek Vasut
---
arch/arm/mach-socfpga/qts-filter.sh | 69 ++
The hps_isw_handoff and bsp/generated folders are typically not in the same
path.This patch adds support for specifying the different input directories for
the bsp and quartus projects.
Signed-off-by: Dalon Westergreen
Acked-by: Marek Vasut
Acked-by: Chin Liang See
---
Changes for v2:
- Add c
Signed-off-by: Dalon Westergreen
---
arch/arm/mach-socfpga/qts-filter.sh | 69 -
1 file changed, 38 insertions(+), 31 deletions(-)
diff --git a/arch/arm/mach-socfpga/qts-filter.sh
b/arch/arm/mach-socfpga/qts-filter.sh
index c1640bc..835ca2c 100755
--- a/arch/
Hi Bin,
2016-01-07 17:31 GMT+08:00 Miao Yan :
> The fw_cfg interface provided by QEMU allow guests to retrieve various
> information
> about the system, e.g. cpu number, variaous firmware data, kernel setup, etc.
> The
> fw_cfg interface can be accessed through 3 IO ports (on x86), using x86 in/
On Tuesday, January 12, 2016 at 02:49:14 AM, Dalon Westergreen wrote:
> The hps_isw_handoff and bsp/generated folders are typically not in the same
> path. This patch adds support for specifying the different input
> directories for the bsp and quartus projects.
Still not aligned to 80 :-) But I a
On Tue, 2016-01-12 at 01:31 +0100, Marek Vasut wrote:
> On Tuesday, January 12, 2016 at 01:26:58 AM, Chin Liang See wrote:
> > On Mon, 2016-01-11 at 15:33 -0800, Dalon Westergreen wrote:
>
[...]
>
> btw. Completely off-topic, but is there any chance altera will
> release the
> algorithm to comp
On Tuesday, January 12, 2016 at 01:26:58 AM, Chin Liang See wrote:
> On Mon, 2016-01-11 at 15:33 -0800, Dalon Westergreen wrote:
> > The hps_isw_handoff and bsp/generated folders are typically not in
> > the same path. This patch adds support for specifying the different
> > input directories for t
On Mon, 2016-01-11 at 15:33 -0800, Dalon Westergreen wrote:
> The hps_isw_handoff and bsp/generated folders are typically not in
> the same path. This patch adds support for specifying the different
> input directories for the bsp and quartus projects.
>
> Signed-off-by: Dalon Westergreen
> Acked
On Tuesday, January 12, 2016 at 12:33:18 AM, Dalon Westergreen wrote:
> The hps_isw_handoff and bsp/generated folders are typically not in the same
> path. This patch adds support for specifying the different input
> directories for the bsp and quartus projects.
The commit message is still not ali
On Monday, January 11, 2016 at 11:51:10 PM, Dalon Westergreen wrote:
> The hps_isw_handoff and bsp/generated folders are typically not in the same
> path. This patch adds support for specifying the different input
> directories for the bsp and quartus projects.
Next time, please align to 80 chars
On Monday, January 11, 2016 at 11:28:37 PM, Dalon Westergreen wrote:
Please add a commit message explaining why this change is needed. I have no
comments about the patch, so just add my
Acked-by: Marek Vasut
when you repost. I will pick it for the next release.
Also, it's a good idea to CC Din
On Mon, Jan 11, 2016 at 04:19:49PM -0200, Fabio Estevam wrote:
> Hi Wolfgang,
>
> On Thu, Jan 7, 2016 at 2:43 PM, Wolfgang Denk wrote:
>
> > Sorry for the delay. I used the Xmas break to update our machines to
> > FC23, and for some unclear reason the Inotify System Scheduler stopped
> > running
On Monday, January 11, 2016 at 10:39:46 PM, Mateusz Kulikowski wrote:
> On 06.01.2016 22:04, Marek Vasut wrote:
> > On Wednesday, January 06, 2016 at 07:21:21 PM, Mateusz Kulikowski wrote:
> >> This driver is able to reconfigure OTG controller into HOST mode.
> >> Board can add board-specific initi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Hi,
On 11.01.2016 17:58, Simon Glass wrote:
> Hi,
>
> On 6 January 2016 at 11:21, Mateusz Kulikowski
> wrote:
>> This commit add support for 96Boards Dragonboard410C.
[...]
>> + usb_hub_reset_n_pm {
>> + gpios = <&pmic_gpios 2
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Hi,
On 07.01.2016 11:23, Sjoerd Simons wrote:
> On Wed, 2016-01-06 at 19:21 +0100, Mateusz Kulikowski wrote:
>> This commit add support for 96Boards Dragonboard410C.
>>
>> diff --git a/include/configs/dragonboard410c.h
>> b/include/configs/dragonbo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
Hi Simon ,
On 11.01.2016 17:57, Simon Glass wrote:
[...]
>> @@ -0,0 +1,10 @@
>> +menu "SPMI support"
>> +
>> +config DM_SPMI
>
> Can we just use SPMI, or is that is use? We want to remove all the DM_
> options when everything is converted to driver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
On 06.01.2016 22:04, Marek Vasut wrote:
> On Wednesday, January 06, 2016 at 07:21:21 PM, Mateusz Kulikowski wrote:
>> This driver is able to reconfigure OTG controller into HOST mode.
>> Board can add board-specific initialization as board_prepare_us
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
On 08.01.2016 00:18, Simon Glass wrote:
> Hi,
>
> On 7 January 2016 at 15:12, Mateusz Kulikowski
[...]
>>> On Wednesday, January 06, 2016 at 07:21:17 PM, Mateusz Kulikowski wrote:
The following options can be now enabled via defconfig:
-
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
On 11.01.2016 17:57, Simon Glass wrote:
> Hi,
>
> On 6 January 2016 at 11:21, Mateusz Kulikowski
> wrote:
[...]
>> +static int msm_gpio_get_function(struct udevice *dev, unsigned offset)
>> +{
>> + struct msm_gpio_bank *priv = dev_get_priv(de
On Thu, Jan 07, 2016 at 10:23:42AM -0700, Simon Glass wrote:
> Due to a limitation removed in an earlier patch, USB tests were not seeing
> all the devices. Update the tests to pass now that all devices are visible.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
sig
From: Fabio Estevam
As the lowlevel_init function is empty we should better
remove this assembly file entirely and use a dummy C
function instead.
Signed-off-by: Fabio Estevam
---
board/freescale/mx25pdk/Makefile| 1 -
board/freescale/mx25pdk/lowlevel_init.S | 10 --
board/fre
Hi Wolfgang,
On Thu, Jan 7, 2016 at 2:43 PM, Wolfgang Denk wrote:
> Sorry for the delay. I used the Xmas break to update our machines to
> FC23, and for some unclear reason the Inotify System Scheduler stopped
> running. I restarted it now, and all data should be up to date now.
>
> Sorry for c
On Mon, 2016-01-11 at 14:19 +0100, Stefano Babic wrote:
> Hi Fabio,
>
> On 11/01/2016 13:22, Fabio Estevam wrote:
> > Update my email address to the NXP account.
> >
> > Signed-off-by: Fabio Estevam
> > ---
> > .mailmap | 2 +-
> > board/freescale/mx25pdk/MAINTA
Hi Joe,
On Mon, 2016-01-11 at 11:55 -0600, Joe Hershberger wrote:
> Hi Alexey,
>
> On Mon, Jan 11, 2016 at 11:50 AM, Alexey Brodkin
> wrote:
> > Hi Joe,
> >
> > On Mon, 2016-01-11 at 10:54 -0600, Joe Hershberger wrote:
> > > Hi Alexey,
> > >
> > > On Mon, Jan 11, 2016 at 3:45 AM, Alexey Brodki
Hi Alexey,
On Mon, Jan 11, 2016 at 11:50 AM, Alexey Brodkin
wrote:
> Hi Joe,
>
> On Mon, 2016-01-11 at 10:54 -0600, Joe Hershberger wrote:
>> Hi Alexey,
>>
>> On Mon, Jan 11, 2016 at 3:45 AM, Alexey Brodkin
>> wrote:
>> > Hi Joe,
>> >
>> > On Wed, 2015-12-23 at 19:44 +0300, Alexey Brodkin wrote:
Am Montag, den 11.01.2016, 22:29 +0800 schrieb Wills Wang:
>
> On 01/11/2016 06:55 PM, Purna Chandra Mandal wrote:
> > On 01/09/2016 10:02 PM, Daniel Schwierzeck wrote:
> >
> > > This patch series updates all MIPS asm header files containing
> > > I/O code as well as processor, register and assem
This property allows to specify fastest connection mode supported by
the MAC (as opposed to features of the phy).
There are situations when phy may handle faster modes than the
MAC (or even it's particular implementation or even due to CPU being too
slow).
This property is a standard one in Linux
Hi Joe,
On Mon, 2016-01-11 at 10:54 -0600, Joe Hershberger wrote:
> Hi Alexey,
>
> On Mon, Jan 11, 2016 at 3:45 AM, Alexey Brodkin
> wrote:
> > Hi Joe,
> >
> > On Wed, 2015-12-23 at 19:44 +0300, Alexey Brodkin wrote:
> > > From: Sascha Hauer
> > >
> > > of_set_phy_supported allows overwiting
On Mon, 2016-01-11 at 10:17 +0800, Gong Qianyu wrote:
> diff --git a/board/freescale/ls1043aqds/ls1043aqds.c
> b/board/freescale/ls1043aqds/ls1043aqds.c
> index d6696ca..770b79f 100644
> --- a/board/freescale/ls1043aqds/ls1043aqds.c
> +++ b/board/freescale/ls1043aqds/ls1043aqds.c
> @@ -43,15 +43,19
Add dts and defconfig for Banana-pi M3 board.
It has 2G LPDDR3, UART, ethernet, USB, HDMI, USB Sata, MIPI DSI,
mic, AP6212 Wifi, etc on it.
It is paired with AXP813 PMIC which is almost same as AXP818.
Signed-off-by: Vishnu Patekar
---
arch/arm/dts/Makefile| 3 +-
arch/
Banana-pi M3 has LPDDR3 DRAM. this adds support for LPDDR3 for A83T.
Mostly the timing parameters are different from DDR3.
Signed-off-by: Vishnu Patekar
---
arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c| 54 ---
arch/arm/include/asm/arch-sunxi/dram_sun8i_a83t.h | 5 +++
Different A83T boards have different DRAM types. Banapi M3 has LPDDR3,
Allwinner Homlet v1.2 has DDR3.
This adds groundwork to support for new DRAM type for A83T.
Introduce CONFIG_DRAM_TYPE, It'll be 3 for DDR3 and 7 for LPDDR3, must
be set in respective board defconfig.
Signed-off-by: Vishnu Pa
This removes the redundant lines of code from mctl_sys_init.
Signed-off-by: Vishnu Patekar
---
arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c | 5 -
1 file changed, 5 deletions(-)
diff --git a/arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c
b/arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c
index d757e40
This adds LPDDR3 support for A83T and support for Banana Pi M3 which has LPDDR3.
These patches are based on u-boot-sunxi next branch.
These patches tesed on Banana-pi M3. DCDC5 voltage is kept as 1.2V
changes from v1 -> v2
1. introduce CONFIG_DRAM_TYPE for A83T default 3(DDR3),
removed D
Stefano,
On 01/11/2016 05:20 AM, Stefano Babic wrote:
>
> Thanks - I ask all other Freescalers whose name is in a MAINTAINERS
> file. Should you update your e-mail address as well ? Maybe do we
> replace any occurence ofFreescale with NXP ?
>
I think all copyright and author information should
On 11/01/2016 18:06, York Sun wrote:
> Stefano,
>
> On 01/11/2016 05:20 AM, Stefano Babic wrote:
>>
>> Thanks - I ask all other Freescalers whose name is in a MAINTAINERS
>> file. Should you update your e-mail address as well ? Maybe do we
>> replace any occurence ofFreescale with NXP ?
>>
>
> I
Hi Robert,
On 16 December 2015 at 05:02, Robert P. J. Day wrote:
>
> perusing the code related to the global data ptr and noticed in
> common/board_f.c:
>
> /*
> * Pointer to initial global data area
> *
> * Here we initialize it if needed.
> */
> #ifdef XTRN_DECLARE_GLOBAL_DATA_PTR
> #unde
On 01/11/2016 03:45 AM, Michal Simek wrote:
Hi Stephen,
On 8.1.2016 19:13, Stephen Warren wrote:
On 01/05/2016 03:58 PM, Stephen Warren wrote:
This tool aims to test U-Boot by executing U-Boot shell commands using
the
console interface. A single top-level script exists to execute or attach
to
On 01/11/2016 08:25 AM, Simon Glass wrote:
Hi Stephen,
On 8 January 2016 at 11:32, Michal Simek wrote:
On 8.1.2016 19:13, Stephen Warren wrote:
On 01/05/2016 03:58 PM, Stephen Warren wrote:
This tool aims to test U-Boot by executing U-Boot shell commands using
the
console interface. A singl
1 - 100 of 162 matches
Mail list logo