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/soc/bcm/raspberrypi,bcm2835-power.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 Raspberry Pi power domain driver
    2 
    3 Required properties:
    4 
    5 - compatible:           Should be "raspberrypi,bcm2835-power".
    6 - firmware:             Reference to the RPi firmware device node.
    7 - #power-domain-cells:  Should be <1>, we providing multiple power domains.
    8 
    9 The valid defines for power domain are:
   10 
   11  RPI_POWER_DOMAIN_I2C0
   12  RPI_POWER_DOMAIN_I2C1
   13  RPI_POWER_DOMAIN_I2C2
   14  RPI_POWER_DOMAIN_VIDEO_SCALER
   15  RPI_POWER_DOMAIN_VPU1
   16  RPI_POWER_DOMAIN_HDMI
   17  RPI_POWER_DOMAIN_USB
   18  RPI_POWER_DOMAIN_VEC
   19  RPI_POWER_DOMAIN_JPEG
   20  RPI_POWER_DOMAIN_H264
   21  RPI_POWER_DOMAIN_V3D
   22  RPI_POWER_DOMAIN_ISP
   23  RPI_POWER_DOMAIN_UNICAM0
   24  RPI_POWER_DOMAIN_UNICAM1
   25  RPI_POWER_DOMAIN_CCP2RX
   26  RPI_POWER_DOMAIN_CSI2
   27  RPI_POWER_DOMAIN_CPI
   28  RPI_POWER_DOMAIN_DSI0
   29  RPI_POWER_DOMAIN_DSI1
   30  RPI_POWER_DOMAIN_TRANSPOSER
   31  RPI_POWER_DOMAIN_CCP2TX
   32  RPI_POWER_DOMAIN_CDP
   33  RPI_POWER_DOMAIN_ARM
   34 
   35 Example:
   36 
   37 power: power {
   38         compatible = "raspberrypi,bcm2835-power";
   39         firmware = <&firmware>;
   40         #power-domain-cells = <1>;
   41 };
   42 
   43 Example for using power domain:
   44 
   45 &usb {
   46        power-domains = <&power RPI_POWER_DOMAIN_USB>;
   47 };

Cache object: 0cb5f1c6c9f040a336bd29888f97a39e


[ 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.