File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
tests/drivers/gpio/gpio_basic_api/boards Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ ram: 2048
8
8
supported :
9
9
- watchdog
10
10
- pwm
11
+ - gpio
11
12
testing :
12
13
timeout_multiplier : 4
13
14
ignore_tags :
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2023 Intel Corporation
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ /*
7
+ * Connect loopback between GPP_B_14 and GPP_B_15.
8
+ * BIOS settings to mark these two pins as GPIO
9
+ * Under Intel Advanced Menu > PCH-IO Configuration
10
+ * Enable Timed GPIO0 > Disable
11
+ * Enable Timed GPIO1 > Disable
12
+ * ISH Configuration > GP_6 > Unchecked [ ]
13
+ * ISH Configuration > GP_7 > Unchecked [ ]
14
+ */
15
+ / {
16
+ resources {
17
+ compatible = "test-gpio-basic-api";
18
+
19
+ out-gpios = <&gpio_0_b 14 0>;
20
+ in-gpios = <&gpio_0_b 15 0>;
21
+ };
22
+ };
You can’t perform that action at this time.
0 commit comments