/* ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ /** * @file hal_usb.h * @brief USB Driver macros and structures. * * @addtogroup USB * @{ */ #ifndef HAL_USB_H #define HAL_USB_H #if (HAL_USE_USB == TRUE) || defined(__DOXYGEN__) /*===========================================================================*/ /* Driver constants. */ /*===========================================================================*/ #define USB_ENDPOINT_OUT(ep) (ep) #define USB_ENDPOINT_IN(ep) ((ep) | 0x80U) #define USB_RTYPE_DIR_MASK 0x80U #define USB_RTYPE_DIR_HOST2DEV 0x00U #define USB_RTYPE_DIR_DEV2HOST 0x80U #define USB_RTYPE_TYPE_MASK 0x60U #define USB_RTYPE_TYPE_STD 0x00U #define USB_RTYPE_TYPE_CLASS 0x20U #define USB_RTYPE_TYPE_VENDOR 0x40U #define USB_RTYPE_TYPE_RESERVED 0x60U #define USB_RTYPE_RECIPIENT_MASK 0x1FU #define USB_RTYPE_RECIPIENT_DEVICE 0x00U #define USB_RTYPE_RECIPIENT_INTERFACE 0x01U #define USB_RTYPE_RECIPIENT_ENDPOINT 0x02U #define USB_RTYPE_RECIPIENT_OTHER 0x03U #define USB_REQ_GET_STATUS 0U #define USB_REQ_CLEAR_FEATURE 1U #define USB_REQ_SET_FEATURE 3U #define USB_REQ_SET_ADDRESS 5U #define USB_REQ_GET_DESCRIPTOR 6U #define USB_REQ_SET_DESCRIPTOR 7U #define USB_REQ_GET_CONFIGURATION 8U #define USB_REQ_SET_CONFIGURATION 9U #define USB_REQ_GET_INTERFACE 10U #define USB_REQ_SET_INTERFACE 11U #define USB_REQ_SYNCH_FRAME 12U #define USB_DESCRIPTOR_DEVICE 1U #define USB_DESCRIPTOR_CONFIGURATION 2U #define USB_DESCRIPTOR_STRING 3U #define USB_DESCRIPTOR_INTERFACE 4U #define USB_DESCRIPTOR_ENDPOINT 5U #define USB_DESCRIPTOR_DEVICE_QUALIFIER 6U #define USB_DESCRIPTOR_OTHER_SPEED_CFG 7U #define USB_DESCRIPTOR_INTERFACE_POWER 8U #define USB_DESCRIPTOR_INTERFACE_ASSOCIATION 11U #define USB_FEATURE_ENDPOINT_HALT 0U #define USB_FEATURE_DEVICE_REMOTE_WAKEUP 1U #define USB_FEATURE_TEST_MODE 2U #define USB_EARLY_SET_ADDRESS 0 #define USB_LATE_SET_ADDRESS 1 #define USB_EP0_STATUS_STAGE_SW 0 #define USB_EP0_STATUS_STAGE_HW 1 #define USB_SET_ADDRESS_ACK_SW 0 #define USB_SET_ADDRESS_ACK_HW 1 /** * @name Helper macros for USB descriptors * @{ */ /** * @brief Helper macro for index values into descriptor strings. */ #define USB_DESC_INDEX(i) ((uint8_t)(i)) /** * @brief Helper macro for byte values into descriptor strings. */ #define USB_DESC_BYTE(b) ((uint8_t)(b)) /** * @brief Helper macro for word values into descriptor strings. */ #define USB_DESC_WORD(w) \ (uint8_t)((w) & 255U), \ (uint8_t)(((w) >> 8) & 255U) /** * @brief Helper macro for BCD values into descriptor strings. */ #define USB_DESC_BCD(bcd) \ (uint8_t)((bcd) & 255U), \ (uint8_t)(((bcd) >> 8) & 255) /* * @define Device Descriptor size. */ #define USB_DESC_DEVICE_SIZE 18U /** * @brief Device Descriptor helper macro. */ #define USB_DESC_DEVICE(bcdUSB, bDeviceClass, bDeviceSubClass, \ bDeviceProtocol, bMaxPacketSize, idVendor, \ idProduct, bcdDevice, iManufacturer, \ iProduct, iSerialNumber, bNumConfigurations) \ USB_DESC_BYTE(USB_DESC_DEVICE_SIZE), \ USB_DESC_BYTE(USB_DESCRIPTOR_DEVICE), \ USB_DESC_BCD(bcdUSB), \ USB_DESC_BYTE(bDeviceClass), \ USB_DESC_BYTE(bDeviceSubClass), \ USB_DESC_BYTE(bDeviceProtocol), \ USB_DESC_BYTE(bMaxPacketSize), \ USB_DESC_WORD(idVendor), \ USB_DESC_WORD(idProduct), \ USB_DESC_BCD(bcdDevice), \ USB_DESC_INDEX(iManufacturer), \ USB_DESC_INDEX(iProduct), \ USB_DESC_INDEX(iSerialNumber), \ USB_DESC_BYTE(bNumConfigurations) /** * @brief Configuration Descriptor size. */ #define USB_DESC_CONFIGURATION_SIZE 9U /** * @brief Configuration Descriptor helper macro. */ #define USB_DESC_CONFIGURATION(wTotalLength, bNumInterfaces, \ bConfigurationValue, iConfiguration, \ bmAttributes, bMaxPower) \ USB_DESC_BYTE(USB_DESC_CONFIGURATION_SIZE), \ USB_DESC_BYTE(USB_DESCRIPTOR_CONFIGURATION), \ USB_DESC_WORD(wTotalLength), \ USB_DESC_BYTE(bNumInterfaces), \ USB_DESC_BYTE(bConfigurationValue), \ USB_DESC_INDEX(iConfiguration), \ USB_DESC_BYTE(bmAttributes), \ USB_DESC_BYTE(bMaxPower) /** * @brief Interface Descriptor size. */ #define USB_DESC_INTERFACE_SIZE 9U /** * @brief Interface Descriptor helper macro. */ #define USB_DESC_INTERFACE(bInterfaceNumber, bAlternateSetting, \ bNumEndpoints, bInterfaceClass, \ bInterfaceSubClass, bInterfaceProtocol, \ iInterface) \ USB_DESC_BYTE(USB_DESC_INTERFACE_SIZE), \ USB_DESC_BYTE(USB_DESCRIPTOR_INTERFACE), \ USB_DESC_BYTE(bInterfaceNumber), \ USB_DESC_BYTE(bAlternateSetting), \ USB_DESC_BYTE(bNumEndpoints), \ USB_DESC_BYTE(bInterfaceClass), \ USB_DESC_BYTE(bInterfaceSubClass), \ USB_DESC_BYTE(bInterfaceProtocol), \ USB_DESC_INDEX(iInterface) /** * @brief Interface Association Descriptor size. */ #define USB_DESC_INTERFACE_ASSOCIATION_SIZE 8U /** * @brief Interface Association Descriptor helper macro. */ #define USB_DESC_INTERFACE_ASSOCIATION(bFirstInterface, \ bInterfaceCount, bFunctionClass, \ bFunctionSubClass, bFunctionProcotol, \ iInterface) \ USB_DESC_BYTE(USB_DESC_INTERFACE_ASSOCIATION_SIZE), \ USB_DESC_BYTE(USB_DESCRIPTOR_INTERFACE_ASSOCIATION), \ USB_DESC_BYTE(bFirstInterface), \ USB_DESC_BYTE(bInterfaceCount), \ USB_DESC_BYTE(bFunctionClass), \ USB_DESC_BYTE(bFunctionSubClass),
/*
             LUFA Library
     Copyright (C) Dean Camera, 2017.

  dean [at] fourwalledcubicle [dot] com
           www.lufa-lib.org
*/

/*
  Copyright 2010  David Prentice (david.prentice [at] farming [dot] uk)
  Copyright 2010  Peter Danneger
  Copyright 2017  Dean Camera (dean [at] fourwalledcubicle [dot] com)

  Permission to use, copy, modify, distribute, and sell this
  software and its documentation for any purpose is hereby granted
  without fee, provided that the above copyright notice appear in
  all copies and that both that the copyright notice and this
  permission notice and warranty disclaimer appear in supporting
  documentation, and that the name of the author not be used in
  advertising or publicity pertaining to distribution of the
  software without specific, written prior permission.

  The author disclaims all warranties with regard to this
  software, including all implied warranties of merchantability
  and fitness.  In no event shall the author be liable for any
  special, indirect or consequential damages or any damages
  whatsoever resulting from loss of use, data or profits, whether
  in an action of contract, negligence or other tortious action,
  arising out of or in connection with the use or performance of
  this software.
*/

/** \file
 *
 *  Software UART for both data transmission and reception. This
 *  code continuously monitors the ring buffers set up by the main
 *  project source file and reads/writes data as it becomes available.
 */

#include "SoftUART.h"

/** Total number of bits remaining to be sent in the current frame */
static uint8_t TX_BitsRemaining;

/** Temporary data variable to hold the byte being transmitted as it is shifted out */
static uint8_t TX_Data;

/** Total number of bits remaining to be received in the current frame */
static uint8_t RX_BitsRemaining;

/** Temporary data variable to hold the byte being received as it is shifted in */
static uint8_t RX_Data;


/** Initializes the software UART, ready for data transmission and reception into the global ring buffers. */
void SoftUART_Init(void)
{
	/* Set TX pin to output high, enable RX pull-up */
	STXPORT |= (1 << STX);
	STXDDR  |= (1 << STX);
	SRXPORT |= (1 << SRX);

	/* Enable INT0 for the detection of incoming start bits that signal the start of a byte */
	EICRA  = (1 << ISC01);
	EIMSK  = (1 << INT0);

	/* Set the transmission and reception timer compare values for the default baud rate */
	SoftUART_SetBaud(9600);

	/* Setup reception timer compare ISR */
	TIMSK1 = (1 << OCIE1A);

	/* Setup transmission timer compare ISR and start the timer */
	TIMSK3 = (1 << OCIE3A);
	TCCR3B = ((1 << CS30) | (1 << WGM32));
}

/** ISR to detect the start of a bit being sent to the software UART. */
ISR(INT0_vect, ISR_BLOCK)
{
	/* Reset the number of reception bits remaining counter */
	RX_BitsRemaining = 8;

	/* Reset the bit reception timer to -(1/2) of the total bit time, so that the first data bit is
	 * sampled mid way through the total bit time, making reception more robust.
	 */
	TCNT1 = -(OCR1A >> 1);

	/* Check to see that the pin is still low (prevents glitches from starting a frame reception) */
	if (!(SRXPIN & (1 << SRX)))
	{
		/* Disable start bit detection ISR while the next byte is received */
		EIMSK = 0;

		/* Start the reception timer */
		TCCR1B = ((1 << CS10) | (1 << WGM12));
	}
}

/** ISR to manage the reception of bits to the software UART. */
ISR(TIMER1_COMPA_vect, ISR_BLOCK)
{
	/* Cache the current RX pin value for later checking */
	uint8_t SRX_Cached = (SRXPIN & (1 << SRX));

	/* Check if reception has finished */
	if (RX_BitsRemaining)
	{
		/* Shift the current received bit mask to the next bit position */
		RX_Data >>= 1;
		RX_BitsRemaining--;

		/* Store next bit into the received data variable */
		if (SRX_Cached)
		  RX_Data |= (1 << 7);
	}
	else
	{
		/* Disable the reception timer as all data has now been received, re-enable start bit detection ISR */
		TCCR1B = 0;
		EIFR   = (1 << INTF0);
		EIMSK  = (1 << INT0);

		/* Reception complete, store the received byte if stop bit valid */
		if (SRX_Cached)
		  RingBuffer_Insert(&UARTtoUSB_Buffer, RX_Data);
	}
}

/** ISR to manage the transmission of bits via the software UART. */
ISR(TIMER3_COMPA_vect, ISR_BLOCK)
{
	/* Check if transmission has finished */
	if (TX_BitsRemaining)
	{
		/* Set the TX line to the value of the next bit in the byte to send */
		if (TX_Data & (1 << 0))
		  STXPORT &= ~(1 << STX);
		else
		  STXPORT |=  (1 << STX);

		/* Shift the transmission byte to move the next bit into position and decrement the bits remaining counter */
		TX_Data >>= 1;
		TX_BitsRemaining--;
	}
	else if (!(RX_BitsRemaining) && !(RingBuffer_IsEmpty(&USBtoUART_Buffer)))
	{
		/* Start bit - TX line low */
		STXPORT &= ~(1 << STX);

		/* Transmission complete, get the next byte to send (if available) */
		TX_Data          = ~RingBuffer_Remove(&USBtoUART_Buffer);
		TX_BitsRemaining = 9;
	}
}