Add branch for the conversion of demos to use standard C header files for configurati...
[pub/lufa.git] / LUFA / Drivers / USB / Core / AVR8 / Pipe_AVR8.h
index 86792bf..1012fa0 100644 (file)
 
                        /** \name Pipe Token Masks */
                        //@{
-                       /** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a SETUP token (for CONTROL type pipes),
+                       /** Token mask for \ref Pipe_SetPipeToken() and \ref Pipe_GetPipeToken(). This sets the pipe as a SETUP token (for CONTROL type pipes),
                         *  which will trigger a control request on the attached device when data is written to the pipe.
                         */
                        #define PIPE_TOKEN_SETUP                (0 << PTOKEN0)
 
-                       /** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a IN token (for non-CONTROL type pipes),
+                       /** Token mask for \ref Pipe_SetPipeToken() and \ref Pipe_GetPipeToken(). This sets the pipe as a IN token (for non-CONTROL type pipes),
                         *  indicating that the pipe data will flow from device to host.
                         */
                        #define PIPE_TOKEN_IN                   (1 << PTOKEN0)
 
-                       /** Token mask for \ref Pipe_ConfigurePipe(). This sets the pipe as a OUT token (for non-CONTROL type pipes),
+                       /** Token mask for \ref Pipe_SetPipeToken() and \ref Pipe_GetPipeToken(). This sets the pipe as a OUT token (for non-CONTROL type pipes),
                         *  indicating that the pipe data will flow from host to device.
                         */
                        #define PIPE_TOKEN_OUT                  (2 << PTOKEN0)
                        //@}
 
-                       /** \name Pipe Bank Mode Masks */
-                       //@{
-                       /** Mask for the bank mode selection for the \ref Pipe_ConfigurePipe() macro. This indicates that the pipe
-                        *  should have one single bank, which requires less USB FIFO memory but results in slower transfers as
-                        *  only one USB device (the AVR or the attached device) can access the pipe's bank at the one time.
-                        */
-                       #define PIPE_BANK_SINGLE                (0 << EPBK0)
-
-                       /** Mask for the bank mode selection for the \ref Pipe_ConfigurePipe() macro. This indicates that the pipe
-                        *  should have two banks, which requires more USB FIFO memory but results in faster transfers as one
-                        *  USB device (the AVR or the attached device) can access one bank while the other accesses the second
-                        *  bank.
-                        */
-                       #define PIPE_BANK_DOUBLE                (1 << EPBK0)
-                       //@}
-
                        /** Default size of the default control pipe's bank, until altered by the Endpoint0Size value
                         *  in the device descriptor of the attached device.
                         */
                                return UPBCX;
                        }
 
+                       /** Determines the currently selected pipe's direction.
+                        *
+                        *  \return The currently selected pipe's direction, as a \c PIPE_DIR_* mask.
+                        */
+                       static inline uint8_t Pipe_GetPipeDirection(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
+                       static inline uint8_t Pipe_GetPipeDirection(void)
+                       {
+                               return (UPCFG0X & (1 << EPDIR)) ? PIPE_DIR_IN : PIPE_DIR_OUT;
+                       }
+                       
                        /** Returns the pipe address of the currently selected pipe. This is typically used to save the
-                        *  currently selected pipe number so that it can be restored after another pipe has been manipulated.
+                        *  currently selected pipe address so that it can be restored after another pipe has been manipulated.
                         *
                         *  \return Index of the currently selected pipe.
                         */
                        static inline uint8_t Pipe_GetCurrentPipe(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
                        static inline uint8_t Pipe_GetCurrentPipe(void)
                        {
-                               return (UPNUM & PIPE_PIPENUM_MASK);
+                               return ((UPNUM & PIPE_PIPENUM_MASK) | Pipe_GetPipeDirection());
                        }
 
-                       /** Selects the given pipe number. Any pipe operations which do not require the pipe number to be
+                       /** Selects the given pipe address. Any pipe operations which do not require the pipe address to be
                         *  indicated will operate on the currently selected pipe.
                         *
-                        *  \param[in] PipeNumber  Index of the pipe to select.
+                        *  \param[in] Address  Address of the pipe to select.
                         */
-                       static inline void Pipe_SelectPipe(const uint8_t PipeNumber) ATTR_ALWAYS_INLINE;
-                       static inline void Pipe_SelectPipe(const uint8_t PipeNumber)
+                       static inline void Pipe_SelectPipe(const uint8_t Address) ATTR_ALWAYS_INLINE;
+                       static inline void Pipe_SelectPipe(const uint8_t Address)
                        {
-                               UPNUM = PipeNumber;
+                               UPNUM = (Address & PIPE_PIPENUM_MASK);
                        }
 
                        /** Resets the desired pipe, including the pipe banks and flags.
                         *
-                        *  \param[in] PipeNumber  Index of the pipe to reset.
+                        *  \param[in] Address  Address of the pipe to reset.
                         */
-                       static inline void Pipe_ResetPipe(const uint8_t PipeNumber) ATTR_ALWAYS_INLINE;
-                       static inline void Pipe_ResetPipe(const uint8_t PipeNumber)
+                       static inline void Pipe_ResetPipe(const uint8_t Address) ATTR_ALWAYS_INLINE;
+                       static inline void Pipe_ResetPipe(const uint8_t Address)
                        {
-                               UPRST = (1 << PipeNumber);
+                               UPRST = (1 << (Address & PIPE_PIPENUM_MASK));
                                UPRST = 0;
                        }
 
                        static inline uint8_t Pipe_GetBoundEndpointAddress(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
                        static inline uint8_t Pipe_GetBoundEndpointAddress(void)
                        {
-                               return (((UPCFG0X >> PEPNUM0) & PIPE_EPNUM_MASK) |
-                                       ((Pipe_GetPipeToken() == PIPE_TOKEN_IN) ? PIPE_EPDIR_MASK : 0));
+                               uint8_t UPCFG0X_Temp = UPCFG0X;
+                               
+                               return (((UPCFG0X_Temp >> PEPNUM0) & PIPE_EPNUM_MASK) | ((UPCFG0X_Temp & PEPNUM1) ? ENDPOINT_DIR_OUT : ENDPOINT_DIR_IN));
                        }
 
                        /** Sets the period between interrupts for an INTERRUPT type pipe to a specified number of milliseconds.
                                return UPINT;
                        }
 
-                       /** Determines if the specified pipe number has interrupted (valid only for INTERRUPT type
+                       /** Determines if the specified pipe address has interrupted (valid only for INTERRUPT type
                         *  pipes).
                         *
-                        *  \param[in] PipeNumber  Index of the pipe whose interrupt flag should be tested.
+                        *  \param[in] Address  Address of the pipe whose interrupt flag should be tested.
                         *
                         *  \return Boolean \c true if the specified pipe has interrupted, \c false otherwise.
                         */
-                       static inline bool Pipe_HasPipeInterrupted(const uint8_t PipeNumber) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
-                       static inline bool Pipe_HasPipeInterrupted(const uint8_t PipeNumber)
+                       static inline bool Pipe_HasPipeInterrupted(const uint8_t Address) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
+                       static inline bool Pipe_HasPipeInterrupted(const uint8_t Address)
                        {
-                               return ((UPINT & (1 << PipeNumber)) ? true : false);
+                               return ((UPINT & (1 << (Address & PIPE_PIPENUM_MASK))) ? true : false);
                        }
 
                        /** Unfreezes the selected pipe, allowing it to communicate with an attached device. */
                        extern uint8_t USB_Host_ControlPipeSize;
 
                /* Function Prototypes: */
-                       /** Configures the specified pipe number with the given pipe type, token, target endpoint number in the
-                        *  attached device, bank size and banking mode.
+                       /** Configures a table of pipe descriptions, in sequence. This function can be used to configure multiple
+                        *  pipes at the same time.
+                        *
+                        *  \note Pipe with a zero address will be ignored, thus this function cannot be used to configure the
+                        *        control pipe.
+                        *
+                        *  \param[in] Table    Pointer to a table of pipe descriptions.
+                        *  \param[in] Entries  Number of entries in the pipe table to configure.
+                        *
+                        *  \return Boolean \c true if all pipes configured successfully, \c false otherwise.
+                        */                     
+                       bool Pipe_ConfigurePipeTable(const USB_Pipe_Table_t* const Table,
+                                                    const uint8_t Entries);
+                                                                                
+                       /** Configures the specified pipe address with the given pipe type, endpoint address within the attached device, bank size
+                        *  and number of hardware banks.
                         *
                         *  A newly configured pipe is frozen by default, and must be unfrozen before use via the \ref Pipe_Unfreeze()
                         *  before being used. Pipes should be kept frozen unless waiting for data from a device while in IN mode, or
                         *  numbers of IN requests without automatic freezing - this can be overridden by a call to
                         *  \ref Pipe_SetFiniteINRequests().
                         *
-                        *  \param[in] Number          Pipe number to configure. This must be more than 0 and less than \ref PIPE_TOTAL_PIPES.
-                        *
-                        *  \param[in] Type            Type of pipe to configure, an \c EP_TYPE_* mask. Not all pipe types are available on Low
-                        *                             Speed USB devices - refer to the USB 2.0 specification.
+                        *  \param[in] Address          Pipe address to configure.
                         *
-                        *  \param[in] Token           Pipe data token, either \ref PIPE_TOKEN_SETUP, \ref PIPE_TOKEN_OUT or \ref PIPE_TOKEN_IN.
-                        *                             All pipes (except Control type) are unidirectional - data may only be read from or
-                        *                             written to the pipe bank based on its direction, not both.
+                        *  \param[in] Type             Type of pipe to configure, an \c EP_TYPE_* mask. Not all pipe types are available on Low
+                        *                              Speed USB devices - refer to the USB 2.0 specification.
                         *
-                        *  \param[in] EndpointNumber  Endpoint index within the attached device that the pipe should interface to.
+                        *  \param[in] EndpointAddress  Endpoint address within the attached device that the pipe should interface to.
                         *
-                        *  \param[in] Size            Size of the pipe's bank, where packets are stored before they are transmitted to
-                        *                             the USB device, or after they have been received from the USB device (depending on
-                        *                             the pipe's data direction). The bank size must indicate the maximum packet size that
-                        *                             the pipe can handle.
+                        *  \param[in] Size             Size of the pipe's bank, where packets are stored before they are transmitted to
+                        *                              the USB device, or after they have been received from the USB device (depending on
+                        *                              the pipe's data direction). The bank size must indicate the maximum packet size that
+                        *                              the pipe can handle.
                         *
-                        *  \param[in] Banks           Number of banks to use for the pipe being configured, a \c PIPE_BANK_* mask. More banks
-                        *                             uses more USB DPRAM, but offers better performance. Isochronous type pipes <b>must</b>
-                        *                             have at least two banks.
+                        *  \param[in] Banks            Number of banks to use for the pipe being configured.
                         *
                         *  \attention When the \c ORDERED_EP_CONFIG compile time option is used, Pipes <b>must</b> be configured in ascending order,
                         *             or bank corruption will occur.
                         *
                         *  \return Boolean \c true if the configuration succeeded, \c false otherwise.
                         */
-                       bool Pipe_ConfigurePipe(const uint8_t Number,
+                       bool Pipe_ConfigurePipe(const uint8_t Address,
                                                const uint8_t Type,
-                                               const uint8_t Token,
-                                               const uint8_t EndpointNumber,
+                                               const uint8_t EndpointAddress,
                                                const uint16_t Size,
                                                const uint8_t Banks);