Re: [U-Boot] [PATCH] net: execute "miiphy_init" if CONFIG_PHYLIB defined

2014-01-10 Thread Joe Hershberger
CONFIG_CMD_MII and still > use functions like "miiphy_get_dev_by_name". > > In its turn "miiphy_get_dev_by_name" traverses "mii_devs" list which is > not initialized because "miiphy_init" never got called. > > Signed-off-by: Alexey Brodkin

Re: [U-Boot] [PATCH v2 3/3] net: phy: atheros: Fix the masks for AR8031/8035

2014-01-14 Thread Joe Hershberger
git/tree/drivers/net/phy/at803x.c?id=refs/tags/v3.12.6 >> >> With such changes Ethernet is functional on hummingboard solo. >> >> Cc: Joe Hershberger >> Signed-off-by: Fabio Estevam >> Acked-by: Stefano Babic > > Any chance of gett

[U-Boot] Pull request: u-boot-net.git master

2014-01-14 Thread Joe Hershberger
The following changes since commit cddb6b8304bfbc34f43920051256de7fe6c4c0ab: Prepare v2014.01-rc3 (2014-01-13 14:36:17 -0500) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to f66e3ded61aeafc67f3ebb6ab0302b455f102ce3: net: phy:

Re: [U-Boot] [PATCH] ar8031/8033/phy:enable autonegotiation for ar8031/8033

2014-02-25 Thread Joe Hershberger
On Mon, Feb 24, 2014 at 5:54 PM, York Sun wrote: > On 12/22/2013 11:51 PM, Zhao Qiang wrote: > > Function "genphy_parse_link()" used "if (mii_reg & BMSR_ANEGCAPABLE)" > before > > while "if (phydev->supported & SUPPORTED_Autoneg)" now. > > So assign "phydev->supported" to "phydev->drv->features"

Re: [U-Boot] [PATCH v2] net: Add fixed phy driver

2013-11-21 Thread Joe Hershberger
Hi Christian / Andy, On Mon, Sep 2, 2013 at 8:16 PM, Andy Fleming wrote: > On Mon, Sep 2, 2013 at 7:30 AM, Christian Gmeiner < > christian.gmei...@gmail.com> wrote: > >> This patch is needed if the MAC is directly connected to a ethernet switch. >> In my case the FEC MAC is connected to a Micrel

Re: [U-Boot] [PATCH] mii: dump: parameter choice

2013-11-21 Thread Joe Hershberger
Hi Stephan, On Mon, Aug 12, 2013 at 6:05 AM, Stephan Bauroth wrote: > Hi all, > > since no one commented on my prior mail, i just took the liberty to write I apologize about that. I've been preoccupied with other work of late. > a little patch that chooses regs 0-5 if none are specified for 'm

Re: [U-Boot] FW: [PATCH 1/2] drivers/net/designware, do an explicit memory access instead of implicit, re-written assignments to use readl() and writel(), all of this as preperation for making the dri

2013-11-22 Thread Joe Hershberger
Hi Frank, On Fri, Mar 1, 2013 at 4:05 AM, Frank Dols wrote: > [[ ... to get attention again ... see below ...]] > On 2/8/2013 6:22 PM, Frank Dols wrote: >> Good afternoon Vipin and Albert, >> I where wondering, is there any review/update news on the patches I >> submitted a short while ago? >>

[U-Boot] Pull request: u-boot-net.git master

2013-11-22 Thread Joe Hershberger
The following changes since commit c2e5e802ecb7ab668ce9911b210ed68c804b349f: Merge branch 'master' of git://git.denx.de/u-boot-mips (2013-11-17 14:11:34 -0500) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to 2287286be4e268d3d4e

Re: [U-Boot] patchwork not responding

2013-12-10 Thread Joe Hershberger
On Tue, Dec 10, 2013 at 10:24 AM, York Sun wrote: > Is it just me not able to access this server, or the server is down for > some reason? I am also unable to access patchwork. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mail

Re: [U-Boot] [PATCH 1/3] net: sh-eth: Add support R7S72100 of rmobile

2014-06-11 Thread Joe Hershberger
On Wed, Jun 11, 2014 at 10:42 AM, Tom Rini wrote: > > On Mon, Jun 09, 2014 at 06:58:46AM +0900, Nobuhiro Iwamatsu wrote: > > Hi, Tom. > > > > 2014-06-06 22:37 GMT+09:00 Tom Rini : > > > On Fri, Jun 06, 2014 at 11:44:20AM +0900, Nobuhiro Iwamatsu wrote: > > > > > >> ping. > > >> > > >> 2014-01-23 7

[U-Boot] [PATCH v3 3/7] ubi: ubifs: Add documentation for README

2013-04-08 Thread Joe Hershberger
Describe the needed CONFIG tokens to enable UBI and UBIFS support. Signed-off-by: Joe Hershberger --- Changes in v3: - Added documentation for UBI and UBIFS to README Changes in v2: None README | 16 1 file changed, 16 insertions(+) diff --git a/README b/README index 5701016

[U-Boot] [PATCH v3 1/7] ubi: Fix broken cleanup code in attach_by_scanning

2013-04-08 Thread Joe Hershberger
The unwind code was not reversing operations correctly and was causing a hang on any error condition. Signed-off-by: Joe Hershberger --- Changes in v3: None Changes in v2: - Fixed error handling bug that prevents fail-over to default env on error drivers/mtd/ubi/build.c | 8 drivers

[U-Boot] [PATCH v3 0/7] Add support for using an UBI volume for environment

2013-04-08 Thread Joe Hershberger
curly braces on "multi-line" statements - Added extern consistently in header - Cleaned up the msg print silencing - Added curly braces on "multi-line" statements Joe Hershberger (7): ubi: Fix broken cleanup code in attach_by_scanning ubi: Expose a few simple functions fr

[U-Boot] [PATCH v3 6/7] env: Add support for UBI environment

2013-04-08 Thread Joe Hershberger
UBI is a better place for the environment on NAND devices because it handles wear-leveling and bad blocks. Gluebi is needed in Linux to access the env as an MTD partition. Signed-off-by: Joe Hershberger --- Changes in v3: - Added comment to README about using _SILENCE_MSG options Changes in v2

[U-Boot] [PATCH v3 7/7] env: Add redundant env support to UBI env

2013-04-08 Thread Joe Hershberger
Allow the user to specify two UBI volumes to use for the environment Signed-off-by: Joe Hershberger --- Changes in v3: None Changes in v2: - Added curly braces on "multi-line" statements README| 6 +++ common/env_ubi.c

[U-Boot] [PATCH v3 5/7] mtd: Make mtdparts work with pre-reloc env

2013-04-08 Thread Joe Hershberger
nv to not allow sets before the env is relocated. Signed-off-by: Joe Hershberger --- Changes in v3: None Changes in v2: None common/cmd_mtdparts.c | 23 +-- common/cmd_nvedit.c | 4 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/common/cmd_mtdpart

[U-Boot] [PATCH v3 2/7] ubi: Expose a few simple functions from the cmd_ubi

2013-04-08 Thread Joe Hershberger
Part, Read, and Write functionality that will be used by env_ubi. Signed-off-by: Joe Hershberger --- Changes in v3: None Changes in v2: - Added curly braces on "multi-line" statements - Added extern consistently in header common/cmd_ubi.

[U-Boot] [PATCH v3 4/7] ubi: ubifs: Turn off verbose prints

2013-04-08 Thread Joe Hershberger
The prints are out of control. SILENCE! Signed-off-by: Joe Hershberger --- Changes in v3: - Changed the silence to opt-in and added the options to README Changes in v2: - Cleaned up the msg print silencing README| 10 ++ common/cmd_ubi.c | 3 +++ drivers/mtd

Re: [U-Boot] bootm does not work if netconsole is enabled

2013-04-09 Thread Joe Hershberger
Hi Michael, I just tested this on my Zynq target and it worked. However, you make a good point that it is possible for there to be more traces after the eth_halt call. I can't imagine the stack would like that in all situations (since eth_init() will not be called again by netconsole). I think t

Re: [U-Boot] bootm does not work if netconsole is enabled

2013-04-10 Thread Joe Hershberger
Hi Michael, On Wed, Apr 10, 2013 at 5:07 AM, Michael Walle wrote: > On Wed, April 10, 2013 03:51, Joe Hershberger wrote: >> Hi Michael, >> >> I just tested this on my Zynq target and it worked. However, you make >> a good point that it is possible for there

Re: [U-Boot] [PATCH v3 0/7] Add support for using an UBI volume for environment

2013-04-12 Thread Joe Hershberger
Hi Stefan, On Fri, Apr 12, 2013 at 6:30 AM, Tom Rini wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 04/12/2013 02:19 AM, Stefan Roese wrote: >> Hi Joe, >> >> On 12.04.2013 00:26, Tom Rini wrote: >>> On Mon, Apr 08, 2013 at 03:32:45PM -050

Re: [U-Boot] [PATCH] net: nfs: add dynamic wait period

2013-04-12 Thread Joe Hershberger
Hi Matthias and Enric, On Fri, Apr 12, 2013 at 3:08 AM, Enric Balletbo Serra wrote: > Hi all, > > 2013/1/26 Matthias Brugger >> >> 2012/12/11 Matthias Brugger : >> > This patch tackles the time out problem which leads to break the >> > boot process, when loading file over nfs. The patch does two

Re: [U-Boot] [PATCH v2 05/10] powerpc/ppc4xx: Support gdsys multichannel iocon hardware

2013-05-06 Thread Joe Hershberger
Hi Wolfgang, On Mon, May 6, 2013 at 2:15 PM, Wolfgang Denk wrote: > Dear Dirk, > > In message <3628fded6de7e6b4286d3444a7e5e...@gdsys.cc> you wrote: >> >> > total: 3 errors, 0 warnings, 509 lines checked >> >> OK, thanks, that makes sense. Which version of checkpatch are you >> using? Latest u-bo

Re: [U-Boot] [PATCH] usb: asix: Move software resets to basic_init

2013-05-13 Thread Joe Hershberger
On Mon, May 13, 2013 at 10:14 AM, Marek Vasut wrote: > Dear Simon Glass, > >> From: Julius Werner >> >> The ASIX driver calls a basic_init() function during get_info(), so that >> not all initialization tasks need to be redone on every init(). >> Unfortunately, the most important one is still tri

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-05-13 Thread Joe Hershberger
On Sun, May 12, 2013 at 6:33 AM, Andreas Bießmann wrote: > Dear Bo Shen, > > > On 12.03.2013 07:15, Bo Shen wrote: >> >> Add macb support for sama5d3x devices >> >> Signed-off-by: Bo Shen >> --- >> change in v2: >>No change >> --- >> drivers/net/macb.c |6 -- >> 1 file changed, 4 i

Re: [U-Boot] [PATCH 00/10] PXE support updates

2013-05-14 Thread Joe Hershberger
Hi Rob, On Tue, May 14, 2013 at 2:48 PM, Rob Herring wrote: > On Sun, Dec 2, 2012 at 9:00 PM, Rob Herring wrote: >> From: Rob Herring >> >> This is a series of various enhancements and fixes for u-boot pxe support. >> These patches are a result of testing with server side tools like Cobbler >>

Re: [U-Boot] [PATCH v4 2/9] net: Add prototype for update_tftp

2013-05-15 Thread Joe Hershberger
c | 4 > include/net.h | 3 +++ > 3 files changed, 4 insertions(+), 6 deletions(-) Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 3/9] main: Separate out the two abortboot() functions

2013-05-15 Thread Joe Hershberger
make it static. > > At this point there is no further use of CONFIG_MENU in main.c. > > Signed-off-by: Simon Glass > Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-05-23 Thread Joe Hershberger
Hi, On Thu, May 23, 2013 at 1:51 AM, Andreas Bießmann wrote: > Hi Bo, > > On 22.05.13 10:45, Bo Shen wrote: >> Hi Andreas, >> >> On 5/14/2013 05:31, Joe Hershberger wrote: >>> On Sun, May 12, 2013 at 6:33 AM, Andreas Bießmann >>> wrote: >>>

Re: [U-Boot] [PATCH 0/2] make u-boot/drivers/net/designware cache supportive

2013-06-13 Thread Joe Hershberger
Hi Frank, On Tue, Jan 22, 2013 at 10:11 PM, Vipin Kumar wrote: > On 1/22/2013 7:40 PM, Frank Dols wrote: >> >> Hello Vipin, >> As discussed, see included the patches to make your >> u-boot/drivers/net/designware Ethernet device driver cache support aware. > > > You dont need to write u-boot/drive

Re: [U-Boot] [PATCH] fdt: Ensure that libfdt_env.h comes from U-Boot

2013-06-14 Thread Joe Hershberger
Hi Simon, On Wed, Apr 17, 2013 at 10:35 AM, Tom Rini wrote: > On Mon, Mar 11, 2013 at 09:30:27AM -0700, Simon Glass wrote: > >> When building host utilities, we include libfdt.h from the host, not from >> U-Boot. This in turn brings in libfdt_env.h from the host, which can mess >> up the types an

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-06-16 Thread Joe Hershberger
Hi Bo, On Sun, Jun 16, 2013 at 8:11 PM, Bo Shen wrote: > Hi Joe, > > > On 5/24/2013 05:58, Joe Hershberger wrote: >> >> Hi, >> >> On Thu, May 23, 2013 at 1:51 AM, Andreas Bießmann >> wrote: >>> >>> Hi Bo, >>> >>> On

Re: [U-Boot] [PATCH 00/10] PXE support updates

2013-06-16 Thread Joe Hershberger
Hi Rob, On Sun, Jun 16, 2013 at 10:24 AM, Rob Herring wrote: > On Tue, May 14, 2013 at 3:32 PM, Joe Hershberger > wrote: >> Hi Rob, >> >> On Tue, May 14, 2013 at 2:48 PM, Rob Herring wrote: >>> On Sun, Dec 2, 2012 at 9:00 PM, Rob Herring wrote: >>&g

Re: [U-Boot] [PATCH 00/10] PXE support updates

2013-06-21 Thread Joe Hershberger
Hi Rob, On Sun, Jun 16, 2013 at 9:29 PM, Joe Hershberger wrote: > Hi Rob, > > On Sun, Jun 16, 2013 at 10:24 AM, Rob Herring wrote: >> On Tue, May 14, 2013 at 3:32 PM, Joe Hershberger >> wrote: >>> Hi Rob, >>> >>> On Tue, May 14, 2013 at 2:48 PM,

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-06-22 Thread Joe Hershberger
On Tue, Jun 18, 2013 at 10:31 AM, Fabio Estevam wrote: > Hi Joe, > > On Wed, Feb 6, 2013 at 7:18 PM, David Andrey > wrote: >> Add support for Micrel PHY KSZ9031 in phylib, >> including small rework for KSZ9021 to avoid >> code duplication >> >> Signed-off-by: David Andrey >> Cc: Troy Kisky >>

Re: [U-Boot] [PATCH 1/3] net: macb: using AT91FAMILY replace #ifdeferry

2013-06-24 Thread Joe Hershberger
On Mon, Jun 24, 2013 at 9:57 AM, Andreas Bießmann wrote: > Hi Joe, > > On 04/24/2013 09:59 AM, Bo Shen wrote: >> Using CONFIG_AT91FAMILY replace #ifdeferry for atmel SoC >> >> Signed-off-by: Bo Shen >> --- >> drivers/net/macb.c | 10 ++ >> 1 file changed, 2 insertions(+), 8 deletions(-

[U-Boot] Pull request: u-boot-net.git master

2013-06-24 Thread Joe Hershberger
031 Heiko Schocher (2): phylib: add natsemi dp83630 phy phylib: add atheros ar803x phy Henrik Nordström (1): net: Add sunxi (Allwinner) wemac driver Joe Hershberger (3): net: Fix build regression in cmd_pxe.c net: Fix build regression in macb.c net: Correct check for

Re: [U-Boot] [PATCH 08/22] net: Add sunxi (Allwinner) wemac driver

2013-07-08 Thread Joe Hershberger
On Sun, Nov 25, 2012 at 5:41 AM, Henrik Nordström wrote: > This patch adds support for the WEMAC, the ethernet controller included > in the Allwinner A10 SoC. It will get used in the upcoming A10 board > support. > > From: Stefan Roese > Signed-off-by: Stefan Roese > Signed-off-by: Henrik Nordst

Re: [U-Boot] [PATCH 1/2] phy: export genphy_parse_link()

2013-07-08 Thread Joe Hershberger
On Tue, Jan 15, 2013 at 4:41 AM, Yegor Yefremov wrote: > On Wed, Nov 28, 2012 at 11:15 AM, wrote: >> From: Yegor Yefremov >> >> Signed-off-by: Yegor Yefremov Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mai

Re: [U-Boot] [PATCH 2/2] net: add ICPlus PHY driver

2013-07-08 Thread Joe Hershberger
On Wed, Nov 28, 2012 at 4:15 AM, wrote: > From: Yegor Yefremov > > The driver code was taken from Linux kernel source: > drivers/net/phy/icplus.c > > Signed-off-by: Yegor Yefremov Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de htt

Re: [U-Boot] [PATCH 01/10] pxe: Use ethact setting for pxe

2013-07-08 Thread Joe Hershberger
On Sun, Dec 2, 2012 at 9:00 PM, Rob Herring wrote: > From: Rob Herring > > Get the MAC address using eth_getenv_enetaddr_by_index so that the MAC > address of ethact is used. This enables using the a NIC other than the > first one for PXE boot. > > Signed-off-by: Rob Herring Applied series, Tha

Re: [U-Boot] [PATCH v2] pxe: try bootz if bootm fails to find a valid image

2013-07-08 Thread Joe Hershberger
On Mon, Dec 3, 2012 at 1:17 PM, Rob Herring wrote: > From: Rob Herring > > Standard pxelinux servers will typically use a zImage rather than u-boot > image format, so fallback to bootz if bootm fails. > > Signed-off-by: Rob Herring Applied, Thanks. -Joe _

Re: [U-Boot] [PATCH v4 07/10] NET: phy: add 88E1310 PHY initialization

2013-07-08 Thread Joe Hershberger
On Sun, May 26, 2013 at 1:37 PM, Sascha Silbe wrote: > From: Sebastian Hesselbarth > > This adds PHY initialization for Marvell Alaska 88E1310 PHY. > > Signed-off-by: Sebastian Hesselbarth Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.den

Re: [U-Boot] [PATCH v4 08/10] NET: mvgbe: add phylib support

2013-07-08 Thread Joe Hershberger
On Sun, May 26, 2013 at 1:37 PM, Sascha Silbe wrote: > From: Sebastian Hesselbarth > > This add phylib support to the Marvell GBE driver. > > Signed-off-by: Sebastian Hesselbarth > Acked-by: Prafulla Wadaskar > Signed-off-by: Sascha Silbe Applied, Thanks. -Joe

Re: [U-Boot] [PATCH v2 08/10] NET: mvgbe: add support for Dove

2013-07-08 Thread Joe Hershberger
On Tue, Dec 4, 2012 at 2:32 AM, Sebastian Hesselbarth wrote: > Marvell Dove also uses mvgbe as ethernet driver, therefore add support > for Dove to reuse the current driver. > > Signed-off-by: Sebastian Hesselbarth Applied, Thanks. -Joe ___ U-Boot mail

Re: [U-Boot] [PATCH] net: nfs: add dynamic wait period

2013-07-08 Thread Joe Hershberger
On Tue, Dec 11, 2012 at 12:14 PM, Matthias Brugger wrote: > This patch tackles the time out problem which leads to break the > boot process, when loading file over nfs. The patch does two things. > > First of all, we just ignore messages that arrive with a rpc_id smaller > then the client id. We j

Re: [U-Boot] [PATCH v2 1/2] net/designware: Do not select MIIPORT for RGMII interface

2013-07-08 Thread Joe Hershberger
On Thu, Dec 13, 2012 at 5:52 AM, Vipin Kumar wrote: > Do not select MIIPORT for RGMII interface > > Signed-off-by: Vipin Kumar > Acked-by: Stefan Roese Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/lis

Re: [U-Boot] [PATCH v2 2/2] net/macb: Add arch specific routine to get mdio control

2013-07-08 Thread Joe Hershberger
On Thu, Dec 13, 2012 at 5:52 AM, Vipin Kumar wrote: > From: Shiraz Hashim > > SPEAr310 and SPEAr320 Ethernet interfaces share same MDIO lines to control > their > respective phys. Currently there is a fixed configuration in which only a > particular MAC can use the MDIO lines. > > Call an arch s

Re: [U-Boot] [PATCH 1/2] net: make IPaddr type big endian

2013-07-08 Thread Joe Hershberger
On Wed, Jan 16, 2013 at 6:09 PM, Kim Phillips wrote: > for use with sparse. > > Signed-off-by: Kim Phillips > Cc: Joe Hershberger Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/2] net/tftp: sparse fixes

2013-07-08 Thread Joe Hershberger
f-by: Kim Phillips > Cc: Joe Hershberger Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-07-08 Thread Joe Hershberger
On Wed, Feb 6, 2013 at 3:18 PM, David Andrey wrote: > Add support for Micrel PHY KSZ9031 in phylib, > including small rework for KSZ9021 to avoid > code duplication > > Signed-off-by: David Andrey > Cc: Troy Kisky > Cc: Joe Herschberger > Cc: Andy Fleming Applied, Thanks. -Joe ___

Re: [U-Boot] [PATCH] net: Correct check for link-local target IP conflict

2013-07-08 Thread Joe Hershberger
On Fri, Feb 8, 2013 at 2:18 PM, Joe Hershberger wrote: > Make the link-local code conform more completely with the RFC. > > This will prevent ARP queries for the target (such as while it is > rebooting) from causing the device to choose a different link-local > address, thinking t

Re: [U-Boot] [PATCH] add support for Xilinx 1000BASE-X phy (GTX)

2013-07-08 Thread Joe Hershberger
On Thu, Feb 21, 2013 at 7:25 AM, Charles Coldwell wrote: > commit 39695029bc15041c809df3db4ba19bd729c447fa > Author: Charles Coldwell > Date: Tue Feb 19 08:27:33 2013 -0500 > > Changes to support the Xilinx 1000BASE-X phy (GTX/MGT) Applied, Thanks. -Joe

Re: [U-Boot] [PATCH] phylib: Add Atheros AR8035 GETH PHY support

2013-07-08 Thread Joe Hershberger
On Wed, Apr 10, 2013 at 3:23 AM, Xie Xiaobo wrote: > Signed-off-by: Xie Xiaobo Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [Patch v2 0/3] Enable network support on at91sam9n12ek board

2013-07-08 Thread Joe Hershberger
On Tue, Apr 23, 2013 at 9:46 PM, Bo Shen wrote: > This patch set based on the following patch set: > - arm: at91: add at91sam9n12ek board support > - http://patchwork.ozlabs.org/patch/237184/ > > And implement the following things > - add ignore for network block comment style checking >

Re: [U-Boot] [PATCH] net: phy: supplement support for Micrel's KSZ9031

2013-07-08 Thread Joe Hershberger
On Tue, Apr 30, 2013 at 9:57 AM, SARTRE Leo wrote: > Add function ksz9031_phy_extended_write and ksz9031_phy_extended_read > > Signed-off-by: Leo Sartre Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

Re: [U-Boot] [PATCH v4] net: add Faraday FTMAC110 10/100Mbps ethernet support

2013-07-08 Thread Joe Hershberger
igned: O.K > 4 bytes aligned: O.K > > (2) Rx DMA Buffer Address: > 1 bytes aligned: Invalid > 2 bytes aligned: O.K > 4 bytes aligned: Invalid!!! > > Signed-off-by: Kuo-Jung Su > CC: Joe Hershberger > CC: Tom Rini Applied, Thanks. -Joe ___

Re: [U-Boot] [PATCH v4] net: update FTGMAC100 for MMU/D-cache support

2013-07-08 Thread Joe Hershberger
On Tue, May 7, 2013 at 1:33 AM, Kuo-Jung Su wrote: > From: Kuo-Jung Su > > Signed-off-by: Kuo-Jung Su > CC: Joe Hershberger > CC: Tom Rini Applied, Thanks. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mai

Re: [U-Boot] [PATCH 0/3] net: macb: add support for gigabit MAC

2013-07-08 Thread Joe Hershberger
On Wed, Apr 24, 2013 at 2:59 AM, Bo Shen wrote: > This patch add macb support for gigabit MAC, will be used by sama5d3. > Tha patch for sama5d3 is in patchwork: > http://patchwork.ozlabs.org/patch/226795/ > > After this patch is applied, will add gmac support for sama5d3 > > Bo Shen (3): > net

Re: [U-Boot] phylib: add atheros ar803x phy

2013-07-08 Thread Joe Hershberger
On Tue, Jun 4, 2013 at 3:58 AM, Heiko Schocher wrote: > add atheros ar803x phy, used on the upcoming siemens boards. > > Signed-off-by: Heiko Schocher > Cc: Andy Fleming > Cc: Joe Hershberger Applied, Thanks. -Joe ___ U-Boot mail

Re: [U-Boot] phylib: add natsemi dp83630 phy

2013-07-08 Thread Joe Hershberger
On Tue, Jun 4, 2013 at 3:58 AM, Heiko Schocher wrote: > add natsemi dp83630 phy, used on the upcoming siemens boards. > > Signed-off-by: Heiko Schocher > Cc: Andy Fleming > Cc: Joe Hershberger Applied, Thanks. -Joe ___ U-Boot mail

Re: [U-Boot] [PATCH 08/22] net: Add sunxi (Allwinner) wemac driver

2013-07-08 Thread Joe Hershberger
Hi Tom, On Mon, Jul 8, 2013 at 11:16 AM, Tom Rini wrote: > On Mon, Jul 08, 2013 at 10:43:03AM -0500, Joe Hershberger wrote: >> On Sun, Nov 25, 2012 at 5:41 AM, Henrik Nordstr?m >> wrote: >> > This patch adds support for the WEMAC, the ethernet controller included >&

Re: [U-Boot] [PATCH v5 1/1] NET: Improve TFTP booting performance when CONFIG_USB_KEYBOARD

2013-07-08 Thread Joe Hershberger
Hi Jim and Stephen, On Wed, Jul 3, 2013 at 11:01 PM, Jim Lin wrote: > TFTP booting is slow when a USB keyboard is installed and > CONFIG_USB_KEYBOARD is defined. > This fix is to change Ctrl-C polling to every second when NET transfer > is running. > > Signed-off-by: Jim Lin > --- > Changes in v

Re: [U-Boot] [PATCH v3] net: Use ARRAY_SIZE at appropriate places

2013-07-08 Thread Joe Hershberger
RRAY_SIZE. > > Signed-off-by: Axel Lin > Cc: Albert Aribaud > Cc: Ben Warren > Cc: Jean-Christophe PLAGNIOL-VILLARD > Cc: Joe Hershberger > Cc: Marek Vasut > Cc: Mike Frysinger > Cc: Nobuhiro Iwamatsu > Cc: TsiChungLiew > Cc: Wolfgang Denk > Cc: York Sun > -

Re: [U-Boot] [PATCH] net: ftmac110: cosmetics and cleanup

2013-07-08 Thread Joe Hershberger
Hi Kuo-Jung Su, On Wed, Jul 3, 2013 at 9:10 PM, Kuo-Jung Su wrote: > From: Kuo-Jung Su > > 1. Update license statement > > 2. struct ftmac110_regs __iomem *regs -> struct ftmac110_regs *regs. > > 3. Reformat hardware tx/rx descriptor as an uniform one, >and replace uint32_t[2] with uint64_t

Re: [U-Boot] [PATCH 2/2] phy: smsc: LAN8710/8720 are not Gbit PHYs

2013-07-11 Thread Joe Hershberger
On Thu, Jul 11, 2013 at 9:45 PM, Fabio Estevam wrote: > Hi Joe, > > On Thu, Jun 6, 2013 at 9:04 PM, Fabio Estevam wrote: >> From: Fabio Estevam >> >> LAN8710/8720 are 10/100 Mbps PHYs, so fix the '.features' field. >> >> Cc: Joe Hershberger

Re: [U-Boot] [PATCH 2/2] phy: smsc: LAN8710/8720 are not Gbit PHYs

2013-07-11 Thread Joe Hershberger
On Thu, Jul 11, 2013 at 11:57 PM, Joe Hershberger wrote: > On Thu, Jul 11, 2013 at 9:45 PM, Fabio Estevam wrote: >> Hi Joe, >> >> On Thu, Jun 6, 2013 at 9:04 PM, Fabio Estevam wrote: >>> From: Fabio Estevam >>> >>> LAN8710/8720 are 10/100 Mbp

Re: [U-Boot] [PATCH 2/2] phy: smsc: LAN8710/8720 are not Gbit PHYs

2013-07-11 Thread Joe Hershberger
On Fri, Jul 12, 2013 at 12:06 AM, Fabio Estevam wrote: > On Fri, Jul 12, 2013 at 2:00 AM, Joe Hershberger > wrote: > >> On second thought, it's delegated in patchwork to Stefano and it's >> marked rejected. Why is that Stefano? > > Ok, I think I understand

Re: [U-Boot] [RFC PATCH v2 02/15] at91: Correct CONFIG_AUTOBOOT_PROMPT definition for pm9263

2013-02-24 Thread Joe Hershberger
Hi Simon, On Sun, Feb 24, 2013 at 11:26 AM, Simon Glass wrote: > This is not currently used, since autoboot is not enabled for this > board, but the string is missing a parameter. Add it. > Why not enable autoboot for this board so that this setting gets testing? > > Signed-off-by: Simon Glass

Re: [U-Boot] [RFC PATCH v2 01/15] Implement autoconf header file

2013-02-24 Thread Joe Hershberger
Hi Simon, On Sun, Feb 24, 2013 at 11:25 AM, Simon Glass wrote: > Add support for generating an autoconf.h header file that can be used in > the source instead of #ifdef. > > For example, instead of: > > #ifdef CONFIG_VERSION_VARIABLE > setenv("ver", version_string); /* set version varia

Re: [U-Boot] [RFC PATCH v2 03/15] net: Add prototype for update_tftp, and use autoconf

2013-02-24 Thread Joe Hershberger
uto-update\n"); > return 1; > } > diff --git a/include/net.h b/include/net.h > index 970d4d1..23fb947 100644 > --- a/include/net.h > +++ b/include/net.h > @@ -695,6 +695,9 @@ extern void copy_filename(char *dst, const char *src, int > size); > /* get a random source port */ > extern unsigned int random_port(void); > > +/* Update U-Boot over TFTP */ > +extern int update_tftp(ulong addr); > + > /**/ > > #endif /* __NET_H__ */ > -- > 1.8.1.3 Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 04/15] main: Separate out the two abortboot() functions

2013-02-24 Thread Joe Hershberger
> *buffer, > intparse_line (char *, char *[]); > void init_cmd_timeout(void); > void reset_cmd_timeout(void); > -#ifdef CONFIG_MENU > -intabortboot(int bootdelay); > -#endif Is CONFIG_MENU gone at this point? Does it no longer reference abortbo

Re: [U-Boot] [RFC PATCH v2 05/15] main: Move boot_delay code into its own function

2013-02-24 Thread Joe Hershberger
et version variable */ > + } > +#endif /* CONFIG_VERSION_VARIABLE */ > + > +#ifdef CONFIG_SYS_HUSH_PARSER > + u_boot_hush_start(); > +#endif > + > +#if defined(CONFIG_HUSH_INIT_VAR) > + hush_init_var(); > +#endif &

Re: [U-Boot] [RFC PATCH v2 06/15] main: Use autoconf for boot retry feature

2013-02-24 Thread Joe Hershberger
-- > 1 file changed, 33 insertions(+), 41 deletions(-) > Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 07/15] main: Remove CONFIG #ifdefs from the abortboot() code

2013-02-24 Thread Joe Hershberger
> > Signed-off-by: Simon Glass > --- > Changes in v2: None > > common/main.c | 86 > ++- > 1 file changed, 32 insertions(+), 54 deletions(-) > Reviewed-by: Joe Hershberger

Re: [U-Boot] [RFC PATCH v2 08/15] main: Use get/setenv_ulong()

2013-02-24 Thread Joe Hershberger
etions(-) > Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 09/15] main: Use autoconf for boot_delay code

2013-02-24 Thread Joe Hershberger
gt; + if (autoconf_autoboot_keyed()) > + disable_ctrlc(prev); > } > > -# ifdef CONFIG_MENUKEY > - if (menukey == CONFIG_MENUKEY) { > + if (autoconf_menukey() && menukey == autoconf_menukey()) { &

Re: [U-Boot] [RFC PATCH v2 10/15] main: Use autoconf for parser selection

2013-02-24 Thread Joe Hershberger
ist(buff, flag); > + if (need_buff) > + free(buff); > + } > > return rcode; > } > diff --git a/include/hush.h b/include/hush.h > index ecf9222..12c55f4 100644 > --- a/include/hush.h > +++ b/include/hush.h > @@ -36,7 +36,5 @@ int set_local_var(const char *s, int flg_export); > void unset_local_var(const char *name); > char *get_local_var(const char *s); > > -#if defined(CONFIG_HUSH_INIT_VAR) > extern int hush_init_var (void); > #endif > -#endif > -- > 1.8.1.3 > > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 11/15] main: Use autoconf in command line reading

2013-02-24 Thread Joe Hershberger
prompt */ > + if (prompt) { > + plen = strlen(prompt); > + puts(prompt); > + } > + return simple_readline(prompt, plen, buffer, timeout); > } > -#endif > } > > > // > diff --git a/include/command.h b/include/command.h > index 3785eb9..80da938 100644 > --- a/include/command.h > +++ b/include/command.h > @@ -75,10 +75,8 @@ cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t > *table, int table_len); > > extern int cmd_usage(const cmd_tbl_t *cmdtp); > > -#ifdef CONFIG_AUTO_COMPLETE > extern int var_complete(int argc, char * const argv[], char last_char, int > maxv, char *cmdv[]); > extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, > int *colp); > -#endif > > /* > * Monitor Command > diff --git a/include/common.h b/include/common.h > index fb219fd..1457349 100644 > --- a/include/common.h > +++ b/include/common.h > @@ -857,9 +857,7 @@ int pcmcia_init (void); > > #include > > -#ifdef CONFIG_SHOW_ACTIVITY > void show_activity(int arg); > -#endif > > /* Multicore arch functions */ > #ifdef CONFIG_MP > -- > 1.8.1.3 > > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 12/15] main: Use autoconf in main_loop()

2013-02-24 Thread Joe Hershberger
embedded device tree blob */ > int set_cpu_clk_info(void); > +extern int mdm_init(void); /* defined in board.c */ > > /** > * Show the DRAM size in a board-specific way > diff --git a/include/fdt_support.h b/include/fdt_support.h > index 235..cf8f5e0 100644 > --- a/include/fd

Re: [U-Boot] [RFC PATCH v2 14/15] main: Add debug_parser() to avoid #ifdefs

2013-02-24 Thread Joe Hershberger
> common/main.c | 58 +++--- > 1 file changed, 23 insertions(+), 35 deletions(-) > Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 15/15] main: Add debug_bootkeys to avoid #ifdefs

2013-02-24 Thread Joe Hershberger
--- > 1 file changed, 9 insertions(+), 10 deletions(-) > Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2 02/15] at91: Correct CONFIG_AUTOBOOT_PROMPT definition for pm9263

2013-02-27 Thread Joe Hershberger
Hi Simon, On Mon, Feb 25, 2013 at 11:28 PM, Simon Glass wrote: > Hi Joe, > > On Sun, Feb 24, 2013 at 11:53 AM, Joe Hershberger > wrote: >> Hi Simon, >> >> On Sun, Feb 24, 2013 at 11:26 AM, Simon Glass wrote: >>> This is not currently used, since autoboot

Re: [U-Boot] [RFC PATCH v2 01/15] Implement autoconf header file

2013-02-27 Thread Joe Hershberger
Hi Simon, On Mon, Feb 25, 2013 at 12:10 AM, Simon Glass wrote: > Hi Joe, > > On Sun, Feb 24, 2013 at 11:50 AM, Joe Hershberger > wrote: >> Hi Simon, >> >> On Sun, Feb 24, 2013 at 11:25 AM, Simon Glass wrote: >>> Add support for generating an autoconf.h

Re: [U-Boot] [PATCH v3 09/16] main: Use autoconf for boot_delay code

2013-02-27 Thread Joe Hershberger
include/menu.h | 2 -- > 2 files changed, 42 insertions(+), 67 deletions(-) > Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v3 12/16] main: Use autoconf in command line reading

2013-02-27 Thread Joe Hershberger
t; Signed-off-by: Simon Glass > --- > Changes in v3: None > Changes in v2: None > > common/main.c | 164 > -- > include/command.h | 2 - > include/common.h | 2 - > 3 files c

Re: [U-Boot] [RFC PATCH v2 12/15] main: Use autoconf in main_loop()

2013-02-27 Thread Joe Hershberger
Hi Simon, On Mon, Feb 25, 2013 at 11:50 PM, Simon Glass wrote: > Hi Joe, > > On Sun, Feb 24, 2013 at 1:33 PM, Joe Hershberger > wrote: >> Hi Simon, >> >> On Sun, Feb 24, 2013 at 11:26 AM, Simon Glass wrote: >>> Convert main_loop() over to use autoco

Re: [U-Boot] [PATCH v3 13/16] main: Use autoconf in main_loop()

2013-02-27 Thread Joe Hershberger
mon.h | 1 + > include/fdt_support.h | 4 +-- > 3 files changed, 37 insertions(+), 45 deletions(-) > Reviewed-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v3 11/16] main: Fix typos and checkpatch warnings in command line reading

2013-02-27 Thread Joe Hershberger
parate out checkpatch fixes in command line reading code into new patch > > Changes in v2: None > > common/main.c | 22 +++--- > 1 file changed, 11 insertions(+), 11 deletions(-) > Reviewed-by: Joe Hershberger ___ U

Re: [U-Boot] [PATCH] CONFIG_BOOTDELAY default should not affect runtime

2013-02-27 Thread Joe Hershberger
Hi Tom, On Mon, Feb 18, 2013 at 11:20 AM, Tom Rini wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 02/09/2013 11:21 AM, Otavio Salvador wrote: >> Hello Wolfgang, >> >> On Sat, Feb 9, 2013 at 4:54 AM, Wolfgang Denk wrote: >>> D

[U-Boot] [PATCH v2] Allow u-boot to be silent without forcing Linux to be

2013-02-27 Thread Joe Hershberger
That's a bit presumptuous of you, u-boot! Signed-off-by: Joe Hershberger --- Changes in v2: - Added info about the change to README.silent common/cmd_bootm.c | 8 doc/README.silent | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/common/cmd_bootm.c b/c

Re: [U-Boot] [PATCH] CONFIG_BOOTDELAY default should not affect runtime

2013-03-04 Thread Joe Hershberger
Hi Tom, On Fri, Mar 1, 2013 at 2:28 PM, Tom Rini wrote: > On Wed, Feb 27, 2013 at 02:11:31PM -0600, Joe Hershberger wrote: >> Hi Tom, >> >> On Mon, Feb 18, 2013 at 11:20 AM, Tom Rini wrote: >> > -BEGIN PGP SIGNED MESSAGE- >> > Hash: SHA1 >> &

Re: [U-Boot] [PATCH 1/2] env_callback: Mark find_env_callback as static

2013-03-12 Thread Joe Hershberger
Hi Tom, On Tue, Mar 12, 2013 at 11:16 AM, Tom Rini wrote: > This is not called outside of env_callback.c so mark static, remove from > > > Cc: Joe Hershberger > Signed-off-by: Tom Rini > --- > http://lists.denx.de/mailman/listinfo/u-boot Acke

Re: [U-Boot] [PATCH 2/2] SPL: Fix build of CONFIG_SPL_NET_SUPPORT

2013-03-12 Thread Joe Hershberger
r entries so not __start/__end symbol was > generated. > > As the environment is not user modifiable in this particular run-time > (for any variable that had a callback associated with it) we simply > provide an empty env_callback_init in SPL. > > Cc: Joe Hershberger >

Re: [U-Boot] [PATCH 2/5] ubi: ubifs: Turn off verbose prints

2013-03-20 Thread Joe Hershberger
Hi Stefan, Sorry for the delay. On Mon, Feb 11, 2013 at 4:52 AM, Stefan Roese wrote: > On 02/08/2013 09:07 PM, Joe Hershberger wrote: >> The prints are out of control. SILENCE! >> >> Signed-off-by: Joe Hershberger >> --- >> common/cmd_ubi.c | 3 +

Re: [U-Boot] [PATCH 2/5] ubi: ubifs: Turn off verbose prints

2013-03-20 Thread Joe Hershberger
Hi Stefan, On Wed, Mar 20, 2013 at 5:14 AM, Stefan Roese wrote: > I see. This is definitely helpful for your use-case, env in UBI. But I > would like to keep the UBI printf's for all other use cases. Or at least > make it configurable. That makes sense. > How about adding a switch/define, to o

[U-Boot] [PATCH v2 3/6] ubi: ubifs: Turn off verbose prints

2013-03-26 Thread Joe Hershberger
The prints are out of control. SILENCE! Signed-off-by: Joe Hershberger --- Changes in v2: - Cleaned up the msg print silencing common/cmd_ubi.c | 3 +++ drivers/mtd/mtdpart.c | 14 -- drivers/mtd/ubi/ubi.h | 4 fs/ubifs/ubifs.h | 4 4 files changed, 19

[U-Boot] [PATCH v2 2/6] ubi: Expose a few simple functions from the cmd_ubi

2013-03-26 Thread Joe Hershberger
Part, Read, and Write functionality that will be used by env_ubi. Signed-off-by: Joe Hershberger --- Changes in v2: - Added curly braces on "multi-line" statements - Added extern consistently in header common/cmd_ubi.c| 150 +--

[U-Boot] [PATCH v2 5/6] env: Add support for UBI environment

2013-03-26 Thread Joe Hershberger
UBI is a better place for the environment on NAND devices because it handles wear-leveling and bad blocks. Gluebi is needed in Linux to access the env as an MTD partition. Signed-off-by: Joe Hershberger --- Changes in v2: None README| 15 common/Makefile | 1

[U-Boot] [PATCH v2 0/6] Add support for using an UBI volume for environment

2013-03-26 Thread Joe Hershberger
u-boot env. Changes in v2: - Fixed error handling bug that prevents fail-over to default env on error - Added curly braces on "multi-line" statements - Added extern consistently in header - Cleaned up the msg print silencing - Added curly braces on "multi-line" statements

  1   2   3   4   5   6   7   8   9   10   >