On 04/03/15 22:35, Ajay Kumar wrote:
> Add support for the eDP panel supported on peach_pi.
>
> Changes since V1:
> -- Address comments for clock changes
> -- Remove the use of GPIO enums, and use DT to specify GPIOs.
> Changes since V2:
> -- Address comments for clock patch and
Dear Tom,
The following changes since commit d68df028099235c5316eec1ed5f586f3744a8707:
Merge git://git.denx.de/u-boot-arc (2015-04-03 09:14:44 -0400)
are available in the git repository at:
http://git.denx.de/u-boot-samsung
for you to fetch changes up to 1018b0a56a4719a64fb6867337a72d6a9
On 26/03/15 19:11, Sjoerd Simons wrote:
> On Wed, 2015-03-25 at 16:49 -0400, Tom Rini wrote:
>> On Wed, Mar 25, 2015 at 08:54:16PM +0100, Sjoerd Simons wrote:
>>> On Wed, 2015-03-25 at 12:58 -0400, Tom Rini wrote:
On Wed, Mar 25, 2015 at 09:32:45AM +0100, Sjoerd Simons wrote:
> On Wed, 201
On 01/04/15 19:34, Lukasz Majewski wrote:
> After this change it is possible to boot trats2 device with Image.itb,
> which facilitates automated testing, since only one file is necessary.
>
> Signed-off-by: Lukasz Majewski
> ---
> include/configs/trats2.h | 8 ++--
> 1 file changed, 6 insert
On 01/04/15 19:34, Lukasz Majewski wrote:
> After this change it is possible to boot trats device with Image.itb,
> which facilitates automated testing, since only one file is necessary.
>
> Signed-off-by: Lukasz Majewski
> ---
> include/configs/trats.h | 8 ++--
> 1 file changed, 6 insertio
On 01/04/15 19:34, Lukasz Majewski wrote:
> This change allows using Image.itb image format with Exynos4 devices
> (especially trats and trats2).
> Such change facilitates automated testing since only one binary needs
> to be prepared.
>
> Signed-off-by: Lukasz Majewski
> ---
> include/configs/e
On 31/03/15 18:07, Minkyu Kang wrote:
> Hi,
>
> On Thursday, March 26, 2015, Simon Glass wrote:
>
>> Hi Minkyu,
>>
>> On 24 March 2015 at 01:45, Minkyu Kang >
>> wrote:
>>> hi,
>>>
>>> On 20 March 2015 at 02:06, Guillaume Gardet >
>>> ');>>
>> wrote:
>>>
Ping.
Guillaume
Hi Simon,
On 04/05/2015 11:31 AM, Simon Glass wrote:
Hi Gabriel,
On 1 April 2015 at 05:20, Gabriel Huau wrote:
Hi Simon,
On 03/31/2015 07:32 PM, Simon Glass wrote:
Hi Gabriel,
On 27 February 2015 at 01:52, Bin Meng wrote:
Hi Gabriel,
On Fri, Feb 27, 2015 at 3:54 PM, gabriel huau
wrote
Hi Masahiro,
On 5 April 2015 at 21:08, Masahiro Yamada wrote:
>
> Hi Simon, Tom,
>
>
> 2015-04-06 3:31 GMT+09:00 Simon Glass :
> > Hi Tom,
> >
> > On 1 April 2015 at 05:19, Tom Rini wrote:
> >> On Tue, Mar 31, 2015 at 08:39:57PM -0600, Simon Glass wrote:
> >>
> >>> Hi Masahiro,
> >>>
> >>> On 30
Hi Pavel,
2015-04-02 21:47 GMT+09:00 Pavel Machek :
> Hi!
>
>> >> Signed-off-by: Masahiro Yamada
>> >> ---
>> >>
>> >> arch/arm/Kconfig | 6 ++
>> >> configs/socfpga_arria5_defconfig | 3 ---
>> >> configs/socfpga_cyclone5_defconfig | 3 ---
>> >> configs/socfpga_socrate
Hi Simon, Tom,
2015-04-06 3:31 GMT+09:00 Simon Glass :
> Hi Tom,
>
> On 1 April 2015 at 05:19, Tom Rini wrote:
>> On Tue, Mar 31, 2015 at 08:39:57PM -0600, Simon Glass wrote:
>>
>>> Hi Masahiro,
>>>
>>> On 30 March 2015 at 05:59, Masahiro Yamada
>>> wrote:
>>> > Since the Kconfig conversion, bo
Since the Kconfig conversion, boards.cfg scanned by MAKEALL is
generated by tools/genboardscfg.py. Every board is supposed to have
its own MAINTAINERS that contains maintainer and status information,
but, in fact, MAINTAINERS is missing from some boards.
For such boards, the first field, Status,
Hi Marek,
On 26 March 2015 at 13:40, Marek Vasut wrote:
> On Wednesday, March 25, 2015 at 07:21:48 PM, Simon Glass wrote:
>> This series adds driver model support to USB. The intent is to permit the
>> various subsystems (OHCI, EHCI, XHCI) to co-exist and allow any number of
>> USB ports of diffe
Switch this board over to use driver model for Ethernet.
Signed-off-by: Simon Glass
---
Changes in v2:
- Drop bugfix patches that were incorporated in the Ethernet dm conversion
- Drop the CONFIG_BOOTP_VCI_STRING patch
configs/Linksprite_pcDuino3_defconfig | 1 +
1 file changed, 1 insertion(+)
When driver model is used for Ethernet a few functions are passed a udevice
instead of an eth_device. Also add a function to find a PHY type given its
name. This will be used to decode the device tree node.
Finally, put a phy_interface field in struct eth_pdata since this is an
important part of t
Adjust the Ethernet initialisation code to support driver model.
It is no-longer necessary to call designware_initialize(). The device will
be probed when it is used. The PHY type and GMAC base will come from the
device tree.
Signed-off-by: Simon Glass
---
Changes in v2:
- Remove unwanted printf
Adjust the error handling to use errno.h instead of returning -1. Change
leaf functions to pass in the arguments they require rather than struct
eth_device. Apart from simplifying the code it makes is easier to reuse
these functions for driver model, since mostly they actually only use
struct dw_et
This function is not supported with driver model.
Signed-off-by: Simon Glass
Acked-by: Joe Hershberger
---
Note from Joe Hershberger
At this point I don't see much value in listing the Ethernet devices in
bdinfo. It seems like a bit of a spurious thing to display and as such I
didn't feel like
Move this to Kconfig and clean up board config files that use it. Also
rename it to CONFIG_ETH_DESIGNWARE to fit with the naming that exists
in drivers/net/Kconfig.
Signed-off-by: Simon Glass
Version 1:
Acked-by: Joe Hershberger
---
Changes in v2:
- Add Ethernet for Orangepi, galileo
- Add Eth
Since we will use these bindings on sunxi, bring them in from Linux
4.0-rc1.
Signed-off-by: Simon Glass
Acked-by: Ian Campbell
---
Changes in v2: None
.../net/allwinner,sun4i-emac.txt | 19 +++
.../net/allwinner,sun4i-mdio.txt | 27 ++
.../net/a
Add driver model support to the designware driver. This reuses most of the
existing code except for some duplication in the probe() method.
Signed-off-by: Simon Glass
---
Changes in v2:
- Use the new recv() method and the free_pkt() method
drivers/net/designware.c | 167 +++
At present even with driver model is used there is still much manual init
of related devices: PHY, environment and board init. Until these requirements
are dealt with in another way we need to keep them around.
Break out the init portion of the legacy eth_initialize() into a separate
function and
Some driver want to put DMA buffers in their private data. Add a flag
to tell driver model to align driver-private data to a cache boundary so
that DMA will work correctly in this case.
Signed-off-by: Simon Glass
---
This patch can be dropped once this one is applied:
http://patchwork.ozlabs.org
This series enables driver model Ethernet for the pcDuino3, converting the
designware Ethernet MAC in the process. It also moves all sunxi board to
use Kconfig for their basic Ethernet settings.
This series is based on u-boot-dm/next and requires Joe's patch here:
http://patchwork.ozlabs.org/patc
We currently have Linksprite_pcDuino3 and Linksprite_pcDuino3_fdt. Drop the
former in favour of the latter.
Signed-off-by: Simon Glass
Acked-by: Hans de Goede
Acked-by: Ian Campbell
---
Changes in v2:
- Rebase on dm/next
configs/Linksprite_pcDuino3_defconfig | 7 +++
configs/Linkspr
Hi Paul,
On 5 April 2015 at 14:56, Paul Kocialkowski wrote:
> Le dimanche 05 avril 2015 à 12:31 -0600, Simon Glass a écrit :
>> Hi Paul,
>>
>> On 4 April 2015 at 14:49, Paul Kocialkowski wrote:
>> > Sunxi platforms come with at least 3 TWI (I2C) controllers and some
>> > platforms
>> > even hav
Hi Paul,
On 5 April 2015 at 14:49, Paul Kocialkowski wrote:
> Hi Simon, thanks for the review,
>
> Le dimanche 05 avril 2015 à 12:31 -0600, Simon Glass a écrit :
>> Hi Paul,
>>
>> On 28 March 2015 at 11:34, Paul Kocialkowski wrote:
>> > Signed-off-by: Paul Kocialkowski
>> > ---
>> > common/fdt
Hi Hans,
Le dimanche 05 avril 2015 à 10:44 +0200, Hans de Goede a écrit :
> Hi,
>
> On 05-04-15 09:51, Paul Kocialkowski wrote:
> > Changes since v2:
> > * I2C/TWI busses enable for Cubietruck as well
> >
> > Changes since v1:
> > * Kconfig option to enable I2C/TWI controllers 1-4 (when applicabl
Le dimanche 05 avril 2015 à 12:31 -0600, Simon Glass a écrit :
> Hi Paul,
>
> On 4 April 2015 at 14:49, Paul Kocialkowski wrote:
> > Sunxi platforms come with at least 3 TWI (I2C) controllers and some
> > platforms
> > even have up to 5. This adds support for every controller on each supported
>
Hi Simon, thanks for the review,
Le dimanche 05 avril 2015 à 12:31 -0600, Simon Glass a écrit :
> Hi Paul,
>
> On 28 March 2015 at 11:34, Paul Kocialkowski wrote:
> > Signed-off-by: Paul Kocialkowski
> > ---
> > common/fdt_support.c | 25 +
> > common/image-fdt.c|
Hi Tom,
On 1 April 2015 at 05:19, Tom Rini wrote:
> On Tue, Mar 31, 2015 at 08:39:57PM -0600, Simon Glass wrote:
>
>> Hi Masahiro,
>>
>> On 30 March 2015 at 05:59, Masahiro Yamada
>> wrote:
>> > Since the Kconfig conversion, boards.cfg scanned by MAKEALL is
>> > generated by tools/genboardscfg.p
Hi Paul,
On 28 March 2015 at 11:34, Paul Kocialkowski wrote:
> Signed-off-by: Paul Kocialkowski
> ---
> common/fdt_support.c | 25 +
> common/image-fdt.c| 4
> include/fdt_support.h | 1 +
> 3 files changed, 30 insertions(+)
>
This needs a commit message and
Hi Josh,
On 31 March 2015 at 20:54, Josh Wu wrote:
> Hi, Simon
>
> On 4/1/2015 10:04 AM, Simon Glass wrote:
>>
>> Hi Josh,
>>
>> On 30 March 2015 at 19:54, Josh Wu wrote:
>>>
>>> Make cover letter shows like 0/x, 00/xx and 000/xxx etc.
>>>
>>> Signed-off-by: Josh Wu
>>> ---
>>
>> This is a quir
Hi Paul,
On 4 April 2015 at 14:49, Paul Kocialkowski wrote:
> Sunxi platforms come with at least 3 TWI (I2C) controllers and some platforms
> even have up to 5. This adds support for every controller on each supported
> platform, which is especially useful when using expansion ports on
> single-
Hi Gabriel,
On 1 April 2015 at 05:20, Gabriel Huau wrote:
> Hi Simon,
>
>
> On 03/31/2015 07:32 PM, Simon Glass wrote:
>>
>> Hi Gabriel,
>>
>> On 27 February 2015 at 01:52, Bin Meng wrote:
>>>
>>> Hi Gabriel,
>>>
>>> On Fri, Feb 27, 2015 at 3:54 PM, gabriel huau
>>> wrote:
Hi Bin,
>>>
Hi Tom,
On 1 April 2015 at 05:47, Tom Rini wrote:
> The help text for -V says we will pass V=1 but all it really did was not
> pass in -s. Change the logic to pass make V=1 with given to buildman -V or
> -s to make otherwise.
>
> Cc: Simon Glass
> Signed-off-by: Tom Rini
> ---
> tools/buildma
Hi Przemyslaw,
On 3 April 2015 at 10:08, Przemyslaw Marczak wrote:
> Hello Simon,
>
> On 03/29/2015 03:07 PM, Simon Glass wrote:
>>
>> Hi Prazemyslaw,
>>
>> On 24 March 2015 at 14:30, Przemyslaw Marczak
>> wrote:
>>>
>
>>> + UCLASS_PMIC,
>>> +
>>> UCLASS_COUNT,
>>> UCLASS
On 2 April 2015 at 20:51, Josh Wu wrote:
> Make cover letter shows like 0/x, 00/xx and 000/xxx etc.
>
> Signed-off-by: Josh Wu
> ---
>
> Changes in v2:
> - use math.log10() function instead
>
> tools/patman/patchstream.py | 7 +--
> 1 file changed, 5 insertions(+), 2 deletions(-)
Acked-by:
Hi Przemyslaw,
On 3 April 2015 at 10:09, Przemyslaw Marczak wrote:
> Hello Simon,
>
>
> On 03/29/2015 03:07 PM, Simon Glass wrote:
>>
>> Hi Przemyslaw,
>>
>> On 24 March 2015 at 14:30, Przemyslaw Marczak
>> wrote:
[snip]
>
>>> +
>>> + info->min_uV = fdtdec_get_int(gd->fdt_blob, offset,
>
Hi Joe,
On 3 April 2015 at 19:09, Joe Hershberger wrote:
> Some drivers need a chance to manage their receive buffers after the
> packet has been handled by the network stack. Add an operation that
> will allow the driver to be called in that case.
>
> Reported-by: Simon Glass
> Signed-off-by: J
Hi Przemyslaw,
On 3 April 2015 at 10:11, Przemyslaw Marczak wrote:
> Hello Simon,
>
> On 03/29/2015 03:05 PM, Simon Glass wrote:
>>
>> Hi Przemyslaw,
>>
>> On 24 March 2015 at 14:30, Przemyslaw Marczak
>> wrote:
>>>
>>> Hello,
>>> Here is the third RFC version of the new PMIC framework.Big thank
Hi,
On 05-04-15 09:51, Paul Kocialkowski wrote:
Changes since v2:
* I2C/TWI busses enable for Cubietruck as well
Changes since v1:
* Kconfig option to enable I2C/TWI controllers 1-4 (when applicable)
* Following patch to enable exposed busses on a few community-supported
single-board-compute
This enables the exposed I2C/TWI busses on a few single-board-computers
(Olimex and Cubietech).
Signed-off-by: Paul Kocialkowski
---
configs/A10-OLinuXino-Lime_defconfig | 2 ++
configs/A10s-OLinuXino-M_defconfig| 2 ++
configs/A13-OLinuXinoM_defconfig | 2 ++
configs/A13-OLinuXino_def
Sunxi platforms come with at least 3 TWI (I2C) controllers and some platforms
even have up to 5. This adds support for every controller on each supported
platform, which is especially useful when using expansion ports on single-board-
computers.
Signed-off-by: Paul Kocialkowski
---
arch/arm/incl
Changes since v2:
* I2C/TWI busses enable for Cubietruck as well
Changes since v1:
* Kconfig option to enable I2C/TWI controllers 1-4 (when applicable)
* Following patch to enable exposed busses on a few community-supported
single-board-computers
This series adds support for every i2c controlle
Orion5x, Kirkwood and Armada XP platforms come with a single TWSI (I2C) MVTWSI
controller. However, other platforms using MVTWSI may come with more: this is
the case on Allwinner (sunxi) platforms, where up to 4 controllers can be found
on the same chip.
Signed-off-by: Paul Kocialkowski
---
arch
46 matches
Mail list logo