Hello
Tom Rini wrote:
> On Tue, Feb 09, 2016 at 04:48:28PM +0100, David Müller wrote:
>> /* call board_init_r */
>> +#if defined(CONFIG_SYS_THUMB_BUILD)
>> +ldr lr, =board_init_r /* this is auto-relocated! */
>> +bx lr
>> +#else
>> ldr pc, =board_init_r /
Hi there,
I'm currently working on our board with Atmel SAM5d3 based on SAMA5d3_xplained
Bootstrap and U-boot. I am having problems with DRAM bring up. Could you help
us? We can pay for this.
Thanks,
Derong
___
U-Boot mailing list
U-Boot@lists.denx.de
With the recent addition of UBI support, this patch will add the preset
parameters to allow for mouting an UBIFS from the 'fs' partition in NAND.
-V2: ubi.mtd=fs instead of ubi.mtd=4
Signed-off-by: Adam Ford
---
include/configs/omap3_logic.h | 6 ++
1 file changed, 6 insertions(+)
diff --g
On 02/09/2016 06:55 PM, Eddy Petrișor wrote:
2016-02-09 19:41 GMT+02:00 Eddy Petrișor :
When cnt reaches 0, any shift operation will keep cnt=0, so the condition
`cnt >= 0` doesn't make sense.
To fix this endless loop, we drop the useless condition and simply break the
loop when cnt reaches 0.
Hi Hans,
I sent a fixup patch yesterday (I managed somehow to send an outdated
patch), did you try the fixup patch?
http://lists.denx.de/pipermail/u-boot/2016-February/245080.html
Pe 9 feb. 2016 11:38 p.m., "Hans de Goede" a scris:
> This commit breaks bootup on sunxi boards, the get stuck
> wh
With commit a058052c [net: phy: do not read configuration register on
reset], phy_reset() will clear the BMCR register. Resulting in bit 12
being cleared (A/N enable). This leads to autonegotiation link problems,
at least on the Marvell Armada ClearFog board. I suspect that other
boards using this
Instead of coding the soft PHY reset function multiple times in marvell.c,
lets call the common phy_reset() function from phy.c.
Signed-off-by: Stefan Roese
Cc: Stefan Agner
Cc: Hao Zhang
Cc: Michal Simek
Cc: Andy Fleming
Cc: Joe Hershberger
---
drivers/net/phy/marvell.c | 23 ++
Hi.
2016-02-10 3:18 GMT+09:00 Tom Rini :
> On Tue, Feb 09, 2016 at 10:53:48AM -0700, Stephen Warren wrote:
>> On 02/09/2016 10:43 AM, Tom Rini wrote:
>> >On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote:
>> >>On 02/09/2016 10:01 AM, Tom Rini wrote:
>> >>>On Tue, Feb 09, 2016 at 08:
CONFIG_SF_DEFAULT_MODE is used to select default SPI mode when using
sf commands. Therefore fix am43xx to use CONFIG_SF_DEFAULT_MODE instead
of CONFIG_DEFAULT_SPI_MODE.
Signed-off-by: Vignesh R
---
include/configs/am43xx_evm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/i
According to Data Manual(SPRS915P) of AM572x, TI QSPI controller on
DRA74 EVM(rev 1.1+) can support up to 64MHz in MODE-0, whereas MODE-3 is
limited to 48MHz. Hence, switch to MODE-0 for better throughput.
Also, add IODelay parameters for the same.
Signed-off-by: Vignesh R
---
board/ti/dra7xx/mu
On 02/09/2016 09:10 PM, Scott Wood wrote:
> On Wed, 2016-02-10 at 02:30 +, york sun wrote:
>>
>> Aneesh and Scott,
>>
>> I need to revisit this patch. Would it be better to change it as below?
>>
>> +#if defined(CONFIG_PHYS_64BIT) && !defined(CONFIG_ARM64)
>> +typedef unsigned long long dma_
On Wed, 2016-02-10 at 02:30 +, york sun wrote:
> On 09/17/2015 03:48 AM, Aneesh Bansal wrote:
> > Data types and I/O functions have been defined for
> > 64 bit physical addresses in arm.
> >
> > Signed-off-by: Aneesh Bansal
> > ---
> > Changes in v3:
> > Corrected the definition of virt_to_ph
On 02/08/2016 10:27 PM, Adam Ford wrote:
> I will take this over from Peter Barada, since I work with it daily
> at Logic PD.
>
> Signed-off-by: Adam Ford
> ---
> board/logicpd/omap3som/MAINTAINERS | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/board/logicpd/omap3som
On 09/17/2015 03:48 AM, Aneesh Bansal wrote:
> Data types and I/O functions have been defined for
> 64 bit physical addresses in arm.
>
> Signed-off-by: Aneesh Bansal
> ---
> Changes in v3:
> Corrected the definition of virt_to_phys() and definition of phys_addr_t.
>
> arch/arm/include/asm/io.h
On Tue, Feb 09, 2016 at 06:04:22PM -0600, Adam Ford wrote:
> With the recent addition of UBI support, this patch will add the preset
> parameters to allow for mouting an UBIFS from the 'fs' partition in NAND.
>
> Signed-off-by: Adam Ford
> ---
> include/configs/omap3_logic.h | 6 ++
> 1 fil
With the recent addition of UBI support, this patch will add the preset
parameters to allow for mouting an UBIFS from the 'fs' partition in NAND.
Signed-off-by: Adam Ford
---
include/configs/omap3_logic.h | 6 ++
1 file changed, 6 insertions(+)
diff --git a/include/configs/omap3_logic.h b/i
Hi Tom,
Here are a few more test patches.
The following changes since commit 39af3d8a0db0aab3f78ae5576f0f5c668505a667:
sniper: Drop references to P970 (2016-02-08 10:24:19 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-dm.git
for you to fetch changes up to c82ce0
On 5 February 2016 at 23:08, Bin Meng wrote:
> The SMSC SIO1007 superio chipset integrates two ns16550 compatible
> serial ports for legacy applications, 16 GPIO pins and some other
> functionalities like power management.
>
> This adds a simple driver to enable serial port and handle GPIO.
>
> Si
Hi Bin,
On 5 February 2016 at 23:08, Bin Meng wrote:
> This adds basic support to Intel Cougar Canyon 2 board, a board
> based on Chief River platform with an Ivy Bridge processor and
> a Panther Point chipset.
>
> Signed-off-by: Bin Meng
> Acked-by: Simon Glass
>
> ---
>
> Changes in v2:
> - C
On 5 February 2016 at 23:08, Bin Meng wrote:
> Wrap initialization codes with #ifndef CONFIG_HAVE_FSP #endif,
> and enable the build for both FSP and non-FSP configurations.
>
> Signed-off-by: Bin Meng
> ---
>
> Changes in v2: None
>
> arch/x86/cpu/ivybridge/Makefile | 2 +-
> arch/x86/cpu/ivyb
On 25 January 2016 at 02:23, Mateusz Kulikowski
wrote:
> This commit add support for 96Boards Dragonboard410C.
> It is board based on APQ8016 Qualcomm SoC, complying with
> 96boards specification.
> Features (present out of the box):
> - 4x Cortex A53 (ARMv8)
> - 2x USB Host port
> - 1x USB Device
On 8 February 2016 at 02:27, Mateusz Kulikowski
wrote:
> First supported chip is APQ8016 (that is compatible with MSM8916).
> Drivers in SoC code:
> - Reset controller (PSHOLD)
> - Clock controller (very simple clock configuration for MMC and UART)
>
> Signed-off-by: Mateusz Kulikowski
> Reviewed
On Tue, Feb 9, 2016 at 12:18 PM, Maxime Ripard <
maxime.rip...@free-electrons.com> wrote:
> On Tue, Feb 09, 2016 at 09:58:10AM -0800, Steve Rae wrote:
> > > > So, to handle MMC versus NAND, I propose that we follow the same
> method
> > > > used throughout 'fastboot':
> > > >
> > > > +#ifdef CONFI
On 8 February 2016 at 02:27, Mateusz Kulikowski
wrote:
> This driver supports GPIOs present on PM8916 PMIC.
> There are 2 device drivers inside:
> - GPIO driver (4 "generic" GPIOs)
> - Keypad driver that presents itself as GPIO with 2 inputs (power and reset)
>
> Signed-off-by: Mateusz Kulikowski
From: Jelle van der Waa
SY8106A is a PMIC which is used on the Allwinner
H3 Orange Pi Pc board. The VOUT1_SEL register is
implemented to set thea default V-CPU voltage to 1200 mV.
Signed-off-by: Jelle van der Waa
[hdego...@redhat.com: Polish Kconfig parts a bit]
Signed-off-by: Hans de Goede
--
This commit breaks bootup on sunxi boards, the get stuck
when running the main u-boot binary at:
CPU: Allwinner H3 (SUN8I)
I2C: ready
DRAM:
This reverts commit 8e7cba048baae68ee0916a8f52b4304277328d5e.
Signed-off-by: Hans de Goede
---
common/memsize.c | 47 ++---
On 8 February 2016 at 02:27, Mateusz Kulikowski
wrote:
> Support SPMI arbiter on Qualcomm Snapdragon devices.
>
> Signed-off-by: Mateusz Kulikowski
> Reviewed-by: Simon Glass
> Tested-by: Simon Glass
> ---
>
> Changes in v3: None
> Changes in v2:
> - Rename DM_SPMI -> SPMI
> - Rename p -> priv
On 8 February 2016 at 02:27, Mateusz Kulikowski
wrote:
> Add support for SD/eMMC controller present on some Qualcomm Snapdragon
> devices. This controller implements SDHCI 2.0 interface but requires
> vendor-specific initialization.
> Driver works in PIO mode as ADMA is not supported by U-Boot (ye
On 8 February 2016 at 02:27, Mateusz Kulikowski
wrote:
> Add support for gpio controllers on Qualcomm Snapdragon devices.
> This devices are usually called Top Level Mode Multiplexing in
> Qualcomm documentation.
>
> Signed-off-by: Mateusz Kulikowski
> Reviewed-by: Simon Glass
> Tested-by: Simon
On 02/08/2016 04:57 PM, York Sun wrote:
> Since a recent merge 5160def "dm: lpuart: Drop the legacy code",
> ls1021aqds_ddr4_nor_lpuart and ls1021aqds_nor_lpuart failed to
> compile because they are using legacy driver for lpuart. Following
> ls1021atwr, ls1021aqds should be converted as well.
>
>
On Tue, Feb 09, 2016 at 09:58:10AM -0800, Steve Rae wrote:
> > > So, to handle MMC versus NAND, I propose that we follow the same method
> > > used throughout 'fastboot':
> > >
> > > +#ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV
> > > total_blocks += blkcnt;
> > > +#endif
> > > +#if
remove logging of the 'skipped' blocks
Signed-off-by: Steve Rae
---
Changes in v2: None
common/image-sparse.c | 6 ++
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/common/image-sparse.c b/common/image-sparse.c
index ef0d232..737e8ea 100644
--- a/common/image-sparse.c
+++ b/
When 7bfc3b1 (sparse: Refactor chunk parsing function) was implemented,
it dropped 9981945 (aboot: fix block addressing for don't care chunk type).
This re-implements the required fix for the "don't care chunk type"...
Signed-off-by: Steve Rae
---
Changes in v2:
Handle MMC device differently th
On Tue, Feb 9, 2016 at 10:08 AM, york sun wrote:
> On 02/09/2016 09:13 AM, Tom Rini wrote:
> > On Tue, Feb 09, 2016 at 05:08:35PM +, york sun wrote:
> >> On 02/09/2016 12:00 AM, Wolfgang Denk wrote:
> >>> Dear York,
> >>>
> >>> In message <
> am4pr0401mb1732ec48981eed9b70ce23859a...@am4pr0401
On Tue, Feb 09, 2016 at 06:57:08PM +0100, Heiko Schocher wrote:
> Hello Tom,
>
> Am 08.02.2016 um 21:46 schrieb Tom Rini:
> >On Tue, Jan 26, 2016 at 08:42:48AM +0100, Heiko Schocher wrote:
> >
> >>introduce a README how to use tbot for testing U-Boot
> >>and/or linux kernels.
> >>
> >>Signed-off-b
On 09.12.2015 20:21, Stefan Agner wrote:
> When doing a software reset, the reset flag should be written without
> other bits set. Writing the current state will lead to restoring the
> state of the PHY (e.g. Powerdown), which is not what is expected from
> a software reset.
>
> Signed-off-by: Ste
When cnt reaches 0, any shift operation will keep cnt=0, so the condition
`cnt >= 0` doesn't make sense.
To fix this endless loop, we drop the useless condition and simply break the
loop when cnt reaches 0.
Signed-off-by: Eddy Petrișor
---
common/memsize.c | 3 ++-
1 file changed, 2 insertions(
On Tue, Feb 09, 2016 at 10:53:48AM -0700, Stephen Warren wrote:
> On 02/09/2016 10:43 AM, Tom Rini wrote:
> >On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote:
> >>On 02/09/2016 10:01 AM, Tom Rini wrote:
> >>>On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote:
>
>
On 02/09/2016 09:13 AM, Tom Rini wrote:
> On Tue, Feb 09, 2016 at 05:08:35PM +, york sun wrote:
>> On 02/09/2016 12:00 AM, Wolfgang Denk wrote:
>>> Dear York,
>>>
>>> In message
>>>
>>> you wrote:
Is there a way to exclude specific emails from the CC list when using
patman?
>
On Tue, Feb 9, 2016 at 9:17 AM, Maxime Ripard <
maxime.rip...@free-electrons.com> wrote:
> Hi,
>
> On Mon, Feb 08, 2016 at 10:04:03AM -0800, Steve Rae wrote:
> > Hi Maxime,
> >
> > On Mon, Feb 8, 2016 at 12:19 AM, Maxime Ripard <
> > maxime.rip...@free-electrons.com> wrote:
> >
> > > Hi Steve,
> >
Hello Tom,
Am 08.02.2016 um 21:46 schrieb Tom Rini:
On Tue, Jan 26, 2016 at 08:42:48AM +0100, Heiko Schocher wrote:
introduce a README how to use tbot for testing U-Boot
and/or linux kernels.
Signed-off-by: Heiko Schocher
Applied to u-boot/master, thanks!
Huh... so fast? Did you found so
2016-02-09 19:41 GMT+02:00 Eddy Petrișor :
> When cnt reaches 0, any shift operation will keep cnt=0, so the condition
> `cnt >= 0` doesn't make sense.
>
> To fix this endless loop, we drop the useless condition and simply break the
> loop when cnt reaches 0.
This should fix the endless issue intr
On 02/09/2016 10:43 AM, Tom Rini wrote:
On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote:
On 02/09/2016 10:01 AM, Tom Rini wrote:
On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote:
On 02/08/2016 05:32 PM, Stephen Warren wrote:
From: Stephen Warren
If BUILD_TAG is
On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote:
> On 02/09/2016 10:01 AM, Tom Rini wrote:
> >On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote:
> >>
> >>
> >>On 02/08/2016 05:32 PM, Stephen Warren wrote:
> >>>From: Stephen Warren
> >>>
> >>>If BUILD_TAG is part of KBUIL
On Tuesday, February 09, 2016 at 04:36:33 PM, Bakhvalov, Denis (Nokia -
PL/Wroclaw) wrote:
> Hi,
Hi!
> Thank you for you responses!
>
> @To Marek:
> > It would be very helpful to see the whole boot output, not just U-Boot
> > output. For example SPL output is missing. Are you using mainline U-B
On 02/09/2016 10:01 AM, Tom Rini wrote:
On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote:
On 02/08/2016 05:32 PM, Stephen Warren wrote:
From: Stephen Warren
If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes,
all files get rebuilt. In a continuous integratio
Hi,
On Mon, Feb 08, 2016 at 10:04:03AM -0800, Steve Rae wrote:
> Hi Maxime,
>
> On Mon, Feb 8, 2016 at 12:19 AM, Maxime Ripard <
> maxime.rip...@free-electrons.com> wrote:
>
> > Hi Steve,
> >
> > On Thu, Feb 04, 2016 at 10:51:00AM -0800, Steve Rae wrote:
> > > Hi Maxime,
> > >
> > > On Thu, Feb
On Tue, Feb 09, 2016 at 05:08:35PM +, york sun wrote:
> On 02/09/2016 12:00 AM, Wolfgang Denk wrote:
> > Dear York,
> >
> > In message
> >
> > you wrote:
> >>
> >> Is there a way to exclude specific emails from the CC list when using
> >> patman?
> >> The no-longer-existed email address go
On 02/09/2016 12:00 AM, Wolfgang Denk wrote:
> Dear York,
>
> In message
>
> you wrote:
>>
>> Is there a way to exclude specific emails from the CC list when using patman?
>> The no-longer-existed email address got rejected by SMTP server.
>
> That';s just papering over the problems, and thus
On Tue, Feb 09, 2016 at 04:48:28PM +0100, David Müller wrote:
> Signed-off-by: David Müller
> ---
> arch/arm/lib/crt0.S | 6 +-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S
> index 2f4c14e..8415f77 100644
> --- a/arch/arm/lib/cr
On Mon, Feb 08, 2016 at 07:06:08PM -0600, Adam Ford wrote:
> Based on the work done by Overo, this seems to help some compilers
> that have a hard time fitting all the code into the allocated space.
>
> Signed-off-by: Adam Ford
Reviewed-by: Tom Rini
--
Tom
signature.asc
Description: Digita
On Thu, Jan 28, 2016 at 05:32:19PM -0600, Joe Hershberger wrote:
> Hi Tom,
>
> Here are the network patches for this round. Should be pretty basic stuff.
>
> Thanks!
> -Joe
>
> The following changes since commit 077678eb0c226e52a1f90edabd3369ab26065b32:
>
> Merge git://git.denx.de/u-boot-dm
On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote:
>
>
> On 02/08/2016 05:32 PM, Stephen Warren wrote:
> >From: Stephen Warren
> >
> >If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes,
> >all files get rebuilt. In a continuous integration environment, the value
>
On 02/08/2016 05:32 PM, Stephen Warren wrote:
From: Stephen Warren
If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes,
all files get rebuilt. In a continuous integration environment, the value
will change every build. This wastes time assuming that incremental
builds would
Fix the BOOTCFG value for eMMC in the same way as commit
214c3f0f9921250eb336c7effadcc16158ea9df5
[imx: MX6DQ{P}/DL:SABRESD Fix bmode eMMC failure]
did for sabresd.
Signed-off-by: Soeren Moch
---
Cc: Stefano Babic
Cc: u-boot@lists.denx.de
---
board/tbs/tbs2910/tbs2910.c | 2 +-
1 file chang
Hi,
Thank you for you responses!
@To Marek:
> It would be very helpful to see the whole boot output, not just U-Boot output.
> For example SPL output is missing. Are you using mainline U-Boot SPL or not ?
Here is the output from SPL:
U-Boot SPL 2013.01.01-svn564 (May 27 2015 - 17:58:12)
Board
Patch 1 fixes a bug in the calling of board_init_r() in THUMB mode.
Patch 2-3 enable THUMB support for the ARM920T architecture.
Patch 4 finally activates THUMB mode for VCMA9.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/lis
Signed-off-by: David Müller
---
arch/arm/lib/crt0.S | 6 +-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S
index 2f4c14e..8415f77 100644
--- a/arch/arm/lib/crt0.S
+++ b/arch/arm/lib/crt0.S
@@ -167,8 +167,12 @@ clbss_l:cmpr0, r1
Signed-off-by: David Müller
---
include/configs/VCMA9.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h
index 42af34f..de7d5c2 100644
--- a/include/configs/VCMA9.h
+++ b/include/configs/VCMA9.h
@@ -20,6 +20,8 @@
* High Level Configuration
Signed-off-by: David Müller
---
arch/arm/cpu/arm920t/Makefile | 6 ++
1 file changed, 6 insertions(+)
diff --git a/arch/arm/cpu/arm920t/Makefile b/arch/arm/cpu/arm920t/Makefile
index 6582938..1832b9d 100644
--- a/arch/arm/cpu/arm920t/Makefile
+++ b/arch/arm/cpu/arm920t/Makefile
@@ -13,3 +13,
Signed-off-by: David Müller
---
arch/arm/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index cd7d880..6defdfb 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -9,7 +9,7 @@ endif
# This selects which instruction set i
On Tuesday, February 09, 2016 at 02:26:37 PM, Purna Chandra Mandal wrote:
> On 02/09/2016 06:48 PM, Marek Vasut wrote:
> > On Tuesday, February 09, 2016 at 01:02:49 PM, Purna Chandra Mandal wrote:
> >> From: Cristian Birsan
> >>
> >> This driver adds support of PIC32 MUSB OTG controller as dual r
2016-02-09 12:14 GMT+02:00 Hannes Schmelzer :
>
> On 02.02.2016 21:15, Eddy Petrișor wrote:
>>
>> The case of memory of size 0 is not that different from a memory of any
>> other
>> size, so we remove the duplicate code and treat the small differences when
>> it
>> is the case.
>>
>> Signed-off-by:
On 02/09/2016 06:48 PM, Marek Vasut wrote:
> On Tuesday, February 09, 2016 at 01:02:49 PM, Purna Chandra Mandal wrote:
>> From: Cristian Birsan
>>
>> This driver adds support of PIC32 MUSB OTG controller as dual role device.
>> It implements platform specific glue to reuse musb core.
>>
>> Signed
On Tuesday, February 09, 2016 at 01:02:49 PM, Purna Chandra Mandal wrote:
> From: Cristian Birsan
>
> This driver adds support of PIC32 MUSB OTG controller as dual role device.
> It implements platform specific glue to reuse musb core.
>
> Signed-off-by: Cristian Birsan
> Signed-off-by: Purna C
Hi,
I am facing problem with U-boot for my Raspberry pi B+ model.
Can you please provide me files(u-boot.bin , start.elf, config.txt &
bootcode.bin) required for U-boot of Raspberry Pi.
Thanks in advance.
Jay
___
U-Boot mailing list
U-Boot@lists.denx.d
Thanks Stephen
> -Original Message-
> From: Stephen Warren [mailto:swar...@wwwdotorg.org]
> Sent: Dienstag, 9. Februar 2016 02:24
> To: Tom Rini
> Cc: Simon Glass ; u-boot@lists.denx.de; Meier, Roger
> ; Daniel Schwierzeck
> ; Heiko Schocher ; Stephen
> Warren
> Subject: [PATCH 2/2] Enab
Enable MUSB host and USB storage support for Microchip
PIC32MZ[DA] Starter Kit.
Signed-off-by: Purna Chandra Mandal
---
arch/mips/dts/pic32mzda.dtsi | 10 ++
arch/mips/dts/pic32mzda_sk.dts | 4
configs/pic32mzdask_defconfig | 6 +-
include/configs/pic32mzdask.h | 7
From: Cristian Birsan
This driver adds support of PIC32 MUSB OTG controller as dual role device.
It implements platform specific glue to reuse musb core.
Signed-off-by: Cristian Birsan
Signed-off-by: Purna Chandra Mandal
---
drivers/usb/gadget/f_mass_storage.c | 2 +
drivers/usb/musb-new/K
On 02.02.2016 21:15, Eddy Petrișor wrote:
The case of memory of size 0 is not that different from a memory of any other
size, so we remove the duplicate code and treat the small differences when it
is the case.
Signed-off-by: Eddy Petrișor
---
v2: Removed patman stuff from commit message
This environment define has been here to work around the LMB
allocation error introduced by commit 9c11135ce053 ("image: fix
getenv_bootm_size() function").
It is no longer needed because the root cause was fixed by commit
0cb389dd1a38 ("image: fix getenv_bootm_size() function again").
Signed-off
Dear York,
In message
you wrote:
>
> Is there a way to exclude specific emails from the CC list when using patman?
> The no-longer-existed email address got rejected by SMTP server.
That';s just papering over the problems, and thus the wrong approach.
The correct thing to do is having the wr
72 matches
Mail list logo