Re: [U-Boot] [PATCH 0/4] net: phy: Add Broadcom BCM53xx switch driver

2017-11-26 Thread Florian Fainelli


On 10/29/2017 08:30 PM, Florian Fainelli wrote:
> Le 10/19/17 à 21:45, Stefan Roese a écrit :
>> On 19.10.2017 23:50, Florian Fainelli wrote:
>>> On 10/14/2017 06:00 PM, Florian Fainelli wrote:
 (this time after subscribing to the list)

 Hi all,

 This patch series adds support for the Broadcom BCM53xx switches, in
 particular
 BCM53125 which is found no the Lamobo R1 board.
>>>
>>> Thanks Stefan for the review. I suppose Joe should now queue those up,
>>> provided that he is happy with the patches and then submit a pull
>>> request?
>>
>> Yes, this is how it usually works.
> 
> Joe, should I do anything, are you happy with how the patches look like?

Ping? How do we get these moving?
-- 
Florian
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 0/4] net: phy: Add Broadcom BCM53xx switch driver

2017-10-29 Thread Florian Fainelli
Le 10/19/17 à 21:45, Stefan Roese a écrit :
> On 19.10.2017 23:50, Florian Fainelli wrote:
>> On 10/14/2017 06:00 PM, Florian Fainelli wrote:
>>> (this time after subscribing to the list)
>>>
>>> Hi all,
>>>
>>> This patch series adds support for the Broadcom BCM53xx switches, in
>>> particular
>>> BCM53125 which is found no the Lamobo R1 board.
>>
>> Thanks Stefan for the review. I suppose Joe should now queue those up,
>> provided that he is happy with the patches and then submit a pull
>> request?
> 
> Yes, this is how it usually works.

Joe, should I do anything, are you happy with how the patches look like?
-- 
Florian
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 0/4] net: phy: Add Broadcom BCM53xx switch driver

2017-10-19 Thread Stefan Roese

On 19.10.2017 23:50, Florian Fainelli wrote:

On 10/14/2017 06:00 PM, Florian Fainelli wrote:

(this time after subscribing to the list)

Hi all,

This patch series adds support for the Broadcom BCM53xx switches, in particular
BCM53125 which is found no the Lamobo R1 board.


Thanks Stefan for the review. I suppose Joe should now queue those up,
provided that he is happy with the patches and then submit a pull request?


Yes, this is how it usually works.

Thanks,
Stefan
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 0/4] net: phy: Add Broadcom BCM53xx switch driver

2017-10-19 Thread Florian Fainelli
On 10/14/2017 06:00 PM, Florian Fainelli wrote:
> (this time after subscribing to the list)
> 
> Hi all,
> 
> This patch series adds support for the Broadcom BCM53xx switches, in 
> particular
> BCM53125 which is found no the Lamobo R1 board.

Thanks Stefan for the review. I suppose Joe should now queue those up,
provided that he is happy with the patches and then submit a pull request?

> 
> The driver is largely based on the DSA/b53 driver Linux driver and only
> incorporates what is necessary to succesfully bring-up all ports (including 
> the
> management port) for boot over the network:
> 
> => dhcp
> dw_adjust_link: Speed: 1000, full duplex
> BOOTP broadcast 1
> DHCP client bound to address 192.168.0.11 (3 ms)
> Using ethernet@01c5 device
> TFTP from server 192.168.0.1; our IP address is 192.168.0.11
> Filename 'sun7i-a20-lamobo-r1-kernel.bin'.
> Load address: 0x4200
> Loading: #
>  #
>  
>  11.6 MiB/s
> done
> Bytes transferred = 2371552 (242fe0 hex)
> => 
> 
> 
> Florian Fainelli (4):
>   net: phy: Add Broadcom BCM53xx switch driver
>   net: designware: Pad small packets
>   net: phy: b53: Add b53_reg read/write commands
>   configs: Update Lamobo_R1 with B53 switch options
> 
>  configs/Lamobo_R1_defconfig |   3 +
>  drivers/net/designware.c|   4 +
>  drivers/net/phy/Kconfig |  14 +
>  drivers/net/phy/Makefile|   1 +
>  drivers/net/phy/b53.c   | 767 
> 
>  drivers/net/phy/phy.c   |   3 +
>  include/phy.h   |   1 +
>  7 files changed, 793 insertions(+)
>  create mode 100644 drivers/net/phy/b53.c
> 


-- 
Florian
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 0/4] net: phy: Add Broadcom BCM53xx switch driver

2017-10-15 Thread Florian Fainelli
(this time after subscribing to the list)

Hi all,

This patch series adds support for the Broadcom BCM53xx switches, in particular
BCM53125 which is found no the Lamobo R1 board.

The driver is largely based on the DSA/b53 driver Linux driver and only
incorporates what is necessary to succesfully bring-up all ports (including the
management port) for boot over the network:

=> dhcp
dw_adjust_link: Speed: 1000, full duplex
BOOTP broadcast 1
DHCP client bound to address 192.168.0.11 (3 ms)
Using ethernet@01c5 device
TFTP from server 192.168.0.1; our IP address is 192.168.0.11
Filename 'sun7i-a20-lamobo-r1-kernel.bin'.
Load address: 0x4200
Loading: #
 #
 
 11.6 MiB/s
done
Bytes transferred = 2371552 (242fe0 hex)
=> 


Florian Fainelli (4):
  net: phy: Add Broadcom BCM53xx switch driver
  net: designware: Pad small packets
  net: phy: b53: Add b53_reg read/write commands
  configs: Update Lamobo_R1 with B53 switch options

 configs/Lamobo_R1_defconfig |   3 +
 drivers/net/designware.c|   4 +
 drivers/net/phy/Kconfig |  14 +
 drivers/net/phy/Makefile|   1 +
 drivers/net/phy/b53.c   | 767 
 drivers/net/phy/phy.c   |   3 +
 include/phy.h   |   1 +
 7 files changed, 793 insertions(+)
 create mode 100644 drivers/net/phy/b53.c

-- 
2.11.0

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 0/4] net: phy: Add Broadcom BCM53xx switch driver

2017-10-14 Thread Florian Fainelli
(not subscribed to u-boot, please CC me while replying)

Hi all,

This patch series adds support for the Broadcom BCM53xx switches, in particular
BCM53125 which is found no the Lamobo R1 board.

The driver is largely based on the DSA/b53 driver Linux driver and only
incorporates what is necessary to succesfully bring-up all ports (including the
management port) for boot over the network:

=> dhcp
dw_adjust_link: Speed: 1000, full duplex
BOOTP broadcast 1
DHCP client bound to address 192.168.0.11 (3 ms)
Using ethernet@01c5 device
TFTP from server 192.168.0.1; our IP address is 192.168.0.11
Filename 'sun7i-a20-lamobo-r1-kernel.bin'.
Load address: 0x4200
Loading: #
 #
 
 11.6 MiB/s
done
Bytes transferred = 2371552 (242fe0 hex)
=> 


Florian Fainelli (4):
  net: phy: Add Broadcom BCM53xx switch driver
  net: designware: Pad small packets
  net: phy: b53: Add b53_reg read/write commands
  configs: Update Lamobo_R1 with B53 switch options

 configs/Lamobo_R1_defconfig |   3 +
 drivers/net/designware.c|   4 +
 drivers/net/phy/Kconfig |  14 +
 drivers/net/phy/Makefile|   1 +
 drivers/net/phy/b53.c   | 767 
 drivers/net/phy/phy.c   |   3 +
 include/phy.h   |   1 +
 7 files changed, 793 insertions(+)
 create mode 100644 drivers/net/phy/b53.c

-- 
2.11.0

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot