mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
4760b6fa44
The Nintendo Wii game console has a GPIO controller, which is used for the optical disk slot LED, buttons, poweroff, etc. This patch adds a binding for this GPIO controller. Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
28 lines
929 B
Plaintext
28 lines
929 B
Plaintext
Nintendo Wii (Hollywood) GPIO controller
|
|
|
|
Required properties:
|
|
- compatible: "nintendo,hollywood-gpio
|
|
- reg: Physical base address and length of the controller's registers.
|
|
- gpio-controller: Marks the device node as a GPIO controller.
|
|
- #gpio-cells: Should be <2>. The first cell is the pin number and the
|
|
second cell is used to specify optional parameters:
|
|
- bit 0 specifies polarity (0 for normal, 1 for inverted).
|
|
|
|
Optional properties:
|
|
- ngpios: see Documentation/devicetree/bindings/gpio/gpio.txt
|
|
- interrupt-controller: Marks the device node as an interrupt controller.
|
|
- #interrupt-cells: Should be two.
|
|
- interrupts: Interrupt specifier for the controller's Broadway (PowerPC)
|
|
interrupt.
|
|
- interrupt-parent: phandle of the parent interrupt controller.
|
|
|
|
Example:
|
|
|
|
GPIO: gpio@d8000c0 {
|
|
#gpio-cells = <2>;
|
|
compatible = "nintendo,hollywood-gpio";
|
|
reg = <0x0d8000c0 0x40>;
|
|
gpio-controller;
|
|
ngpios = <24>;
|
|
}
|