kernel-api.tmpl
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN"[]>
  2. <book id="LinuxKernelAPI">
  3.  <bookinfo>
  4.   <title>The Linux Kernel API</title>
  5.   
  6.   <legalnotice>
  7.    <para>
  8.      This documentation is free software; you can redistribute
  9.      it and/or modify it under the terms of the GNU General Public
  10.      License as published by the Free Software Foundation; either
  11.      version 2 of the License, or (at your option) any later
  12.      version.
  13.    </para>
  14.       
  15.    <para>
  16.      This program is distributed in the hope that it will be
  17.      useful, but WITHOUT ANY WARRANTY; without even the implied
  18.      warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  19.      See the GNU General Public License for more details.
  20.    </para>
  21.       
  22.    <para>
  23.      You should have received a copy of the GNU General Public
  24.      License along with this program; if not, write to the Free
  25.      Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  26.      MA 02111-1307 USA
  27.    </para>
  28.       
  29.    <para>
  30.      For more details see the file COPYING in the source
  31.      distribution of Linux.
  32.    </para>
  33.   </legalnotice>
  34.  </bookinfo>
  35. <toc></toc>
  36.   <chapter id="Basics">
  37.      <title>Driver Basics</title>
  38.      <sect1><title>Driver Entry and Exit points</title>
  39. !Iinclude/linux/init.h
  40.      </sect1>
  41.      <sect1><title>Atomic and pointer manipulation</title>
  42. !Iinclude/asm-i386/atomic.h
  43. !Iinclude/asm-i386/unaligned.h
  44.      </sect1>
  45.      <sect1><title>Delaying, scheduling, and timer routines</title>
  46. !Ekernel/sched.c
  47.      </sect1>
  48.   </chapter>
  49.   <chapter id="adt">
  50.      <title>Data Types</title>
  51.      <sect1><title>Doubly Linked Lists</title>
  52. !Iinclude/linux/list.h
  53.      </sect1>
  54.   </chapter>
  55.   <chapter id="libc">
  56.      <title>Basic C Library Functions</title>
  57.      <para>
  58.        When writing drivers, you cannot in general use routines which are
  59.        from the C Library.  Some of the functions have been found generally
  60.        useful and they are listed below.  The behaviour of these functions
  61.        may vary slightly from those defined by ANSI, and these deviations
  62.        are noted in the text.
  63.      </para>
  64.      <sect1><title>String Conversions</title>
  65. !Ilib/vsprintf.c
  66. !Elib/vsprintf.c
  67.      </sect1>
  68.      <sect1><title>String Manipulation</title>
  69. !Ilib/string.c
  70.      </sect1>
  71.      <sect1><title>Bit Operations</title>
  72. !Iinclude/asm-i386/bitops.h
  73.      </sect1>
  74.   </chapter>
  75.   <chapter id="mm">
  76.      <title>Memory Management in Linux</title>
  77.      <sect1><title>The Slab Cache</title>
  78. !Emm/slab.c
  79.       </sect1>
  80.   </chapter>
  81.   <chapter id="proc">
  82.      <title>The proc filesystem</title>
  83.  
  84.      <sect1><title>sysctl interface</title>
  85. !Ekernel/sysctl.c
  86.      </sect1>
  87.   </chapter>
  88.   <chapter id="vfs">
  89.      <title>The Linux VFS</title>
  90.      <sect1><title>The Directory Cache</title>
  91. !Efs/dcache.c
  92. !Iinclude/linux/dcache.h
  93.      </sect1>
  94.      <sect1><title>Inode Handling</title>
  95. !Efs/inode.c
  96. !Efs/bad_inode.c
  97.      </sect1>
  98.      <sect1><title>Registration and Superblocks</title>
  99. !Efs/super.c
  100.      </sect1>
  101.      <sect1><title>File Locks</title>
  102. !Efs/locks.c
  103. !Ifs/locks.c
  104.      </sect1>
  105.   </chapter>
  106.   <chapter id="netcore">
  107.      <title>Linux Networking</title>
  108.      <sect1><title>Socket Buffer Functions</title>
  109. !Iinclude/linux/skbuff.h
  110. !Enet/core/skbuff.c
  111.      </sect1>
  112.      <sect1><title>Socket Filter</title>
  113. !Enet/core/filter.c
  114.      </sect1>
  115.   </chapter>
  116.   <chapter id="netdev">
  117.      <title>Network device support</title>
  118.      <sect1><title>Driver Support</title>
  119. !Edrivers/net/net_init.c
  120. !Enet/core/dev.c
  121.      </sect1>
  122.      <sect1><title>8390 Based Network Cards</title>
  123. !Edrivers/net/8390.c
  124.      </sect1>
  125.      <sect1><title>Synchronous PPP</title>
  126. !Edrivers/net/wan/syncppp.c
  127.      </sect1>
  128.   </chapter>
  129.   <chapter id="modload">
  130.      <title>Module Support</title>
  131.      <sect1><title>Module Loading</title>
  132. !Ekernel/kmod.c
  133.      </sect1>
  134.      <sect1><title>Inter Module support</title>
  135. !Ekernel/module.c
  136.      </sect1>
  137.   </chapter>
  138.   <chapter id="hardware">
  139.      <title>Hardware Interfaces</title>
  140.      <sect1><title>Interrupt Handling</title>
  141. !Iarch/i386/kernel/irq.c
  142.      </sect1>
  143.      <sect1><title>MTRR Handling</title>
  144. !Earch/i386/kernel/mtrr.c
  145.      </sect1>
  146.      <sect1><title>PCI Support Library</title>
  147. !Edrivers/pci/pci.c
  148.      </sect1>
  149.      <sect1><title>MCA Architecture</title>
  150. <sect2><title>MCA Device Functions</title>
  151. !Earch/i386/kernel/mca.c
  152. </sect2>
  153. <sect2><title>MCA Bus DMA</title>
  154. !Iinclude/asm-i386/mca_dma.h
  155. </sect2>
  156.      </sect1>
  157.   </chapter>
  158.   <chapter id="devfs">
  159.      <title>The Device File System</title>
  160. !Efs/devfs/base.c
  161.   </chapter>
  162.   <chapter id="pmfuncs">
  163.      <title>Power Management</title>
  164. !Ekernel/pm.c
  165.   </chapter>
  166.   <chapter id="blkdev">
  167.      <title>Block Devices</title>
  168. !Edrivers/block/ll_rw_blk.c
  169.   </chapter>
  170.   <chapter id="miscdev">
  171.      <title>Miscellaneous Devices</title>
  172. !Edrivers/char/misc.c
  173.   </chapter>
  174.   <chapter id="viddev">
  175.      <title>Video4Linux</title>
  176. !Edrivers/media/video/videodev.c
  177.   </chapter>
  178.   <chapter id="snddev">
  179.      <title>Sound Devices</title>
  180. !Edrivers/sound/sound_core.c
  181. !Idrivers/sound/sound_firmware.c
  182.   </chapter>
  183.   <chapter id="usb">
  184.      <title>USB Devices</title>
  185. !Edrivers/usb/usb.c
  186.   </chapter>
  187.   <chapter id="uart16x50">
  188.      <title>16x50 UART Driver</title>
  189. !Edrivers/char/serial.c
  190.   </chapter>
  191.   <chapter id="z85230">
  192.      <title>Z85230 Support Library</title>
  193. !Edrivers/net/wan/z85230.c
  194.   </chapter>
  195.   <chapter id="fbdev">
  196.      <title>Frame Buffer Library</title>
  197.      <para>
  198.        The frame buffer drivers depend heavily on four data structures.  
  199.        These structures are declared in include/linux/fb.h.  They are 
  200.        fb_info, fb_var_screeninfo, fb_fix_screeninfo and fb_monospecs. 
  201.        The last three can be made available to and from userland. 
  202.      </para>
  203.      <para>
  204.        fb_info defines the current state of a particular video card. 
  205.        Inside fb_info, there exists a fb_ops structure which is a 
  206.        collection of needed functions to make fbdev and fbcon work.
  207.        fb_info is only visible to the kernel.
  208.      </para>
  209.      <para>
  210.        fb_var_screeninfo is used to describe the features of a video card 
  211.        that are user defined.  With fb_var_screeninfo, things such as
  212.        depth and the resolution may be defined.
  213.      </para>
  214.      <para>
  215.        The next structure is fb_fix_screeninfo. This defines the 
  216.        properties of a card that are created when a mode is set and can't 
  217.        be changed otherwise.  A good example of this is the start of the 
  218.        frame buffer memory.  This "locks" the address of the frame buffer
  219.        memory, so that it cannot be changed or moved.
  220.      </para>
  221.      <para>
  222.        The last structure is fb_monospecs. In the old API, there was 
  223.        little importance for fb_monospecs. This allowed for forbidden things 
  224.        such as setting a mode of 800x600 on a fix frequency monitor. With 
  225.        the new API, fb_monospecs prevents such things, and if used 
  226.        correctly, can prevent a monitor from being cooked.  fb_monospecs
  227.        will not be useful until kernels 2.5.x.
  228.      </para>
  229.      <sect1><title>Frame Buffer Memory</title>
  230. !Edrivers/video/fbmem.c
  231.      </sect1>
  232.      <sect1><title>Frame Buffer Console</title>
  233. !Edrivers/video/fbcon.c
  234.      </sect1>
  235.      <sect1><title>Frame Buffer Colormap</title>
  236. !Edrivers/video/fbcmap.c
  237.      </sect1>
  238.      <sect1><title>Frame Buffer Generic Functions</title>
  239. !Idrivers/video/fbgen.c
  240.      </sect1>
  241.      <sect1><title>Frame Buffer Video Mode Database</title>
  242. !Idrivers/video/modedb.c
  243. !Edrivers/video/modedb.c
  244.      </sect1>
  245.      <sect1><title>Frame Buffer Macintosh Video Mode Database</title>
  246. !Idrivers/video/macmodes.c
  247.      </sect1>
  248.      <sect1><title>Frame Buffer Fonts</title>
  249. !Idrivers/video/fonts.c
  250.      </sect1>
  251.   </chapter>
  252. </book>