소스 검색

doc: usb legacy support

fslongjin 2 년 전
부모
커밋
fe42398090
5개의 변경된 파일29개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      docs/index.rst
  2. 10 0
      docs/kernel/cpu_arch/index.rst
  3. 8 0
      docs/kernel/cpu_arch/x86_64/index.rst
  4. 9 0
      docs/kernel/cpu_arch/x86_64/usb_legacy_support.md
  5. 1 1
      docs/kernel/debug/index.rst

+ 1 - 0
docs/index.rst

@@ -22,6 +22,7 @@
    kernel/process_management/index
    kernel/filesystem/index
    kernel/debug/index
+   kernel/cpu_arch/index
 
 
 .. toctree::

+ 10 - 0
docs/kernel/cpu_arch/index.rst

@@ -0,0 +1,10 @@
+处理器架构
+====================================
+
+   该部分文档提供了和处理器架构相关的一些编程实现细节的描述。
+   
+.. toctree::
+   :maxdepth: 1
+   :caption: 目录
+
+   x86_64/index

+ 8 - 0
docs/kernel/cpu_arch/x86_64/index.rst

@@ -0,0 +1,8 @@
+x86-64相关文档
+====================================
+   
+.. toctree::
+   :maxdepth: 1
+   :caption: 目录
+
+   usb_legacy_support

+ 9 - 0
docs/kernel/cpu_arch/x86_64/usb_legacy_support.md

@@ -0,0 +1,9 @@
+# USB Legacy支持
+
+## 简介
+
+  usb legacy support指的是,由BIOS提供的,对USB鼠标、USB键盘的支持。在支持并启用USB Legacy Support的计算机上,USB鼠标、键盘由BIOS提供模拟,在操作系统看来,就像接入了PS/2鼠标、键盘一样。
+
+## 相关
+
+- 在初始化USB控制器时,需要关闭它的USB Legacy Support

+ 1 - 1
docs/kernel/debug/index.rst

@@ -7,4 +7,4 @@
    :maxdepth: 1
    :caption: 目录
 
-   kernel_api
+   traceback