diff options
author | James Hogan <james.hogan@imgtec.com> | 2014-02-28 20:17:05 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-03-11 13:28:20 -0300 |
commit | ab88c66deace78989aa71cb139284cf7fb227ba4 (patch) | |
tree | 26f8bb54eddd1fc41ba758ab5c2c70c5ca553d53 /Documentation | |
parent | acff5f24732acc8a55d0a0f0ee1d19442267df63 (diff) | |
download | blackbird-op-linux-ab88c66deace78989aa71cb139284cf7fb227ba4.tar.gz blackbird-op-linux-ab88c66deace78989aa71cb139284cf7fb227ba4.zip |
[media] rc: add wakeup_protocols sysfs file
Add a wakeup_protocols sysfs file which controls the new
rc_dev::enabled_protocols[RC_FILTER_WAKEUP], which is the mask of
protocols that are used for the wakeup filter.
A new RC driver callback change_wakeup_protocol() is called to change
the wakeup protocol mask.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Reviewed-by: Antti Seppälä <a.seppala@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/ABI/testing/sysfs-class-rc | 23 | ||||
-rw-r--r-- | Documentation/DocBook/media/v4l/remote_controllers.xml | 20 |
2 files changed, 39 insertions, 4 deletions
diff --git a/Documentation/ABI/testing/sysfs-class-rc b/Documentation/ABI/testing/sysfs-class-rc index c0e1d14cae6e..b65674da43bb 100644 --- a/Documentation/ABI/testing/sysfs-class-rc +++ b/Documentation/ABI/testing/sysfs-class-rc @@ -61,6 +61,25 @@ Description: an error. This value may be reset to 0 if the current protocol is altered. +What: /sys/class/rc/rcN/wakeup_protocols +Date: Feb 2014 +KernelVersion: 3.15 +Contact: Mauro Carvalho Chehab <m.chehab@samsung.com> +Description: + Reading this file returns a list of available protocols to use + for the wakeup filter, something like: + "rc5 rc6 nec jvc [sony]" + The enabled wakeup protocol is shown in [] brackets. + Writing "+proto" will add a protocol to the list of enabled + wakeup protocols. + Writing "-proto" will remove a protocol from the list of enabled + wakeup protocols. + Writing "proto" will use "proto" for wakeup events. + Writing "none" will disable wakeup. + Write fails with EINVAL if an invalid protocol combination or + unknown protocol name is used, or if wakeup is not supported by + the hardware. + What: /sys/class/rc/rcN/wakeup_filter Date: Jan 2014 KernelVersion: 3.15 @@ -74,7 +93,7 @@ Description: scancodes which match the filter will wake the system from e.g. suspend to RAM or power off. Otherwise the write will fail with an error. - This value may be reset to 0 if the current protocol is altered. + This value may be reset to 0 if the wakeup protocol is altered. What: /sys/class/rc/rcN/wakeup_filter_mask Date: Jan 2014 @@ -89,4 +108,4 @@ Description: scancodes which match the filter will wake the system from e.g. suspend to RAM or power off. Otherwise the write will fail with an error. - This value may be reset to 0 if the current protocol is altered. + This value may be reset to 0 if the wakeup protocol is altered. diff --git a/Documentation/DocBook/media/v4l/remote_controllers.xml b/Documentation/DocBook/media/v4l/remote_controllers.xml index c440a81f14c0..5124a6c4daa8 100644 --- a/Documentation/DocBook/media/v4l/remote_controllers.xml +++ b/Documentation/DocBook/media/v4l/remote_controllers.xml @@ -102,6 +102,22 @@ an error.</para> <para>This value may be reset to 0 if the current protocol is altered.</para> </section> +<section id="sys_class_rc_rcN_wakeup_protocols"> +<title>/sys/class/rc/rcN/wakeup_protocols</title> +<para>Reading this file returns a list of available protocols to use for the +wakeup filter, something like:</para> +<para><constant>rc5 rc6 nec jvc [sony]</constant></para> +<para>The enabled wakeup protocol is shown in [] brackets.</para> +<para>Writing "+proto" will add a protocol to the list of enabled wakeup +protocols.</para> +<para>Writing "-proto" will remove a protocol from the list of enabled wakeup +protocols.</para> +<para>Writing "proto" will use "proto" for wakeup events.</para> +<para>Writing "none" will disable wakeup.</para> +<para>Write fails with EINVAL if an invalid protocol combination or unknown +protocol name is used, or if wakeup is not supported by the hardware.</para> + +</section> <section id="sys_class_rc_rcN_wakeup_filter"> <title>/sys/class/rc/rcN/wakeup_filter</title> <para>Sets the scancode wakeup filter expected value. @@ -112,7 +128,7 @@ to trigger a system wake event.</para> scancodes which match the filter will wake the system from e.g. suspend to RAM or power off. Otherwise the write will fail with an error.</para> -<para>This value may be reset to 0 if the current protocol is altered.</para> +<para>This value may be reset to 0 if the wakeup protocol is altered.</para> </section> <section id="sys_class_rc_rcN_wakeup_filter_mask"> @@ -125,7 +141,7 @@ expected value to trigger a system wake event.</para> scancodes which match the filter will wake the system from e.g. suspend to RAM or power off. Otherwise the write will fail with an error.</para> -<para>This value may be reset to 0 if the current protocol is altered.</para> +<para>This value may be reset to 0 if the wakeup protocol is altered.</para> </section> </section> |