Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6: driver-core: fix kernel-doc parameter name UIO: Add missing documentation of features added recently Sync patch for jp_JP/stable_kernel_rules.txt
This commit is contained in:
commit
5488ace40b
|
@ -41,6 +41,12 @@ GPL version 2.
|
||||||
</abstract>
|
</abstract>
|
||||||
|
|
||||||
<revhistory>
|
<revhistory>
|
||||||
|
<revision>
|
||||||
|
<revnumber>0.7</revnumber>
|
||||||
|
<date>2008-12-23</date>
|
||||||
|
<authorinitials>hjk</authorinitials>
|
||||||
|
<revremark>Added generic platform drivers and offset attribute.</revremark>
|
||||||
|
</revision>
|
||||||
<revision>
|
<revision>
|
||||||
<revnumber>0.6</revnumber>
|
<revnumber>0.6</revnumber>
|
||||||
<date>2008-12-05</date>
|
<date>2008-12-05</date>
|
||||||
|
@ -312,6 +318,16 @@ interested in translating it, please email me
|
||||||
pointed to by addr.
|
pointed to by addr.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<filename>offset</filename>: The offset, in bytes, that has to be
|
||||||
|
added to the pointer returned by <function>mmap()</function> to get
|
||||||
|
to the actual device memory. This is important if the device's memory
|
||||||
|
is not page aligned. Remember that pointers returned by
|
||||||
|
<function>mmap()</function> are always page aligned, so it is good
|
||||||
|
style to always add this offset.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
|
@ -594,6 +610,78 @@ framework to set up sysfs files for this region. Simply leave it alone.
|
||||||
</para>
|
</para>
|
||||||
</sect1>
|
</sect1>
|
||||||
|
|
||||||
|
<sect1 id="using_uio_pdrv">
|
||||||
|
<title>Using uio_pdrv for platform devices</title>
|
||||||
|
<para>
|
||||||
|
In many cases, UIO drivers for platform devices can be handled in a
|
||||||
|
generic way. In the same place where you define your
|
||||||
|
<varname>struct platform_device</varname>, you simply also implement
|
||||||
|
your interrupt handler and fill your
|
||||||
|
<varname>struct uio_info</varname>. A pointer to this
|
||||||
|
<varname>struct uio_info</varname> is then used as
|
||||||
|
<varname>platform_data</varname> for your platform device.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
You also need to set up an array of <varname>struct resource</varname>
|
||||||
|
containing addresses and sizes of your memory mappings. This
|
||||||
|
information is passed to the driver using the
|
||||||
|
<varname>.resource</varname> and <varname>.num_resources</varname>
|
||||||
|
elements of <varname>struct platform_device</varname>.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
You now have to set the <varname>.name</varname> element of
|
||||||
|
<varname>struct platform_device</varname> to
|
||||||
|
<varname>"uio_pdrv"</varname> to use the generic UIO platform device
|
||||||
|
driver. This driver will fill the <varname>mem[]</varname> array
|
||||||
|
according to the resources given, and register the device.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
The advantage of this approach is that you only have to edit a file
|
||||||
|
you need to edit anyway. You do not have to create an extra driver.
|
||||||
|
</para>
|
||||||
|
</sect1>
|
||||||
|
|
||||||
|
<sect1 id="using_uio_pdrv_genirq">
|
||||||
|
<title>Using uio_pdrv_genirq for platform devices</title>
|
||||||
|
<para>
|
||||||
|
Especially in embedded devices, you frequently find chips where the
|
||||||
|
irq pin is tied to its own dedicated interrupt line. In such cases,
|
||||||
|
where you can be really sure the interrupt is not shared, we can take
|
||||||
|
the concept of <varname>uio_pdrv</varname> one step further and use a
|
||||||
|
generic interrupt handler. That's what
|
||||||
|
<varname>uio_pdrv_genirq</varname> does.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
The setup for this driver is the same as described above for
|
||||||
|
<varname>uio_pdrv</varname>, except that you do not implement an
|
||||||
|
interrupt handler. The <varname>.handler</varname> element of
|
||||||
|
<varname>struct uio_info</varname> must remain
|
||||||
|
<varname>NULL</varname>. The <varname>.irq_flags</varname> element
|
||||||
|
must not contain <varname>IRQF_SHARED</varname>.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
You will set the <varname>.name</varname> element of
|
||||||
|
<varname>struct platform_device</varname> to
|
||||||
|
<varname>"uio_pdrv_genirq"</varname> to use this driver.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
The generic interrupt handler of <varname>uio_pdrv_genirq</varname>
|
||||||
|
will simply disable the interrupt line using
|
||||||
|
<function>disable_irq_nosync()</function>. After doing its work,
|
||||||
|
userspace can reenable the interrupt by writing 0x00000001 to the UIO
|
||||||
|
device file. The driver already implements an
|
||||||
|
<function>irq_control()</function> to make this possible, you must not
|
||||||
|
implement your own.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Using <varname>uio_pdrv_genirq</varname> not only saves a few lines of
|
||||||
|
interrupt handler code. You also do not need to know anything about
|
||||||
|
the chip's internal registers to create the kernel part of the driver.
|
||||||
|
All you need to know is the irq number of the pin the chip is
|
||||||
|
connected to.
|
||||||
|
</para>
|
||||||
|
</sect1>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
||||||
<chapter id="userspace_driver" xreflabel="Writing a driver in user space">
|
<chapter id="userspace_driver" xreflabel="Writing a driver in user space">
|
||||||
|
|
|
@ -12,11 +12,11 @@ file at first.
|
||||||
|
|
||||||
==================================
|
==================================
|
||||||
これは、
|
これは、
|
||||||
linux-2.6.24/Documentation/stable_kernel_rules.txt
|
linux-2.6.29/Documentation/stable_kernel_rules.txt
|
||||||
の和訳です。
|
の和訳です。
|
||||||
|
|
||||||
翻訳団体: JF プロジェクト < http://www.linux.or.jp/JF/ >
|
翻訳団体: JF プロジェクト < http://www.linux.or.jp/JF/ >
|
||||||
翻訳日: 2007/12/30
|
翻訳日: 2009/1/14
|
||||||
翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com>
|
翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com>
|
||||||
校正者: 武井伸光さん、<takei at webmasters dot gr dot jp>
|
校正者: 武井伸光さん、<takei at webmasters dot gr dot jp>
|
||||||
かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp>
|
かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp>
|
||||||
|
@ -38,12 +38,15 @@ linux-2.6.24/Documentation/stable_kernel_rules.txt
|
||||||
- ビルドエラー(CONFIG_BROKENになっているものを除く), oops, ハング、デー
|
- ビルドエラー(CONFIG_BROKENになっているものを除く), oops, ハング、デー
|
||||||
タ破壊、現実のセキュリティ問題、その他 "ああ、これはダメだね"という
|
タ破壊、現実のセキュリティ問題、その他 "ああ、これはダメだね"という
|
||||||
ようなものを修正しなければならない。短く言えば、重大な問題。
|
ようなものを修正しなければならない。短く言えば、重大な問題。
|
||||||
|
- 新しい device ID とクオークも受け入れられる。
|
||||||
- どのように競合状態が発生するかの説明も一緒に書かれていない限り、
|
- どのように競合状態が発生するかの説明も一緒に書かれていない限り、
|
||||||
"理論的には競合状態になる"ようなものは不可。
|
"理論的には競合状態になる"ようなものは不可。
|
||||||
- いかなる些細な修正も含めることはできない。(スペルの修正、空白のクリー
|
- いかなる些細な修正も含めることはできない。(スペルの修正、空白のクリー
|
||||||
ンアップなど)
|
ンアップなど)
|
||||||
- 対応するサブシステムメンテナが受け入れたものでなければならない。
|
|
||||||
- Documentation/SubmittingPatches の規則に従ったものでなければならない。
|
- Documentation/SubmittingPatches の規則に従ったものでなければならない。
|
||||||
|
- パッチ自体か同等の修正が Linus のツリーに既に存在しなければならない。
|
||||||
|
Linus のツリーでのコミットID を -stable へのパッチ投稿の際に引用す
|
||||||
|
ること。
|
||||||
|
|
||||||
-stable ツリーにパッチを送付する手続き-
|
-stable ツリーにパッチを送付する手続き-
|
||||||
|
|
||||||
|
@ -52,8 +55,10 @@ linux-2.6.24/Documentation/stable_kernel_rules.txt
|
||||||
- 送信者はパッチがキューに受け付けられた際には ACK を、却下された場合
|
- 送信者はパッチがキューに受け付けられた際には ACK を、却下された場合
|
||||||
には NAK を受け取る。この反応は開発者たちのスケジュールによって、数
|
には NAK を受け取る。この反応は開発者たちのスケジュールによって、数
|
||||||
日かかる場合がある。
|
日かかる場合がある。
|
||||||
- もし受け取られたら、パッチは他の開発者たちのレビューのために
|
- もし受け取られたら、パッチは他の開発者たちと関連するサブシステムの
|
||||||
-stable キューに追加される。
|
メンテナーによるレビューのために -stable キューに追加される。
|
||||||
|
- パッチに stable@kernel.org のアドレスが付加されているときには、それ
|
||||||
|
が Linus のツリーに入る時に自動的に stable チームに email される。
|
||||||
- セキュリティパッチはこのエイリアス (stable@kernel.org) に送られるべ
|
- セキュリティパッチはこのエイリアス (stable@kernel.org) に送られるべ
|
||||||
きではなく、代わりに security@kernel.org のアドレスに送られる。
|
きではなく、代わりに security@kernel.org のアドレスに送られる。
|
||||||
|
|
||||||
|
|
|
@ -1280,7 +1280,7 @@ EXPORT_SYMBOL_GPL(__root_device_register);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* root_device_unregister - unregister and free a root device
|
* root_device_unregister - unregister and free a root device
|
||||||
* @root: device going away.
|
* @dev: device going away
|
||||||
*
|
*
|
||||||
* This function unregisters and cleans up a device that was created by
|
* This function unregisters and cleans up a device that was created by
|
||||||
* root_device_register().
|
* root_device_register().
|
||||||
|
|
Loading…
Reference in New Issue