<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/misc/mei, branch v3.9-rc2</title>
<subtitle>Linux kernel source tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/'/>
<entry>
<title>mei: fix undefined wd symbols when MEI_ME is not set</title>
<updated>2013-02-07T22:00:25+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-07T20:27:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=b95d788ac72b86515842a4eb92bb58a8da76a975'/>
<id>b95d788ac72b86515842a4eb92bb58a8da76a975</id>
<content type='text'>
Currently watchdog client is compiled with MEI and not
with MEI_ME

Fixes error:
When CONFIG_WATCHDOG is not enabled:

ERROR: "watchdog_unregister_device" [drivers/misc/mei/mei.ko] undefined!
ERROR: "watchdog_register_device" [drivers/misc/mei/mei.ko] undefined

Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;
Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently watchdog client is compiled with MEI and not
with MEI_ME

Fixes error:
When CONFIG_WATCHDOG is not enabled:

ERROR: "watchdog_unregister_device" [drivers/misc/mei/mei.ko] undefined!
ERROR: "watchdog_register_device" [drivers/misc/mei/mei.ko] undefined

Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;
Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: move clients cleanup code from init.c to client.c</title>
<updated>2013-02-06T19:24:33+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-06T12:06:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=074b4c01abb68c6767612a01f41e9b4ed93d5fb8'/>
<id>074b4c01abb68c6767612a01f41e9b4ed93d5fb8</id>
<content type='text'>
during reset we clean up client data structures
we move that code into wrappers in client
and call the wrappers

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
during reset we clean up client data structures
we move that code into wrappers in client
and call the wrappers

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: rename to mei_host_buffer_is_empty to hbuf_is_ready</title>
<updated>2013-02-06T19:24:33+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-06T12:06:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=330dd7da5ec80e2c49c66bf353d8b4fa4fb8f5a9'/>
<id>330dd7da5ec80e2c49c66bf353d8b4fa4fb8f5a9</id>
<content type='text'>
we rename the mei_host_buffer_is_empty to keep naming
convention of hbuf and also make the query more generic
to be correct also for other under laying hardware

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we rename the mei_host_buffer_is_empty to keep naming
convention of hbuf and also make the query more generic
to be correct also for other under laying hardware

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: move interrupt handlers to be me hw specific</title>
<updated>2013-02-06T19:24:33+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-06T12:06:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=06ecd6459800962155c485e27d9dd30268b579bf'/>
<id>06ecd6459800962155c485e27d9dd30268b579bf</id>
<content type='text'>
interrupt handler are  platform specifics so we move
them to hw-mei.c. For sake of that we need to export
write, read, and complete handlers from the interrupt.c

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
interrupt handler are  platform specifics so we move
them to hw-mei.c. For sake of that we need to export
write, read, and complete handlers from the interrupt.c

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: separate compilation of the ME hardware specifics</title>
<updated>2013-02-06T19:23:47+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-06T12:06:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=827eef51f8dd9a4ab62b4ad270c15472f46938f2'/>
<id>827eef51f8dd9a4ab62b4ad270c15472f46938f2</id>
<content type='text'>
We add struct mei_hw_ops to virtualize access to hw specific
configurations. This allows us to separate the compilation
of the ME interface from the ME hardware specifics

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We add struct mei_hw_ops to virtualize access to hw specific
configurations. This allows us to separate the compilation
of the ME interface from the ME hardware specifics

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: initial extract of ME hw specifics from mei_device</title>
<updated>2013-02-06T19:23:14+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-06T12:06:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=52c34561415b420301f1580413a9d1891d079494'/>
<id>52c34561415b420301f1580413a9d1891d079494</id>
<content type='text'>
This is initial step of move the ME hw specifics
out of mei_device structure into mei_me_hw

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is initial step of move the ME hw specifics
out of mei_device structure into mei_me_hw

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: sperate interface and pci code into two files</title>
<updated>2013-02-06T19:21:51+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-02-06T12:06:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=2703d4b2e673cc240ad06d79d131fd1d0f77d65d'/>
<id>2703d4b2e673cc240ad06d79d131fd1d0f77d65d</id>
<content type='text'>
leave misc file operations in the main
and move PCI related code into pci-me

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
leave misc file operations in the main
and move PCI related code into pci-me

Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge 3.8-rc4 into char-misc-next</title>
<updated>2013-01-18T17:31:04+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2013-01-18T17:31:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=6596afe3f3b17b44c5fcc1a8c1102e0fe28a17eb'/>
<id>6596afe3f3b17b44c5fcc1a8c1102e0fe28a17eb</id>
<content type='text'>
This brings in all of the mei and other fixes that are needed to continue
development in this branch.

Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This brings in all of the mei and other fixes that are needed to continue
development in this branch.

Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: Fix some more kernel-doc typos in hw-me.c</title>
<updated>2013-01-17T19:59:53+00:00</updated>
<author>
<name>Sedat Dilek</name>
<email>sedat.dilek@gmail.com</email>
</author>
<published>2013-01-17T18:54:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=7353f85ce82baa363b0338ef4cb3745eb0686760'/>
<id>7353f85ce82baa363b0338ef4cb3745eb0686760</id>
<content type='text'>
Signed-off-by: Sedat Dilek &lt;sedat.dilek@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Sedat Dilek &lt;sedat.dilek@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mei: drop the warning when cl is not initialized during unlinking</title>
<updated>2013-01-14T16:26:03+00:00</updated>
<author>
<name>Tomas Winkler</name>
<email>tomas.winkler@intel.com</email>
</author>
<published>2013-01-10T15:32:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=8e9a4a9a5c8e8765417d54ed6917c7e1e4d09f4d'/>
<id>8e9a4a9a5c8e8765417d54ed6917c7e1e4d09f4d</id>
<content type='text'>
On systems where wd and amthif is not initialized
we will hit cl-&gt;dev == NULL. This condition is okay
so we don't need to be laud about it.

Fixes the follwing warning during suspend
[  137.061985] WARNING: at drivers/misc/mei/client.c:315 mei_cl_unlink+0x86/0x90 [mei]()
[  137.061986] Hardware name: 530U3BI/530U4BI/530U4BH
[  137.062140] Modules linked in: snd_hda_codec_hdmi snd_hda_codec_realtek joydev coretemp kvm_intel snd_hda_intel snd_hda_codec kvm arc4 iwldvm snd_hwdep i915 snd_pcm mac80211 ghash_clmulni_intel snd_page_alloc aesni_intel snd_seq_midi xts snd_seq_midi_event aes_x86_64 rfcomm snd_rawmidi parport_pc bnep lrw snd_seq uvcvideo i2c_algo_bit ppdev gf128mul iwlwifi snd_timer drm_kms_helper ablk_helper cryptd drm snd_seq_device videobuf2_vmalloc psmouse videobuf2_memops snd cfg80211 btusb videobuf2_core soundcore videodev lp bluetooth samsung_laptop wmi microcode mei serio_raw mac_hid video hid_generic lpc_ich parport usbhid hid r8169
[  137.062143] Pid: 2706, comm: kworker/u:15 Tainted: G      D W    3.8.0-rc2-next20130109-1-iniza-generic #1
[  137.062144] Call Trace:
[  137.062156]  [&lt;ffffffff8105860f&gt;] warn_slowpath_common+0x7f/0xc0
[  137.062159]  [&lt;ffffffff8135b1ea&gt;] ? ioread32+0x3a/0x40
[  137.062162]  [&lt;ffffffff8105866a&gt;] warn_slowpath_null+0x1a/0x20
[  137.062168]  [&lt;ffffffffa0076be6&gt;] mei_cl_unlink+0x86/0x90 [mei]
[  137.062173]  [&lt;ffffffffa0071325&gt;] mei_reset+0xc5/0x240 [mei]
[  137.062178]  [&lt;ffffffffa0073703&gt;] mei_pci_resume+0xa3/0x110 [mei]
[  137.062183]  [&lt;ffffffff81379cae&gt;] pci_pm_resume+0x7e/0xe0
[  137.062185]  [&lt;ffffffff81379c30&gt;] ? pci_pm_thaw+0x80/0x80
[  137.062189]  [&lt;ffffffff8145a415&gt;] dpm_run_callback.isra.6+0x25/0x50
[  137.062192]  [&lt;ffffffff8145a6cf&gt;] device_resume+0x9f/0x140
[  137.062194]  [&lt;ffffffff8145a791&gt;] async_resume+0x21/0x50
[  137.062200]  [&lt;ffffffff810858b0&gt;] async_run_entry_fn+0x90/0x1c0
[  137.062203]  [&lt;ffffffff810778e5&gt;] process_one_work+0x155/0x460
[  137.062207]  [&lt;ffffffff81078578&gt;] worker_thread+0x168/0x400
[  137.062210]  [&lt;ffffffff81078410&gt;] ? manage_workers+0x2b0/0x2b0
[  137.062214]  [&lt;ffffffff8107d9f0&gt;] kthread+0xc0/0xd0
[  137.062218]  [&lt;ffffffff8107d930&gt;] ? flush_kthread_worker+0xb0/0xb0
[  137.062222]  [&lt;ffffffff816bac6c&gt;] ret_from_fork+0x7c/0xb0
[  137.062228]  [&lt;ffffffff8107d930&gt;] ? flush_kthread_worker+0xb0/0xb0

Reported-by: Sedat Dilek &lt;sedat.dilek@gmail.com&gt;
Tested-by: Sedat Dilek &lt;sedat.dilek@gmail.com&gt;
Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On systems where wd and amthif is not initialized
we will hit cl-&gt;dev == NULL. This condition is okay
so we don't need to be laud about it.

Fixes the follwing warning during suspend
[  137.061985] WARNING: at drivers/misc/mei/client.c:315 mei_cl_unlink+0x86/0x90 [mei]()
[  137.061986] Hardware name: 530U3BI/530U4BI/530U4BH
[  137.062140] Modules linked in: snd_hda_codec_hdmi snd_hda_codec_realtek joydev coretemp kvm_intel snd_hda_intel snd_hda_codec kvm arc4 iwldvm snd_hwdep i915 snd_pcm mac80211 ghash_clmulni_intel snd_page_alloc aesni_intel snd_seq_midi xts snd_seq_midi_event aes_x86_64 rfcomm snd_rawmidi parport_pc bnep lrw snd_seq uvcvideo i2c_algo_bit ppdev gf128mul iwlwifi snd_timer drm_kms_helper ablk_helper cryptd drm snd_seq_device videobuf2_vmalloc psmouse videobuf2_memops snd cfg80211 btusb videobuf2_core soundcore videodev lp bluetooth samsung_laptop wmi microcode mei serio_raw mac_hid video hid_generic lpc_ich parport usbhid hid r8169
[  137.062143] Pid: 2706, comm: kworker/u:15 Tainted: G      D W    3.8.0-rc2-next20130109-1-iniza-generic #1
[  137.062144] Call Trace:
[  137.062156]  [&lt;ffffffff8105860f&gt;] warn_slowpath_common+0x7f/0xc0
[  137.062159]  [&lt;ffffffff8135b1ea&gt;] ? ioread32+0x3a/0x40
[  137.062162]  [&lt;ffffffff8105866a&gt;] warn_slowpath_null+0x1a/0x20
[  137.062168]  [&lt;ffffffffa0076be6&gt;] mei_cl_unlink+0x86/0x90 [mei]
[  137.062173]  [&lt;ffffffffa0071325&gt;] mei_reset+0xc5/0x240 [mei]
[  137.062178]  [&lt;ffffffffa0073703&gt;] mei_pci_resume+0xa3/0x110 [mei]
[  137.062183]  [&lt;ffffffff81379cae&gt;] pci_pm_resume+0x7e/0xe0
[  137.062185]  [&lt;ffffffff81379c30&gt;] ? pci_pm_thaw+0x80/0x80
[  137.062189]  [&lt;ffffffff8145a415&gt;] dpm_run_callback.isra.6+0x25/0x50
[  137.062192]  [&lt;ffffffff8145a6cf&gt;] device_resume+0x9f/0x140
[  137.062194]  [&lt;ffffffff8145a791&gt;] async_resume+0x21/0x50
[  137.062200]  [&lt;ffffffff810858b0&gt;] async_run_entry_fn+0x90/0x1c0
[  137.062203]  [&lt;ffffffff810778e5&gt;] process_one_work+0x155/0x460
[  137.062207]  [&lt;ffffffff81078578&gt;] worker_thread+0x168/0x400
[  137.062210]  [&lt;ffffffff81078410&gt;] ? manage_workers+0x2b0/0x2b0
[  137.062214]  [&lt;ffffffff8107d9f0&gt;] kthread+0xc0/0xd0
[  137.062218]  [&lt;ffffffff8107d930&gt;] ? flush_kthread_worker+0xb0/0xb0
[  137.062222]  [&lt;ffffffff816bac6c&gt;] ret_from_fork+0x7c/0xb0
[  137.062228]  [&lt;ffffffff8107d930&gt;] ? flush_kthread_worker+0xb0/0xb0

Reported-by: Sedat Dilek &lt;sedat.dilek@gmail.com&gt;
Tested-by: Sedat Dilek &lt;sedat.dilek@gmail.com&gt;
Signed-off-by: Tomas Winkler &lt;tomas.winkler@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
