PCI

PCI是一种本地总线(并行),规格书名称:PCI Local Bus Specification。并行总线,插槽规格统一。

PCI stands for Peripheral Component Interconnect.  It is a hardware bus that helps to add internal components to a desktop computer. It uses a parallel bus structure. Moreover, it is possible to insert a PCI card to a PCI slot on a motherboard to provide additional IO ports.

PCI architecture is also known as conventional PCI. This technology was introduced in 1992 by Intel. In earlier computers, there were two to five PCI cards. Each card required an open slot on the motherboard. Furthermore, it required a removable panel on the back of the system unit. Adding PCI cards was an easy way to upgrade a computer because it helps the users to add better video cards, faster wired or wireless networking or add new ports like USB 2.0.

The original 32bit, 33MHz PCI standard was capable of sending and receiving data at a rate of 133Mbps. The 64bit, 66MHz is an upgraded standard that supports a faster data transferring rate at a frequency up to 533 MHz. In the year 1998, the organizations IBM, HP, and Compaq introduced PCI –X (PCI extended). It provides a data transferring rate up to 1064MHz. Furthermore, it is backward compatible with PCI.

PCI共94*2pin(金手指双面),支持5v和3.3v两种信号电平,可提供5V或3.3V或两种都支持。

PCI Express

PCI Express是PCI的新版本,规格书:PCI Card Electromechanical Specification。硬件规格随通道数不同而不同(x1,x4,x8,x16),低通道数板卡可插入多通道数插槽。

由于PCI是总线,负载多时可能干扰CPU运行,同时速度更不上CPU更新换代等多不足,而基本被PCI Express替代。

The latest PCI version is PCI Express (PCI e). It uses a network of serial connections controlled by a hub on the computer’s motherboard. Therefore, PCI Express cards run faster than general PCI cards. There must be at least one PCI Express Slot available on the computer in order to use the PCI Express card.

PCI Express is available in x1, x4, x8, and x16 implementations. They increase the bandwidth by corresponding amounts. The larger implementations require longer PCI Express slots. The x16 is the largest slot while x1 is the smallest slot. It is possible to insert PCI Express card slots to any slot that is large enough for it. For example, x4 can be inserted to x8 but not to x1.

The main advantage of PCI Express is that it provides fast data transfer rates. It is possible to connect high-speed devices such as high-end video card and Gigabit Ethernet cards using PCI Express. Therefore, PCI Express is capable of replacing PCI. Furthermore, PCI Express is backward compatible with PCI hardware and software.

PCI E要求连接器提供12V和3.3V电源(可选3.3Vaux)。

Difference Between PCI and PCI Express

Definition

PCI is a local computer bus for attaching hardware devices in a computer. On the other hand, PCI Express is a high-speed serial computer expansion bus that is designed to replace older PCI and PCI – X bus standards.

Long Form

Moreover, PCI stands for Peripheral Component Interconnect while PCI Express stands for Peripheral Component Interconnect Express.

Interface Type

The main difference between PCI and PCI Express is that the PCI is a parallel interface while the PCI Express is a serial interface.

Speed

Speed is another difference between PCI and PCI Express. PCI Express provides a faster data rate than PCI.

Slot Type

While PCI slots are standardized, PCI Express depends on the number of lanes the slots are intended for.

Version

PCI Express is the latest version while PCI is the older version.

Conclusion

In brief, PCI Express is a newer version of PCI, which provides faster speed. The main difference between PCI and PCI Express is that PCI is a parallel interface while PCI Express is a serial interface.

Mini PCIE

Mini PCIE是为移动通讯设计,规格书:PCI Express Mini Card Electromechanical Specification。

The primary differences between a PCI Express add-in card (as defined by the PCI Express CardElectromechanical Specification) and a PCI Express Mini Card add-in card is a unique card form factor optimized for mobile computing platforms and a card-system interconnection optimized for communication applications. Specifically, PCI Express Mini Card add-in cards are smaller and have smaller connectors than standard PCI Express add-in cards

PCI Express Mini Card主要提供三种数据接口:PCI Express, USB(和DisplayPort)。

PCI Express Mini Card提供两种电源:3.3V和1.5V。

M.2

规格书:PCI Express M.2 Specification。

M.2比mini Card和half-mini Card尺寸和体积更小。

常见的样式有:A、B、M-key等。

下图从左到右分别是:(1)A- and E-Key无线网卡;(2)、(3)B- and M-Key固态硬盘;(4)M-Key固态硬盘。

M.2包含多个主机接口:PCIe、PCIe LP,HSIC,SSIC,USB,SDIO,UART,PCM/I2S,I2C,SATA,Display Port等。

不同规格的板卡支持的功能不同,因此定义了3种socket来组合接口(常用的4G模块就是用WWAN/SSD,Socket2):

M.2电压为3.3V。

参考:

1. What is the Difference Between PCI and PCI Express

2. PCI-Express详解  百度文库

3. mini PCIe和M.2的科普贴

4. Mini PCIe vs. M.2 NGFF: How to Select the Best IoT Data Card Form Factors on the Road to 5G

PCI_PCIe_miniPCIe规格说明的更多相关文章

  1. C++解析-外传篇(2):函数的异常规格说明

    0.目录 1.异常规格说明 2.unexpected() 函数 3.小结 1.异常规格说明 问题: 如何判断一个函数是否会抛出异常,以及抛出哪些异常? C++提供语法用于声明函数所抛出的异常 异常声明 ...

  2. UML-FURPS+与补充性规格说明

    1.FURPS+ 在统一过程(UP)中,需求按照“FURPS+”模型进行分类. 功能性(Functional):特性.功能.安全性: 可用性(Usability):人性化因素.帮助.文档: 可靠性(R ...

  3. wp8 与wp7.5图标规格说明

    wp8 小图标 159*159 中图标 336*336 大图标 691*336 wp7.5 173*173

  4. checkstyle配置规格说明

    参考文献:https://blog.csdn.net/yang1982_0907/article/details/18086693?utm_source=blogxgwz1 https://blog. ...

  5. 电商系统中的商品模型的分析与设计—续

    前言     在<电商系统中的商品模型的分析与设计>中,对电商系统商品模型有一个粗浅的描述,后来有博友对货品和商品的区别以及属性有一些疑问.我也对此做一些研究,再次简单的对商品模型做一个介 ...

  6. C++异常处理:try,catch,throw,finally的用法

    写在前面 所谓异常处理,即让一个程序运行时遇到自己无法处理的错误时抛出一个异常,希望调用者可以发现处理问题. 异常处理的基本思想是简化程序的错误代码,为程序键壮性提供一个标准检测机制. 也许我们已经使 ...

  7. Java泛型

    什么是泛型? 泛型(Generic type 或者 generics)是对 Java 语言的类型系统的一种扩展,以支持创建可以按类型进行参数化的类.可以把类型参数看作是使用参数化类型时指定的类型的一个 ...

  8. Java使用实现面向对象编程:第七章集合框架的解读=>重中之重

    对于集合框架,是非常重要的知识,是程序员必须要知道的知识点. 但是我们为什么要引入集合框架呢? 我们之前用过数组存储数据,但是采用数组存储存在了很多的缺陷.而现在我们引用了集合框架,可以完全弥补了数组 ...

  9. [译]理解Javascript的异步等待

    原文链接: https://ponyfoo.com/articles/understanding-javascript-async-await 作者: Nicolás Bevacqua 目前async ...

随机推荐

  1. string方法介绍

    #_*_coding:utf-8_*_#作者:王佃元#日期:2019/12/9#string操作print('hello'*2) #乘法操作,输出对应次数print('helloworld'[2:]) ...

  2. SVN+vs2017

    安装VirtualSvn Server https://www.visualsvn.com/ 安装visualsvn到VS2017 https://www.visualsvn.com/visualsv ...

  3. win10下MYSQL的下载、安装以及配置超详解教程(转)

    下载MYSQL 官网下载MYSQL5.7.21版本,链接地址https://www.mysql.com/downloads/.下载流程图如下: 进入官网点击Community,下载社区版. 找到MYS ...

  4. SpringBoot第三篇:配置文件详解二

    作者:追梦1819 原文:https://www.cnblogs.com/yanfei1819/p/10615605.html 版权声明:本文为博主原创文章,转载请附上博文链接! 前言   本文主要讲 ...

  5. ng 打包给路径添加前缀

    1.ng build --base --href /前缀名/--common - chunk --output-hashing=all --optimization 2.更改ts和html中的路径,将 ...

  6. Eureka概述

    1:Eureka是什么 Eureka是Spring Cloud Netflix的一个子模块,也是核心模块之一.Eureka是一个基于REST的服务,用于定位服务,以及·实现云端中间层服务发现和故障转移 ...

  7. [转帖]centos 7 avahi-daemon服务的作用及如何关闭

    centos 7 avahi-daemon服务的作用及如何关闭 https://blog.csdn.net/tjjingpan/article/details/81237308 关闭 systemct ...

  8. 解决 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:reyo' did not find a matching property.

    解决办法是:关闭tomcat,双击eclipse下tomcat服务器,在出来的Tomcat server at localhost页面中找到server options选项,选中其中的选项”Publi ...

  9. winform加快窗体加载速度

    //加快控件加载的速度 protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams ...

  10. .net 中访问config的一些方式

    人所缺乏的不是才干而是志向,不是成功的能力而是勤劳的意志. 哎!好久没有写博客了,今天就分享一些比较常用的对config文件的访问一些方式. 首先 引用 using System.Configurat ...