Hello NXP Team,
I'm currently working on a custom Linux BSP for the i.MX6SX-sdb processor and would like to interface the TEF3200HN/V205Y DAB tuner chip via I2C.
Could you please provide:
- A Linux kernel driver (or reference driver) for the TEF3200HN?
- The appropriate compatible string and any required device tree bindings.
- Any documentation regarding register map, initialization sequences, or I2C protocol for the TEF3200HN.
For example, in my device tree, I'm planning something along the lines of:
&i2c1 {
clock-frequency = <100000>;
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_i2c1>;
tef3200: tef3200@60 {
compatible = "nxp,tef3200hn";
reg = <0x60>;
status = "okay";
/* Add GPIOs, supplies, clocks here if required */
};
};
I'm currently using Linux kernel 6.12.3-lts-next
and Yocto-based build system.
Looking forward to your support.
Thank You,