0001 * Silicon Labs FM Radio transmitter
0002
0003 The Silicon Labs Si4713 is an FM radio transmitter with receive power scan
0004 supporting 76-108 MHz. It includes an RDS encoder and has both, a stereo-analog
0005 and a digital interface, which supports I2S, left-justified and a custom
0006 DSP-mode format. It is programmable through an I2C interface.
0007
0008 Required Properties:
0009 - compatible: Should contain "silabs,si4713"
0010 - reg: the I2C address of the device
0011
0012 Optional Properties:
0013 - interrupts-extended: Interrupt specifier for the chips interrupt
0014 - reset-gpios: GPIO specifier for the chips reset line
0015 - vdd-supply: phandle for Vdd regulator
0016 - vio-supply: phandle for Vio regulator
0017
0018 Example:
0019
0020 &i2c2 {
0021 fmtx: si4713@63 {
0022 compatible = "silabs,si4713";
0023 reg = <0x63>;
0024
0025 interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */
0026 reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */
0027 vio-supply = <&vio>;
0028 vdd-supply = <&vaux1>;
0029 };
0030 };