cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mrf24j40.txt (538B)


      1* MRF24J40 IEEE 802.15.4 *
      2
      3Required properties:
      4  - compatible:		should be "microchip,mrf24j40", "microchip,mrf24j40ma",
      5			or "microchip,mrf24j40mc" depends on your transceiver
      6			board
      7  - spi-max-frequency:	maximal bus speed, should be set something under or equal
      8			10000000
      9  - reg:		the chipselect index
     10  - interrupts:		the interrupt generated by the device.
     11
     12Example:
     13
     14	mrf24j40ma@0 {
     15		compatible = "microchip,mrf24j40ma";
     16		spi-max-frequency = <8500000>;
     17		reg = <0>;
     18		interrupts = <19 8>;
     19		interrupt-parent = <&gpio3>;
     20	};