I finally received 3b+ today

One interesting fact related to USB -
There are now two usb hubs! First hub has ethernet and pair of two USB ports next to it and second hub has the other two ports.
here is lsusb -t with mouse in one pair and keyboard in second
Code: Select all
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc_otg/1p, 480M
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
|__ Port 1: Dev 3, If 0, Class=Hub, Driver=hub/3p, 480M
|__ Port 1: Dev 9, If 0, Class=Vendor Specific Class, Driver=lan78xx, 480M
|__ Port 3: Dev 10, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
|__ Port 3: Dev 10, If 1, Class=Human Interface Device, Driver=, 1.5M
|__ Port 2: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
|__ Port 2: Dev 4, If 1, Class=Human Interface Device, Driver=usbhid, 1.5M
And here is when I move mouse above keyboard to same pair
Code: Select all
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc_otg/1p, 480M
|__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
|__ Port 1: Dev 3, If 0, Class=Hub, Driver=hub/3p, 480M
|__ Port 1: Dev 9, If 0, Class=Vendor Specific Class, Driver=lan78xx, 480M
|__ Port 2: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
|__ Port 2: Dev 4, If 1, Class=Human Interface Device, Driver=usbhid, 1.5M
|__ Port 3: Dev 11, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
|__ Port 3: Dev 11, If 1, Class=Human Interface Device, Driver=, 1.5M
And what is interesting is that the nested 3port hub can be turned off separately. And the power draw is even lower than just with ethernet off. Ethernet off makes 50mA difference and whole hub another 70mA - total 120mA difference.
Code: Select all
root@raspberrypi:/sys/bus/usb/devices# echo 0 > 1-1.1.1/bConfigurationValue
root@raspberrypi:/sys/bus/usb/devices# echo 0 > 1-1.1/bConfigurationValue
Now ports next to ethernet are dead but second pair with mouse and keyboard works! And power draw is now only a bit higher than 3B.
And BTW that is why
https://www.microchip.com/wwwproducts/P ... 15/LAN9514 page says 6 downstream ports. It is one 4port hub with 3port hub attached to it. So looks like there are two more not connected ports 'available'.
EDIT:
Actually just one more port, ethernet is fifth. I wonder if this extra port is available somewhere.