요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
Configured output settings
sysfs-class-regulator:91-143microvolts, microamps와 opmode는 control input 설정이며 enabled 여부와 실제 출력값은 state/status를 함께 확인해야 합니다.
Safe voltage and current constraints
sysfs-class-regulator:146-203Power domain의 minimum·maximum voltage와 current limit constraint를 제공하며 platform에 정의되지 않으면 명시적 문자열을 반환합니다.
Identity, consumers, and supply parent
sysfs-class-regulator:206-246Display name, regulator_enable() user 수, 전체 requested load와 parent 또는 supply regulator link를 제공합니다.
Suspend voltage, mode, and state
sysfs-class-regulator:248-351Suspend-to-memory, disk, standby 각각에 적용할 regulator voltage, operating mode와 enable state constraint를 제공합니다.
Bypass mode
sysfs-class-regulator:353-372Regulator가 bypass 중인지, 정상 regulation 중인지, software가 판단할 수 없는지를 보고합니다.
Fault and warning indicators
sysfs-class-regulator:374-453Under-voltage, over-current, regulation loss, output fail, over-temperature fault와 네 가지 warning을 binary 값으로 제공합니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
What: /sys/class/regulator/.../state
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
state. This reports the regulator enable control, for
regulators which can report that input value.
This will be one of the following strings:
'enabled'
'disabled'
'unknown'
'enabled' means the regulator output is ON and is supplying
power to the system (assuming no error prevents it).
'disabled' means the regulator output is OFF and is not
supplying power to the system (unless some non-Linux
control has enabled it).
'unknown' means software cannot determine the state, or
the reported state is invalid.
NOTE: this field can be used in conjunction with microvolts
or microamps to determine configured regulator output levels.
What: /sys/class/regulator/.../status
Description:
Some regulator directories will contain a field called
"status". This reports the current regulator status, for
regulators which can report that output value.
This will be one of the following strings:
- off
- on
- error
- fast
- normal
- idle
- standby
"off" means the regulator is not supplying power to the
system.
"on" means the regulator is supplying power to the system,
and the regulator can't report a detailed operation mode.
"error" indicates an out-of-regulation status such as being
disabled due to thermal shutdown, or voltage being unstable
because of problems with the input power supply.
"fast", "normal", "idle", and "standby" are all detailed
regulator operation modes (described elsewhere). They
imply "on", but provide more detail.
Note that regulator status is a function of many inputs,
not limited to control inputs from Linux. For example,
the actual load presented may trigger "error" status; or
a regulator may be enabled by another user, even though
Linux did not enable it.
What: /sys/class/regulator/.../type
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Each regulator directory will contain a field called
type. This holds the regulator type.
This will be one of the following strings:
- 'voltage'
- 'current'
- 'unknown'
'voltage' means the regulator output voltage can be controlled
by software.
'current' means the regulator output current limit can be
controlled by software.
'unknown' means software cannot control either voltage or
current limit.
What: /sys/class/regulator/.../microvolts
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
microvolts. This holds the regulator output voltage setting
measured in microvolts (i.e. E-6 Volts), for regulators
which can report the control input for voltage.
NOTE: This value should not be used to determine the regulator
output voltage level as this value is the same regardless of
whether the regulator is enabled or disabled.
What: /sys/class/regulator/.../microamps
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
microamps. This holds the regulator output current limit
setting measured in microamps (i.e. E-6 Amps), for regulators
which can report the control input for a current limit.
NOTE: This value should not be used to determine the regulator
output current level as this value is the same regardless of
whether the regulator is enabled or disabled.
What: /sys/class/regulator/.../opmode
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
opmode. This holds the current regulator operating mode,
for regulators which can report that control input value.
The opmode value can be one of the following strings:
- 'fast'
- 'normal'
- 'idle'
- 'standby'
- 'unknown'
The modes are described in include/linux/regulator/consumer.h
NOTE: This value should not be used to determine the regulator
output operating mode as this value is the same regardless of
whether the regulator is enabled or disabled. A "status"
attribute may be available to determine the actual mode.
What: /sys/class/regulator/.../min_microvolts
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
min_microvolts. This holds the minimum safe working regulator
output voltage setting for this domain measured in microvolts,
for regulators which support voltage constraints.
NOTE: this will return the string 'constraint not defined' if
the power domain has no min microvolts constraint defined by
platform code.
What: /sys/class/regulator/.../max_microvolts
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
max_microvolts. This holds the maximum safe working regulator
output voltage setting for this domain measured in microvolts,
for regulators which support voltage constraints.
NOTE: this will return the string 'constraint not defined' if
the power domain has no max microvolts constraint defined by
platform code.
What: /sys/class/regulator/.../min_microamps
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
min_microamps. This holds the minimum safe working regulator
output current limit setting for this domain measured in
microamps, for regulators which support current constraints.
NOTE: this will return the string 'constraint not defined' if
the power domain has no min microamps constraint defined by
platform code.
What: /sys/class/regulator/.../max_microamps
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
max_microamps. This holds the maximum safe working regulator
output current limit setting for this domain measured in
microamps, for regulators which support current constraints.
NOTE: this will return the string 'constraint not defined' if
the power domain has no max microamps constraint defined by
platform code.
What: /sys/class/regulator/.../name
Date: October 2008
KernelVersion: 2.6.28
Contact: Liam Girdwood <[email protected]>
Description:
Each regulator directory will contain a field called
name. This holds a string identifying the regulator for
display purposes.
NOTE: this will be empty if no suitable name is provided
by platform or regulator drivers.
What: /sys/class/regulator/.../num_users
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Each regulator directory will contain a field called
num_users. This holds the number of consumer devices that
have called regulator_enable() on this regulator.
What: /sys/class/regulator/.../requested_microamps
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
requested_microamps. This holds the total requested load
current in microamps for this regulator from all its consumer
devices.
What: /sys/class/regulator/.../parent
Date: April 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a link called parent.
This points to the parent or supply regulator if one exists.
What: /sys/class/regulator/.../suspend_mem_microvolts
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_mem_microvolts. This holds the regulator output
voltage setting for this domain measured in microvolts when
the system is suspended to memory, for voltage regulators
implementing suspend voltage configuration constraints.
What: /sys/class/regulator/.../suspend_disk_microvolts
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_disk_microvolts. This holds the regulator output
voltage setting for this domain measured in microvolts when
the system is suspended to disk, for voltage regulators
implementing suspend voltage configuration constraints.
What: /sys/class/regulator/.../suspend_standby_microvolts
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_standby_microvolts. This holds the regulator output
voltage setting for this domain measured in microvolts when
the system is suspended to standby, for voltage regulators
implementing suspend voltage configuration constraints.
What: /sys/class/regulator/.../suspend_mem_mode
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_mem_mode. This holds the regulator operating mode
setting for this domain when the system is suspended to
memory, for regulators implementing suspend mode
configuration constraints.
What: /sys/class/regulator/.../suspend_disk_mode
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_disk_mode. This holds the regulator operating mode
setting for this domain when the system is suspended to disk,
for regulators implementing suspend mode configuration
constraints.
What: /sys/class/regulator/.../suspend_standby_mode
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_standby_mode. This holds the regulator operating mode
setting for this domain when the system is suspended to
standby, for regulators implementing suspend mode
configuration constraints.
What: /sys/class/regulator/.../suspend_mem_state
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_mem_state. This holds the regulator operating state
when suspended to memory, for regulators implementing suspend
configuration constraints.
This will be one of the same strings reported by
the "state" attribute.
What: /sys/class/regulator/.../suspend_disk_state
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_disk_state. This holds the regulator operating state
when suspended to disk, for regulators implementing
suspend configuration constraints.
This will be one of the same strings reported by
the "state" attribute.
What: /sys/class/regulator/.../suspend_standby_state
Date: May 2008
KernelVersion: 2.6.26
Contact: Liam Girdwood <[email protected]>
Description:
Some regulator directories will contain a field called
suspend_standby_state. This holds the regulator operating
state when suspended to standby, for regulators implementing
suspend configuration constraints.
This will be one of the same strings reported by
the "state" attribute.
What: /sys/class/regulator/.../bypass
Date: September 2012
KernelVersion: 3.7
Contact: Mark Brown <[email protected]>
Description:
Some regulator directories will contain a field called
bypass. This indicates if the device is in bypass mode.
This will be one of the following strings:
- 'enabled'
- 'disabled'
- 'unknown'
'enabled' means the regulator is in bypass mode.
'disabled' means that the regulator is regulating.
'unknown' means software cannot determine the state, or
the reported state is invalid.
What: /sys/class/regulator/.../under_voltage
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
under_voltage. This indicates if the device reports an
under-voltage fault (1) or not (0).
What: /sys/class/regulator/.../over_current
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
over_current. This indicates if the device reports an
over-current fault (1) or not (0).
What: /sys/class/regulator/.../regulation_out
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
regulation_out. This indicates if the device reports an
out-of-regulation fault (1) or not (0).
What: /sys/class/regulator/.../fail
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
fail. This indicates if the device reports an output failure
(1) or not (0).
What: /sys/class/regulator/.../over_temp
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
over_temp. This indicates if the device reports an
over-temperature fault (1) or not (0).
What: /sys/class/regulator/.../under_voltage_warn
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
under_voltage_warn. This indicates if the device reports an
under-voltage warning (1) or not (0).
What: /sys/class/regulator/.../over_current_warn
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
over_current_warn. This indicates if the device reports an
over-current warning (1) or not (0).
What: /sys/class/regulator/.../over_voltage_warn
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
over_voltage_warn. This indicates if the device reports an
over-voltage warning (1) or not (0).
What: /sys/class/regulator/.../over_temp_warn
Date: April 2022
KernelVersion: 5.18
Contact: Zev Weiss <[email protected]>
Description:
Some regulator directories will contain a field called
over_temp_warn. This indicates if the device reports an
over-temperature warning (1) or not (0).
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Regulator enable-control state
1-28| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../state |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 일부 regulator directory에는 state field가 있습니다. Enable control input 값을 보고할 수 있는 regulator에서 regulator enable control을 나타냅니다. 값은 'enabled', 'disabled', 'unknown' 중 하나입니다. 'enabled'는 error가 막지 않는 한 regulator output이 ON이고 system에 power를 공급함을 뜻합니다. 'disabled'는 non-Linux control이 enable하지 않은 한 output이 OFF이고 power를 공급하지 않음을 뜻합니다. 'unknown'은 software가 state를 판단할 수 없거나 보고된 state가 invalid함을 뜻합니다. 이 field를 microvolts 또는 microamps와 함께 사용하면 configured regulator output level을 판단할 수 있습니다. |
state는 enable control input을 나타내며 실제 출력에 error나 외부 control이 영향을 줄 수 있습니다.
Current regulator output status
30-64| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../status |
| Description | 일부 regulator directory의 status field는 output 값을 보고할 수 있는 regulator에서 current status를 나타냅니다. 값은 off, on, error, fast, normal, idle, standby 중 하나입니다. off는 system에 power를 공급하지 않음을, on은 power를 공급하지만 detailed operation mode를 보고할 수 없음을 뜻합니다. error는 thermal shutdown으로 disable되었거나 input power supply 문제로 voltage가 unstable한 것 같은 out-of-regulation status입니다. fast, normal, idle, standby는 모두 regulator가 on임을 내포하면서 더 자세한 operation mode를 제공합니다. Status는 Linux control input에만 한정되지 않는 여러 input의 함수입니다. 실제 load가 error를 유발하거나 Linux가 enable하지 않았어도 다른 user가 regulator를 enable할 수 있습니다. |
status는 실제 output과 detailed operation mode를 보고합니다.
Regulator control type
67-88| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../type |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 각 regulator directory의 type field는 regulator type을 나타냅니다. 'voltage'는 software가 regulator output voltage를 control할 수 있음을, 'current'는 output current limit를 control할 수 있음을 뜻합니다. 'unknown'은 software가 voltage와 current limit 어느 쪽도 control할 수 없음을 뜻합니다. |
Software가 control할 수 있는 output quantity에 따른 type입니다.
Configured output voltage
91-103| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../microvolts |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 일부 regulator directory의 microvolts field는 voltage control input을 보고할 수 있는 regulator에서 microvolt, 즉 10^-6 volt 단위의 regulator output voltage 설정을 보관합니다. Regulator가 enabled인지 disabled인지와 무관하게 값이 같으므로 actual output voltage level을 판단하는 데 이 값만 사용해서는 안 됩니다. |
Configured output current limit
106-118| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../microamps |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 일부 regulator directory의 microamps field는 current-limit control input을 보고할 수 있는 regulator에서 microamp, 즉 10^-6 ampere 단위의 output current-limit 설정을 보관합니다. Regulator가 enabled인지 disabled인지와 무관하게 값이 같으므로 actual output current level을 판단하는 데 이 값만 사용해서는 안 됩니다. |
Configured regulator operating mode
121-143| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../opmode |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 일부 regulator directory의 opmode field는 operating-mode control input을 보고할 수 있는 regulator에서 current configured mode를 보관합니다. 값은 'fast', 'normal', 'idle', 'standby', 'unknown' 중 하나이며 mode 정의는 include/linux/regulator/consumer.h에 있습니다. Regulator가 enabled인지 disabled인지와 무관하게 값이 같으므로 actual output operating mode 판단에 이 값만 사용해서는 안 됩니다. Actual mode는 available한 status attribute로 확인할 수 있습니다. |
Control input attribute는 disabled 상태에서도 유지되므로 actual output attribute와 함께 봅니다.
Minimum safe voltage constraint
146-158| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../min_microvolts |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Voltage constraint를 지원하는 regulator에서 이 power domain의 minimum safe working output-voltage 설정을 microvolt 단위로 보관합니다. Platform code가 minimum microvolts constraint를 정의하지 않았으면 'constraint not defined' 문자열을 반환합니다. |
Maximum safe voltage constraint
161-173| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../max_microvolts |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Voltage constraint를 지원하는 regulator에서 이 power domain의 maximum safe working output-voltage 설정을 microvolt 단위로 보관합니다. Platform code가 maximum microvolts constraint를 정의하지 않았으면 'constraint not defined' 문자열을 반환합니다. |
Minimum safe current constraint
176-188| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../min_microamps |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Current constraint를 지원하는 regulator에서 이 power domain의 minimum safe working output-current-limit 설정을 microamp 단위로 보관합니다. Platform code가 minimum microamps constraint를 정의하지 않았으면 'constraint not defined' 문자열을 반환합니다. |
Maximum safe current constraint
191-203| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../max_microamps |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Current constraint를 지원하는 regulator에서 이 power domain의 maximum safe working output-current-limit 설정을 microamp 단위로 보관합니다. Platform code가 maximum microamps constraint를 정의하지 않았으면 'constraint not defined' 문자열을 반환합니다. |
Voltage와 current limit의 safe working range입니다.
Regulator display name
206-216| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../name |
| Date | 2008년 10월 |
| KernelVersion | 2.6.28 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 각 regulator directory의 name field는 display 목적으로 regulator를 식별하는 문자열을 보관합니다. Platform 또는 regulator driver가 적절한 name을 제공하지 않으면 비어 있습니다. |
Enabled consumer count
219-226| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../num_users |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 각 regulator directory의 num_users field는 이 regulator에 regulator_enable()을 호출한 consumer device 수를 보관합니다. |
Total requested consumer load
229-237| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../requested_microamps |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 일부 regulator directory의 requested_microamps field는 모든 consumer device가 이 regulator에 요청한 total load current를 microamp 단위로 보관합니다. |
Parent or supply regulator link
240-246| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../parent |
| Date | 2008년 4월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | 일부 regulator directory에는 parent라는 link가 있습니다. Parent 또는 supply regulator가 존재하면 이 link가 해당 regulator를 가리킵니다. |
Consumer 요청은 user count와 total load에 집계되고 regulator는 상위 supply를 가리킬 수 있습니다.
Suspend-to-memory voltage
248-257| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_mem_microvolts |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend voltage configuration constraint를 구현하는 voltage regulator에서 system이 memory로 suspend될 때 이 power domain에 적용할 regulator output-voltage 설정을 microvolt 단위로 보관합니다. |
Suspend-to-disk voltage
259-268| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_disk_microvolts |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend voltage configuration constraint를 구현하는 voltage regulator에서 system이 disk로 suspend될 때 이 power domain에 적용할 regulator output-voltage 설정을 microvolt 단위로 보관합니다. |
Suspend-to-standby voltage
270-279| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_standby_microvolts |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend voltage configuration constraint를 구현하는 voltage regulator에서 system이 standby로 suspend될 때 이 power domain에 적용할 regulator output-voltage 설정을 microvolt 단위로 보관합니다. |
Suspend-to-memory operating mode
281-290| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_mem_mode |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend mode configuration constraint를 구현하는 regulator에서 system이 memory로 suspend될 때 이 power domain에 적용할 regulator operating-mode 설정을 보관합니다. |
Suspend-to-disk operating mode
292-301| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_disk_mode |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend mode configuration constraint를 구현하는 regulator에서 system이 disk로 suspend될 때 이 power domain에 적용할 regulator operating-mode 설정을 보관합니다. |
Suspend-to-standby operating mode
303-312| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_standby_mode |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend mode configuration constraint를 구현하는 regulator에서 system이 standby로 suspend될 때 이 power domain에 적용할 regulator operating-mode 설정을 보관합니다. |
Suspend-to-memory regulator state
314-325| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_mem_state |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend configuration constraint를 구현하는 regulator에서 memory suspend 중 적용할 regulator operating state를 보관합니다. 값은 state attribute가 보고하는 것과 같은 문자열 중 하나입니다. |
Suspend-to-disk regulator state
327-338| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_disk_state |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend configuration constraint를 구현하는 regulator에서 disk suspend 중 적용할 regulator operating state를 보관합니다. 값은 state attribute가 보고하는 것과 같은 문자열 중 하나입니다. |
Suspend-to-standby regulator state
340-351| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../suspend_standby_state |
| Date | 2008년 5월 |
| KernelVersion | 2.6.26 |
| Contact | Liam Girdwood <[email protected]> |
| Description | Suspend configuration constraint를 구현하는 regulator에서 standby suspend 중 적용할 regulator operating state를 보관합니다. 값은 state attribute가 보고하는 것과 같은 문자열 중 하나입니다. |
각 suspend target마다 voltage, mode와 state constraint가 한 세트를 이룹니다.
Regulator bypass mode
353-372| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../bypass |
| Date | 2012년 9월 |
| KernelVersion | 3.7 |
| Contact | Mark Brown <[email protected]> |
| Description | 일부 regulator directory의 bypass field는 device가 bypass mode인지 나타냅니다. 값은 'enabled', 'disabled', 'unknown' 중 하나입니다. 'enabled'는 regulator가 bypass mode임을, 'disabled'는 regulator가 regulation 중임을 뜻합니다. 'unknown'은 software가 state를 판단할 수 없거나 보고된 state가 invalid함을 뜻합니다. |
bypass는 regulation path의 사용 여부를 나타냅니다.
Under-voltage fault
374-381| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../under_voltage |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 under_voltage field는 device가 under-voltage fault를 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Over-current fault
383-390| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../over_current |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 over_current field는 device가 over-current fault를 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Out-of-regulation fault
392-399| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../regulation_out |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 regulation_out field는 device가 out-of-regulation fault를 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Regulator output failure
401-408| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../fail |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 fail field는 device가 output failure를 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Over-temperature fault
410-417| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../over_temp |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 over_temp field는 device가 over-temperature fault를 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Under-voltage warning
419-426| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../under_voltage_warn |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 under_voltage_warn field는 device가 under-voltage warning을 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Over-current warning
428-435| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../over_current_warn |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 over_current_warn field는 device가 over-current warning을 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Over-voltage warning
437-444| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../over_voltage_warn |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 over_voltage_warn field는 device가 over-voltage warning을 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
Over-temperature warning
446-453| 항목 | 한국어 전문 번역 |
|---|---|
| What | /sys/class/regulator/.../over_temp_warn |
| Date | 2022년 4월 |
| KernelVersion | 5.18 |
| Contact | Zev Weiss <[email protected]> |
| Description | 일부 regulator directory의 over_temp_warn field는 device가 over-temperature warning을 보고하면 1, 그렇지 않으면 0을 나타냅니다. |
모든 flag는 condition을 보고하면 1, 그렇지 않으면 0입니다.
State, status, and regulator type
sysfs-class-regulator:1-89Enable control 입력인 state와 실제 출력 상태인 status를 구분하고 voltage, current, unknown regulator type을 식별합니다.