Re: [PATCH v2 2/2] sandbox: add test of CONFIG_ENV_IMPORT_FDT

2021-04-21 Thread Joe Hershberger
On Wed, Apr 21, 2021 at 4:07 AM Rasmus Villemoes wrote: > > Check that a variable defined in /config/environment is found in the > run-time environment, and that clearing fdt_env_path from within that > node works. > > Reviewed-by: Simon Glass > Signed-off-by: Rasmus Vill

Re: [PATCH v2 1/2] env: allow environment to be amended from control dtb

2021-04-21 Thread Joe Hershberger
the DTB should no longer be applied, one simply needs to delete the > fdt_env_path variable; that can even be done automatically by > including a > > fdt_env_path = ""; > > property in the DTB node. > > Reviewed-by: Simon Glass > Signed-off-by: Rasmus Villemoes Cool addition. Acked-by: Joe Hershberger

Re: [PATCH] net: sun8i-emac: Allow all RGMII PHY modes

2021-01-14 Thread Joe Hershberger
On Wed, Jan 13, 2021 at 4:43 PM André Przywara wrote: > > On 30/11/2020 17:23, Heinrich Schuchardt wrote: > > Hi Joe, > > > On 11/16/20 10:46 AM, Andre Przywara wrote: > >> So far all GBit users of the sun8i-emac driver were using the "rgmii" > >> PHY mode, even though this turns out to be mostly

Re: [PATCH 01/12] net: smc911x: Remove pkt_data_{push,pull}

2020-03-16 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 11:59 AM Marek Vasut wrote: > > These functions are never used and are likely a pre-DM remnant > from times long past, just remove them. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 02/12] net: smc911x: Replace malloc()+memset() with calloc()

2020-03-16 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 12:00 PM Marek Vasut wrote: > > Replace combination of malloc()+memset() with calloc() as the behavior > is exactly the same and the amount of code is reduced. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 05/12] net: smc911x: Fix potential memleak() in init fail path

2020-03-16 Thread Joe Hershberger
gned-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 06/12] net: smc911x: Inline all functions from header file

2020-03-16 Thread Joe Hershberger
M example, however that one has to be rewritten > anyway, roughly such that the SMC911x driver would expose DM EEPROM > interface and the standalone example would use that. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 07/12] net: smc911x: Drop weak alias from 32bit accessors

2020-03-16 Thread Joe Hershberger
n decide better. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 08/12] net: smc911x: Convert IO accessors to {read, write}{w, l}()

2020-03-16 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 12:00 PM Marek Vasut wrote: > > Convert the IO accessors to standard ones instead of using volatile > void pointers, as those do not cover all the bus access details. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 09/12] net: smc911x: Pass around driver private data

2020-03-16 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 12:01 PM Marek Vasut wrote: > > Introduce a private data structure for this driver with embedded > struct eth_device and pass it around. This prepares the driver to > work with both DM and non-DM systems. > > Signed-off-by: Marek Vasut > Cc:

Re: [PATCH 10/12] net: smc911x: Clean up the status handling in smc911x_recv()

2020-03-17 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 12:01 PM Marek Vasut wrote: > > Invest the status handling logic in smc911x_recv(), to make the > function easier to read, no functional change. Invest -> Invert > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada > ---

Re: [PATCH 11/12] net: smc911x: Split non-DM specific bits from common code

2020-03-17 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 12:01 PM Marek Vasut wrote: > > Split network handling functions into non-DM specific parts and > common code in preparation for conversion to DM. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Masahiro Yamada Acked-by: Joe Hershberger

Re: [PATCH 12/12] net: smc911x: Add DM support

2020-03-17 Thread Joe Hershberger
On Sun, Mar 15, 2020 at 12:01 PM Marek Vasut wrote: > > Add support for U-Boot DM and DT probing. Furthermore, build the > SMC911x standalone EEPROM example only for the non-DM case, as it > is not converted yet. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger

Re: [PATCH] [RFC] net: smc911x: Drop the standalone EEPROM example

2020-03-17 Thread Joe Hershberger
to DM real hard. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger > Cc: Tom Rini Acked-by: Joe Hershberger

Re: [PATCH 01/14] drivers: net: add Layerscape mEMAC MDIO driver

2020-03-17 Thread Joe Hershberger
On Thu, Mar 12, 2020 at 11:24 AM Ioana Ciornei wrote: > > Add a driver for the MDIO interface integrated in the mEMAC (Multi-rate > Ethernet Media Access Controller) and the Fman 10G Ethernet MACs. > > Signed-off-by: Ioana Ciornei > --- > drivers/net/Kconfig | 7 ++ > drivers/net/Makefil

Re: [PATCH 02/14] drivers: net: ldpaa: add support for probing based on the DTS

2020-03-17 Thread Joe Hershberger
On Thu, Mar 12, 2020 at 11:26 AM Ioana Ciornei wrote: > > When CONFIG_DM_ETH is enabled DPAA2 network interfaces will now probe > based on DTS nodes with the "fsl,qoriq-mc-dpmac" compatible. > In this case, transform the ldpaa_eth driver into a UCLASS_ETH driver > and reuse the _open()/_tx()/_stop

Re: [PATCH] [RFC] net: smc911x: Drop the standalone EEPROM example

2020-03-17 Thread Joe Hershberger
Hi Tom, On Tue, Mar 17, 2020 at 7:59 PM Tom Rini wrote: > > On Tue, Mar 17, 2020 at 07:54:51PM -0500, Joe Hershberger wrote: > > On Tue, Mar 17, 2020 at 1:55 PM Tom Rini wrote: > > > > > > On Tue, Mar 17, 2020 at 07:53:58PM +0100, Marek Vasut wrote: > > &g

Re: [PATCH] net: macb: Fix incorrect write function name when MACB_ZYNQ is enabled.

2020-03-30 Thread Joe Hershberger
B_MCF’? > writel((value), (port)->regs + MACB_##reg) > ^ > > It has been caused by changing macros name by commit below. > > Fixes: 6c636514d499 ("net: macb: sync header definitions as taken from Linux") > Signed-off-by: Michal Simek Acked-by: Joe Hershberger

Re: [PATCH] net: phy: micrel: ksz8061 implement errata 80000688A fix

2020-03-30 Thread Joe Hershberger
tine. > > Signed-off-by: Bryan O'Donoghue Acked-by: Joe Hershberger

Re: zynq_z_turn_defconfig: broken networking

2020-04-07 Thread Joe Hershberger
Is there a chance that something is wrong with ps7_init_gpl.c ? > > >>> The Ethernet PHY doesn't work in Linux too with the similar error > > >>> message. > > >> > > >> Did you validate any golden images that phy is fine? > > > >

Re: [PATCH] MAINTAINERS: Add maintainer to network subsystem

2021-02-01 Thread Joe Hershberger
TAINERS > +++ b/MAINTAINERS > @@ -893,6 +893,7 @@ F: arch/nds32/ > > NETWORK > M: Joe Hershberger > +M: Ramon Fried > S: Maintained > T: git https://gitlab.denx.de/u-boot/custodians/u-boot-net.git > F: drivers/net/ > -- > 2.29.2 > Acked-by: Joe Hershberger

Re: [PATCH v2 06/12] phy: atheros: fix AR8021 PHY ID mask

2020-03-05 Thread Joe Hershberger
On Thu, Dec 5, 2019 at 5:02 PM Michael Walle wrote: > > The upper bits are all the OUI. > > Signed-off-by: Michael Walle Acked-by: Joe Hershberger

Re: [PATCH v2 08/12] phy: atheros: introduce debug read and write functions

2020-03-05 Thread Joe Hershberger
On Thu, Dec 5, 2019 at 5:00 PM Michael Walle wrote: > > Provide functions to read and write the Atheros debug registers. > > Signed-off-by: Michael Walle Acked-by: Joe Hershberger

Re: [PATCH v2 09/12] phy: atheros: move delay config to common function

2020-03-05 Thread Joe Hershberger
On Thu, Dec 5, 2019 at 5:03 PM Michael Walle wrote: > > Signed-off-by: Michael Walle Acked-by: Joe Hershberger

Re: [PATCH v2 10/12] phy: atheros: add device tree bindings and config

2020-03-05 Thread Joe Hershberger
mmit adds support to > switch the internal LDO to 1.8V. > > Signed-off-by: Michael Walle Acked-by: Joe Hershberger

Re: [PATCH v2 11/12] phy: atheros: ar8035: remove static clock config

2020-03-05 Thread Joe Hershberger
eaks your board it probably > depends on the clock output of your Atheros AR8035 PHY. Please have a > look at doc/device-tree-bindings/net/phy/atheros.txt. You need to set > "clk-out-frequency = <12500>" because that value was the hardcoded > value until this commit. &g

Re: [PATCH v2 12/12] phy: atheros: consolidate {ar8031|ar8035}_config()

2020-03-05 Thread Joe Hershberger
On Thu, Dec 5, 2019 at 5:05 PM Michael Walle wrote: > > The two functions are now exactly the same, remove one of them. > > Signed-off-by: Michael Walle Acked-by: Joe Hershberger

Re: [PATCH 1/2] drivers: net: phy: aquantia: drop XGMII as a valid system interface proto

2020-03-05 Thread Joe Hershberger
: Florin Chiculita > Signed-off-by: Alex Marginean Acked-by: Joe Hershberger

Re: [PATCH 2/2] drivers: net: phy: aquantia: make it less verbose

2020-03-05 Thread Joe Hershberger
On Wed, Dec 4, 2019 at 7:42 AM Alex Marginean wrote: > > The driver now unconditionally prints some information that's not > universally useful. Replace printf with debug. > > Signed-off-by: Alex Marginean Acked-by: Joe Hershberger

Re: [PATCH] doc: net: Rewrite network driver documentation

2020-03-05 Thread Joe Hershberger
the original text at the end, to help > understanding old drivers. Add some hints on how to port drivers over. > > This also uses the opportunity to reformat the document in reST, on the > way moving it into doc/driver-model and adding it into the structure > there. > > Signed-off-by:

Re: [PATCH] net: phy: Fix overlong PHY timeout

2020-03-05 Thread Joe Hershberger
easing from the typical 4 seconds to over three minutes. > > Adjust the timeout counter evaluation by that factor of 50 to bring the > timeout back to the intended value. > > Signed-off-by: Andre Przywara Acked-by: Joe Hershberger

Re: [PATCH] net: eth-uclass: Do not return error when no MAC is found

2020-03-05 Thread Joe Hershberger
orrect: > > Error: ethernet@5b04 address not set. > > Error: ethernet@5b04 address 00:00:00:00:00:00 illegal value > eth0: ethernet@5b04 > Error: ethernet@5b04 address 00:00:00:00:00:00 illegal value > > Signed-off-by: Fabio Estevam Acked-by: Joe Hershberger

Re: [PATCH v2] net: phy: add XFI, USXGMII types to is_10g_interface() helper

2020-03-05 Thread Joe Hershberger
y: Alex Marginean Acked-by: Joe Hershberger

Re: [PATCH] net: phy: dp83867: Add SGMII mode type switching

2020-03-05 Thread Joe Hershberger
n done in mainline Linux by > commit a2111c460c0c ("net: phy: dp83867: Add documentation for SGMII mode > type") > and by commit 507ddd5c0d47 ("net: phy: dp83867: Add SGMII mode type > switching") > > Signed-off-by: Michal Simek Acked-by: Joe Hershberger

Re: [PATCH] net: eth-uclass: Do not return error when no MAC is found

2020-03-10 Thread Joe Hershberger
Hi Fabio, On Thu, Jan 9, 2020 at 12:29 PM Fabio Estevam wrote: > > On some i.MX8QXP MEK boards with no MAC address stored, the following > hang is seen: > > Error: ethernet@5b04 address not set. > > (Board hangs) > > One way to avoid this issue is to select CONFIG_NET_RANDOM_ETHADDR, so > tha

Re: [PATCH v2 00/12] phy: atheros: dt bindings and cleanup

2020-03-10 Thread Joe Hershberger
Hi Michael, On Tue, Jan 7, 2020 at 5:07 AM Michael Walle wrote: > > Hi all, > > Am 2019-12-05 23:57, schrieb Michael Walle: > > [RESEND because I've forgot to add the mailinglist. Sorry!] > > > > This patch series superseeds the following two: > > From Vladimir Oltean > > https://patchwork.ozla

Re: [PATCH] net: eth-uclass: Do not return error when no MAC is found

2020-03-11 Thread Joe Hershberger
On Tue, Mar 10, 2020 at 1:34 PM Fabio Estevam wrote: > > Hi Joe, > > On Tue, Mar 10, 2020 at 2:45 PM Joe Hershberger > wrote: > > > I tried to apply this but it breaks the unit tests. I guess you didn't > > try "ut dm" in sandbox? > > > &g

Re: [U-Boot] [PATCH v2 1/1] net: avoid address-of-packed-member error

2019-11-05 Thread Joe Hershberger
lify the checksumming of the last message byte. > > Signed-off-by: Heinrich Schuchardt Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH] net/phy: Fix phy_connect() for phy addr 0

2019-11-07 Thread Joe Hershberger
hy addr '0' > > in phy_connect() whereas expected value is '0'. > > > > > > Signed-off-by: Priyanka Jain > > Reported-by: tetsu-aoki via github Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v4 13/42] common: Move env_get_ip() to net.h

2019-11-18 Thread Joe Hershberger
On Thu, Nov 14, 2019 at 2:05 PM Simon Glass wrote: > > This function relates to networking, so move it out of the common.h > header file. > > Signed-off-by: Simon Glass > Reviewed-by: Tom Rini Nit below, but... Acked-by: Joe Hershberger > --- > > Changes in v4:

Re: [U-Boot] [PATCHv2 2/5] env: Remove useless CONFIG_ENV_SIZE_REDUND and fix ENV_IS_REDUND check

2019-11-18 Thread Joe Hershberger
t; this is for where env_internal.h checks for if we should set > ENV_IS_EMBEDDED. This seems like the most likely use, historically, of > the variable, but it was not used. Add logic to check for this now. > > Cc: Wolfgang Denk > Cc: Joe Hershberger > Signed-off-by

Re: [U-Boot] [PATCH 1/8] net: phy: ti: rename ti.c to dp83867.c

2019-11-19 Thread Joe Hershberger
On Mon, Nov 18, 2019 at 3:12 PM Grygorii Strashko wrote: > > The driver ti.c is actually driver for TI DP83867x PHYs, so rename it > accordingly. > > Signed-off-by: Grygorii Strashko Acked-by: Joe Hershberger ___ U-Boot mail

Re: [U-Boot] [PATCH] env: Provide programmatic equivalent to 'setenv -f'

2019-11-19 Thread Joe Hershberger
Hi James, On Tue, Nov 19, 2019 at 11:32 AM James Byrne wrote: > > Add env_force() to provide an equivalent to 'setenv -f' that can be used > programmatically. > > Also tighten up the definition of argv in _do_env_set() so that > 'const char *' pointers are used. > > Signed-off-by: James Byrne >

Re: [U-Boot] [PATCH] env: Provide programmatic equivalent to 'setenv -f'

2019-11-19 Thread Joe Hershberger
On Tue, Nov 19, 2019 at 3:01 PM Simon Goldschmidt wrote: > > Heinrich Schuchardt schrieb am Di., 19. Nov. 2019, > 21:56: > > > On 11/19/19 9:30 PM, Simon Goldschmidt wrote: > > > Am 19.11.2019 um 18:31 schrieb James Byrne: > > >> Add env_force() to provide an equivalent to 'setenv -f' that can be

Re: [U-Boot] [PATCH 2/8] net: phy: dp83867: move static initialization to .probe()

2019-11-19 Thread Joe Hershberger
On Mon, Nov 18, 2019 at 3:08 PM Grygorii Strashko wrote: > > Move static, one-time initialization to .probe() callback. > > Signed-off-by: Grygorii Strashko Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://l

Re: [U-Boot] [PATCH 3/8] dt-bindings: phy: dp83867: Add documentation for disabling clock output

2019-11-19 Thread Joe Hershberger
doesn't seem useful to be able > to describe the mux setting when the output is disabled. > > Document that PHY's default setting will be left as is if the property > is omitted. > > Signed-off-by: Grygorii Strashko Acked-by: Joe Hershberger __

Re: [U-Boot] [PATCH 6/8] net: phy: dp83867: io impedance is not dependent on RGMII delay

2019-11-19 Thread Joe Hershberger
; were enabled. There is no reason for this. Move the IO impedance block > out of the RGMII delay block. > > Signed-off-by: Grygorii Strashko Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 7/8] net: phy: dp83867: refactor rgmii configuration

2019-11-19 Thread Joe Hershberger
On Mon, Nov 18, 2019 at 3:35 PM Grygorii Strashko wrote: > > Refactor SGMII configuration to group all settings together and reduce > number of MDIO transactions. > > Signed-off-by: Grygorii Strashko Acked-by: Joe Hershberger ___ U-Bo

Re: [U-Boot] [PATCH 4/8] net: phy: dp83867: Add ability to disable output clock

2019-11-19 Thread Joe Hershberger
> Omitting the property will leave the setting as is (which was the previous > behavior in this case). > > Out of range values were silently converted into DP83867_CLK_O_SEL_REF_CLK. > Change this so they generate an error. > > Signed-off-by: Grygorii Stras

Re: [U-Boot] [RESEND PATCH] net: tftp: Fix tftp store address check in store_block()

2019-11-19 Thread Joe Hershberger
rved memory") > Signed-off-by: Bin Meng Odd corner case, but sure... Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 5/8] net: phy: dp83867: rework delay rgmii delay handling

2019-11-19 Thread Joe Hershberger
de is > selected as RX or TX delay only > - validates the delay values and fail if they are not in range > - checks if the board is strapped to have a delay and is configured to use > "rgmii" mode and warning is generated that "rgmii-id" should have been > used.

Re: [U-Boot] [PATCH 8/8] arm: dts: k3-am654-base-board-u-boot: change cpsw2g interface mode to rgmii-rxid

2019-11-19 Thread Joe Hershberger
an TX delay in this > case. > > Signed-off-by: Grygorii Strashko Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH] Makefile: fix processing of default environment file

2019-11-19 Thread Joe Hershberger
On Wed, Apr 17, 2019 at 1:56 AM Samuel Mescoff wrote: > > Allow the default environment file to contain long lines split into > multiples lines. > > Leading white spaces can be added for readability as well. > > Signed-off-by: Samuel Mescoff Acke

Re: [U-Boot] [PATCH 1/1] env: Exit tools when invalid CRC found

2019-11-19 Thread Joe Hershberger
Hi Tom, On Tue, May 7, 2019 at 10:21 AM Molloy, Philip wrote: > > On Sun, 2019-05-05 at 08:50 -0400, Tom Rini wrote: > > Conceptually, yes, this is correct. However, the behavior in > > question > > has been deployed for so long that I don't feel that we can change it > > at > > this point, so I

Re: [U-Boot] [PATCH v2] fw_setenv: avoid writing environment when nothing has changed

2019-11-19 Thread Joe Hershberger
y: Rasmus Villemoes Nit below, but Acked-by: Joe Hershberger > --- > Add logic to ensure a corrupt copy gets replaced, even if fw_setenv > wouldn't change anything in the good copy. > > tools/env/fw_env.c | 20 +++- > 1 file changed, 19 insertions(+), 1

Re: [U-Boot] [PATCH] env: Update env_addr for mmc environment driver

2019-11-19 Thread Joe Hershberger
On Tue, Nov 19, 2019 at 5:44 AM Pankit Garg wrote: > > Signed-off-by: Pankit Garg Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH v3] Update MAINTAINERS to include environment files

2019-11-20 Thread Joe Hershberger
To be maintained by me (Joe) and reviewed by Wolfgang Denk when available. Signed-off-by: Joe Hershberger --- Changes in v3: - Re-add Wolfgang, but only as a reviewer Changes in v2: - Remove Wolfgang from listed maintainer MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff

Re: [U-Boot] [PATCH 1/6] dma: Introduce dma_get_cfg() interface

2019-11-20 Thread Joe Hershberger
e, introduce > dma_get_cfg() interface to get DMA provider specific data from client > device. Clients can use unique configuration ID flags to get different > configuration data from DMA driver. > > Signed-off-by: Vignesh Raghavendra Acked-by: Joe Hershberger ___

Re: [U-Boot] [PATCH 4/6] net: ti: am65-cpsw-nuss: Add new compatible for J721e

2019-11-20 Thread Joe Hershberger
On Mon, Nov 18, 2019 at 5:00 AM Vignesh Raghavendra wrote: > > Add new compatible to handle J721e SoC > > Signed-off-by: Vignesh Raghavendra Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 3/6] net: ti: am65-cpsw-nuss: Rework RX flow ID handling

2019-11-20 Thread Joe Hershberger
. > > Signed-off-by: Vignesh Raghavendra Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 5/6] arm: dts: k3-j721e-common-proc-board: Add DMA and CPSW related DT nodes

2019-11-20 Thread Joe Hershberger
On Mon, Nov 18, 2019 at 5:01 AM Vignesh Raghavendra wrote: > > Add DT nodes related to DMA and CPSW to -u-boot.dtsi to get networking > up on J721e EVM. > > Signed-off-by: Vignesh Raghavendra Acked-by: Joe Hershberger ___ U-Boot mail

Re: [U-Boot] [PATCH 2/6] dma: ti: k3-udma: Implement dma_get_cfg() interface

2019-11-20 Thread Joe Hershberger
ider and > configure it in CPSW HW. > > Signed-off-by: Vignesh Raghavendra Acked-by: Joe Hershberger ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 6/6] configs: j721e_evm_a72_defconfig: Enable DMA and Ethernet

2019-11-20 Thread Joe Hershberger
On Mon, Nov 18, 2019 at 5:00 AM Vignesh Raghavendra wrote: > > Enable configs related to DMA and Ethernet so as to support networking at > U-Boot prompt > > Signed-off-by: Vignesh Raghavendra Acked-by: Joe Hershberger ___ U-Boot mail

Re: [PATCH 01/12] net: ks8851: Replace malloc()+memset() with calloc()

2020-04-16 Thread Joe Hershberger
gt; return code. > > Signed-off-by: Marek Vasut > Cc: Eugen Hristev > Cc: Joe Hershberger Acked-by: Joe Hershberger

Re: [PATCH 01/13] net: rtl8139: Register macro cleanup

2020-04-16 Thread Joe Hershberger
> > Signed-off-by: Marek Vasut > Cc: Joe Hershberger Acked-by: Joe Hershberger

Re: [PATCH 02/13] net: rtl8139: Rework eeprom_delay() macro

2020-04-16 Thread Joe Hershberger
n. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger Acked-by: Joe Hershberger

Re: [PULL] u-boot-sh/net

2020-07-27 Thread Joe Hershberger
On Mon, Jul 27, 2020 at 5:40 AM Marek Vasut wrote: > > More networking DM conversion (this is the last driver). > Any news on Joe ? Sorry, guys, I'm back home in Texas now and have had a lot going on keeping me swamped. I aim to get caught up soon. Any idea how accurate my patchwork queue is?

Re: [RFC PATCH] tools: env: Add an option to have an empty default environment

2020-08-14 Thread Joe Hershberger
icular target. Rather than > trying to have a set of defaults that work for every target add a config > option to make the default environment completely empty. > > Signed-off-by: Chris Packham Acked-by: Joe Hershberger

Re: [U-Boot] [PATCH] net: eth-uclass: Remove warning about ROM MAC address

2020-02-09 Thread Joe Hershberger
g Soeren's and Fabio's point of view here and I'm > > > in favor of merging this patch or if preferred, change the printf() to > > > debug(). > > > > > > Reviewed-by: Frieder Schrempf > > > > Any feedback, please? Traditionally the env was the source of truth for the MAC, so using the ROM was a fall-back if the env didn't have one. But times change, I guess. I'll pull this into my next PR. Acked-by: Joe Hershberger

Re: [PATCH V2] net: smc911x: Automatically Update ethaddr with MAC

2020-09-28 Thread Joe Hershberger
et. > > Signed-off-by: Adam Ford Acked-by: Joe Hershberger

Re: [PATCH] drivers: net: bcm-sf2: pass -1 to phy_connect()

2019-12-20 Thread Joe Hershberger
r way. > > Signed-off-by: Alex Marginean > Cc: Jiandong Zheng Acked-by: Joe Hershberger

Re: [PATCH 1/1] net: tftp: use correct printf codes

2020-01-05 Thread Joe Hershberger
On Wed, Jan 1, 2020 at 4:16 PM Heinrich Schuchardt wrote: > > When printing unsigned numbers use %u. > > Signed-off-by: Heinrich Schuchardt Acked-by: Joe Hershberger

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 ___

  1   2   3   4   5   6   7   8   9   10   >