1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
From b37ac8c50684c3517fb9c6f737e7ea444a7d7405 Mon Sep 17 00:00:00 2001
From: Dave Stevenson <dave.stevenson@raspberrypi.org>
Date: Thu, 5 Sep 2019 17:41:46 +0100
Subject: [PATCH] overlays: mcp23017: Add option for not connecting the
int GPIO
The interrupt GPIO is optional to the driver, therefore add an
option to not configure it.
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
---
arch/arm/boot/dts/overlays/README | 1 +
.../boot/dts/overlays/mcp23017-overlay.dts | 21 +++++++++++++------
2 files changed, 16 insertions(+), 6 deletions(-)
--- a/arch/arm/boot/dts/overlays/README
+++ b/arch/arm/boot/dts/overlays/README
@@ -1427,6 +1427,7 @@ Params: gpiopin Gpio pin
addr I2C address of the MCP23017 (default: 0x20)
mcp23008 Configure an MCP23008 instead.
+ noints Disable the interrupt GPIO line.
Name: mcp23s17
--- a/arch/arm/boot/dts/overlays/mcp23017-overlay.dts
+++ b/arch/arm/boot/dts/overlays/mcp23017-overlay.dts
@@ -34,11 +34,6 @@
reg = <0x20>;
gpio-controller;
#gpio-cells = <2>;
- #interrupt-cells=<2>;
- interrupt-parent = <&gpio>;
- interrupts = <4 2>;
- interrupt-controller;
- microchip,irq-mirror;
status = "okay";
};
@@ -52,11 +47,25 @@
};
};
+ fragment@4 {
+ target = <&i2c1>;
+ __overlay__ {
+ mcp23017_irq: mcp@20 {
+ #interrupt-cells=<2>;
+ interrupt-parent = <&gpio>;
+ interrupts = <4 2>;
+ interrupt-controller;
+ microchip,irq-mirror;
+ };
+ };
+ };
+
__overrides__ {
gpiopin = <&mcp23017_pins>,"brcm,pins:0",
- <&mcp23017>,"interrupts:0";
+ <&mcp23017_irq>,"interrupts:0";
addr = <&mcp23017>,"reg:0", <&mcp23017_pins>,"reg:0";
mcp23008 = <0>,"=3";
+ noints = <0>,"!1!4";
};
};
|