This patch adds GPIO and 96board LS (Low Speed)iexpansion connector support for SiFive HiFive Unleashed and also enables GPIO basic test. Signed-off-by: Katsuhiro Suzuki <katsuhiro@katsuster.net>
14 lines
233 B
Plaintext
14 lines
233 B
Plaintext
/*
|
|
* Copyright (c) 2021 Katsuhiro Suzuki
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
resources {
|
|
compatible = "test-gpio-basic-api";
|
|
out-gpios = <&gpio0 0 0>; /* GPIO-A */
|
|
in-gpios = <&gpio0 1 0>; /* GPIO-B */
|
|
};
|
|
};
|