요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
============================
Subsystem drivers using GPIO
============================
Note that standard kernel drivers exist for common GPIO tasks and will provide
the right in-kernel and userspace APIs/ABIs for the job, and that these
drivers can quite easily interconnect with other kernel subsystems using
hardware descriptions such as device tree or ACPI:
- leds-gpio: drivers/leds/leds-gpio.c will handle LEDs connected to GPIO
lines, giving you the LED sysfs interface
- ledtrig-gpio: drivers/leds/trigger/ledtrig-gpio.c will provide a LED trigger,
i.e. a LED will turn on/off in response to a GPIO line going high or low
(and that LED may in turn use the leds-gpio as per above).
- gpio-keys: drivers/input/keyboard/gpio_keys.c is used when your GPIO line
can generate interrupts in response to a key press. Also supports debounce.
- gpio-keys-polled: drivers/input/keyboard/gpio_keys_polled.c is used when your
GPIO line cannot generate interrupts, so it needs to be periodically polled
by a timer.
- gpio_mouse: drivers/input/mouse/gpio_mouse.c is used to provide a mouse with
up to three buttons by simply using GPIOs and no mouse port. You can cut the
mouse cable and connect the wires to GPIO lines or solder a mouse connector
to the lines for a more permanent solution of this type.
- gpio-beeper: drivers/input/misc/gpio-beeper.c is used to provide a beep from
an external speaker connected to a GPIO line. (If the beep is controlled by
off/on, for an actual PWM waveform, see pwm-gpio below.)
- pwm-gpio: drivers/pwm/pwm-gpio.c is used to toggle a GPIO with a high
resolution timer producing a PWM waveform on the GPIO line, as well as
Linux high resolution timers can do.
- extcon-gpio: drivers/extcon/extcon-gpio.c is used when you need to read an
external connector status, such as a headset line for an audio driver or an
HDMI connector. It will provide a better userspace sysfs interface than GPIO.
- restart-gpio: drivers/power/reset/gpio-restart.c is used to restart/reboot
the system by pulling a GPIO line and will register a restart handler so
userspace can issue the right system call to restart the system.
- poweroff-gpio: drivers/power/reset/gpio-poweroff.c is used to power the
system down by pulling a GPIO line and will register a pm_power_off()
callback so that userspace can issue the right system call to power down the
system.
- gpio-gate-clock: drivers/clk/clk-gpio.c is used to control a gated clock
(off/on) that uses a GPIO, and integrated with the clock subsystem.
- i2c-gpio: drivers/i2c/busses/i2c-gpio.c is used to drive an I2C bus
(two wires, SDA and SCL lines) by hammering (bitbang) two GPIO lines. It will
appear as any other I2C bus to the system and makes it possible to connect
drivers for the I2C devices on the bus like any other I2C bus driver.
- spi_gpio: drivers/spi/spi-gpio.c is used to drive an SPI bus (variable number
of wires, at least SCK and optionally MISO, MOSI and chip select lines) using
GPIO hammering (bitbang). It will appear as any other SPI bus on the system
and makes it possible to connect drivers for SPI devices on the bus like
any other SPI bus driver. For example any MMC/SD card can then be connected
to this SPI by using the mmc_spi host from the MMC/SD card subsystem.
- w1-gpio: drivers/w1/masters/w1-gpio.c is used to drive a one-wire bus using
a GPIO line, integrating with the W1 subsystem and handling devices on
the bus like any other W1 device.
- gpio-fan: drivers/hwmon/gpio-fan.c is used to control a fan for cooling the
system, connected to a GPIO line (and optionally a GPIO alarm line),
presenting all the right in-kernel and sysfs interfaces to make your system
not overheat.
- gpio-regulator: drivers/regulator/gpio-regulator.c is used to control a
regulator providing a certain voltage by pulling a GPIO line, integrating
with the regulator subsystem and giving you all the right interfaces.
- gpio-wdt: drivers/watchdog/gpio_wdt.c is used to provide a watchdog timer
that will periodically "ping" a hardware connected to a GPIO line by toggling
it from 1-to-0-to-1. If that hardware does not receive its "ping"
periodically, it will reset the system.
- gpio-nand: drivers/mtd/nand/raw/gpio.c is used to connect a NAND flash chip
to a set of simple GPIO lines: RDY, NCE, ALE, CLE, NWP. It interacts with the
NAND flash MTD subsystem and provides chip access and partition parsing like
any other NAND driving hardware.
- ps2-gpio: drivers/input/serio/ps2-gpio.c is used to drive a PS/2 (IBM) serio
bus, data and clock line, by bit banging two GPIO lines. It will appear as
any other serio bus to the system and makes it possible to connect drivers
for e.g. keyboards and other PS/2 protocol based devices.
- cec-gpio: drivers/media/platform/cec-gpio/ is used to interact with a CEC
Consumer Electronics Control bus using only GPIO. It is used to communicate
with devices on the HDMI bus.
- gpio-charger: drivers/power/supply/gpio-charger.c is used if you need to do
battery charging and all you have to go by to check the presence of the
AC charger or more complex tasks such as indicating charging status using
nothing but GPIO lines, this driver provides that and also a clearly defined
way to pass the charging parameters from hardware descriptions such as the
device tree.
- gpio-mux: drivers/mux/gpio.c is used for controlling a multiplexer using
n GPIO lines such that you can mux in 2^n different devices by activating
different GPIO lines. Often the GPIOs are on a SoC and the devices are
some SoC-external entities, such as different components on a PCB that
can be selectively enabled.
Apart from this there are special GPIO drivers in subsystems like MMC/SD to
read card detect and write protect GPIO lines, and in the TTY serial subsystem
to emulate MCTRL (modem control) signals CTS/RTS by using two GPIO lines. The
MTD NOR flash has add-ons for extra GPIO lines too, though the address bus is
usually connected directly to the flash.
Use those instead of talking directly to the GPIOs from userspace; they
integrate with kernel frameworks better than your userspace code could.
Needless to say, just using the appropriate kernel drivers will simplify and
speed up your embedded hacking in particular by providing ready-made components.
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
GPIO 작업에는 표준 subsystem driver 사용
1-9문서 제목은 `Subsystem drivers using GPIO`입니다. 일반적인 GPIO 작업에는 표준 kernel driver가 이미 존재하며, 각 작업에 맞는 in-kernel API와 userspace API/ABI를 제공합니다.
이 driver들은 Device Tree나 ACPI 같은 hardware description을 통해 다른 kernel subsystem과 쉽게 연결됩니다. 따라서 userspace에서 GPIO를 직접 제어하기 전에 해당 subsystem driver를 선택해야 합니다.
직접 GPIO 제어보다 표준 subsystem driver를 우선하는 흐름입니다.
LED·입력·전원 관련 GPIO driver
10-48LED, key, mouse, beeper, PWM, connector, restart와 poweroff에는 다음 표준 driver를 사용합니다.
원문 driver 이름, source path, 제공 interface와 동작을 보존했습니다.
Clock·bus·냉각·watchdog·media driver
49-95Clock, serial bus, fan, regulator, watchdog, NAND, PS/2와 HDMI CEC에도 GPIO 기반 표준 driver가 있습니다.
GPIO bitbang과 subsystem 통합 방식을 정리했습니다.
GPIO line으로 만든 bus가 기존 subsystem에 연결되는 공통 구조입니다.
Charger·mux와 subsystem별 전용 helper
96-119`gpio-charger`의 source path는 `drivers/power/supply/gpio-charger.c`입니다. AC charger 존재 여부나 charging status를 GPIO만으로 판단해야 할 때 battery charging 기능을 제공하며, Device Tree 같은 hardware description에서 charging parameter를 전달하는 명확한 방식을 정의합니다.
`gpio-mux`의 source path는 `drivers/mux/gpio.c`입니다. n개 GPIO line의 조합으로 2^n개 device 가운데 하나를 선택하는 multiplexer를 제어합니다. GPIO는 흔히 SoC에 있고 선택 대상은 PCB의 여러 component처럼 SoC 외부 entity입니다.
이 밖에도 MMC/SD subsystem에는 card-detect와 write-protect GPIO를 읽는 전용 driver가 있고, TTY serial subsystem에는 두 GPIO line으로 CTS/RTS MCTRL modem-control signal을 흉내 내는 지원이 있습니다. MTD NOR flash에도 추가 GPIO line용 add-on이 있지만 address bus는 보통 flash에 직접 연결됩니다.
Userspace에서 GPIO를 직접 다루지 말고 이런 driver를 사용해야 합니다. Kernel framework와의 통합은 userspace code보다 낫고, 준비된 component를 이용하면 특히 embedded system 개발이 더 단순하고 빨라집니다.
Charger, mux와 subsystem 전용 GPIO 기능입니다.
요약과 해설
drivers-on-gpio.rst:1-119GPIO로 LED·key·bus·power·watchdog 등을 구현할 때는 userspace에서 line을 직접 조작하기보다 해당 kernel subsystem driver를 사용해야 합니다. 표준 driver는 Device Tree·ACPI 연결과 안정된 kernel·userspace interface를 함께 제공합니다.