si4713.txt 1018 B

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