|
-
-
- #include <Arduino.h>
- #include "USBHost.h"
-
- USBHub::USBHub()
- {
-
- driver_ready_for_device(this);
- }
-
- bool USBHub::claim(Device_t *dev, int type, const uint8_t *descriptors)
- {
-
- if (type != 0) return false;
-
- Serial.print("USBHub claim_device this=");
- Serial.println((uint32_t)this, HEX);
-
-
- if (dev->bDeviceClass != 9 || dev->bDeviceSubClass != 0) return false;
-
- if (dev->bDeviceProtocol > 2) return false;
-
- if (descriptors[9] != 7 || descriptors[10] != 5) return false;
-
- if ((descriptors[11] & 0xF0) != 0x80) return false;
-
- if (descriptors[12] != 3) return false;
-
- endpoint = descriptors[11] & 0x0F;
- if (endpoint == 0) return false;
-
- uint32_t maxsize = descriptors[13] | (descriptors[14] << 8);
- if (maxsize == 0) return false;
- if (maxsize > 1) return false;
-
- Serial.println(descriptors[9]);
- Serial.println(descriptors[10]);
- Serial.println(descriptors[11], HEX);
- Serial.println(maxsize);
-
-
-
-
- Serial.print("bDeviceClass = ");
- Serial.println(dev->bDeviceClass);
- Serial.print("bDeviceSubClass = ");
- Serial.println(dev->bDeviceSubClass);
- Serial.print("bDeviceProtocol = ");
- Serial.println(dev->bDeviceProtocol);
-
- changepipe = NULL;
- changebits = 0;
- state = 0;
-
- mk_setup(setup, 0xA0, 6, 0x2900, 0, sizeof(hub_desc));
- queue_Control_Transfer(dev, &setup, hub_desc, this);
-
- return true;
- }
-
- void USBHub::poweron(uint32_t port)
- {
- mk_setup(setup, 0x23, 3, 8, port, 0);
- queue_Control_Transfer(device, &setup, NULL, this);
- }
-
- void USBHub::getstatus(uint32_t port)
- {
- if (port == 0) {
- mk_setup(setup, 0xA0, 0, 0, port, 4);
- } else {
- mk_setup(setup, 0xA3, 0, 0, port, 4);
- }
- queue_Control_Transfer(device, &setup, &status, this);
- }
-
- void USBHub::clearstatus(uint32_t port)
- {
- if (port == 0) {
- mk_setup(setup, 0x20, 1, 0x10, port, 0);
- } else {
- mk_setup(setup, 0x23, 1, 0x10, port, 0);
- }
- queue_Control_Transfer(device, &setup, NULL, this);
- }
-
- void USBHub::control(const Transfer_t *transfer)
- {
- Serial.println("USBHub control callback");
- print_hexbytes(transfer->buffer, transfer->length);
-
- if (state == 0) {
-
-
- if (hub_desc[0] == 9 && hub_desc[1] == 0x29) {
- numports = hub_desc[2];
- characteristics = hub_desc[3];
- powertime = hub_desc[5];
-
-
- Serial.print("Hub has ");
- Serial.print(numports);
- Serial.println(" ports");
- state = 1;
- poweron(1);
- }
- } else if (state < numports) {
-
- poweron(++state);
- } else if (state == numports) {
- Serial.println("power turned on to all ports");
- Serial.print("device addr = ");
- Serial.println(device->address);
- changepipe = new_Pipe(device, 3, endpoint, 1, 1, 512);
- Serial.print("pipe cap1 = ");
- Serial.println(changepipe->qh.capabilities[0], HEX);
- changepipe->callback_function = callback;
- queue_Data_Transfer(changepipe, &changebits, 1, this);
- state = 255;
- } else if (state == 255) {
-
- switch (setup.word1) {
- case 0x000000A0:
- Serial.println("New Hub Status");
- clearstatus(0);
- return;
- case 0x000000A3:
- Serial.print("New Port Status, port=");
- Serial.println(setup.wIndex);
- clearstatus(setup.wIndex);
- return;
- case 0x00100120:
- Serial.println("Hub Status Cleared");
- changebits &= ~1;
- break;
- case 0x00100123:
- Serial.print("Port Status Cleared, port=");
- Serial.println(setup.wIndex);
- changebits &= ~(1 << setup.wIndex);
- break;
- }
- update_status();
- }
- }
-
- void USBHub::callback(const Transfer_t *transfer)
- {
- Serial.println("HUB Callback (static)");
- if (transfer->driver) ((USBHub *)(transfer->driver))->status_change(transfer);
- }
-
- void USBHub::status_change(const Transfer_t *transfer)
- {
- Serial.println("HUB Callback (member)");
- Serial.print("status = ");
- Serial.println(changebits, HEX);
-
- update_status();
- queue_Data_Transfer(changepipe, &changebits, 1, this);
- }
-
- void USBHub::update_status()
- {
- uint32_t i, mask;
-
- for (i=0, mask=1; i <= numports; i++, mask <<= 1) {
- if (changebits & mask) {
- getstatus(i);
- return;
- }
- }
- }
-
- void USBHub::disconnect()
- {
-
- }
-
-
-
-
|