Back to home page

OSCL-LXR

 
 

    


0001 Fairchild FUSB302 Type-C Port controllers
0002 
0003 Required properties :
0004 - compatible             : "fcs,fusb302"
0005 - reg                    : I2C slave address
0006 - interrupts             : Interrupt specifier
0007 
0008 Required sub-node:
0009 - connector : The "usb-c-connector" attached to the FUSB302 IC. The bindings
0010   of the connector node are specified in:
0011 
0012         Documentation/devicetree/bindings/connector/usb-connector.yaml
0013 
0014 
0015 Example:
0016 
0017 fusb302: typec-portc@54 {
0018         compatible = "fcs,fusb302";
0019         reg = <0x54>;
0020         interrupt-parent = <&nmi_intc>;
0021         interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
0022 
0023         usb_con: connector {
0024                 compatible = "usb-c-connector";
0025                 label = "USB-C";
0026                 power-role = "dual";
0027                 try-power-role = "sink";
0028                 source-pdos = <PDO_FIXED(5000, 3000, PDO_FIXED_USB_COMM)>;
0029                 sink-pdos = <PDO_FIXED(5000, 3000, PDO_FIXED_USB_COMM)
0030                              PDO_VAR(3000, 12000, 3000)
0031                              PDO_PPS_APDO(3000, 11000, 3000)>;
0032                 op-sink-microwatt = <10000000>;
0033         };
0034 };