The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/extcon/extcon-ptn5150.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 * PTN5150 CC (Configuration Channel) Logic device
    2 
    3 PTN5150 is a small thin low power CC logic chip supporting the USB Type-C
    4 connector application with CC control logic detection and indication functions.
    5 It is interfaced to the host controller using an I2C interface.
    6 
    7 Required properties:
    8 - compatible: should be "nxp,ptn5150"
    9 - reg: specifies the I2C slave address of the device
   10 - int-gpio: should contain a phandle and GPIO specifier for the GPIO pin
   11         connected to the PTN5150's INTB pin.
   12 - vbus-gpio: should contain a phandle and GPIO specifier for the GPIO pin which
   13         is used to control VBUS.
   14 - pinctrl-names : a pinctrl state named "default" must be defined.
   15 - pinctrl-0 : phandle referencing pin configuration of interrupt and vbus
   16         control.
   17 
   18 Example:
   19         ptn5150@1d {
   20                 compatible = "nxp,ptn5150";
   21                 reg = <0x1d>;
   22                 int-gpio = <&msmgpio 78 GPIO_ACTIVE_HIGH>;
   23                 vbus-gpio = <&msmgpio 148 GPIO_ACTIVE_HIGH>;
   24                 pinctrl-names = "default";
   25                 pinctrl-0 = <&ptn5150_default>;
   26                 status = "okay";
   27         };

Cache object: 1094e9e902f85cc58c3d50ff513488aa


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.