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/si470x.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 receiver
    2 
    3 The Silicon Labs Si470x is family of FM radio receivers with receive power scan
    4 supporting 76-108 MHz, programmable through an I2C interface.
    5 Some of them includes an RDS encoder.
    6 
    7 Required Properties:
    8 - compatible: Should contain "silabs,si470x"
    9 - reg: the I2C address of the device
   10 
   11 Optional Properties:
   12 - interrupts : The interrupt number
   13 - reset-gpios: GPIO specifier for the chips reset line
   14 
   15 Example:
   16 
   17 &i2c2 {
   18         si470x@63 {
   19                 compatible = "silabs,si470x";
   20                 reg = <0x63>;
   21 
   22                 interrupt-parent = <&gpj2>;
   23                 interrupts = <4 IRQ_TYPE_EDGE_FALLING>;
   24                 reset-gpios = <&gpj2 5 GPIO_ACTIVE_HIGH>;
   25         };
   26 };

Cache object: fd315f2bb5e3f2ad5ce9350039a972f0


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