Chapter 8 Input/Output 输入/输出

This chapter presents the I/O features of the 80386 from the following perspectives:

本章从以下方面来介绍80386的I/O特性:

  • Methods of addressing I/O ports

I/O端口的寻址方式

  • Instructions that cause I/O operations

引起IO操作的指令

  • Protection as it applies to the use of I/O instructions and I/O port addresses.

应用在IO指令和IO端口地址的保护措施。

8.1 I/O Addressing IO地址

The 80386 allows input/output to be performed in either of two ways:

80386允许输入/输出用以下两种方式运行:

  • By means of a separate I/O address space (using specific I/O instructions)

通过独立的IO地址空间(使用特殊的IO指令)

  • By means of memory-mapped I/O (using general-purpose operand manipulation instructions).

通过内存映射(使用通用目的操作数的操作指令)。

8.1.1 I/O Address Space IO地址空间

The 80386 provides a separate I/O address space, distinct from physical memory, that can be used to address the input/output ports that are used for external 16 devices. The I/O address space consists of 2^(16) (64K) individually addressable 8-bit ports; any two consecutive 8-bit ports can be treated as a 16-bit port; and four consecutive 8-bit ports can be treated as a 32-bit port. Thus, the I/O address space can accommodate up to 64K 8-bit ports, up to 32K 16-bit ports, or up to 16K 32-bit ports.

80386从物理内存上明确的提供一个独立的IO地址空间,它们可以用来对外部16位设备的输入输出端口进行寻址。IO地址空间由2^16(64K)大小的独立的可寻址的8位端口组成;任何两个连续的8位端口可以被视做16位端口;四个连接的8位商品可以被视做32位端口。这样,IO地址空间可以容纳最多64K个8位端口,或32K个16位商品,或16K个32位端口。

The program can specify the address of the port in two ways.程序可以使用两种方式指定端口的地址。

Using an immediate byte constant, the program can specify:

使用立即数据字节常量,程序可以指定:

  • 256 8-bit ports numbered 0 through 255.

共256个,8位端口号0到255

  • 128 16-bit ports numbered 0, 2, 4, . . . , 252, 254.

128个16位端口号,从0,2,4,直到252,254。

  • 64 32-bit ports numbered 0, 4, 8, . . . , 248, 252.

64个32位端口号0,4,8,...,248,252。

Using a value in DX, the program can specify:

使用DX寄存器中的值,程序可以指定上:

  • 8-bit ports numbered 0 through 65535

8位端口号,从0到65535

  • 16-bit ports numbered 0, 2, 4, . . . , 65532, 65534

16位端口号,从0,2,4...,65532,65534

  • 32-bit ports numbered 0, 4, 8, . . . , 65528, 65532

32位端口号,从0,4,8,...,65528,65532

The 80386 can transfer 32, 16, or 8 bits at a time to a device located in the I/O space. Like doublewords in memory, 32-bit ports should be aligned at addresses evenly divisible by four so that the 32 bits can be transferred in a single bus access. Like words in memory, 16-bit ports should be aligned at even-numbered addresses so that the 16 bits can be transferred in a single bus access. An 8-bit port may be located at either an even or odd address.

80386可以一次向位于IO空间的设备传送32、16或8位。就象内存中的双字一样,32位端口应当在能被4整除的地址上对齐,这样32位就能在一个单独的总线访问中被传送。就象内存中的字一样,16位端口应当在偶数对齐的地址上,这样16位就能在一个单独的总线访问中被传送。8位端口可以定位在奇数或偶数地址上。

The instructions IN and OUT move data between a register and a port in the I/O address space. The instructions INS and OUTS move strings of data between the memory address space and ports in the I/O address space.

指令IN和OUT通过IO地址空间,在寄存器和端口之间传输数据。指令INS和OUTS在内存地址与IO地址空间中的端口之间传送字符串数据。

8.1.2 Memory-Mapped I/O IO的内存映射

I/O devices also may be placed in the 80386 memory address space. As long as the devices respond like memory components, they are indistinguishable to the processor.

IO设备也可以被放在80386的内存地址空间。由于设备响应就象内存组件一样,对于处理器平说,几乎没有什么区别。

Memory-mapped I/O provides additional programming flexibility. Any instruction that references memory may be used to access an I/O port located in the memory space. For example, the MOV instruction can transfer data between any register and a port; and the ANDOR, and TEST instructions may be used to manipulate bits in the internal registers of a device (see Figure 8-1 ). Memory-mapped I/O performed via the full instruction set maintains the full complement of addressing modes for selecting the desired I/O device (e.g., direct address, indirect address, base register, index register, scaling).

IO内存映射提供额外的程序的便利性。任何内存引用指令都可以被用来访问一个被映射到内存空间的IO端口。例如,MOV指令可以在任何寄存器与端口之间传送数据;AND、OR和TEST指令也可被用来操作设备内部寄存器上的位(见图8-1)。IO内存映射通过全部指令集,对选定的需求IO设备允许使用全部可用的寻址模式(如:直接寻址,间接寻址,基址寄存器寻址,索引寄存器寻址,以比例因子寻址)。

Memory-mapped I/O, like any other memory reference, is subject to access protection and control when executing in protected mode. Refer to Chapter 6 for a discussion of memory protection.

IO内存映射,就象其他的内存引用一样,在保护模式下,也是访问控制和保护的主题。参见第6章关于内存保护的讨论。

【译】x86程序员手册29-第8章 输入输出的更多相关文章

  1. 【译】x86程序员手册10 - 第4章系统架构

    1.1.2 Part II -- Systems Programming 系统编程 This part presents those aspects of the architecture that ...

  2. 【译】x86程序员手册01

    Intel 80386 Reference Programmer's Manual 80386程序员参考手册 Chapter 1 -- Introduction to the 80386 第1章 - ...

  3. 【译】x86程序员手册03 - 2.1内存组织和分段

    2.1 Memory Organization and Segmentation 内存组织和分段 The physical memory of an 80386 system is organized ...

  4. 【译】x86程序员手册00 - 翻译起因

    从上一次学习MIT的操作系统课程又过去了一年.上次学习并没有坚持下去.想来虽有种种原因,其还在自身无法坚持罢了.故此次再鼓起勇气重新学习,发现课程都已由2014改版为2016了.但大部分内容并没有改变 ...

  5. 【译】x86程序员手册38-10.2实在址模式下的软件初始化

    10.2 Software Initialization for Real-Address Mode   实地址模式的软件初始化 In real-address mode a few structur ...

  6. 【译】x86程序员手册09-第3章程序指令集

    注:觉得本章内容与理解操作系统不直接相关,所以本章并未看完,也就没有翻译完,放在这里中是为了保证手册的完整.有兴趣的人可以去原址查看. https://pdos.csail.mit.edu/6.828 ...

  7. 【译】x86程序员手册05 - 2.3寄存器

    2.3 Registers 寄存器 The 80386 contains a total of sixteen registers that are of interest to the applic ...

  8. 【译】x86程序员手册02 - 基本的程序模式

    Chapter 2 -- Basic Programming Model: 基本的程序模式 Introduces the models of memory organization. Defines ...

  9. 【译】x86程序员手册40-10.5初始化的例子

    10.5 Initialization Example初始化的例子 译注:本来想把这个例子全部注释完,但由于对intel汇编实不熟悉,有太多的伪指令,本人也是免强看懂,所以就不再做翻译了. $TITL ...

  10. 【译】x86程序员手册39-10.3切换到保护模式

    10.3 Switching to Protected Mode  切换到保护模式 Setting the PE bit of the MSW in CR0 causes the 80386 to b ...

随机推荐

  1. quick-cocos2d-x游戏开发【1】——引擎结构总览和创建项目

    好吧,我还是忍不住想写点关于quick的学习笔记,确实网上关于它的教程太少太少了,简单把自己的所学所得分享一下,有不正确之处还请拍砖. 首先下载引擎包.触控收购quick之后.如今cocos中文站的主 ...

  2. kvm 安装

    一.  虚拟化 是指通过虚拟化技术将一台计算机虚拟为多台逻辑计算机.在一台计算机上同时运行多个逻辑计算机,每个逻辑计算机可运行不同的操作系统,并且应用程序都可以在相互独立的空间内运行而互相不影响,从而 ...

  3. Linux系统编程_6_进程环境(C程序典型的存储空间)

    1.八种结束Linux进程的方法: 五种正常终止方式: main函数返回: 调用exit: 调用_exit或_Exit 最后一个线程从其启动例程返回 最后一个线程调用pthread_exit 三种异常 ...

  4. MongoDB 学习笔记一 安装以及基础命令

    一.MongoDB安装配置 1.获取最新版本号: wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.0.2.tgz 2.解压缩就可 ...

  5. jquery中怎样防止冒泡事件

    jquery中怎样防止冒泡事件 1.利用event.stopPropagation() 2.利用return false 3.利用event.preventDefault()

  6. tf.image.resize_bilinear 图像缩放,双线性插值-图像中心对齐

    http://www.cnblogs.com/yssongest/p/5303151.html 双线性插值算法及需要注意事项 input = tf.placeholder(tf.float32, sh ...

  7. Linux下Gcc 的编译过程

    在linux下开发难免会用到gcc编译.GCC(GNU Compiler Collection.GNU编译器套装),是由 GNU 开发的编程语言编译器.它是GNU编译器套装以GPL许可证所发行的自由软 ...

  8. CSP 201703-4 地铁修建【最小生成树+并查集】

    问题描述 试题编号: 201703-4 试题名称: 地铁修建 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 A市有n个交通枢纽,其中1号和n号非常重要,为了加强运输能力,A市 ...

  9. 远程查看日志-linux

    ssh 连接服务器 ssh user@www.xxx.com -p60022 用户名@ip 端口 进入日志所在目录 cat FILENAME 查看文本文件,P.S. 在查较大文件时为了避免刷屏,请使用 ...

  10. java8-接口变化-默认方法-静态方法

    Java 8中允许接口中包含具有具体实现的方法,该方法称为 “默认方法”,默认方法使用 default 关键字修饰. default String getName(){ return "哈哈 ...