nyan_blaze: Enable USB port2

There is a hub in USB port2 downstream.

BUG=chrome-os-partner:28964
BRANCH=None
TEST=emerge-nyan_blaze coreboot depthcharge chromeos-bootimage and verify usb
	port2 is workable

Change-Id: Iff291b321b608741b120c0349cb0f6638d27f97e
Signed-off-by: Neil Chen <neilc@nvidia.com>
Reviewed-on: https://chromium-review.googlesource.com/200430
Reviewed-by: Tom Warren <twarren@nvidia.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
diff --git a/src/board/nyan_blaze/board.c b/src/board/nyan_blaze/board.c
index 7ff5a36..c438140 100644
--- a/src/board/nyan_blaze/board.c
+++ b/src/board/nyan_blaze/board.c
@@ -251,10 +251,11 @@
 
 	/* Careful: the EHCI base is at offset 0x100 from the SoC's IP base */
 	UsbHostController *usbd = new_usb_hc(EHCI, 0x7d000100);
-	/* USB2 is connected to the camera, not needed in firmware */
+	UsbHostController *usb2 = new_usb_hc(EHCI, 0x7d004100);
 	UsbHostController *usb3 = new_usb_hc(EHCI, 0x7d008100);
 
 	list_insert_after(&usbd->list_node, &usb_host_controllers);
+	list_insert_after(&usb2->list_node, &usb_host_controllers);
 	list_insert_after(&usb3->list_node, &usb_host_controllers);
 
 	ramoops_buffer(0x87f00000, 0x100000, 0x20000);