Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: net: bluetooth: nxp: Add support for host-wakeup

Add support for host wakeup on interrupt.

Signed-off-by: Neeraj Sanjay Kale <neeraj.sanjaykale@nxp.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

authored by

Neeraj Sanjay Kale and committed by
Luiz Augusto von Dentz
a12a5f5f c4dbb1bd

+17
+17
Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
··· 48 48 description: 49 49 The GPIO number of the NXP chipset used for BT_WAKE_IN. 50 50 51 + interrupts: 52 + maxItems: 1 53 + description: 54 + Host wakeup by falling edge interrupt on this pin which is 55 + connected to BT_WAKE_OUT pin of the NXP chipset. 56 + 57 + interrupt-names: 58 + items: 59 + - const: wakeup 60 + 61 + wakeup-source: true 62 + 51 63 nxp,wakeout-pin: 52 64 $ref: /schemas/types.yaml#/definitions/uint8 53 65 description: ··· 73 61 examples: 74 62 - | 75 63 #include <dt-bindings/gpio/gpio.h> 64 + #include <dt-bindings/interrupt-controller/irq.h> 76 65 serial { 77 66 bluetooth { 78 67 compatible = "nxp,88w8987-bt"; ··· 83 70 nxp,wakein-pin = /bits/ 8 <18>; 84 71 nxp,wakeout-pin = /bits/ 8 <19>; 85 72 local-bd-address = [66 55 44 33 22 11]; 73 + interrupt-parent = <&gpio>; 74 + interrupts = <8 IRQ_TYPE_EDGE_FALLING>; 75 + interrupt-names = "wakeup"; 76 + wakeup-source; 86 77 }; 87 78 };