~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/boot/dts/st/st-pincfg.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _ST_PINCFG_H_
  3 #define _ST_PINCFG_H_
  4 
  5 /* Alternate functions */
  6 #define ALT1    1
  7 #define ALT2    2
  8 #define ALT3    3
  9 #define ALT4    4
 10 #define ALT5    5
 11 #define ALT6    6
 12 #define ALT7    7
 13 
 14 /* Output enable */
 15 #define OE                      (1 << 27)
 16 /* Pull Up */
 17 #define PU                      (1 << 26)
 18 /* Open Drain */
 19 #define OD                      (1 << 25)
 20 #define RT                      (1 << 23)
 21 #define INVERTCLK               (1 << 22)
 22 #define CLKNOTDATA              (1 << 21)
 23 #define DOUBLE_EDGE             (1 << 20)
 24 #define CLK_A                   (0 << 18)
 25 #define CLK_B                   (1 << 18)
 26 #define CLK_C                   (2 << 18)
 27 #define CLK_D                   (3 << 18)
 28 
 29 /* User-frendly defines for Pin Direction */
 30                 /* oe = 0, pu = 0, od = 0 */
 31 #define IN                      (0)
 32                 /* oe = 0, pu = 1, od = 0 */
 33 #define IN_PU                   (PU)
 34                 /* oe = 1, pu = 0, od = 0 */
 35 #define OUT                     (OE)
 36                 /* oe = 1, pu = 0, od = 1 */
 37 #define BIDIR                   (OE | OD)
 38                 /* oe = 1, pu = 1, od = 1 */
 39 #define BIDIR_PU                (OE | PU | OD)
 40 
 41 /* RETIME_TYPE */
 42 /*
 43  * B Mode
 44  * Bypass retime with optional delay parameter
 45  */
 46 #define BYPASS          (0)
 47 /*
 48  * R0, R1, R0D, R1D modes
 49  * single-edge data non inverted clock, retime data with clk
 50  */
 51 #define SE_NICLK_IO     (RT)
 52 /*
 53  * RIV0, RIV1, RIV0D, RIV1D modes
 54  * single-edge data inverted clock, retime data with clk
 55  */
 56 #define SE_ICLK_IO      (RT | INVERTCLK)
 57 /*
 58  * R0E, R1E, R0ED, R1ED modes
 59  * double-edge data, retime data with clk
 60  */
 61 #define DE_IO           (RT | DOUBLE_EDGE)
 62 /*
 63  * CIV0, CIV1 modes with inverted clock
 64  * Retiming the clk pins will park clock & reduce the noise within the core.
 65  */
 66 #define ICLK            (RT | CLKNOTDATA | INVERTCLK)
 67 /*
 68  * CLK0, CLK1 modes with non-inverted clock
 69  * Retiming the clk pins will park clock & reduce the noise within the core.
 70  */
 71 #define NICLK           (RT | CLKNOTDATA)
 72 #endif /* _ST_PINCFG_H_ */
 73 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php