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/media/si4713.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 * Silicon Labs FM Radio transmitter
    2 
    3 The Silicon Labs Si4713 is an FM radio transmitter with receive power scan
    4 supporting 76-108 MHz. It includes an RDS encoder and has both, a stereo-analog
    5 and a digital interface, which supports I2S, left-justified and a custom
    6 DSP-mode format. It is programmable through an I2C interface.
    7 
    8 Required Properties:
    9 - compatible: Should contain "silabs,si4713"
   10 - reg: the I2C address of the device
   11 
   12 Optional Properties:
   13 - interrupts-extended: Interrupt specifier for the chips interrupt
   14 - reset-gpios: GPIO specifier for the chips reset line
   15 - vdd-supply: phandle for Vdd regulator
   16 - vio-supply: phandle for Vio regulator
   17 
   18 Example:
   19 
   20 &i2c2 {
   21         fmtx: si4713@63 {
   22                 compatible = "silabs,si4713";
   23                 reg = <0x63>;
   24 
   25                 interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */
   26                 reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */
   27                 vio-supply = <&vio>;
   28                 vdd-supply = <&vaux1>;
   29         };
   30 };

Cache object: 04937600fc2c0f968db4abe82551cc02


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