요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
DA8XX USB OHCI controller
Required properties:
- compatible: Should be "ti,da830-ohci"
- reg: Should contain one register range i.e. start and length
- interrupts: Description of the interrupt line
- phys: Phandle for the PHY device
- phy-names: Should be "usb-phy"
Optional properties:
- vbus-supply: phandle of regulator that controls vbus power / over-current
Example:
ohci: usb@225000 {
compatible = "ti,da830-ohci";
reg = <0x225000 0x1000>;
interrupts = <59>;
phys = <&usb_phy 1>;
phy-names = "usb-phy";
vbus-supply = <®_usb_ohci>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
DA8XX USB OHCI controller
1-2이 문서는 TI DA8XX 계열 USB OHCI controller의 필수·선택 속성을 정의합니다.
PHY와 VBUS regulator
3-13필수 `compatible`은 `ti,da830-ohci`입니다. `reg`는 시작 주소와 길이로 된 register range 하나, `interrupts`는 interrupt line, `phys`는 PHY device phandle이며 `phy-names`는 `usb-phy`여야 합니다.
선택 `vbus-supply`는 VBUS 전원과 over-current를 제어하는 regulator phandle입니다.
Required properties:
- compatible: Should be "ti,da830-ohci"
- reg: Should contain one register range i.e. start and length
- interrupts: Description of the interrupt line
- phys: Phandle for the PHY device
- phy-names: Should be "usb-phy"
Optional properties:
- vbus-supply: phandle of regulator that controls vbus power / over-current
DA830 OHCI 예제
14-23예제 `usb@225000`은 0x1000-byte register 영역, interrupt 59, `usb_phy`의 PHY index 1, `usb-phy` 이름과 `reg_usb_ohci` VBUS regulator를 사용합니다.
Example:
ohci: usb@225000 {
compatible = "ti,da830-ohci";
reg = <0x225000 0x1000>;
interrupts = <59>;
phys = <&usb_phy 1>;
phy-names = "usb-phy";
vbus-supply = <®_usb_ohci>;
};
요약과 해설
ohci-da8xx.txt:1-23DA8XX OHCI의 PHY, interrupt와 VBUS regulator 연결을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, interrupt, clock, PHY, power, source path와 원문 줄 좌표를 원형대로 보존합니다.