Hi,

I am trying to use an at86rf212b on a Raspberry Pi 1B and I am facing difficulties to modify the dts file in order to set spi for my transceiver. Is there somebody who knows which dts I need to modify in order to compile OpenWRT and to make it works ? I already tried to add to bcm2835-rpi-b.dts the line below and it doesn't worked :

&spi0 {
    status = "okay";
    at86rf212@0 {
        compatible = "atmel,at86rf212";
        reg = <0>;
        interrupts = <23 1>;
        interrupt-parent = <&gpio>;
        reset-gpio = <&gpio 24 1>;
        sleep-tpio = <&gpio 25 1>;
        spi-max-frequency = <1000000>;
    };
};

Thanks for your answers !