You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
307 lines
8.3 KiB
307 lines
8.3 KiB
/*
|
|
* upstream_hid.c
|
|
*
|
|
* Created on: Jan 16, 2016
|
|
* Author: Robert Fisk
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
|
|
|
|
#include "upstream_hid.h"
|
|
#include "upstream_interface_def.h"
|
|
|
|
|
|
|
|
UpstreamPacketTypeDef* UpstreamHidPacket = NULL;
|
|
UpstreamHidGetReportCallback GetReportCallback = NULL;
|
|
|
|
KeyboardOutStateTypeDef KeyboardOutDataState = KEYBOARD_OUT_STATE_IDLE;
|
|
uint8_t KeyboardOutData[HID_KEYBOARD_OUTPUT_DATA_LEN];
|
|
|
|
|
|
|
|
void Upstream_HID_GetNextInterruptReportReceiveCallback(UpstreamPacketTypeDef* receivedPacket);
|
|
void Upstream_HID_ReallySendControlReportReceiveCallback(UpstreamPacketTypeDef* receivedPacket);
|
|
|
|
|
|
|
|
void Upstream_HID_DeInit(void)
|
|
{
|
|
if (UpstreamHidPacket != NULL)
|
|
{
|
|
Upstream_ReleasePacket(UpstreamHidPacket);
|
|
UpstreamHidPacket = NULL;
|
|
}
|
|
GetReportCallback = NULL;
|
|
KeyboardOutDataState = KEYBOARD_OUT_STATE_IDLE;
|
|
}
|
|
|
|
|
|
|
|
void Upstream_HID_GetNextInterruptReport(UpstreamHidGetReportCallback callback)
|
|
{
|
|
UpstreamPacketTypeDef* freePacket;
|
|
InterfaceCommandClassTypeDef activeClass;
|
|
|
|
activeClass = Upstream_StateMachine_CheckActiveClass();
|
|
if ((activeClass != COMMAND_CLASS_HID_MOUSE) &&
|
|
(activeClass != COMMAND_CLASS_HID_KEYBOARD)) //add classes here
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
|
|
if (callback != NULL)
|
|
{
|
|
//This means we were called by the host
|
|
//Release packet used for last transaction (if any)
|
|
if (UpstreamHidPacket != NULL)
|
|
{
|
|
Upstream_ReleasePacket(UpstreamHidPacket);
|
|
UpstreamHidPacket = NULL;
|
|
}
|
|
|
|
if (KeyboardOutDataState == KEYBOARD_OUT_STATE_BUSY)
|
|
{
|
|
//Just save the callback, because we are still waiting for the OUT report to complete
|
|
GetReportCallback = callback;
|
|
return;
|
|
}
|
|
if (GetReportCallback != NULL)
|
|
{
|
|
//Just return if we already have an outstanding request
|
|
return;
|
|
}
|
|
GetReportCallback = callback;
|
|
}
|
|
else
|
|
{
|
|
//This means were called on OUT report completion, or retrying after a downstream NAK
|
|
if (GetReportCallback == NULL)
|
|
{
|
|
//The host has not given us the callback yet, so we give up
|
|
return;
|
|
}
|
|
}
|
|
|
|
freePacket = Upstream_GetFreePacketImmediately();
|
|
if (freePacket == NULL)
|
|
{
|
|
return;
|
|
}
|
|
|
|
freePacket->Length16 = UPSTREAM_PACKET_HEADER_LEN_16;
|
|
freePacket->CommandClass = activeClass;
|
|
freePacket->Command = COMMAND_HID_GET_REPORT;
|
|
|
|
if (Upstream_TransmitPacket(freePacket) == HAL_OK)
|
|
{
|
|
Upstream_ReceivePacket(Upstream_HID_GetNextInterruptReportReceiveCallback);
|
|
}
|
|
else
|
|
{
|
|
Upstream_ReleasePacket(freePacket);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void Upstream_HID_GetNextInterruptReportReceiveCallback(UpstreamPacketTypeDef* receivedPacket)
|
|
{
|
|
UpstreamHidGetReportCallback tempReportCallback;
|
|
InterfaceCommandClassTypeDef activeClass;
|
|
uint32_t i;
|
|
uint8_t dataLength;
|
|
|
|
|
|
activeClass = Upstream_StateMachine_CheckActiveClass();
|
|
if ((activeClass != COMMAND_CLASS_HID_MOUSE) &&
|
|
(activeClass != COMMAND_CLASS_HID_KEYBOARD)) //add classes here
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
|
|
if (UpstreamHidPacket != NULL)
|
|
{
|
|
while(1);
|
|
}
|
|
|
|
if (receivedPacket == NULL) //Error receiving packet
|
|
{
|
|
return; //Just give up...
|
|
}
|
|
|
|
if (GetReportCallback == NULL) //HID class may have been DeInitted while we were waiting for our reply
|
|
{
|
|
Upstream_ReleasePacket(receivedPacket);
|
|
return;
|
|
}
|
|
|
|
if (receivedPacket->Length16 == UPSTREAM_PACKET_HEADER_LEN_16)
|
|
{
|
|
//Zero-length reply indicates no data from downstream device
|
|
Upstream_ReleasePacket(receivedPacket);
|
|
|
|
//Check if we need to send OUT data to the keyboard before requesting next Interrupt IN data
|
|
if (KeyboardOutDataState == KEYBOARD_OUT_STATE_DATA_READY)
|
|
{
|
|
Upstream_HID_ReallySendControlReport();
|
|
}
|
|
else
|
|
{
|
|
//Otherwise poll downstream again
|
|
Upstream_HID_GetNextInterruptReport(NULL);
|
|
}
|
|
return;
|
|
}
|
|
|
|
|
|
if (activeClass == COMMAND_CLASS_HID_MOUSE)
|
|
{
|
|
if (receivedPacket->Length16 != (UPSTREAM_PACKET_HEADER_LEN_16 + ((HID_MOUSE_INPUT_DATA_LEN + 1) / 2)))
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
dataLength = HID_MOUSE_INPUT_DATA_LEN;
|
|
if ((receivedPacket->Data[0] & ~((1 << HID_MOUSE_MAX_BUTTONS) - 1)) != 0) //Check number of buttons received
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
//Other mouse sanity checks & stuff go here...
|
|
}
|
|
|
|
else if (activeClass == COMMAND_CLASS_HID_KEYBOARD)
|
|
{
|
|
if (receivedPacket->Length16 != (UPSTREAM_PACKET_HEADER_LEN_16 + ((HID_KEYBOARD_INPUT_DATA_LEN + 1) / 2)))
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
dataLength = HID_KEYBOARD_INPUT_DATA_LEN;
|
|
|
|
if (receivedPacket->Data[1] != 0)
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
for (i = 2; i < HID_KEYBOARD_INPUT_DATA_LEN; i++)
|
|
{
|
|
if (receivedPacket->Data[i] > HID_KEYBOARD_MAX_KEY)
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
}
|
|
//Other keyboard sanity checks here...
|
|
}
|
|
|
|
//Other HID classes go here...
|
|
|
|
else
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
|
|
UpstreamHidPacket = receivedPacket; //Save packet so we can free it when upstream USB transaction is done
|
|
tempReportCallback = GetReportCallback;
|
|
GetReportCallback = NULL;
|
|
tempReportCallback(receivedPacket->Data, dataLength);
|
|
|
|
//Check if we need to send OUT data to the keyboard before requesting next Interrupt IN data
|
|
if (KeyboardOutDataState == KEYBOARD_OUT_STATE_DATA_READY)
|
|
{
|
|
Upstream_HID_ReallySendControlReport();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void Upstream_HID_SendControlReport(UpstreamPacketTypeDef* packetToSend, uint8_t dataLength)
|
|
{
|
|
InterfaceCommandClassTypeDef activeClass;
|
|
uint32_t i;
|
|
|
|
activeClass = Upstream_StateMachine_CheckActiveClass();
|
|
if ((packetToSend == NULL) ||
|
|
(activeClass != COMMAND_CLASS_HID_KEYBOARD) ||
|
|
(dataLength != HID_KEYBOARD_OUTPUT_DATA_LEN))
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
|
|
//Save data until after the next interrupt data is received from Downstream
|
|
KeyboardOutDataState = KEYBOARD_OUT_STATE_DATA_READY;
|
|
for (i = 0; i < HID_KEYBOARD_OUTPUT_DATA_LEN; i++)
|
|
{
|
|
KeyboardOutData[i] = packetToSend->Data[i];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void Upstream_HID_ReallySendControlReport(void)
|
|
{
|
|
UpstreamPacketTypeDef* freePacket;
|
|
uint32_t i;
|
|
|
|
KeyboardOutDataState = KEYBOARD_OUT_STATE_BUSY;
|
|
|
|
freePacket = Upstream_GetFreePacketImmediately();
|
|
if (freePacket == NULL) return;
|
|
|
|
freePacket->Length16 = UPSTREAM_PACKET_HEADER_LEN_16 + ((HID_KEYBOARD_OUTPUT_DATA_LEN + 1) / 2);
|
|
freePacket->CommandClass = COMMAND_CLASS_HID_KEYBOARD;
|
|
freePacket->Command = COMMAND_HID_SET_REPORT;
|
|
|
|
for (i = 0; i < HID_KEYBOARD_OUTPUT_DATA_LEN; i++)
|
|
{
|
|
freePacket->Data[i] = KeyboardOutData[i];
|
|
}
|
|
freePacket->Data[0] &= ((1 << HID_KEYBOARD_MAX_LED) - 1);
|
|
|
|
if (Upstream_TransmitPacket(freePacket) == HAL_OK)
|
|
{
|
|
Upstream_ReceivePacket(Upstream_HID_ReallySendControlReportReceiveCallback);
|
|
}
|
|
else
|
|
{
|
|
Upstream_ReleasePacket(freePacket);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void Upstream_HID_ReallySendControlReportReceiveCallback(UpstreamPacketTypeDef* receivedPacket)
|
|
{
|
|
InterfaceCommandClassTypeDef activeClass;
|
|
|
|
activeClass = Upstream_StateMachine_CheckActiveClass();
|
|
if (activeClass != COMMAND_CLASS_HID_KEYBOARD) //add classes here
|
|
{
|
|
UPSTREAM_STATEMACHINE_FREAKOUT;
|
|
return;
|
|
}
|
|
|
|
if (receivedPacket == NULL)
|
|
{
|
|
return; //Just give up...
|
|
}
|
|
|
|
Upstream_ReleasePacket(receivedPacket);
|
|
KeyboardOutDataState = KEYBOARD_OUT_STATE_IDLE;
|
|
|
|
//If upstream host has already requested the next IN report data,
|
|
//this will send the request downstream.
|
|
Upstream_HID_GetNextInterruptReport(NULL);
|
|
}
|
|
|