跳至主要内容

【转】ARM11 MPCore多处理器

ARM11 MPCore多处理器
2007-04-06 16:33

ARM公司于20057月向其合作伙伴演示了首款ARM11 MPCore多处理器(multiprocessor),其功耗仅为600毫瓦,但具备1440 Dhrystone MIPS的性能。这款测试芯片基于ARMv6指令集结构,由四枚缓存运行一致的处理器组成,由NEC采用通用130nm制造工艺加工而成,并没有对性能或功率进行优化。

ARM多处理项目经理John Goodacre表示,该测试芯片工作的时钟频率高达300MHz。他接着指出:"该芯片意在方便我们测试多处理设计和缓存的功能性,正因为如此,它在工艺和库的选择上比较保守。尽管如此,我们毕竟创造出了处理能力最高的单芯片ARM处理器。"

Goodacre表示,ARM的授权对象未来将能够在更高性能的130nm工艺和优化库中,进行可综合的设计,并有望实现350Hz550MHz的时钟频率性能,而这是商用ARM11通用处理器的典型值。

一年前,ARM曾表示MPCore能够配置成包含1个到4个处理器,具有高达2600 Dhrystone MIPS的性能。ARM11 MPCore处理器测试芯片是ARMNEC合作开发下一代基于对称多处理技术的多处理器内核的结晶。它得到瑞典KTH皇家技术学院OpenMP编译器技术的支持,得以减少高达85%的功耗。现在已经了采用ARM11 MPCore的智能手机和移动视听设备上市。

评论

此博客中的热门博文

【转】smb协议栈使用示例

/*  * * uncdownload.c  * *  * * Utility for downloading files from SMB shares using libsmbclient  * *  * * Copyright(C) 2006 Sophos Plc, Oxford, England.  * *  * * This program is free software; you can redistribute it and/or modify it under the terms of the  * * GNU General Public License Version 2 as published by the Free Software Foundation.  * *  * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without  * * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  * * See the GNU General Public License for more details.  * *  * * You should have received a copy of the GNU General Public License along with this program; if not,  * * write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  * *  * */ # include < sys / types . h > # include < sys / time . h > # include ...

【转】Ether Types

Ether Types (last updated 2008-09-09) NOTE: Please see [RFC5342] for current information and registration procedures. This registry will be revised soon and will be replaced with up-to-date information. Many of the networks of all classes are Ethernets (10Mb) or Experimental Ethernets (3Mb). These systems use a message "type" field in much the same way the ARPANET uses the "link" field. If you need an Ether Type, contact: IEEE Registration Authority IEEE Standards Department 445 Hoes Lane Piscataway, NJ 08854 Phone +1 732 562 3813 Fax: +1 732 562 1571 Email: <ieee-registration-authority& ieee.org > http://standards.ieee.org/regauth/index.html The following list of EtherTypes is contributed unverified information from various sources. Another list of EtherTypes is maintained by Michael A. Patton and is accessible at: <URL: http://www.cavebear.com/CaveBear/Ethernet/ > <URL: ftp://ftp.cavebear.com/pub/Ethernet-codes > Assign...

【转】tcphdr结构详解

位于:/usr/src/linux/include/linux/tcp.h struct tcphdr { __be16 source; __be16 dest; __be32 seq; __be32 ack_seq; #if defined(__LITTLE_ENDIAN_BITFIELD) __u16   res1:4, doff:4, fin:1, syn:1, rst:1, psh:1, ack:1, urg:1, ece:1, cwr:1; #elif defined(__BIG_ENDIAN_BITFIELD) __u16   doff:4, res1:4, cwr:1, ece:1, urg:1, ack:1, psh:1, rst:1, syn:1, fin:1; #else #error "Adjust your <asm/byteorder.h> defines"