Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0-only */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *  Copyright (C) 2005 Mike Isely <isely@pobox.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) #ifndef __PVRUSB2_DEBUG_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #define __PVRUSB2_DEBUG_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) extern int pvrusb2_debug;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #define pvr2_trace(msk, fmt, arg...) do {if (msk & pvrusb2_debug) pr_info("pvrusb2: " fmt "\n", ##arg); } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) /* These are listed in *rough* order of decreasing usefulness and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14)    increasing noise level. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #define PVR2_TRACE_INFO       (1 <<  0) /* Normal messages */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #define PVR2_TRACE_ERROR_LEGS (1 <<  1) /* error messages */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #define PVR2_TRACE_TOLERANCE  (1 <<  2) /* track tolerance-affected errors */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #define PVR2_TRACE_TRAP       (1 <<  3) /* Trap & report app misbehavior */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #define PVR2_TRACE_STD        (1 <<  4) /* Log video standard stuff */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #define PVR2_TRACE_INIT       (1 <<  5) /* misc initialization steps */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #define PVR2_TRACE_START_STOP (1 <<  6) /* Streaming start / stop */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #define PVR2_TRACE_CTL        (1 <<  7) /* commit of control changes */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) #define PVR2_TRACE_STATE      (1 <<  8) /* Device state changes */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) #define PVR2_TRACE_STBITS     (1 <<  9) /* Individual bit state changes */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) #define PVR2_TRACE_EEPROM     (1 << 10) /* eeprom parsing / report */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #define PVR2_TRACE_STRUCT     (1 << 11) /* internal struct creation */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) #define PVR2_TRACE_OPEN_CLOSE (1 << 12) /* application open / close */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #define PVR2_TRACE_CTXT       (1 << 13) /* Main context tracking */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) #define PVR2_TRACE_SYSFS      (1 << 14) /* Sysfs driven I/O */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) #define PVR2_TRACE_FIRMWARE   (1 << 15) /* firmware upload actions */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) #define PVR2_TRACE_CHIPS      (1 << 16) /* chip broadcast operation */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) #define PVR2_TRACE_I2C        (1 << 17) /* I2C related stuff */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) #define PVR2_TRACE_I2C_CMD    (1 << 18) /* Software commands to I2C modules */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) #define PVR2_TRACE_I2C_CORE   (1 << 19) /* I2C core debugging */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) #define PVR2_TRACE_I2C_TRAF   (1 << 20) /* I2C traffic through the adapter */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) #define PVR2_TRACE_V4LIOCTL   (1 << 21) /* v4l ioctl details */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) #define PVR2_TRACE_ENCODER    (1 << 22) /* mpeg2 encoder operation */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) #define PVR2_TRACE_BUF_POOL   (1 << 23) /* Track buffer pool management */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) #define PVR2_TRACE_BUF_FLOW   (1 << 24) /* Track buffer flow in system */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) #define PVR2_TRACE_DATA_FLOW  (1 << 25) /* Track data flow */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) #define PVR2_TRACE_DEBUGIFC   (1 << 26) /* Debug interface actions */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) #define PVR2_TRACE_GPIO       (1 << 27) /* GPIO state bit changes */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) #define PVR2_TRACE_DVB_FEED   (1 << 28) /* DVB transport feed debug */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) #endif /* __PVRUSB2_HDW_INTERNAL_H */