c66df16644
* Branch point for 2020 November 28 Breaking Change * Remove matrix_col_t to allow MATRIX_ROWS > 32 (#10183) * Add support for soft serial to ATmega32U2 (#10204) * Change MIDI velocity implementation to allow direct control of velocity value (#9940) * Add ability to build a subset of all keyboards based on platform. * Actually use eeprom_driver_init(). * Make bootloader_jump weak for ChibiOS. (#10417) * Joystick 16-bit support (#10439) * Per-encoder resolutions (#10259) * Share button state from mousekey to pointing_device (#10179) * Add hotfix for chibios keyboards not wake (#10088) * Add advanced/efficient RGB Matrix Indicators (#8564) * Naming change. * Support for STM32 GPIOF,G,H,I,J,K (#10206) * Add milc as a dependency and remove the installed milc (#10563) * ChibiOS upgrade: early init conversions (#10214) * ChibiOS upgrade: configuration file migrator (#9952) * Haptic and solenoid cleanup (#9700) * XD75 cleanup (#10524) * OLED display update interval support (#10388) * Add definition based on currently-selected serial driver. (#10716) * New feature: Retro Tapping per key (#10622) * Allow for modification of output RGB values when using rgblight/rgb_matrix. (#10638) * Add housekeeping task callbacks so that keyboards/keymaps are capable of executing code for each main loop iteration. (#10530) * Rescale both ChibiOS and AVR backlighting. * Reduce Helix keyboard build variation (#8669) * Minor change to behavior allowing display updates to continue between task ticks (#10750) * Some GPIO manipulations in matrix.c change to atomic. (#10491) * qmk cformat (#10767) * [Keyboard] Update the Speedo firmware for v3.0 (#10657) * Maartenwut/Maarten namechange to evyd13/Evy (#10274) * [quantum] combine repeated lines of code (#10837) * Add step sequencer feature (#9703) * aeboards/ext65 refactor (#10820) * Refactor xelus/dawn60 for Rev2 later (#10584) * add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824) * [Core] Added `add_oneshot_mods` & `del_oneshot_mods` (#10549) * update chibios os usb for the otg driver (#8893) * Remove HD44780 References, Part 4 (#10735) * [Keyboard] Add Valor FRL TKL (+refactor) (#10512) * Fix cursor position bug in oled_write_raw functions (#10800) * Fixup version.h writing when using SKIP_VERSION=yes (#10972) * Allow for certain code in the codebase assuming length of string. (#10974) * Add AT90USB support for serial.c (#10706) * Auto shift: support repeats and early registration (#9826) * Rename ledmatrix.h to match .c file (#7949) * Split RGB_MATRIX_ENABLE into _ENABLE and _DRIVER (#10231) * Split LED_MATRIX_ENABLE into _ENABLE and _DRIVER (#10840) * Merge point for 2020 Nov 28 Breaking Change
290 lines
8.4 KiB
C
290 lines
8.4 KiB
C
/*
|
|
* Copyright 2012,2013 Jun Wako <wakojun@gmail.com>
|
|
* This file is based on:
|
|
* LUFA-120219/Demos/Device/Lowlevel/KeyboardMouse
|
|
* LUFA-120219/Demos/Device/Lowlevel/GenericHID
|
|
*/
|
|
|
|
/*
|
|
LUFA Library
|
|
Copyright (C) Dean Camera, 2012.
|
|
|
|
dean [at] fourwalledcubicle [dot] com
|
|
www.lufa-lib.org
|
|
*/
|
|
|
|
/*
|
|
Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
|
|
Copyright 2010 Denver Gingerich (denver [at] ossguy [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 disclaim 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
|
|
*
|
|
* Header file for Descriptors.c.
|
|
*/
|
|
#ifndef _DESCRIPTORS_H_
|
|
#define _DESCRIPTORS_H_
|
|
|
|
#include <LUFA/Drivers/USB/USB.h>
|
|
|
|
#ifdef PROTOCOL_CHIBIOS
|
|
# include "hal.h"
|
|
#endif
|
|
|
|
/*
|
|
* USB descriptor structure
|
|
*/
|
|
typedef struct {
|
|
USB_Descriptor_Configuration_Header_t Config;
|
|
|
|
#ifndef KEYBOARD_SHARED_EP
|
|
// Keyboard HID Interface
|
|
USB_Descriptor_Interface_t Keyboard_Interface;
|
|
USB_HID_Descriptor_HID_t Keyboard_HID;
|
|
USB_Descriptor_Endpoint_t Keyboard_INEndpoint;
|
|
#else
|
|
// Shared Interface
|
|
USB_Descriptor_Interface_t Shared_Interface;
|
|
USB_HID_Descriptor_HID_t Shared_HID;
|
|
USB_Descriptor_Endpoint_t Shared_INEndpoint;
|
|
#endif
|
|
|
|
#ifdef RAW_ENABLE
|
|
// Raw HID Interface
|
|
USB_Descriptor_Interface_t Raw_Interface;
|
|
USB_HID_Descriptor_HID_t Raw_HID;
|
|
USB_Descriptor_Endpoint_t Raw_INEndpoint;
|
|
USB_Descriptor_Endpoint_t Raw_OUTEndpoint;
|
|
#endif
|
|
|
|
#if defined(MOUSE_ENABLE) && !defined(MOUSE_SHARED_EP)
|
|
// Mouse HID Interface
|
|
USB_Descriptor_Interface_t Mouse_Interface;
|
|
USB_HID_Descriptor_HID_t Mouse_HID;
|
|
USB_Descriptor_Endpoint_t Mouse_INEndpoint;
|
|
#endif
|
|
|
|
#if defined(SHARED_EP_ENABLE) && !defined(KEYBOARD_SHARED_EP)
|
|
// Shared Interface
|
|
USB_Descriptor_Interface_t Shared_Interface;
|
|
USB_HID_Descriptor_HID_t Shared_HID;
|
|
USB_Descriptor_Endpoint_t Shared_INEndpoint;
|
|
#endif
|
|
|
|
#ifdef CONSOLE_ENABLE
|
|
// Console HID Interface
|
|
USB_Descriptor_Interface_t Console_Interface;
|
|
USB_HID_Descriptor_HID_t Console_HID;
|
|
USB_Descriptor_Endpoint_t Console_INEndpoint;
|
|
USB_Descriptor_Endpoint_t Console_OUTEndpoint;
|
|
#endif
|
|
|
|
#ifdef MIDI_ENABLE
|
|
USB_Descriptor_Interface_Association_t Audio_Interface_Association;
|
|
// MIDI Audio Control Interface
|
|
USB_Descriptor_Interface_t Audio_ControlInterface;
|
|
USB_Audio_Descriptor_Interface_AC_t Audio_ControlInterface_SPC;
|
|
// MIDI Audio Streaming Interface
|
|
USB_Descriptor_Interface_t Audio_StreamInterface;
|
|
USB_MIDI_Descriptor_AudioInterface_AS_t Audio_StreamInterface_SPC;
|
|
USB_MIDI_Descriptor_InputJack_t MIDI_In_Jack_Emb;
|
|
USB_MIDI_Descriptor_InputJack_t MIDI_In_Jack_Ext;
|
|
USB_MIDI_Descriptor_OutputJack_t MIDI_Out_Jack_Emb;
|
|
USB_MIDI_Descriptor_OutputJack_t MIDI_Out_Jack_Ext;
|
|
USB_Audio_Descriptor_StreamEndpoint_Std_t MIDI_In_Jack_Endpoint;
|
|
USB_MIDI_Descriptor_Jack_Endpoint_t MIDI_In_Jack_Endpoint_SPC;
|
|
USB_Audio_Descriptor_StreamEndpoint_Std_t MIDI_Out_Jack_Endpoint;
|
|
USB_MIDI_Descriptor_Jack_Endpoint_t MIDI_Out_Jack_Endpoint_SPC;
|
|
#endif
|
|
|
|
#ifdef VIRTSER_ENABLE
|
|
USB_Descriptor_Interface_Association_t CDC_Interface_Association;
|
|
// CDC Control Interface
|
|
USB_Descriptor_Interface_t CDC_CCI_Interface;
|
|
USB_CDC_Descriptor_FunctionalHeader_t CDC_Functional_Header;
|
|
USB_CDC_Descriptor_FunctionalACM_t CDC_Functional_ACM;
|
|
USB_CDC_Descriptor_FunctionalUnion_t CDC_Functional_Union;
|
|
USB_Descriptor_Endpoint_t CDC_NotificationEndpoint;
|
|
// CDC Data Interface
|
|
USB_Descriptor_Interface_t CDC_DCI_Interface;
|
|
USB_Descriptor_Endpoint_t CDC_DataOutEndpoint;
|
|
USB_Descriptor_Endpoint_t CDC_DataInEndpoint;
|
|
#endif
|
|
|
|
#ifdef JOYSTICK_ENABLE
|
|
// Joystick HID Interface
|
|
USB_Descriptor_Interface_t Joystick_Interface;
|
|
USB_HID_Descriptor_HID_t Joystick_HID;
|
|
USB_Descriptor_Endpoint_t Joystick_INEndpoint;
|
|
#endif
|
|
} USB_Descriptor_Configuration_t;
|
|
|
|
/*
|
|
* Interface indexes
|
|
*/
|
|
enum usb_interfaces {
|
|
#ifndef KEYBOARD_SHARED_EP
|
|
KEYBOARD_INTERFACE,
|
|
#else
|
|
SHARED_INTERFACE,
|
|
# define KEYBOARD_INTERFACE SHARED_INTERFACE
|
|
#endif
|
|
|
|
// It is important that the Raw HID interface is at a constant
|
|
// interface number, to support Linux/OSX platforms and chrome.hid
|
|
// If Raw HID is enabled, let it be always 1.
|
|
#ifdef RAW_ENABLE
|
|
RAW_INTERFACE,
|
|
#endif
|
|
|
|
#if defined(MOUSE_ENABLE) && !defined(MOUSE_SHARED_EP)
|
|
MOUSE_INTERFACE,
|
|
#endif
|
|
|
|
#if defined(SHARED_EP_ENABLE) && !defined(KEYBOARD_SHARED_EP)
|
|
SHARED_INTERFACE,
|
|
#endif
|
|
|
|
#ifdef CONSOLE_ENABLE
|
|
CONSOLE_INTERFACE,
|
|
#endif
|
|
|
|
#ifdef MIDI_ENABLE
|
|
AC_INTERFACE,
|
|
AS_INTERFACE,
|
|
#endif
|
|
|
|
#ifdef VIRTSER_ENABLE
|
|
CCI_INTERFACE,
|
|
CDI_INTERFACE,
|
|
#endif
|
|
|
|
#if defined(JOYSTICK_ENABLE)
|
|
JOYSTICK_INTERFACE,
|
|
#endif
|
|
TOTAL_INTERFACES
|
|
};
|
|
|
|
#define NEXT_EPNUM __COUNTER__
|
|
|
|
/*
|
|
* Endpoint numbers
|
|
*/
|
|
enum usb_endpoints {
|
|
__unused_epnum__ = NEXT_EPNUM, // Endpoint numbering starts at 1
|
|
|
|
#ifndef KEYBOARD_SHARED_EP
|
|
KEYBOARD_IN_EPNUM = NEXT_EPNUM,
|
|
#else
|
|
# define KEYBOARD_IN_EPNUM SHARED_IN_EPNUM
|
|
#endif
|
|
|
|
#if defined(MOUSE_ENABLE) && !defined(MOUSE_SHARED_EP)
|
|
MOUSE_IN_EPNUM = NEXT_EPNUM,
|
|
#else
|
|
# define MOUSE_IN_EPNUM SHARED_IN_EPNUM
|
|
#endif
|
|
|
|
#ifdef RAW_ENABLE
|
|
RAW_IN_EPNUM = NEXT_EPNUM,
|
|
#if STM32_USB_USE_OTG1
|
|
#define RAW_OUT_EPNUM RAW_IN_EPNUM
|
|
#else
|
|
RAW_OUT_EPNUM = NEXT_EPNUM,
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef SHARED_EP_ENABLE
|
|
SHARED_IN_EPNUM = NEXT_EPNUM,
|
|
#endif
|
|
|
|
#ifdef CONSOLE_ENABLE
|
|
CONSOLE_IN_EPNUM = NEXT_EPNUM,
|
|
|
|
# ifdef PROTOCOL_CHIBIOS
|
|
// ChibiOS has enough memory and descriptor to actually enable the endpoint
|
|
// It could use the same endpoint numbers, as that's supported by ChibiOS
|
|
// But the QMK code currently assumes that the endpoint numbers are different
|
|
#if STM32_USB_USE_OTG1
|
|
#define CONSOLE_OUT_EPNUM CONSOLE_IN_EPNUM
|
|
#else
|
|
CONSOLE_OUT_EPNUM = NEXT_EPNUM,
|
|
#endif
|
|
# else
|
|
# define CONSOLE_OUT_EPNUM CONSOLE_IN_EPNUM
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef MIDI_ENABLE
|
|
MIDI_STREAM_IN_EPNUM = NEXT_EPNUM,
|
|
#if STM32_USB_USE_OTG1
|
|
#define MIDI_STREAM_OUT_EPNUM MIDI_STREAM_IN_EPNUM
|
|
#else
|
|
MIDI_STREAM_OUT_EPNUM = NEXT_EPNUM,
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef VIRTSER_ENABLE
|
|
CDC_NOTIFICATION_EPNUM = NEXT_EPNUM,
|
|
CDC_IN_EPNUM = NEXT_EPNUM,
|
|
#if STM32_USB_USE_OTG1
|
|
#define CDC_OUT_EPNUM CDC_IN_EPNUM
|
|
#else
|
|
CDC_OUT_EPNUM = NEXT_EPNUM,
|
|
#endif
|
|
#endif
|
|
#ifdef JOYSTICK_ENABLE
|
|
JOYSTICK_IN_EPNUM = NEXT_EPNUM,
|
|
#if STM32_USB_USE_OTG1
|
|
JOYSTICK_OUT_EPNUM = JOYSTICK_IN_EPNUM,
|
|
#else
|
|
JOYSTICK_OUT_EPNUM = NEXT_EPNUM,
|
|
#endif
|
|
#endif
|
|
};
|
|
|
|
#ifdef PROTOCOL_LUFA
|
|
// LUFA tells us total endpoints including control
|
|
# define MAX_ENDPOINTS (ENDPOINT_TOTAL_ENDPOINTS - 1)
|
|
#elif defined(PROTOCOL_CHIBIOS)
|
|
// ChibiOS gives us number of available user endpoints, not control
|
|
# define MAX_ENDPOINTS USB_MAX_ENDPOINTS
|
|
#endif
|
|
|
|
// TODO - ARM_ATSAM
|
|
|
|
#if (NEXT_EPNUM - 1) > MAX_ENDPOINTS
|
|
# error There are not enough available endpoints to support all functions. Please disable one or more of the following: Mouse Keys, Extra Keys, Console, NKRO, MIDI, Serial, Steno
|
|
#endif
|
|
|
|
#define KEYBOARD_EPSIZE 8
|
|
#define SHARED_EPSIZE 32
|
|
#define MOUSE_EPSIZE 8
|
|
#define RAW_EPSIZE 32
|
|
#define CONSOLE_EPSIZE 32
|
|
#define MIDI_STREAM_EPSIZE 64
|
|
#define CDC_NOTIFICATION_EPSIZE 8
|
|
#define CDC_EPSIZE 16
|
|
#define JOYSTICK_EPSIZE 8
|
|
|
|
uint16_t get_usb_descriptor(const uint16_t wValue, const uint16_t wIndex, const void** const DescriptorAddress);
|
|
#endif
|